class Google::Apis::CloudfunctionsV1::ListFunctionsResponse
Response for the `ListFunctions` method.
Attributes
functions[RW]
The functions that match the request. Corresponds to the JSON property `functions` @return [Array<Google::Apis::CloudfunctionsV1::CloudFunction>]
next_page_token[RW]
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` @return [String]
unreachable[RW]
Locations that could not be reached. The response does not include any functions from these locations. Corresponds to the JSON property `unreachable` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudfunctions_v1/classes.rb, line 754 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudfunctions_v1/classes.rb, line 759 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