Class: Google::Apis::CloudfunctionsV1::ListFunctionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV1::ListFunctionsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudfunctions_v1/classes.rb,
lib/google/apis/cloudfunctions_v1/representations.rb,
lib/google/apis/cloudfunctions_v1/representations.rb
Overview
Response for the ListFunctions
method.
Instance Attribute Summary collapse
-
#functions ⇒ Array<Google::Apis::CloudfunctionsV1::CloudFunction>
The functions that match the request.
-
#next_page_token ⇒ String
If not empty, indicates that there may be more functions that match the request; this value should be passed in a new google.cloud.functions.v1.
-
#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.
1379 1380 1381 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1379 def initialize(**args) update!(**args) end |
Instance Attribute Details
#functions ⇒ Array<Google::Apis::CloudfunctionsV1::CloudFunction>
The functions that match the request.
Corresponds to the JSON property functions
1364 1365 1366 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1364 def functions @functions end |
#next_page_token ⇒ String
If not empty, indicates that there may be more functions that match the
request; this value should be passed in a new google.cloud.functions.v1.
ListFunctionsRequest to get more functions.
Corresponds to the JSON property nextPageToken
1371 1372 1373 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1371 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
1377 1378 1379 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1377 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1384 1385 1386 1387 1388 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1384 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 |