CreateAutomaticDrConfigurationMemberDetails¶
-
class
oci.disaster_recovery.models.CreateAutomaticDrConfigurationMemberDetails(**kwargs)¶ Bases:
objectCreate properties for a member in an Automatic DR configuration.
Attributes
MEMBER_TYPE_AUTONOMOUS_CONTAINER_DATABASEA constant which can be used with the member_type property of a CreateAutomaticDrConfigurationMemberDetails. MEMBER_TYPE_AUTONOMOUS_DATABASEA constant which can be used with the member_type property of a CreateAutomaticDrConfigurationMemberDetails. MEMBER_TYPE_DATABASEA constant which can be used with the member_type property of a CreateAutomaticDrConfigurationMemberDetails. member_id[Required] Gets the member_id of this CreateAutomaticDrConfigurationMemberDetails. member_type[Required] Gets the member_type of this CreateAutomaticDrConfigurationMemberDetails. Methods
__init__(**kwargs)Initializes a new CreateAutomaticDrConfigurationMemberDetails object with values from keyword arguments. get_subtype(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
MEMBER_TYPE_AUTONOMOUS_CONTAINER_DATABASE= 'AUTONOMOUS_CONTAINER_DATABASE'¶ A constant which can be used with the member_type property of a CreateAutomaticDrConfigurationMemberDetails. This constant has a value of “AUTONOMOUS_CONTAINER_DATABASE”
-
MEMBER_TYPE_AUTONOMOUS_DATABASE= 'AUTONOMOUS_DATABASE'¶ A constant which can be used with the member_type property of a CreateAutomaticDrConfigurationMemberDetails. This constant has a value of “AUTONOMOUS_DATABASE”
-
MEMBER_TYPE_DATABASE= 'DATABASE'¶ A constant which can be used with the member_type property of a CreateAutomaticDrConfigurationMemberDetails. This constant has a value of “DATABASE”
-
__init__(**kwargs)¶ Initializes a new CreateAutomaticDrConfigurationMemberDetails object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:
CreateAutomaticDrConfigurationMemberAutonomousDatabaseDetailsCreateAutomaticDrConfigurationMemberDatabaseDetailsCreateAutomaticDrConfigurationMemberAutonomousContainerDatabaseDetails
The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - member_id (str) – The value to assign to the member_id property of this CreateAutomaticDrConfigurationMemberDetails.
- member_type (str) – The value to assign to the member_type property of this CreateAutomaticDrConfigurationMemberDetails. Allowed values for this property are: “DATABASE”, “AUTONOMOUS_DATABASE”, “AUTONOMOUS_CONTAINER_DATABASE”
-
static
get_subtype(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
member_id¶ [Required] Gets the member_id of this CreateAutomaticDrConfigurationMemberDetails. The OCID of the member.
Example: ocid1.database.oc1..uniqueID
Returns: The member_id of this CreateAutomaticDrConfigurationMemberDetails. Return type: str
-
member_type¶ [Required] Gets the member_type of this CreateAutomaticDrConfigurationMemberDetails. The type of the member.
Allowed values for this property are: “DATABASE”, “AUTONOMOUS_DATABASE”, “AUTONOMOUS_CONTAINER_DATABASE”
Returns: The member_type of this CreateAutomaticDrConfigurationMemberDetails. Return type: str
-