Class: Google::Apis::CloudbuildV1alpha2::InlineSecret

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

Overview

Pairs a set of secret environment variables mapped to encrypted values with the Cloud KMS key to use to decrypt the value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InlineSecret

Returns a new instance of InlineSecret.



1115
1116
1117
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1115

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

Instance Attribute Details

#env_mapHash<String,String>

Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets. Corresponds to the JSON property envMap

Returns:

  • (Hash<String,String>)


1107
1108
1109
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1107

def env_map
  @env_map
end

#kms_key_nameString

Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/ Corresponds to the JSON property kmsKeyName

Returns:

  • (String)


1113
1114
1115
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1113

def kms_key_name
  @kms_key_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1120
1121
1122
1123
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1120

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