Class: Google::Apis::CloudbuildV1::Secrets
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1::Secrets
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudbuild_v1/classes.rb,
lib/google/apis/cloudbuild_v1/representations.rb,
lib/google/apis/cloudbuild_v1/representations.rb
Overview
Secrets and secret environment variables.
Instance Attribute Summary collapse
-
#inline ⇒ Array<Google::Apis::CloudbuildV1::InlineSecret>
Secrets encrypted with KMS key and the associated secret environment variable.
-
#secret_manager ⇒ Array<Google::Apis::CloudbuildV1::SecretManagerSecret>
Secrets in Secret Manager and associated secret environment variable.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Secrets
constructor
A new instance of Secrets.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Secrets
Returns a new instance of Secrets.
2644 2645 2646 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2644 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inline ⇒ Array<Google::Apis::CloudbuildV1::InlineSecret>
Secrets encrypted with KMS key and the associated secret environment variable.
Corresponds to the JSON property inline
2637 2638 2639 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2637 def inline @inline end |
#secret_manager ⇒ Array<Google::Apis::CloudbuildV1::SecretManagerSecret>
Secrets in Secret Manager and associated secret environment variable.
Corresponds to the JSON property secretManager
2642 2643 2644 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2642 def secret_manager @secret_manager end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2649 2650 2651 2652 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2649 def update!(**args) @inline = args[:inline] if args.key?(:inline) @secret_manager = args[:secret_manager] if args.key?(:secret_manager) end |