Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1CmekConfig
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1CmekConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Configurations used to enable CMEK data encryption with Cloud KMS keys.
Instance Attribute Summary collapse
-
#is_default ⇒ Boolean
(also: #is_default?)
Output only.
-
#kms_key ⇒ String
Kms key resource name which will be used to encrypt resources
projects/project/locations/location/keyRings/keyRing/cryptoKeys/keyId``. -
#kms_key_version ⇒ String
Kms key version resource name which will be used to encrypt resources
/ cryptoKeyVersions/keyVersion``. -
#last_rotation_timestamp_micros ⇒ Fixnum
Output only.
-
#name ⇒ String
Required.
-
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1CmekConfig
constructor
A new instance of GoogleCloudDiscoveryengineV1CmekConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1CmekConfig
Returns a new instance of GoogleCloudDiscoveryengineV1CmekConfig.
793 794 795 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 793 def initialize(**args) update!(**args) end |
Instance Attribute Details
#is_default ⇒ Boolean Also known as: is_default?
Output only. The default CmekConfig for the Customer.
Corresponds to the JSON property isDefault
761 762 763 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 761 def is_default @is_default end |
#kms_key ⇒ String
Kms key resource name which will be used to encrypt resources projects/
project/locations/location/keyRings/keyRing/cryptoKeys/keyId`.
Corresponds to the JSON propertykmsKey`
768 769 770 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 768 def kms_key @kms_key end |
#kms_key_version ⇒ String
Kms key version resource name which will be used to encrypt resources /
cryptoKeyVersions/keyVersion`.
Corresponds to the JSON propertykmsKeyVersion`
774 775 776 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 774 def kms_key_version @kms_key_version end |
#last_rotation_timestamp_micros ⇒ Fixnum
Output only. The timestamp of the last key rotation.
Corresponds to the JSON property lastRotationTimestampMicros
779 780 781 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 779 def @last_rotation_timestamp_micros end |
#name ⇒ String
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`
786 787 788 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 786 def name @name end |
#state ⇒ String
Output only. State of the CmekConfig.
Corresponds to the JSON property state
791 792 793 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 791 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
798 799 800 801 802 803 804 805 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 798 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 |