class Google::Apis::CloudkmsV1::LocationMetadata
Cloud KMS metadata for the given google.cloud.location.Location.
Attributes
ekm_available[RW]
Indicates whether CryptoKeys with protection_level EXTERNAL can be created in this location. Corresponds to the JSON property `ekmAvailable` @return [Boolean]
ekm_available?[RW]
Indicates whether CryptoKeys with protection_level EXTERNAL can be created in this location. Corresponds to the JSON property `ekmAvailable` @return [Boolean]
hsm_available[RW]
Indicates whether CryptoKeys with protection_level HSM can be created in this location. Corresponds to the JSON property `hsmAvailable` @return [Boolean]
hsm_available?[RW]
Indicates whether CryptoKeys with protection_level HSM can be created in this location. Corresponds to the JSON property `hsmAvailable` @return [Boolean]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudkms_v1/classes.rb, line 1501 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudkms_v1/classes.rb, line 1506 def update!(**args) @ekm_available = args[:ekm_available] if args.key?(:ekm_available) @hsm_available = args[:hsm_available] if args.key?(:hsm_available) end