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.
1313 1314 1315 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1313 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
1298 1299 1300 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1298 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
1305 1306 1307 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1305 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
1311 1312 1313 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1311 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1318 1319 1320 1321 1322 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1318 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 |