UpdateAutomaticDrConfigurationMemberDetails¶
-
class
oci.disaster_recovery.models.UpdateAutomaticDrConfigurationMemberDetails(**kwargs)¶ Bases:
objectUpdate 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 UpdateAutomaticDrConfigurationMemberDetails. MEMBER_TYPE_AUTONOMOUS_DATABASEA constant which can be used with the member_type property of a UpdateAutomaticDrConfigurationMemberDetails. MEMBER_TYPE_DATABASEA constant which can be used with the member_type property of a UpdateAutomaticDrConfigurationMemberDetails. member_id[Required] Gets the member_id of this UpdateAutomaticDrConfigurationMemberDetails. member_type[Required] Gets the member_type of this UpdateAutomaticDrConfigurationMemberDetails. Methods
__init__(**kwargs)Initializes a new UpdateAutomaticDrConfigurationMemberDetails 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 UpdateAutomaticDrConfigurationMemberDetails. 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 UpdateAutomaticDrConfigurationMemberDetails. 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 UpdateAutomaticDrConfigurationMemberDetails. This constant has a value of “DATABASE”
-
__init__(**kwargs)¶ Initializes a new UpdateAutomaticDrConfigurationMemberDetails 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:
UpdateAutomaticDrConfigurationMemberDatabaseDetailsUpdateAutomaticDrConfigurationMemberAutonomousDatabaseDetailsUpdateAutomaticDrConfigurationMemberAutonomousContainerDatabaseDetails
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 UpdateAutomaticDrConfigurationMemberDetails.
- member_type (str) – The value to assign to the member_type property of this UpdateAutomaticDrConfigurationMemberDetails. 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 UpdateAutomaticDrConfigurationMemberDetails. The OCID of the member.
Example: ocid1.database.oc1..uniqueID
Returns: The member_id of this UpdateAutomaticDrConfigurationMemberDetails. Return type: str
-
member_type¶ [Required] Gets the member_type of this UpdateAutomaticDrConfigurationMemberDetails. The type of the member.
Allowed values for this property are: “DATABASE”, “AUTONOMOUS_DATABASE”, “AUTONOMOUS_CONTAINER_DATABASE”
Returns: The member_type of this UpdateAutomaticDrConfigurationMemberDetails. Return type: str
-