RegionStatusDetail¶
- 
class oci.cloud_guard.models.RegionStatusDetail(**kwargs)¶
- Bases: - object- Status of replication of a data source query in a region - Attributes - STATUS_FAILED- A constant which can be used with the status property of a RegionStatusDetail. - STATUS_PROVISIONING- A constant which can be used with the status property of a RegionStatusDetail. - STATUS_SUCCEEDED- A constant which can be used with the status property of a RegionStatusDetail. - region- [Required] Gets the region of this RegionStatusDetail. - status- [Required] Gets the status of this RegionStatusDetail. - Methods - __init__(**kwargs)- Initializes a new RegionStatusDetail object with values from keyword arguments. - 
STATUS_FAILED= 'FAILED'¶
- A constant which can be used with the status property of a RegionStatusDetail. This constant has a value of “FAILED” 
 - 
STATUS_PROVISIONING= 'PROVISIONING'¶
- A constant which can be used with the status property of a RegionStatusDetail. This constant has a value of “PROVISIONING” 
 - 
STATUS_SUCCEEDED= 'SUCCEEDED'¶
- A constant which can be used with the status property of a RegionStatusDetail. This constant has a value of “SUCCEEDED” 
 - 
__init__(**kwargs)¶
- Initializes a new RegionStatusDetail object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - region (str) – The value to assign to the region property of this RegionStatusDetail.
- status (str) – The value to assign to the status property of this RegionStatusDetail. Allowed values for this property are: “PROVISIONING”, “FAILED”, “SUCCEEDED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
 
 - 
region¶
- [Required] Gets the region of this RegionStatusDetail. Data source replication region - Returns: - The region of this RegionStatusDetail. - Return type: - str 
 - 
status¶
- [Required] Gets the status of this RegionStatusDetail. Data source replication region status - Allowed values for this property are: “PROVISIONING”, “FAILED”, “SUCCEEDED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The status of this RegionStatusDetail. - Return type: - str 
 
-