Class: Google::Apis::CloudresourcemanagerV3::SearchOrganizationsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudresourcemanager_v3/classes.rb,
lib/google/apis/cloudresourcemanager_v3/representations.rb,
lib/google/apis/cloudresourcemanager_v3/representations.rb

Overview

The response returned from the SearchOrganizations method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchOrganizationsResponse

Returns a new instance of SearchOrganizationsResponse.



1644
1645
1646
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 1644

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


1637
1638
1639
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 1637

def next_page_token
  @next_page_token
end

#organizationsArray<Google::Apis::CloudresourcemanagerV3::Organization>

The list of Organizations that matched the search query, possibly paginated. Corresponds to the JSON property organizations



1642
1643
1644
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 1642

def organizations
  @organizations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1649
1650
1651
1652
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 1649

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @organizations = args[:organizations] if args.key?(:organizations)
end