Class: Google::Apis::DeveloperconnectV1::ListDeploymentEventsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DeveloperconnectV1::ListDeploymentEventsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/developerconnect_v1/classes.rb,
lib/google/apis/developerconnect_v1/representations.rb,
lib/google/apis/developerconnect_v1/representations.rb
Overview
Response to listing DeploymentEvents.
Instance Attribute Summary collapse
-
#deployment_events ⇒ Array<Google::Apis::DeveloperconnectV1::DeploymentEvent>
The list of DeploymentEvents.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDeploymentEventsResponse
constructor
A new instance of ListDeploymentEventsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDeploymentEventsResponse
Returns a new instance of ListDeploymentEventsResponse.
1851 1852 1853 |
# File 'lib/google/apis/developerconnect_v1/classes.rb', line 1851 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deployment_events ⇒ Array<Google::Apis::DeveloperconnectV1::DeploymentEvent>
The list of DeploymentEvents.
Corresponds to the JSON property deploymentEvents
1843 1844 1845 |
# File 'lib/google/apis/developerconnect_v1/classes.rb', line 1843 def deployment_events @deployment_events 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
1849 1850 1851 |
# File 'lib/google/apis/developerconnect_v1/classes.rb', line 1849 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1856 1857 1858 1859 |
# File 'lib/google/apis/developerconnect_v1/classes.rb', line 1856 def update!(**args) @deployment_events = args[:deployment_events] if args.key?(:deployment_events) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |