Class: Google::Apis::ApimV1alpha::ObservationJob
- Inherits:
-
Object
- Object
- Google::Apis::ApimV1alpha::ObservationJob
- 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
-
#create_time ⇒ String
Output only.
-
#name ⇒ String
Identifier.
-
#sources ⇒ Array<String>
Optional.
-
#state ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ObservationJob
constructor
A new instance of ObservationJob.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_time ⇒ String
Output only. [Output only] Create time stamp
Corresponds to the JSON property createTime
796 797 798 |
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 796 def create_time @create_time end |
#name ⇒ String
Identifier. name of resource Format: projects/project/locations/location/
observationJobs/observation_job
Corresponds to the JSON property name
802 803 804 |
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 802 def name @name end |
#sources ⇒ Array<String>
Optional. These should be of the same kind of source.
Corresponds to the JSON property sources
807 808 809 |
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 807 def sources @sources end |
#state ⇒ String
Output only. The observation job state
Corresponds to the JSON property state
812 813 814 |
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 812 def state @state end |
#update_time ⇒ String
Output only. [Output only] Update time stamp
Corresponds to the JSON property updateTime
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 |