Class: Google::Apis::CloudbuildV1alpha2::NotifierSecret

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

NotifierSecret is the container that maps a secret name (reference) to its Google Cloud Secret Manager resource path.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NotifierSecret

Returns a new instance of NotifierSecret.



1302
1303
1304
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1302

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

Instance Attribute Details

#nameString

Name is the local name of the secret, such as the verbatim string "my-smtp- password". Corresponds to the JSON property name

Returns:

  • (String)


1292
1293
1294
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1292

def name
  @name
end

#valueString

Value is interpreted to be a resource path for fetching the actual (versioned) secret data for this secret. For example, this would be a Google Cloud Secret Manager secret version resource path like: "projects/my-project/secrets/my- secret/versions/latest". Corresponds to the JSON property value

Returns:

  • (String)


1300
1301
1302
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1300

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1307
1308
1309
1310
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1307

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