Class: Google::Apis::ClouddeployV1::ListJobRunsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::ListJobRunsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb
Overview
ListJobRunsResponse is the response object returned by ListJobRuns.
Instance Attribute Summary collapse
-
#job_runs ⇒ Array<Google::Apis::ClouddeployV1::JobRun>
The
JobRunobjects. -
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#unreachable ⇒ Array<String>
Locations that could not be reached Corresponds to the JSON property
unreachable.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListJobRunsResponse
constructor
A new instance of ListJobRunsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListJobRunsResponse
Returns a new instance of ListJobRunsResponse.
3016 3017 3018 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3016 def initialize(**args) update!(**args) end |
Instance Attribute Details
#job_runs ⇒ Array<Google::Apis::ClouddeployV1::JobRun>
The JobRun objects.
Corresponds to the JSON property jobRuns
3003 3004 3005 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3003 def job_runs @job_runs end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
3009 3010 3011 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3009 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached
Corresponds to the JSON property unreachable
3014 3015 3016 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3014 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3021 3022 3023 3024 3025 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3021 def update!(**args) @job_runs = args[:job_runs] if args.key?(:job_runs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |