Enum DrProtectionGroupMemberType
- java.lang.Object
-
- java.lang.Enum<DrProtectionGroupMemberType>
-
- com.oracle.bmc.disasterrecovery.model.DrProtectionGroupMemberType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<DrProtectionGroupMemberType>
@Generated(value="OracleSDKGenerator", comments="API Version: 20220125") public enum DrProtectionGroupMemberType extends Enum<DrProtectionGroupMemberType> implements BmcEnum
Enumeration of different types of Oracle Cloud Infrastructure (OCI) resources that are members in a DR protection group.- COMPUTE_INSTANCE - Deprecated. A compute instance. - COMPUTE_INSTANCE_MOVABLE - A compute instance that moves across regions or ADs during DR. - COMPUTE_INSTANCE_NON_MOVABLE - A compute instance that does not move across regions or ADs during DR. - VOLUME_GROUP - A volume group. - DATABASE - An Oracle Database instance from Base Database service, or Exadata Database service. - AUTONOMOUS_DATABASE - An Oracle Autonomous Database Serverless. - AUTONOMOUS_CONTAINER_DATABASE - An Oracle Autonomous Container Database. - OKE_CLUSTER - OCI Container Engine for Kubernetes(OKE) cluster. - LOAD_BALANCER - A load balancer. - NETWORK_LOAD_BALANCER - A network load balancer. - FILE_SYSTEM - A file system.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AutonomousContainerDatabase
AutonomousDatabase
ComputeInstance
ComputeInstanceMovable
ComputeInstanceNonMovable
Database
FileSystem
LoadBalancer
NetworkLoadBalancer
ObjectStorageBucket
OkeCluster
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.VolumeGroup
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DrProtectionGroupMemberType
create(String key)
String
getValue()
static DrProtectionGroupMemberType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DrProtectionGroupMemberType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ComputeInstance
public static final DrProtectionGroupMemberType ComputeInstance
-
ComputeInstanceMovable
public static final DrProtectionGroupMemberType ComputeInstanceMovable
-
ComputeInstanceNonMovable
public static final DrProtectionGroupMemberType ComputeInstanceNonMovable
-
VolumeGroup
public static final DrProtectionGroupMemberType VolumeGroup
-
Database
public static final DrProtectionGroupMemberType Database
-
AutonomousDatabase
public static final DrProtectionGroupMemberType AutonomousDatabase
-
AutonomousContainerDatabase
public static final DrProtectionGroupMemberType AutonomousContainerDatabase
-
LoadBalancer
public static final DrProtectionGroupMemberType LoadBalancer
-
NetworkLoadBalancer
public static final DrProtectionGroupMemberType NetworkLoadBalancer
-
FileSystem
public static final DrProtectionGroupMemberType FileSystem
-
OkeCluster
public static final DrProtectionGroupMemberType OkeCluster
-
ObjectStorageBucket
public static final DrProtectionGroupMemberType ObjectStorageBucket
-
UnknownEnumValue
public static final DrProtectionGroupMemberType 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 DrProtectionGroupMemberType[] 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 (DrProtectionGroupMemberType c : DrProtectionGroupMemberType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DrProtectionGroupMemberType 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 DrProtectionGroupMemberType create(String key)
-
-