Dialogflow v3 API - Class IntentsClient (2.18.0)

public abstract class IntentsClient

Reference documentation and code samples for the Dialogflow v3 API class IntentsClient.

Intents client wrapper, for convenient use.

Inheritance

object > IntentsClient

Derived Types

Namespace

Google.Cloud.Dialogflow.Cx.V3

Assembly

Google.Cloud.Dialogflow.Cx.V3.dll

Remarks

Service for managing [Intents][google.cloud.dialogflow.cx.v3.Intent].

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

The default endpoint for the Intents service, which is a host of "dialogflow.googleapis.com" and a port of 443.

Property Value
Type Description
string

DefaultScopes

public static IReadOnlyList<string> DefaultScopes { get; }

The default Intents scopes.

Property Value
Type Description
IReadOnlyListstring
Remarks

ExportIntentsOperationsClient

public virtual OperationsClient ExportIntentsOperationsClient { get; }

The long-running operations client for ExportIntents.

Property Value
Type Description
OperationsClient

GrpcClient

public virtual Intents.IntentsClient GrpcClient { get; }

The underlying gRPC Intents client

Property Value
Type Description
IntentsIntentsClient

ImportIntentsOperationsClient

public virtual OperationsClient ImportIntentsOperationsClient { get; }

The long-running operations client for ImportIntents.

Property Value
Type Description
OperationsClient

LocationsClient

public virtual LocationsClient LocationsClient { get; }

The LocationsClient associated with this client.

Property Value
Type Description
LocationsClient

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
Type Description
ServiceMetadata

Methods

Create()

public static IntentsClient Create()

Synchronously creates a IntentsClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use IntentsClientBuilder.

Returns
Type Description
IntentsClient

The created IntentsClient.

CreateAsync(CancellationToken)

public static Task<IntentsClient> CreateAsync(CancellationToken cancellationToken = default)

Asynchronously creates a IntentsClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use IntentsClientBuilder.

Parameter
Name Description
cancellationToken CancellationToken

The CancellationToken to use while creating the client.

Returns
Type Description
TaskIntentsClient

The task representing the created IntentsClient.

CreateIntent(AgentName, Intent, CallSettings)

public virtual Intent CreateIntent(AgentName parent, Intent intent, CallSettings callSettings = null)

Creates an intent in the specified agent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
parent AgentName

Required. The agent to create an intent for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>.

intent Intent

Required. The intent to create.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Intent

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
AgentName parent = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]");
Intent intent = new Intent();
// Make the request
Intent response = intentsClient.CreateIntent(parent, intent);

CreateIntent(CreateIntentRequest, CallSettings)

public virtual Intent CreateIntent(CreateIntentRequest request, CallSettings callSettings = null)

Creates an intent in the specified agent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
request CreateIntentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Intent

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
CreateIntentRequest request = new CreateIntentRequest
{
    ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
    Intent = new Intent(),
    LanguageCode = "",
};
// Make the request
Intent response = intentsClient.CreateIntent(request);

CreateIntent(string, Intent, CallSettings)

public virtual Intent CreateIntent(string parent, Intent intent, CallSettings callSettings = null)

Creates an intent in the specified agent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
parent string

Required. The agent to create an intent for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>.

intent Intent

Required. The intent to create.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Intent

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]";
Intent intent = new Intent();
// Make the request
Intent response = intentsClient.CreateIntent(parent, intent);

CreateIntentAsync(AgentName, Intent, CallSettings)

public virtual Task<Intent> CreateIntentAsync(AgentName parent, Intent intent, CallSettings callSettings = null)

Creates an intent in the specified agent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
parent AgentName

Required. The agent to create an intent for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>.

intent Intent

Required. The intent to create.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
AgentName parent = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]");
Intent intent = new Intent();
// Make the request
Intent response = await intentsClient.CreateIntentAsync(parent, intent);

CreateIntentAsync(AgentName, Intent, CancellationToken)

public virtual Task<Intent> CreateIntentAsync(AgentName parent, Intent intent, CancellationToken cancellationToken)

Creates an intent in the specified agent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
parent AgentName

Required. The agent to create an intent for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>.

intent Intent

Required. The intent to create.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
AgentName parent = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]");
Intent intent = new Intent();
// Make the request
Intent response = await intentsClient.CreateIntentAsync(parent, intent);

CreateIntentAsync(CreateIntentRequest, CallSettings)

