Class: Google::Apis::ConnectorsV1::EncryptionConfig
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::EncryptionConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Regional encryption config for CMEK details.
Instance Attribute Summary collapse
-
#encryption_type ⇒ String
Optional.
-
#kms_key_name ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EncryptionConfig
constructor
A new instance of EncryptionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EncryptionConfig
Returns a new instance of EncryptionConfig.
1707 1708 1709 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1707 def initialize(**args) update!(**args) end |
Instance Attribute Details
#encryption_type ⇒ String
Optional. Encryption type for the region.
Corresponds to the JSON property encryptionType
1699 1700 1701 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1699 def encryption_type @encryption_type end |
#kms_key_name ⇒ String
Optional. KMS crypto key. This field accepts identifiers of the form projects/
project/locations/location/keyRings/key_ring/cryptoKeys/crypto_key`
Corresponds to the JSON propertykmsKeyName`
1705 1706 1707 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1705 def kms_key_name @kms_key_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1712 1713 1714 1715 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1712 def update!(**args) @encryption_type = args[:encryption_type] if args.key?(:encryption_type) @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name) end |