Class: Google::Apis::HealthcareV1::KmsWrappedCryptoKey

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

Overview

Include to use an existing data crypto key wrapped by KMS. The wrapped key must be a 128-, 192-, or 256-bit key. The key must grant the Cloud IAM permission cloudkms.cryptoKeyVersions.useToDecrypt to the project's Cloud Healthcare Service Agent service account. For more information, see Creating a wrapped key.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ KmsWrappedCryptoKey

Returns a new instance of KmsWrappedCryptoKey.



2912
2913
2914
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2912

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

Instance Attribute Details

#crypto_keyString

Required. The resource name of the KMS CryptoKey to use for unwrapping. For example, projects/project_id/locations/location_id/keyRings/keyring/ cryptoKeys/key`. Corresponds to the JSON propertycryptoKey`

Returns:

  • (String)


2904
2905
2906
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2904

def crypto_key
  @crypto_key
end

#wrapped_keyString

Required. The wrapped data crypto key. Corresponds to the JSON property wrappedKey NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


2910
2911
2912
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2910

def wrapped_key
  @wrapped_key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2917
2918
2919
2920
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2917

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