public virtual Task<Intent> CreateIntentAsync(CreateIntentRequest request, CallSettings callSettings = null)

Creates an intent in the specified agent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
request CreateIntentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
CreateIntentRequest request = new CreateIntentRequest
{
    ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
    Intent = new Intent(),
    LanguageCode = "",
};
// Make the request
Intent response = await intentsClient.CreateIntentAsync(request);

CreateIntentAsync(CreateIntentRequest, CancellationToken)

public virtual Task<Intent> CreateIntentAsync(CreateIntentRequest request, CancellationToken cancellationToken)

Creates an intent in the specified agent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
request CreateIntentRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
CreateIntentRequest request = new CreateIntentRequest
{
    ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
    Intent = new Intent(),
    LanguageCode = "",
};
// Make the request
Intent response = await intentsClient.CreateIntentAsync(request);

CreateIntentAsync(string, Intent, CallSettings)

public virtual Task<Intent> CreateIntentAsync(string parent, Intent intent, CallSettings callSettings = null)

Creates an intent in the specified agent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
parent string

Required. The agent to create an intent for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>.

intent Intent

Required. The intent to create.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]";
Intent intent = new Intent();
// Make the request
Intent response = await intentsClient.CreateIntentAsync(parent, intent);

CreateIntentAsync(string, Intent, CancellationToken)

public virtual Task<Intent> CreateIntentAsync(string parent, Intent intent, CancellationToken cancellationToken)

Creates an intent in the specified agent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
parent string

Required. The agent to create an intent for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>.

intent Intent

Required. The intent to create.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]";
Intent intent = new Intent();
// Make the request
Intent response = await intentsClient.CreateIntentAsync(parent, intent);

DeleteIntent(DeleteIntentRequest, CallSettings)

public virtual void DeleteIntent(DeleteIntentRequest request, CallSettings callSettings = null)

Deletes the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
request DeleteIntentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
DeleteIntentRequest request = new DeleteIntentRequest
{
    IntentName = IntentName.FromProjectLocationAgentIntent("[PROJECT]", "[LOCATION]", "[AGENT]", "[INTENT]"),
};
// Make the request
intentsClient.DeleteIntent(request);

DeleteIntent(IntentName, CallSettings)

public virtual void DeleteIntent(IntentName name, CallSettings callSettings = null)

Deletes the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
name IntentName

Required. The name of the intent to delete. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
IntentName name = IntentName.FromProjectLocationAgentIntent("[PROJECT]", "[LOCATION]", "[AGENT]", "[INTENT]");
// Make the request
intentsClient.DeleteIntent(name);

DeleteIntent(string, CallSettings)

public virtual void DeleteIntent(string name, CallSettings callSettings = null)

Deletes the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
name string

Required. The name of the intent to delete. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]/intents/[INTENT]";
// Make the request
intentsClient.DeleteIntent(name);

DeleteIntentAsync(DeleteIntentRequest, CallSettings)

public virtual Task DeleteIntentAsync(DeleteIntentRequest request, CallSettings callSettings = null)

Deletes the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
request DeleteIntentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
DeleteIntentRequest request = new DeleteIntentRequest
{
    IntentName = IntentName.FromProjectLocationAgentIntent("[PROJECT]", "[LOCATION]", "[AGENT]", "[INTENT]"),
};
// Make the request
await intentsClient.DeleteIntentAsync(request);

DeleteIntentAsync(DeleteIntentRequest, CancellationToken)

public virtual Task DeleteIntentAsync(DeleteIntentRequest request, CancellationToken cancellationToken)

Deletes the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
request DeleteIntentRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
DeleteIntentRequest request = new DeleteIntentRequest
{
    IntentName = IntentName.FromProjectLocationAgentIntent("[PROJECT]", "[LOCATION]", "[AGENT]", "[INTENT]"),
};
// Make the request
await intentsClient.DeleteIntentAsync(request);

DeleteIntentAsync(IntentName, CallSettings)

public virtual Task DeleteIntentAsync(IntentName name, CallSettings callSettings = null)

Deletes the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
name IntentName

Required. The name of the intent to delete. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
IntentName name = IntentName.FromProjectLocationAgentIntent("[PROJECT]", "[LOCATION]", "[AGENT]", "[INTENT]");
// Make the request
await intentsClient.DeleteIntentAsync(name);

DeleteIntentAsync(IntentName, CancellationToken)

