Class: Google::Apis::CloudresourcemanagerV3::SearchFoldersResponse

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 message for searching folders.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchFoldersResponse

Returns a new instance of SearchFoldersResponse.



1615
1616
1617
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 1615

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

Instance Attribute Details

#foldersArray<Google::Apis::CloudresourcemanagerV3::Folder>

A possibly paginated folder search results. the specified parent resource. Corresponds to the JSON property folders



1607
1608
1609
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 1607

def folders
  @folders
end

#next_page_tokenString

A pagination token returned from a previous call to SearchFolders that indicates from where searching should continue. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1613
1614
1615
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 1613

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1620
1621
1622
1623
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 1620

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