Class: Google::Cloud::SecretManager::V1::Replication::UserManaged
- Inherits:
-
Object
- Object
- Google::Cloud::SecretManager::V1::Replication::UserManaged
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/secretmanager/v1/resources.rb
Overview
A replication policy that replicates the Secret payload into the locations specified in Replication.UserManaged.replicas
Defined Under Namespace
Classes: Replica
Instance Attribute Summary collapse
-
#replicas ⇒ ::Array<::Google::Cloud::SecretManager::V1::Replication::UserManaged::Replica>
Required.
Instance Attribute Details
#replicas ⇒ ::Array<::Google::Cloud::SecretManager::V1::Replication::UserManaged::Replica>
Returns Required. The list of Replicas for this Secret.
Cannot be empty.
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
# File 'proto_docs/google/cloud/secretmanager/v1/resources.rb', line 310 class UserManaged include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Represents a Replica for this # {::Google::Cloud::SecretManager::V1::Secret Secret}. # @!attribute [rw] location # @return [::String] # The canonical IDs of the location to replicate data. # For example: `"us-east1"`. # @!attribute [rw] customer_managed_encryption # @return [::Google::Cloud::SecretManager::V1::CustomerManagedEncryption] # Optional. The customer-managed encryption configuration of the # [User-Managed Replica][Replication.UserManaged.Replica]. If no # configuration is provided, Google-managed default encryption is used. # # Updates to the {::Google::Cloud::SecretManager::V1::Secret Secret} # encryption configuration only apply to # {::Google::Cloud::SecretManager::V1::SecretVersion SecretVersions} added # afterwards. They do not apply retroactively to existing # {::Google::Cloud::SecretManager::V1::SecretVersion SecretVersions}. class Replica include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |