Show / Hide Table of Contents

Class ListFunctionsResponse

Response for the ListFunctions method.

Inheritance
System.Object
ListFunctionsResponse
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudFunctions.v1.Data
Assembly: Google.Apis.CloudFunctions.v1.dll
Syntax
public class ListFunctionsResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Functions

The functions that match the request.

Declaration
[JsonProperty("functions")]
public virtual IList<CloudFunction> Functions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<CloudFunction>

NextPageToken

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.

Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type Description
System.String

Unreachable

Locations that could not be reached. The response does not include any functions from these locations.

Declaration
[JsonProperty("unreachable")]
public virtual IList<string> Unreachable { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
In This Article
Back to top