Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCmekConfig

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

Overview

Configurations used to enable CMEK data encryption with Cloud KMS keys.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaCmekConfig

Returns a new instance of GoogleCloudDiscoveryengineV1betaCmekConfig.



17745
17746
17747
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17745

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

Instance Attribute Details

#is_defaultBoolean Also known as: is_default?

Output only. The default CmekConfig for the Customer. Corresponds to the JSON property isDefault

Returns:

  • (Boolean)


17708
17709
17710
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17708

def is_default
  @is_default
end

#kms_keyString

Kms key resource name which will be used to encrypt resources projects/ project/locations/location/keyRings/keyRing/cryptoKeys/keyId`. Corresponds to the JSON propertykmsKey`

Returns:

  • (String)


17715
17716
17717
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17715

def kms_key
  @kms_key
end

#kms_key_versionString

Kms key version resource name which will be used to encrypt resources / cryptoKeyVersions/keyVersion`. Corresponds to the JSON propertykmsKeyVersion`

Returns:

  • (String)


17721
17722
17723
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17721

def kms_key_version
  @kms_key_version
end

#last_rotation_timestamp_microsFixnum

Output only. The timestamp of the last key rotation. Corresponds to the JSON property lastRotationTimestampMicros

Returns:

  • (Fixnum)


17726
17727
17728
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17726

def last_rotation_timestamp_micros
  @last_rotation_timestamp_micros
end

#nameString

Required. Name of the CmekConfig, of the form projects/project/locations/ location/cmekConfig or projects/project/locations/location/cmekConfigs/ cmekConfig`. Corresponds to the JSON propertyname`

Returns:

  • (String)


17733
17734
17735
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17733

def name
  @name
end

#single_region_keysArray<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSingleRegionKey>

Optional. Single-regional CMEKs that are required for some VAIS features. Corresponds to the JSON property singleRegionKeys



17738
17739
17740
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17738

def single_region_keys
  @single_region_keys
end

#stateString

Output only. State of the CmekConfig. Corresponds to the JSON property state

Returns:

  • (String)


17743
17744
17745
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17743

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17750
17751
17752
17753
17754
17755
17756
17757
17758
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 17750

def update!(**args)
  @is_default = args[:is_default] if args.key?(:is_default)
  @kms_key = args[:kms_key] if args.key?(:kms_key)
  @kms_key_version = args[:kms_key_version] if args.key?(:kms_key_version)
  @last_rotation_timestamp_micros = args[:last_rotation_timestamp_micros] if args.key?(:last_rotation_timestamp_micros)
  @name = args[:name] if args.key?(:name)
  @single_region_keys = args[:single_region_keys] if args.key?(:single_region_keys)
  @state = args[:state] if args.key?(:state)
end