Class: Google::Apis::CloudbuildV1alpha1::NotifierSecretRef
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1alpha1::NotifierSecretRef
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/cloudbuild_v1alpha1/classes.rb,
generated/google/apis/cloudbuild_v1alpha1/representations.rb,
generated/google/apis/cloudbuild_v1alpha1/representations.rb
Overview
NotifierSecretRef contains the reference to a secret stored in the corresponding NotifierSpec.
Instance Attribute Summary collapse
-
#secret_ref ⇒ String
The value of
secret_ref
should be aname
that is registered in aSecret
in thesecrets
list of theSpec
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NotifierSecretRef
constructor
A new instance of NotifierSecretRef.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NotifierSecretRef
Returns a new instance of NotifierSecretRef.
915 916 917 |
# File 'generated/google/apis/cloudbuild_v1alpha1/classes.rb', line 915 def initialize(**args) update!(**args) end |
Instance Attribute Details
#secret_ref ⇒ String
The value of secret_ref
should be a name
that is registered in a Secret
in the secrets
list of the Spec
.
Corresponds to the JSON property secretRef
913 914 915 |
# File 'generated/google/apis/cloudbuild_v1alpha1/classes.rb', line 913 def secret_ref @secret_ref end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
920 921 922 |
# File 'generated/google/apis/cloudbuild_v1alpha1/classes.rb', line 920 def update!(**args) @secret_ref = args[:secret_ref] if args.key?(:secret_ref) end |