Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb

Overview

A customer-managed encryption key specification that can be applied to all created resources (e.g. Conversation).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1EncryptionSpec

Returns a new instance of GoogleCloudDialogflowV2beta1EncryptionSpec.



14661
14662
14663
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14661

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

Instance Attribute Details

#kms_keyString

Required. The name of customer-managed encryption key that is used to secure a resource and its sub-resources. If empty, the resource is secured by the default Google encryption key. Only the key in the same location as this resource is allowed to be used for encryption. Format: projects/project/ locations/location/keyRings/keyRing/cryptoKeys/key` Corresponds to the JSON propertykmsKey`

Returns:

  • (String)


14653
14654
14655
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14653

def kms_key
  @kms_key
end

#nameString

Immutable. The resource name of the encryption key specification resource. Format: projects/project/locations/location/encryptionSpec Corresponds to the JSON property name

Returns:

  • (String)


14659
14660
14661
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14659

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14666
14667
14668
14669
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14666

def update!(**args)
  @kms_key = args[:kms_key] if args.key?(:kms_key)
  @name = args[:name] if args.key?(:name)
end