Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CmekConfig

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) ⇒ GoogleCloudDiscoveryengineV1CmekConfig

Returns a new instance of GoogleCloudDiscoveryengineV1CmekConfig.



2483
2484
2485
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2483

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)


2451
2452
2453
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2451

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)


2458
2459
2460
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2458

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)


2464
2465
2466
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2464

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)


2469
2470
2471
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2469

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)


2476
2477
2478
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2476

def name
  @name
end

#stateString

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

Returns:

  • (String)


2481
2482
2483
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2481

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2488
2489
2490
2491
2492
2493
2494
2495
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2488

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)
  @state = args[:state] if args.key?(:state)
end