Class: Google::Apis::RunV1alpha1::TriggerStatus
- Inherits:
-
Object
- Object
- Google::Apis::RunV1alpha1::TriggerStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/run_v1alpha1/classes.rb,
generated/google/apis/run_v1alpha1/representations.rb,
generated/google/apis/run_v1alpha1/representations.rb
Overview
TriggerStatus represents the current state of a Trigger.
Instance Attribute Summary collapse
-
#conditions ⇒ Array<Google::Apis::RunV1alpha1::TriggerCondition>
Array of observed TriggerConditions, indicating the current state of the Trigger.
-
#observed_generation ⇒ Fixnum
ObservedGeneration is the 'Generation' of the Trigger that was last processed by the controller.
-
#subscriber_uri ⇒ String
SubscriberURI is the resolved URI of the receiver for this Trigger.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TriggerStatus
constructor
A new instance of TriggerStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TriggerStatus
Returns a new instance of TriggerStatus.
5082 5083 5084 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 5082 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conditions ⇒ Array<Google::Apis::RunV1alpha1::TriggerCondition>
Array of observed TriggerConditions, indicating the current state
of the Trigger.
Corresponds to the JSON property conditions
5069 5070 5071 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 5069 def conditions @conditions end |
#observed_generation ⇒ Fixnum
ObservedGeneration is the 'Generation' of the Trigger that
was last processed by the controller.
Corresponds to the JSON property observedGeneration
5075 5076 5077 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 5075 def observed_generation @observed_generation end |
#subscriber_uri ⇒ String
SubscriberURI is the resolved URI of the receiver for this Trigger.
Corresponds to the JSON property subscriberUri
5080 5081 5082 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 5080 def subscriber_uri @subscriber_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5087 5088 5089 5090 5091 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 5087 def update!(**args) @conditions = args[:conditions] if args.key?(:conditions) @observed_generation = args[:observed_generation] if args.key?(:observed_generation) @subscriber_uri = args[:subscriber_uri] if args.key?(:subscriber_uri) end |