Class: Google::Apis::RunV1alpha1::CloudAuditLogsSourceStatus
- Inherits:
-
Object
- Object
- Google::Apis::RunV1alpha1::CloudAuditLogsSourceStatus
- 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
CloudAuditLogsSourceStatus represents the current state of a CloudAuditLogsSource.
Instance Attribute Summary collapse
-
#conditions ⇒ Array<Google::Apis::RunV1alpha1::Condition>
Array of observed CloudAuditLogsSourceConditions, indicating the current state of the CloudAuditLogsSource.
-
#observed_generation ⇒ Fixnum
ObservedGeneration is the 'Generation' of the CloudAuditLogsSource that was last processed by the controller.
-
#sink_uri ⇒ String
SinkURI is the current active sink URI that has been configured for the Source.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudAuditLogsSourceStatus
constructor
A new instance of CloudAuditLogsSourceStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloudAuditLogsSourceStatus
Returns a new instance of CloudAuditLogsSourceStatus.
373 374 375 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 373 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conditions ⇒ Array<Google::Apis::RunV1alpha1::Condition>
Array of observed CloudAuditLogsSourceConditions, indicating the current state
of the CloudAuditLogsSource.
Corresponds to the JSON property conditions
359 360 361 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 359 def conditions @conditions end |
#observed_generation ⇒ Fixnum
ObservedGeneration is the 'Generation' of the CloudAuditLogsSource that was
last processed by the controller.
Corresponds to the JSON property observedGeneration
365 366 367 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 365 def observed_generation @observed_generation end |
#sink_uri ⇒ String
SinkURI is the current active sink URI that has been configured for the Source.
+optional
Corresponds to the JSON property sinkUri
371 372 373 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 371 def sink_uri @sink_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
378 379 380 381 382 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 378 def update!(**args) @conditions = args[:conditions] if args.key?(:conditions) @observed_generation = args[:observed_generation] if args.key?(:observed_generation) @sink_uri = args[:sink_uri] if args.key?(:sink_uri) end |