public virtual Task DeleteIntentAsync(IntentName name, CancellationToken cancellationToken)

Deletes the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
name IntentName

Required. The name of the intent to delete. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
IntentName name = IntentName.FromProjectLocationAgentIntent("[PROJECT]", "[LOCATION]", "[AGENT]", "[INTENT]");
// Make the request
await intentsClient.DeleteIntentAsync(name);

DeleteIntentAsync(string, CallSettings)

public virtual Task DeleteIntentAsync(string name, CallSettings callSettings = null)

Deletes the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
name string

Required. The name of the intent to delete. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]/intents/[INTENT]";
// Make the request
await intentsClient.DeleteIntentAsync(name);

DeleteIntentAsync(string, CancellationToken)

public virtual Task DeleteIntentAsync(string name, CancellationToken cancellationToken)

Deletes the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
name string

Required. The name of the intent to delete. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
Task

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]/intents/[INTENT]";
// Make the request
await intentsClient.DeleteIntentAsync(name);

ExportIntents(ExportIntentsRequest, CallSettings)

public virtual Operation<ExportIntentsResponse, ExportIntentsMetadata> ExportIntents(ExportIntentsRequest request, CallSettings callSettings = null)

Exports the selected intents.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

  • metadata: [ExportIntentsMetadata][google.cloud.dialogflow.cx.v3.ExportIntentsMetadata]
  • response: [ExportIntentsResponse][google.cloud.dialogflow.cx.v3.ExportIntentsResponse]
Parameters
Name Description
request ExportIntentsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationExportIntentsResponseExportIntentsMetadata

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
ExportIntentsRequest request = new ExportIntentsRequest
{
    ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
    Intents = { "", },
    IntentsUri = "",
    DataFormat = ExportIntentsRequest.Types.DataFormat.Unspecified,
};
// Make the request
Operation<ExportIntentsResponse, ExportIntentsMetadata> response = intentsClient.ExportIntents(request);

// Poll until the returned long-running operation is complete
Operation<ExportIntentsResponse, ExportIntentsMetadata> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
ExportIntentsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<ExportIntentsResponse, ExportIntentsMetadata> retrievedResponse = intentsClient.PollOnceExportIntents(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    ExportIntentsResponse retrievedResult = retrievedResponse.Result;
}

ExportIntentsAsync(ExportIntentsRequest, CallSettings)

public virtual Task<Operation<ExportIntentsResponse, ExportIntentsMetadata>> ExportIntentsAsync(ExportIntentsRequest request, CallSettings callSettings = null)

Exports the selected intents.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

  • metadata: [ExportIntentsMetadata][google.cloud.dialogflow.cx.v3.ExportIntentsMetadata]
  • response: [ExportIntentsResponse][google.cloud.dialogflow.cx.v3.ExportIntentsResponse]
Parameters
Name Description
request ExportIntentsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationExportIntentsResponseExportIntentsMetadata

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
ExportIntentsRequest request = new ExportIntentsRequest
{
    ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
    Intents = { "", },
    IntentsUri = "",
    DataFormat = ExportIntentsRequest.Types.DataFormat.Unspecified,
};
// Make the request
Operation<ExportIntentsResponse, ExportIntentsMetadata> response = await intentsClient.ExportIntentsAsync(request);

// Poll until the returned long-running operation is complete
Operation<ExportIntentsResponse, ExportIntentsMetadata> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
ExportIntentsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<ExportIntentsResponse, ExportIntentsMetadata> retrievedResponse = await intentsClient.PollOnceExportIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    ExportIntentsResponse retrievedResult = retrievedResponse.Result;
}

ExportIntentsAsync(ExportIntentsRequest, CancellationToken)

public virtual Task<Operation<ExportIntentsResponse, ExportIntentsMetadata>> ExportIntentsAsync(ExportIntentsRequest request, CancellationToken cancellationToken)

Exports the selected intents.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

  • metadata: [ExportIntentsMetadata][google.cloud.dialogflow.cx.v3.ExportIntentsMetadata]
  • response: [ExportIntentsResponse][google.cloud.dialogflow.cx.v3.ExportIntentsResponse]
Parameters
Name Description
request ExportIntentsRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskOperationExportIntentsResponseExportIntentsMetadata

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
ExportIntentsRequest request = new ExportIntentsRequest
{
    ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
    Intents = { "", },
    IntentsUri = "",
    DataFormat = ExportIntentsRequest.Types.DataFormat.Unspecified,
};
// Make the request
Operation<ExportIntentsResponse, ExportIntentsMetadata> response = await intentsClient.ExportIntentsAsync(request);

// Poll until the returned long-running operation is complete
Operation<ExportIntentsResponse, ExportIntentsMetadata> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
ExportIntentsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<ExportIntentsResponse, ExportIntentsMetadata> retrievedResponse = await intentsClient.PollOnceExportIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    ExportIntentsResponse retrievedResult = retrievedResponse.Result;
}

GetIntent(GetIntentRequest, CallSettings)

public virtual Intent GetIntent(GetIntentRequest request, CallSettings callSettings = null)

Retrieves the specified intent.

Parameters
Name Description
request GetIntentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Intent

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
GetIntentRequest request = new GetIntentRequest
{
    IntentName = IntentName.FromProjectLocationAgentIntent("[PROJECT]", "[LOCATION]", "[AGENT]", "[INTENT]"),
    LanguageCode = "",
};
// Make the request
Intent response = intentsClient.GetIntent(request);

GetIntent(IntentName, CallSettings)

public virtual Intent GetIntent(IntentName name, CallSettings callSettings = null)

Retrieves the specified intent.

Parameters
Name Description
name IntentName

Required. The name of the intent. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Intent

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
IntentName name = IntentName.FromProjectLocationAgentIntent("[PROJECT]", "[LOCATION]", "[AGENT]", "[INTENT]");
// Make the request
Intent response = intentsClient.GetIntent(name);

GetIntent(string, CallSettings)

public virtual Intent GetIntent(string name, CallSettings callSettings = null)

Retrieves the specified intent.

Parameters
Name Description
name string

Required. The name of the intent. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Intent

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]/intents/[INTENT]";
// Make the request
Intent response = intentsClient.GetIntent(name);

GetIntentAsync(GetIntentRequest, CallSettings)

public virtual Task<Intent> GetIntentAsync(GetIntentRequest request, CallSettings callSettings = null)

Retrieves the specified intent.

Parameters
Name Description
request GetIntentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
GetIntentRequest request = new GetIntentRequest
{
    IntentName = IntentName.FromProjectLocationAgentIntent("[PROJECT]", "[LOCATION]", "[AGENT]", "[INTENT]"),
    LanguageCode = "",
};
// Make the request
Intent response = await intentsClient.GetIntentAsync(request);

GetIntentAsync(GetIntentRequest, CancellationToken)

public virtual Task<Intent> GetIntentAsync(GetIntentRequest request, CancellationToken cancellationToken)

Retrieves the specified intent.

Parameters
Name Description
request GetIntentRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
GetIntentRequest request = new GetIntentRequest
{
    IntentName = IntentName.FromProjectLocationAgentIntent("[PROJECT]", "[LOCATION]", "[AGENT]", "[INTENT]"),
    LanguageCode = "",
};
// Make the request
Intent response = await intentsClient.GetIntentAsync(request);

GetIntentAsync(IntentName, CallSettings)

public virtual Task<Intent> GetIntentAsync(IntentName name, CallSettings callSettings = null)

Retrieves the specified intent.

Parameters
Name Description
name IntentName

Required. The name of the intent. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
IntentName name = IntentName.FromProjectLocationAgentIntent("[PROJECT]", "[LOCATION]", "[AGENT]", "[INTENT]");
// Make the request
Intent response = await intentsClient.GetIntentAsync(name);

GetIntentAsync(IntentName, CancellationToken)

public virtual Task<Intent> GetIntentAsync(IntentName name, CancellationToken cancellationToken)

Retrieves the specified intent.

Parameters
Name Description
name IntentName

Required. The name of the intent. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
IntentName name = IntentName.FromProjectLocationAgentIntent("[PROJECT]", "[LOCATION]", "[AGENT]", "[INTENT]");
// Make the request
Intent response = await intentsClient.GetIntentAsync(name);

GetIntentAsync(string, CallSettings)

public virtual Task<Intent> GetIntentAsync(string name, CallSettings callSettings = null)

Retrieves the specified intent.

Parameters
Name Description
name string

Required. The name of the intent. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]/intents/[INTENT]";
// Make the request
Intent response = await intentsClient.GetIntentAsync(name);

GetIntentAsync(string, CancellationToken)

public virtual Task<Intent> GetIntentAsync(string name, CancellationToken cancellationToken)

Retrieves the specified intent.

Parameters
Name Description
name string

Required. The name of the intent. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]/intents/[INTENT]";
// Make the request
Intent response = await intentsClient.GetIntentAsync(name);

ImportIntents(ImportIntentsRequest, CallSettings)

public virtual Operation<ImportIntentsResponse, ImportIntentsMetadata> ImportIntents(ImportIntentsRequest request, CallSettings callSettings = null)

Imports the specified intents into the agent.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

  • metadata: [ImportIntentsMetadata][google.cloud.dialogflow.cx.v3.ImportIntentsMetadata]
  • response: [ImportIntentsResponse][google.cloud.dialogflow.cx.v3.ImportIntentsResponse]
Parameters
Name Description
request ImportIntentsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationImportIntentsResponseImportIntentsMetadata

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
ImportIntentsRequest request = new ImportIntentsRequest
{
    ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
    IntentsUri = "",
    MergeOption = ImportIntentsRequest.Types.MergeOption.Unspecified,
};
// Make the request
Operation<ImportIntentsResponse, ImportIntentsMetadata> response = intentsClient.ImportIntents(request);

// Poll until the returned long-running operation is complete
Operation<ImportIntentsResponse, ImportIntentsMetadata> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
ImportIntentsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<ImportIntentsResponse, ImportIntentsMetadata> retrievedResponse = intentsClient.PollOnceImportIntents(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    ImportIntentsResponse retrievedResult = retrievedResponse.Result;
}

ImportIntentsAsync(ImportIntentsRequest, CallSettings)

public virtual Task<Operation<ImportIntentsResponse, ImportIntentsMetadata>> ImportIntentsAsync(ImportIntentsRequest request, CallSettings callSettings = null)

Imports the specified intents into the agent.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

  • metadata: [ImportIntentsMetadata][google.cloud.dialogflow.cx.v3.ImportIntentsMetadata]
  • response: [ImportIntentsResponse][google.cloud.dialogflow.cx.v3.ImportIntentsResponse]
Parameters
Name Description
request ImportIntentsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationImportIntentsResponseImportIntentsMetadata

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
ImportIntentsRequest request = new ImportIntentsRequest
{
    ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
    IntentsUri = "",
    MergeOption = ImportIntentsRequest.Types.MergeOption.Unspecified,
};
// Make the request
Operation<ImportIntentsResponse, ImportIntentsMetadata> response = await intentsClient.ImportIntentsAsync(request);

// Poll until the returned long-running operation is complete
Operation<ImportIntentsResponse, ImportIntentsMetadata> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
ImportIntentsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<ImportIntentsResponse, ImportIntentsMetadata> retrievedResponse = await intentsClient.PollOnceImportIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    ImportIntentsResponse retrievedResult = retrievedResponse.Result;
}

ImportIntentsAsync(ImportIntentsRequest, CancellationToken)

public virtual Task<Operation<ImportIntentsResponse, ImportIntentsMetadata>> ImportIntentsAsync(ImportIntentsRequest request, CancellationToken cancellationToken)

Imports the specified intents into the agent.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

  • metadata: [ImportIntentsMetadata][google.cloud.dialogflow.cx.v3.ImportIntentsMetadata]
  • response: [ImportIntentsResponse][google.cloud.dialogflow.cx.v3.ImportIntentsResponse]
Parameters
Name Description
request ImportIntentsRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskOperationImportIntentsResponseImportIntentsMetadata

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
ImportIntentsRequest request = new ImportIntentsRequest
{
    ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
    IntentsUri = "",
    MergeOption = ImportIntentsRequest.Types.MergeOption.Unspecified,
};
// Make the request
Operation<ImportIntentsResponse, ImportIntentsMetadata> response = await intentsClient.ImportIntentsAsync(request);

// Poll until the returned long-running operation is complete
Operation<ImportIntentsResponse, ImportIntentsMetadata> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
ImportIntentsResponse result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<ImportIntentsResponse, ImportIntentsMetadata> retrievedResponse = await intentsClient.PollOnceImportIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    ImportIntentsResponse retrievedResult = retrievedResponse.Result;
}

ListIntents(AgentName, string, int?, CallSettings)

