Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.AgentResource.VersionsResource.ListRequest

Returns the list of all versions of the specified agent.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>
ProjectsResource.LocationsResource.AgentResource.VersionsResource.ListRequest
Implements
IClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>
IClientServiceRequest
Inherited Members
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.Xgafv
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.AccessToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.Alt
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.Callback
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.Fields
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.Key
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.OauthToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.PrettyPrint
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.QuotaUser
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.UploadType
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.UploadProtocol
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.Execute()
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.ExecuteAsStream()
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.ExecuteAsync()
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.GenerateRequestUri()
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.GetBody()
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.ETagAction
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.ModifyRequest
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.ValidateParameters
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.RequestParameters
ClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
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.Dialogflow.v2
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class ListRequest : DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>, IClientServiceRequest<GoogleCloudDialogflowV2ListVersionsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type Name Description
IClientService service
System.String parent

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Dialogflow.v2.Data.GoogleCloudDialogflowV2ListVersionsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Dialogflow.v2.Data.GoogleCloudDialogflowV2ListVersionsResponse>.MethodName

PageSize

Optional. The maximum number of items to return in a single page. By default 100 and at most 1000.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

Optional. The next_page_token value returned from a previous list request.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

Parent

Required. The agent to list all versions from. Supported formats: - projects//agent - projects//locations//agent

Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Dialogflow.v2.Data.GoogleCloudDialogflowV2ListVersionsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Dialogflow.v2.DialogflowBaseServiceRequest<Google.Apis.Dialogflow.v2.Data.GoogleCloudDialogflowV2ListVersionsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top