Class: Google::Apis::ConnectorsV1::EncryptionConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EncryptionConfig

Returns a new instance of EncryptionConfig.



1779
1780
1781
# File 'lib/google/apis/connectors_v1/classes.rb', line 1779

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#encryption_typeString

Optional. Encryption type for the region. Corresponds to the JSON property encryptionType

Returns:

  • (String)


1771
1772
1773
# File 'lib/google/apis/connectors_v1/classes.rb', line 1771

def encryption_type
  @encryption_type
end

#kms_key_nameString

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`

Returns:

  • (String)


1777
1778
1779
# File 'lib/google/apis/connectors_v1/classes.rb', line 1777

def kms_key_name
  @kms_key_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1784
1785
1786
1787
# File 'lib/google/apis/connectors_v1/classes.rb', line 1784

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