Class: Google::Apis::CloudsupportV2beta::ListCasesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudsupportV2beta::ListCasesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsupport_v2beta/classes.rb,
lib/google/apis/cloudsupport_v2beta/representations.rb,
lib/google/apis/cloudsupport_v2beta/representations.rb
Overview
The response message for the ListCases endpoint.
Instance Attribute Summary collapse
-
#cases ⇒ Array<Google::Apis::CloudsupportV2beta::Case>
The list of cases associated with the cloud resource, after any filters have been applied.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCasesResponse
constructor
A new instance of ListCasesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCasesResponse
Returns a new instance of ListCasesResponse.
752 753 754 |
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 752 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cases ⇒ Array<Google::Apis::CloudsupportV2beta::Case>
The list of cases associated with the cloud resource, after any filters have
been applied.
Corresponds to the JSON property cases
743 744 745 |
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 743 def cases @cases end |
#next_page_token ⇒ String
A token to retrieve the next page of results. This should be set in the
page_token field of subsequent ListCasesRequest message that is issued. If
unspecified, there are no more results to retrieve.
Corresponds to the JSON property nextPageToken
750 751 752 |
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 750 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
757 758 759 760 |
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 757 def update!(**args) @cases = args[:cases] if args.key?(:cases) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |