Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.AgentResource.EnvironmentsResource.ListRequest

Returns the list of all non-draft environments of the specified agent.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>
ProjectsResource.LocationsResource.AgentResource.EnvironmentsResource.ListRequest
Implements
IClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>
IClientServiceRequest
Inherited Members
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.Xgafv
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.AccessToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.Alt
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.Callback
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.Fields
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.Key
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.OauthToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.PrettyPrint
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.QuotaUser
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.UploadType
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.UploadProtocol
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.Execute()
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.ExecuteAsStream()
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.ExecuteAsync()
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.GenerateRequestUri()
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.GetBody()
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.ETagAction
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.ModifyRequest
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.ValidateParameters
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.RequestParameters
ClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>.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<GoogleCloudDialogflowV2ListEnvironmentsResponse>, IClientServiceRequest<GoogleCloudDialogflowV2ListEnvironmentsResponse>, 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.GoogleCloudDialogflowV2ListEnvironmentsResponse>.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.GoogleCloudDialogflowV2ListEnvironmentsResponse>.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 environments from. Format: - 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.GoogleCloudDialogflowV2ListEnvironmentsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top