public virtual PagedEnumerable<ListIntentsResponse, Intent> ListIntents(AgentName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Returns the list of all intents in the specified agent.

Parameters
Name Description
parent AgentName

Required. The agent to list all intents for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>.

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListIntentsResponseIntent

A pageable sequence of Intent resources.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
AgentName parent = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]");
// Make the request
PagedEnumerable<ListIntentsResponse, Intent> response = intentsClient.ListIntents(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (Intent item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListIntentsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Intent item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Intent> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Intent item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListIntents(ListIntentsRequest, CallSettings)

public virtual PagedEnumerable<ListIntentsResponse, Intent> ListIntents(ListIntentsRequest request, CallSettings callSettings = null)

Returns the list of all intents in the specified agent.

Parameters
Name Description
request ListIntentsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListIntentsResponseIntent

A pageable sequence of Intent resources.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
ListIntentsRequest request = new ListIntentsRequest
{
    ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
    LanguageCode = "",
    IntentView = IntentView.Unspecified,
};
// Make the request
PagedEnumerable<ListIntentsResponse, Intent> response = intentsClient.ListIntents(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (Intent item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListIntentsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Intent item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Intent> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Intent item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListIntents(string, string, int?, CallSettings)

public virtual PagedEnumerable<ListIntentsResponse, Intent> ListIntents(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Returns the list of all intents in the specified agent.

Parameters
Name Description
parent string

Required. The agent to list all intents for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>.

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableListIntentsResponseIntent

A pageable sequence of Intent resources.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]";
// Make the request
PagedEnumerable<ListIntentsResponse, Intent> response = intentsClient.ListIntents(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (Intent item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}

// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (ListIntentsResponse page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Intent item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Intent> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Intent item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListIntentsAsync(AgentName, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListIntentsResponse, Intent> ListIntentsAsync(AgentName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Returns the list of all intents in the specified agent.

Parameters
Name Description
parent AgentName

Required. The agent to list all intents for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>.

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListIntentsResponseIntent

A pageable asynchronous sequence of Intent resources.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
AgentName parent = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]");
// Make the request
PagedAsyncEnumerable<ListIntentsResponse, Intent> response = intentsClient.ListIntentsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Intent item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListIntentsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Intent item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Intent> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Intent item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListIntentsAsync(ListIntentsRequest, CallSettings)

public virtual PagedAsyncEnumerable<ListIntentsResponse, Intent> ListIntentsAsync(ListIntentsRequest request, CallSettings callSettings = null)

Returns the list of all intents in the specified agent.

Parameters
Name Description
request ListIntentsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListIntentsResponseIntent

A pageable asynchronous sequence of Intent resources.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
ListIntentsRequest request = new ListIntentsRequest
{
    ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
    LanguageCode = "",
    IntentView = IntentView.Unspecified,
};
// Make the request
PagedAsyncEnumerable<ListIntentsResponse, Intent> response = intentsClient.ListIntentsAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Intent item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListIntentsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Intent item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Intent> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Intent item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

ListIntentsAsync(string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<ListIntentsResponse, Intent> ListIntentsAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Returns the list of all intents in the specified agent.

Parameters
Name Description
parent string

Required. The agent to list all intents for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>.

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableListIntentsResponseIntent

A pageable asynchronous sequence of Intent resources.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/agents/[AGENT]";
// Make the request
PagedAsyncEnumerable<ListIntentsResponse, Intent> response = intentsClient.ListIntentsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Intent item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});

// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((ListIntentsResponse page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (Intent item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});

// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<Intent> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (Intent item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;

PollOnceExportIntents(string, CallSettings)

public virtual Operation<ExportIntentsResponse, ExportIntentsMetadata> PollOnceExportIntents(string operationName, CallSettings callSettings = null)

Poll an operation once, using an operationName from a previous invocation of ExportIntents.

Parameters
Name Description
operationName string

The name of a previously invoked operation. Must not be null or empty.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationExportIntentsResponseExportIntentsMetadata

The result of polling the operation.

PollOnceExportIntentsAsync(string, CallSettings)

public virtual Task<Operation<ExportIntentsResponse, ExportIntentsMetadata>> PollOnceExportIntentsAsync(string operationName, CallSettings callSettings = null)

Asynchronously poll an operation once, using an operationName from a previous invocation of ExportIntents.

Parameters
Name Description
operationName string

The name of a previously invoked operation. Must not be null or empty.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationExportIntentsResponseExportIntentsMetadata

A task representing the result of polling the operation.

PollOnceImportIntents(string, CallSettings)

public virtual Operation<ImportIntentsResponse, ImportIntentsMetadata> PollOnceImportIntents(string operationName, CallSettings callSettings = null)

Poll an operation once, using an operationName from a previous invocation of ImportIntents.

Parameters
Name Description
operationName string

The name of a previously invoked operation. Must not be null or empty.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationImportIntentsResponseImportIntentsMetadata

The result of polling the operation.

PollOnceImportIntentsAsync(string, CallSettings)

public virtual Task<Operation<ImportIntentsResponse, ImportIntentsMetadata>> PollOnceImportIntentsAsync(string operationName, CallSettings callSettings = null)

Asynchronously poll an operation once, using an operationName from a previous invocation of ImportIntents.

Parameters
Name Description
operationName string

The name of a previously invoked operation. Must not be null or empty.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationImportIntentsResponseImportIntentsMetadata

A task representing the result of polling the operation.

ShutdownDefaultChannelsAsync()

public static Task ShutdownDefaultChannelsAsync()

Shuts down any channels automatically created by Create() and CreateAsync(CancellationToken). Channels which weren't automatically created are not affected.

Returns
Type Description
Task

A task representing the asynchronous shutdown operation.

Remarks

After calling this method, further calls to Create() and CreateAsync(CancellationToken) will create new channels, which could in turn be shut down by another call to this method.

UpdateIntent(Intent, FieldMask, CallSettings)

public virtual Intent UpdateIntent(Intent intent, FieldMask updateMask, CallSettings callSettings = null)

Updates the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
intent Intent

Required. The intent to update.

updateMask FieldMask

The mask to control which fields get updated. If the mask is not present, all fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Intent

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
Intent intent = new Intent();
FieldMask updateMask = new FieldMask();
// Make the request
Intent response = intentsClient.UpdateIntent(intent, updateMask);

UpdateIntent(UpdateIntentRequest, CallSettings)

public virtual Intent UpdateIntent(UpdateIntentRequest request, CallSettings callSettings = null)

Updates the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
request UpdateIntentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Intent

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
UpdateIntentRequest request = new UpdateIntentRequest
{
    Intent = new Intent(),
    LanguageCode = "",
    UpdateMask = new FieldMask(),
};
// Make the request
Intent response = intentsClient.UpdateIntent(request);

UpdateIntentAsync(Intent, FieldMask, CallSettings)

public virtual Task<Intent> UpdateIntentAsync(Intent intent, FieldMask updateMask, CallSettings callSettings = null)

Updates the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
intent Intent

Required. The intent to update.

updateMask FieldMask

The mask to control which fields get updated. If the mask is not present, all fields will be updated.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
Intent intent = new Intent();
FieldMask updateMask = new FieldMask();
// Make the request
Intent response = await intentsClient.UpdateIntentAsync(intent, updateMask);

UpdateIntentAsync(Intent, FieldMask, CancellationToken)

public virtual Task<Intent> UpdateIntentAsync(Intent intent, FieldMask updateMask, CancellationToken cancellationToken)

Updates the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
intent Intent

Required. The intent to update.

updateMask FieldMask

The mask to control which fields get updated. If the mask is not present, all fields will be updated.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
Intent intent = new Intent();
FieldMask updateMask = new FieldMask();
// Make the request
Intent response = await intentsClient.UpdateIntentAsync(intent, updateMask);

UpdateIntentAsync(UpdateIntentRequest, CallSettings)

public virtual Task<Intent> UpdateIntentAsync(UpdateIntentRequest request, CallSettings callSettings = null)

Updates the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
request UpdateIntentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
UpdateIntentRequest request = new UpdateIntentRequest
{
    Intent = new Intent(),
    LanguageCode = "",
    UpdateMask = new FieldMask(),
};
// Make the request
Intent response = await intentsClient.UpdateIntentAsync(request);

UpdateIntentAsync(UpdateIntentRequest, CancellationToken)

public virtual Task<Intent> UpdateIntentAsync(UpdateIntentRequest request, CancellationToken cancellationToken)

Updates the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
Name Description
request UpdateIntentRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
UpdateIntentRequest request = new UpdateIntentRequest
{
    Intent = new Intent(),
    LanguageCode = "",
    UpdateMask = new FieldMask(),
};
// Make the request
Intent response = await intentsClient.UpdateIntentAsync(request);