Class: Google::Cloud::SecretManager::V1beta2::ReplicationStatus::UserManagedStatus
- Inherits:
-
Object
- Object
- Google::Cloud::SecretManager::V1beta2::ReplicationStatus::UserManagedStatus
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/secretmanager/v1beta2/resources.rb
Overview
The replication status of a SecretVersion using user-managed replication.
Only populated if the parent Secret has a user-managed replication policy.
Defined Under Namespace
Classes: ReplicaStatus
Instance Attribute Summary collapse
-
#replicas ⇒ ::Array<::Google::Cloud::SecretManager::V1beta2::ReplicationStatus::UserManagedStatus::ReplicaStatus>
readonly
Output only.
Instance Attribute Details
#replicas ⇒ ::Array<::Google::Cloud::SecretManager::V1beta2::ReplicationStatus::UserManagedStatus::ReplicaStatus> (readonly)
Returns Output only. The list of replica statuses for the SecretVersion.
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 |
# File 'proto_docs/google/cloud/secretmanager/v1beta2/resources.rb', line 400 class UserManagedStatus include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Describes the status of a user-managed replica for the # {::Google::Cloud::SecretManager::V1beta2::SecretVersion SecretVersion}. # @!attribute [r] location # @return [::String] # Output only. The canonical ID of the replica location. # For example: `"us-east1"`. # @!attribute [r] customer_managed_encryption # @return [::Google::Cloud::SecretManager::V1beta2::CustomerManagedEncryptionStatus] # Output only. The customer-managed encryption status of the # {::Google::Cloud::SecretManager::V1beta2::SecretVersion SecretVersion}. Only # populated if customer-managed encryption is used. class ReplicaStatus include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |