Enum AutonomousContainerDatabaseSnapshotStandbyConnectionStringType
- java.lang.Object
-
- java.lang.Enum<AutonomousContainerDatabaseSnapshotStandbyConnectionStringType>
-
- com.oracle.bmc.disasterrecovery.model.AutonomousContainerDatabaseSnapshotStandbyConnectionStringType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<AutonomousContainerDatabaseSnapshotStandbyConnectionStringType>
@Generated(value="OracleSDKGenerator", comments="API Version: 20220125") public enum AutonomousContainerDatabaseSnapshotStandbyConnectionStringType extends Enum<AutonomousContainerDatabaseSnapshotStandbyConnectionStringType> implements BmcEnum
The type of connection strings used to connect to an Autonomous Container Database snapshot standby created during a DR Drill operation.See https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbcl/index.html for information about these service types. - SNAPSHOT_SERVICE - Connect to the snapshot standby using new services that are active only in snapshot standby mode. - PRIMARY_SERVICE - Connect to the snapshot standby database using the same services as the primary database.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PrimaryService
SnapshotService
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AutonomousContainerDatabaseSnapshotStandbyConnectionStringType
create(String key)
String
getValue()
static AutonomousContainerDatabaseSnapshotStandbyConnectionStringType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AutonomousContainerDatabaseSnapshotStandbyConnectionStringType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SnapshotService
public static final AutonomousContainerDatabaseSnapshotStandbyConnectionStringType SnapshotService
-
PrimaryService
public static final AutonomousContainerDatabaseSnapshotStandbyConnectionStringType PrimaryService
-
UnknownEnumValue
public static final AutonomousContainerDatabaseSnapshotStandbyConnectionStringType UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static AutonomousContainerDatabaseSnapshotStandbyConnectionStringType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AutonomousContainerDatabaseSnapshotStandbyConnectionStringType c : AutonomousContainerDatabaseSnapshotStandbyConnectionStringType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AutonomousContainerDatabaseSnapshotStandbyConnectionStringType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static AutonomousContainerDatabaseSnapshotStandbyConnectionStringType create(String key)
-
-