Class: Google::Apis::CloudresourcemanagerV2::SearchFoldersResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudresourcemanager_v2/classes.rb,
lib/google/apis/cloudresourcemanager_v2/representations.rb,
lib/google/apis/cloudresourcemanager_v2/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.



986
987
988
# File 'lib/google/apis/cloudresourcemanager_v2/classes.rb', line 986

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

Instance Attribute Details

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

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



978
979
980
# File 'lib/google/apis/cloudresourcemanager_v2/classes.rb', line 978

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)


984
985
986
# File 'lib/google/apis/cloudresourcemanager_v2/classes.rb', line 984

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



991
992
993
994
# File 'lib/google/apis/cloudresourcemanager_v2/classes.rb', line 991

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