Class: Google::Apis::ApimV1alpha::ObservationJob

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/apim_v1alpha/classes.rb,
lib/google/apis/apim_v1alpha/representations.rb,
lib/google/apis/apim_v1alpha/representations.rb

Overview

Message describing ObservationJob object

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ObservationJob

Returns a new instance of ObservationJob.



819
820
821
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 819

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

Instance Attribute Details

#create_timeString

Output only. [Output only] Create time stamp Corresponds to the JSON property createTime

Returns:

  • (String)


796
797
798
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 796

def create_time
  @create_time
end

#nameString

Identifier. name of resource Format: projects/project/locations/location/ observationJobs/observation_job Corresponds to the JSON property name

Returns:

  • (String)


802
803
804
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 802

def name
  @name
end

#sourcesArray<String>

Optional. These should be of the same kind of source. Corresponds to the JSON property sources

Returns:

  • (Array<String>)


807
808
809
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 807

def sources
  @sources
end

#stateString

Output only. The observation job state Corresponds to the JSON property state

Returns:

  • (String)


812
813
814
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 812

def state
  @state
end

#update_timeString

Output only. [Output only] Update time stamp Corresponds to the JSON property updateTime

Returns:

  • (String)


817
818
819
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 817

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



824
825
826
827
828
829
830
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 824

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @name = args[:name] if args.key?(:name)
  @sources = args[:sources] if args.key?(:sources)
  @state = args[:state] if args.key?(:state)
  @update_time = args[:update_time] if args.key?(:update_time)
end