Class: Google::Apis::CloudfunctionsV2::ListFunctionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV2::ListFunctionsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudfunctions_v2/classes.rb,
lib/google/apis/cloudfunctions_v2/representations.rb,
lib/google/apis/cloudfunctions_v2/representations.rb
Overview
Response for the ListFunctions
method.
Instance Attribute Summary collapse
-
#functions ⇒ Array<Google::Apis::CloudfunctionsV2::Function>
The functions that match the request.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListFunctionsResponse
constructor
A new instance of ListFunctionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListFunctionsResponse
Returns a new instance of ListFunctionsResponse.
994 995 996 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 994 def initialize(**args) update!(**args) end |
Instance Attribute Details
#functions ⇒ Array<Google::Apis::CloudfunctionsV2::Function>
The functions that match the request.
Corresponds to the JSON property functions
980 981 982 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 980 def functions @functions end |
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
986 987 988 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 986 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached. The response does not include any
functions from these locations.
Corresponds to the JSON property unreachable
992 993 994 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 992 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
999 1000 1001 1002 1003 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 999 def update!(**args) @functions = args[:functions] if args.key?(:functions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |