CreateUserShardSpaceDetails¶
-
class
oci.distributed_database_v26.models.CreateUserShardSpaceDetails(**kwargs)¶ Bases:
objectDetails required to create user shard space.
Methods
__init__(**kwargs)Initializes a new CreateUserShardSpaceDetails object with values from keyword arguments. Attributes
data_guard_replicasGets the data_guard_replicas of this CreateUserShardSpaceDetails. name[Required] Gets the name of this CreateUserShardSpaceDetails. original_replica[Required] Gets the original_replica of this CreateUserShardSpaceDetails. -
__init__(**kwargs)¶ Initializes a new CreateUserShardSpaceDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - name (str) – The value to assign to the name property of this CreateUserShardSpaceDetails.
- original_replica (oci.distributed_database_v26.models.CreateUserShardSpaceReplicaDetails) – The value to assign to the original_replica property of this CreateUserShardSpaceDetails.
- data_guard_replicas (list[oci.distributed_database_v26.models.CreateUserShardSpaceReplicaDetails]) – The value to assign to the data_guard_replicas property of this CreateUserShardSpaceDetails.
-
data_guard_replicas¶ Gets the data_guard_replicas of this CreateUserShardSpaceDetails. The details of data guard replica for the user shard space being created.
Returns: The data_guard_replicas of this CreateUserShardSpaceDetails. Return type: list[oci.distributed_database_v26.models.CreateUserShardSpaceReplicaDetails]
-
name¶ [Required] Gets the name of this CreateUserShardSpaceDetails. The name of user shard space. It must start with a letter and contain only letters, digits, and underscores. Maximum length is 40 characters.
Returns: The name of this CreateUserShardSpaceDetails. Return type: str
-
original_replica¶ [Required] Gets the original_replica of this CreateUserShardSpaceDetails.
Returns: The original_replica of this CreateUserShardSpaceDetails. Return type: oci.distributed_database_v26.models.CreateUserShardSpaceReplicaDetails
-