Class: Google::Apis::CloudresourcemanagerV1::SearchOrganizationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudresourcemanagerV1::SearchOrganizationsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudresourcemanager_v1/classes.rb,
lib/google/apis/cloudresourcemanager_v1/representations.rb,
lib/google/apis/cloudresourcemanager_v1/representations.rb
Overview
The response returned from the SearchOrganizations
method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A pagination token to be used to retrieve the next page of results.
-
#organizations ⇒ Array<Google::Apis::CloudresourcemanagerV1::Organization>
The list of Organizations that matched the search query, possibly paginated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchOrganizationsResponse
constructor
A new instance of SearchOrganizationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SearchOrganizationsResponse
Returns a new instance of SearchOrganizationsResponse.
1816 1817 1818 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1816 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A pagination token to be used to retrieve the next page of results. If the
result is too large to fit within the page size specified in the request, this
field will be set with a token that can be used to fetch the next page of
results. If this field is empty, it indicates that this response contains the
last page of results.
Corresponds to the JSON property nextPageToken
1809 1810 1811 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1809 def next_page_token @next_page_token end |
#organizations ⇒ Array<Google::Apis::CloudresourcemanagerV1::Organization>
The list of Organizations that matched the search query, possibly paginated.
Corresponds to the JSON property organizations
1814 1815 1816 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1814 def organizations @organizations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1821 1822 1823 1824 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1821 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @organizations = args[:organizations] if args.key?(:organizations) end |