Class: Google::Apis::RunV1alpha1::CloudAuditLogsSourceStatus

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CloudAuditLogsSourceStatus

Returns a new instance of CloudAuditLogsSourceStatus.



436
437
438
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 436

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

Instance Attribute Details

#conditionsArray<Google::Apis::RunV1alpha1::Condition>

Array of observed CloudAuditLogsSourceConditions, indicating the current state of the CloudAuditLogsSource. Corresponds to the JSON property conditions



421
422
423
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 421

def conditions
  @conditions
end

#observed_generationFixnum

ObservedGeneration is the 'Generation' of the CloudAuditLogsSource that was last processed by the controller. Corresponds to the JSON property observedGeneration

Returns:

  • (Fixnum)


427
428
429
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 427

def observed_generation
  @observed_generation
end

#sink_uriString

SinkURI is the current active sink URI that has been configured for the Source. +optional Corresponds to the JSON property sinkUri

Returns:

  • (String)


434
435
436
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 434

def sink_uri
  @sink_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



441
442
443
444
445
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 441

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