Google Cloud Dialogflow v2 API - Class IntentsClient (4.18.0)

public abstract class IntentsClient

Reference documentation and code samples for the Google Cloud Dialogflow v2 API class IntentsClient.

Intents client wrapper, for convenient use.

Inheritance

object > IntentsClient

Derived Types

Namespace

Google.Cloud.Dialogflow.V2

Assembly

Google.Cloud.Dialogflow.V2.dll

Remarks

Service for managing [Intents][google.cloud.dialogflow.v2.Intent].

Properties

BatchDeleteIntentsOperationsClient

public virtual OperationsClient BatchDeleteIntentsOperationsClient { get; }

The long-running operations client for BatchDeleteIntents.

Property Value
TypeDescription
OperationsClient

BatchUpdateIntentsOperationsClient

public virtual OperationsClient BatchUpdateIntentsOperationsClient { get; }

The long-running operations client for BatchUpdateIntents.

Property Value
TypeDescription
OperationsClient

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
TypeDescription
string

DefaultScopes

public static IReadOnlyList<string> DefaultScopes { get; }

The default Intents scopes.

Property Value
TypeDescription
IReadOnlyListstring
Remarks

GrpcClient

public virtual Intents.IntentsClient GrpcClient { get; }

The underlying gRPC Intents client

Property Value
TypeDescription
IntentsIntentsClient

LocationsClient

public virtual LocationsClient LocationsClient { get; }

The LocationsClient associated with this client.

Property Value
TypeDescription
LocationsClient

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
TypeDescription
ServiceMetadata

Methods

BatchDeleteIntents(AgentName, IEnumerable<Intent>, CallSettings)

public virtual Operation<Empty, Struct> BatchDeleteIntents(AgentName parent, IEnumerable<Intent> intents, CallSettings callSettings = null)

Deletes intents in the specified agent.

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

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

Parameters
NameDescription
parentAgentName

Required. The name of the agent to delete all entities types for. Format: projects/<Project ID>/agent.

intentsIEnumerableIntent

Required. The collection of intents to delete. Only intent name must be filled in.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationEmptyStruct

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
AgentName parent = AgentName.FromProject("[PROJECT]");
IEnumerable<Intent> intents = new Intent[] { new Intent(), };
// Make the request
Operation<Empty, Struct> response = intentsClient.BatchDeleteIntents(parent, intents);

// Poll until the returned long-running operation is complete
Operation<Empty, Struct> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Empty 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<Empty, Struct> retrievedResponse = intentsClient.PollOnceBatchDeleteIntents(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Empty retrievedResult = retrievedResponse.Result;
}

BatchDeleteIntents(BatchDeleteIntentsRequest, CallSettings)

public virtual Operation<Empty, Struct> BatchDeleteIntents(BatchDeleteIntentsRequest request, CallSettings callSettings = null)

Deletes intents in the specified agent.

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

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

Parameters
NameDescription
requestBatchDeleteIntentsRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationEmptyStruct

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
BatchDeleteIntentsRequest request = new BatchDeleteIntentsRequest
{
    ParentAsAgentName = AgentName.FromProject("[PROJECT]"),
    Intents = { new Intent(), },
};
// Make the request
Operation<Empty, Struct> response = intentsClient.BatchDeleteIntents(request);

// Poll until the returned long-running operation is complete
Operation<Empty, Struct> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Empty 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<Empty, Struct> retrievedResponse = intentsClient.PollOnceBatchDeleteIntents(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Empty retrievedResult = retrievedResponse.Result;
}

BatchDeleteIntents(string, IEnumerable<Intent>, CallSettings)

public virtual Operation<Empty, Struct> BatchDeleteIntents(string parent, IEnumerable<Intent> intents, CallSettings callSettings = null)

Deletes intents in the specified agent.

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

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

Parameters
NameDescription
parentstring

Required. The name of the agent to delete all entities types for. Format: projects/<Project ID>/agent.

intentsIEnumerableIntent

Required. The collection of intents to delete. Only intent name must be filled in.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationEmptyStruct

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/agent";
IEnumerable<Intent> intents = new Intent[] { new Intent(), };
// Make the request
Operation<Empty, Struct> response = intentsClient.BatchDeleteIntents(parent, intents);

// Poll until the returned long-running operation is complete
Operation<Empty, Struct> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Empty 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<Empty, Struct> retrievedResponse = intentsClient.PollOnceBatchDeleteIntents(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Empty retrievedResult = retrievedResponse.Result;
}

BatchDeleteIntentsAsync(AgentName, IEnumerable<Intent>, CallSettings)

public virtual Task<Operation<Empty, Struct>> BatchDeleteIntentsAsync(AgentName parent, IEnumerable<Intent> intents, CallSettings callSettings = null)

Deletes intents in the specified agent.

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

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

Parameters
NameDescription
parentAgentName

Required. The name of the agent to delete all entities types for. Format: projects/<Project ID>/agent.

intentsIEnumerableIntent

Required. The collection of intents to delete. Only intent name must be filled in.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationEmptyStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
AgentName parent = AgentName.FromProject("[PROJECT]");
IEnumerable<Intent> intents = new Intent[] { new Intent(), };
// Make the request
Operation<Empty, Struct> response = await intentsClient.BatchDeleteIntentsAsync(parent, intents);

// Poll until the returned long-running operation is complete
Operation<Empty, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Empty 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<Empty, Struct> retrievedResponse = await intentsClient.PollOnceBatchDeleteIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Empty retrievedResult = retrievedResponse.Result;
}

BatchDeleteIntentsAsync(AgentName, IEnumerable<Intent>, CancellationToken)

public virtual Task<Operation<Empty, Struct>> BatchDeleteIntentsAsync(AgentName parent, IEnumerable<Intent> intents, CancellationToken cancellationToken)

Deletes intents in the specified agent.

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

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

Parameters
NameDescription
parentAgentName

Required. The name of the agent to delete all entities types for. Format: projects/<Project ID>/agent.

intentsIEnumerableIntent

Required. The collection of intents to delete. Only intent name must be filled in.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationEmptyStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
AgentName parent = AgentName.FromProject("[PROJECT]");
IEnumerable<Intent> intents = new Intent[] { new Intent(), };
// Make the request
Operation<Empty, Struct> response = await intentsClient.BatchDeleteIntentsAsync(parent, intents);

// Poll until the returned long-running operation is complete
Operation<Empty, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Empty 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<Empty, Struct> retrievedResponse = await intentsClient.PollOnceBatchDeleteIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Empty retrievedResult = retrievedResponse.Result;
}

BatchDeleteIntentsAsync(BatchDeleteIntentsRequest, CallSettings)

public virtual Task<Operation<Empty, Struct>> BatchDeleteIntentsAsync(BatchDeleteIntentsRequest request, CallSettings callSettings = null)

Deletes intents in the specified agent.

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

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

Parameters
NameDescription
requestBatchDeleteIntentsRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationEmptyStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
BatchDeleteIntentsRequest request = new BatchDeleteIntentsRequest
{
    ParentAsAgentName = AgentName.FromProject("[PROJECT]"),
    Intents = { new Intent(), },
};
// Make the request
Operation<Empty, Struct> response = await intentsClient.BatchDeleteIntentsAsync(request);

// Poll until the returned long-running operation is complete
Operation<Empty, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Empty 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<Empty, Struct> retrievedResponse = await intentsClient.PollOnceBatchDeleteIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Empty retrievedResult = retrievedResponse.Result;
}

BatchDeleteIntentsAsync(BatchDeleteIntentsRequest, CancellationToken)

public virtual Task<Operation<Empty, Struct>> BatchDeleteIntentsAsync(BatchDeleteIntentsRequest request, CancellationToken cancellationToken)

Deletes intents in the specified agent.

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

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

Parameters
NameDescription
requestBatchDeleteIntentsRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationEmptyStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
BatchDeleteIntentsRequest request = new BatchDeleteIntentsRequest
{
    ParentAsAgentName = AgentName.FromProject("[PROJECT]"),
    Intents = { new Intent(), },
};
// Make the request
Operation<Empty, Struct> response = await intentsClient.BatchDeleteIntentsAsync(request);

// Poll until the returned long-running operation is complete
Operation<Empty, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Empty 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<Empty, Struct> retrievedResponse = await intentsClient.PollOnceBatchDeleteIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Empty retrievedResult = retrievedResponse.Result;
}

BatchDeleteIntentsAsync(string, IEnumerable<Intent>, CallSettings)

public virtual Task<Operation<Empty, Struct>> BatchDeleteIntentsAsync(string parent, IEnumerable<Intent> intents, CallSettings callSettings = null)

Deletes intents in the specified agent.

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

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

Parameters
NameDescription
parentstring

Required. The name of the agent to delete all entities types for. Format: projects/<Project ID>/agent.

intentsIEnumerableIntent

Required. The collection of intents to delete. Only intent name must be filled in.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationEmptyStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/agent";
IEnumerable<Intent> intents = new Intent[] { new Intent(), };
// Make the request
Operation<Empty, Struct> response = await intentsClient.BatchDeleteIntentsAsync(parent, intents);

// Poll until the returned long-running operation is complete
Operation<Empty, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Empty 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<Empty, Struct> retrievedResponse = await intentsClient.PollOnceBatchDeleteIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Empty retrievedResult = retrievedResponse.Result;
}

BatchDeleteIntentsAsync(string, IEnumerable<Intent>, CancellationToken)

public virtual Task<Operation<Empty, Struct>> BatchDeleteIntentsAsync(string parent, IEnumerable<Intent> intents, CancellationToken cancellationToken)

Deletes intents in the specified agent.

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

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

Parameters
NameDescription
parentstring

Required. The name of the agent to delete all entities types for. Format: projects/<Project ID>/agent.

intentsIEnumerableIntent

Required. The collection of intents to delete. Only intent name must be filled in.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationEmptyStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/agent";
IEnumerable<Intent> intents = new Intent[] { new Intent(), };
// Make the request
Operation<Empty, Struct> response = await intentsClient.BatchDeleteIntentsAsync(parent, intents);

// Poll until the returned long-running operation is complete
Operation<Empty, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Empty 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<Empty, Struct> retrievedResponse = await intentsClient.PollOnceBatchDeleteIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Empty retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntents(AgentName, IntentBatch, CallSettings)

public virtual Operation<BatchUpdateIntentsResponse, Struct> BatchUpdateIntents(AgentName parent, IntentBatch intentBatchInline, CallSettings callSettings = null)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
parentAgentName

Required. The name of the agent to update or create intents in. Format: projects/<Project ID>/agent.

intentBatchInlineIntentBatch

The collection of intents to update or create.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationBatchUpdateIntentsResponseStruct

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
AgentName parent = AgentName.FromProject("[PROJECT]");
IntentBatch intentBatchInline = new IntentBatch();
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = intentsClient.BatchUpdateIntents(parent, intentBatchInline);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = intentsClient.PollOnceBatchUpdateIntents(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntents(AgentName, string, CallSettings)

public virtual Operation<BatchUpdateIntentsResponse, Struct> BatchUpdateIntents(AgentName parent, string intentBatchUri, CallSettings callSettings = null)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
parentAgentName

Required. The name of the agent to update or create intents in. Format: projects/<Project ID>/agent.

intentBatchUristring

The URI to a Google Cloud Storage file containing intents to update or create. The file format can either be a serialized proto (of IntentBatch type) or JSON object. Note: The URI must start with "gs://".

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationBatchUpdateIntentsResponseStruct

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
AgentName parent = AgentName.FromProject("[PROJECT]");
string intentBatchUri = "";
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = intentsClient.BatchUpdateIntents(parent, intentBatchUri);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = intentsClient.PollOnceBatchUpdateIntents(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntents(BatchUpdateIntentsRequest, CallSettings)

public virtual Operation<BatchUpdateIntentsResponse, Struct> BatchUpdateIntents(BatchUpdateIntentsRequest request, CallSettings callSettings = null)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
requestBatchUpdateIntentsRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationBatchUpdateIntentsResponseStruct

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
BatchUpdateIntentsRequest request = new BatchUpdateIntentsRequest
{
    ParentAsAgentName = AgentName.FromProject("[PROJECT]"),
    IntentBatchUri = "",
    LanguageCode = "",
    UpdateMask = new FieldMask(),
    IntentView = IntentView.Unspecified,
};
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = intentsClient.BatchUpdateIntents(request);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = intentsClient.PollOnceBatchUpdateIntents(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntents(string, IntentBatch, CallSettings)

public virtual Operation<BatchUpdateIntentsResponse, Struct> BatchUpdateIntents(string parent, IntentBatch intentBatchInline, CallSettings callSettings = null)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
parentstring

Required. The name of the agent to update or create intents in. Format: projects/<Project ID>/agent.

intentBatchInlineIntentBatch

The collection of intents to update or create.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationBatchUpdateIntentsResponseStruct

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/agent";
IntentBatch intentBatchInline = new IntentBatch();
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = intentsClient.BatchUpdateIntents(parent, intentBatchInline);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = intentsClient.PollOnceBatchUpdateIntents(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntents(string, string, CallSettings)

public virtual Operation<BatchUpdateIntentsResponse, Struct> BatchUpdateIntents(string parent, string intentBatchUri, CallSettings callSettings = null)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
parentstring

Required. The name of the agent to update or create intents in. Format: projects/<Project ID>/agent.

intentBatchUristring

The URI to a Google Cloud Storage file containing intents to update or create. The file format can either be a serialized proto (of IntentBatch type) or JSON object. Note: The URI must start with "gs://".

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationBatchUpdateIntentsResponseStruct

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/agent";
string intentBatchUri = "";
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = intentsClient.BatchUpdateIntents(parent, intentBatchUri);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = intentsClient.PollOnceBatchUpdateIntents(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntentsAsync(AgentName, IntentBatch, CallSettings)

public virtual Task<Operation<BatchUpdateIntentsResponse, Struct>> BatchUpdateIntentsAsync(AgentName parent, IntentBatch intentBatchInline, CallSettings callSettings = null)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
parentAgentName

Required. The name of the agent to update or create intents in. Format: projects/<Project ID>/agent.

intentBatchInlineIntentBatch

The collection of intents to update or create.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationBatchUpdateIntentsResponseStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
AgentName parent = AgentName.FromProject("[PROJECT]");
IntentBatch intentBatchInline = new IntentBatch();
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = await intentsClient.BatchUpdateIntentsAsync(parent, intentBatchInline);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = await intentsClient.PollOnceBatchUpdateIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntentsAsync(AgentName, IntentBatch, CancellationToken)

public virtual Task<Operation<BatchUpdateIntentsResponse, Struct>> BatchUpdateIntentsAsync(AgentName parent, IntentBatch intentBatchInline, CancellationToken cancellationToken)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
parentAgentName

Required. The name of the agent to update or create intents in. Format: projects/<Project ID>/agent.

intentBatchInlineIntentBatch

The collection of intents to update or create.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationBatchUpdateIntentsResponseStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
AgentName parent = AgentName.FromProject("[PROJECT]");
IntentBatch intentBatchInline = new IntentBatch();
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = await intentsClient.BatchUpdateIntentsAsync(parent, intentBatchInline);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = await intentsClient.PollOnceBatchUpdateIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntentsAsync(AgentName, string, CallSettings)

public virtual Task<Operation<BatchUpdateIntentsResponse, Struct>> BatchUpdateIntentsAsync(AgentName parent, string intentBatchUri, CallSettings callSettings = null)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
parentAgentName

Required. The name of the agent to update or create intents in. Format: projects/<Project ID>/agent.

intentBatchUristring

The URI to a Google Cloud Storage file containing intents to update or create. The file format can either be a serialized proto (of IntentBatch type) or JSON object. Note: The URI must start with "gs://".

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationBatchUpdateIntentsResponseStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
AgentName parent = AgentName.FromProject("[PROJECT]");
string intentBatchUri = "";
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = await intentsClient.BatchUpdateIntentsAsync(parent, intentBatchUri);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = await intentsClient.PollOnceBatchUpdateIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntentsAsync(AgentName, string, CancellationToken)

public virtual Task<Operation<BatchUpdateIntentsResponse, Struct>> BatchUpdateIntentsAsync(AgentName parent, string intentBatchUri, CancellationToken cancellationToken)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
parentAgentName

Required. The name of the agent to update or create intents in. Format: projects/<Project ID>/agent.

intentBatchUristring

The URI to a Google Cloud Storage file containing intents to update or create. The file format can either be a serialized proto (of IntentBatch type) or JSON object. Note: The URI must start with "gs://".

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationBatchUpdateIntentsResponseStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
AgentName parent = AgentName.FromProject("[PROJECT]");
string intentBatchUri = "";
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = await intentsClient.BatchUpdateIntentsAsync(parent, intentBatchUri);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = await intentsClient.PollOnceBatchUpdateIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntentsAsync(BatchUpdateIntentsRequest, CallSettings)

public virtual Task<Operation<BatchUpdateIntentsResponse, Struct>> BatchUpdateIntentsAsync(BatchUpdateIntentsRequest request, CallSettings callSettings = null)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
requestBatchUpdateIntentsRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationBatchUpdateIntentsResponseStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
BatchUpdateIntentsRequest request = new BatchUpdateIntentsRequest
{
    ParentAsAgentName = AgentName.FromProject("[PROJECT]"),
    IntentBatchUri = "",
    LanguageCode = "",
    UpdateMask = new FieldMask(),
    IntentView = IntentView.Unspecified,
};
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = await intentsClient.BatchUpdateIntentsAsync(request);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = await intentsClient.PollOnceBatchUpdateIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntentsAsync(BatchUpdateIntentsRequest, CancellationToken)

public virtual Task<Operation<BatchUpdateIntentsResponse, Struct>> BatchUpdateIntentsAsync(BatchUpdateIntentsRequest request, CancellationToken cancellationToken)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
requestBatchUpdateIntentsRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationBatchUpdateIntentsResponseStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
BatchUpdateIntentsRequest request = new BatchUpdateIntentsRequest
{
    ParentAsAgentName = AgentName.FromProject("[PROJECT]"),
    IntentBatchUri = "",
    LanguageCode = "",
    UpdateMask = new FieldMask(),
    IntentView = IntentView.Unspecified,
};
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = await intentsClient.BatchUpdateIntentsAsync(request);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = await intentsClient.PollOnceBatchUpdateIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntentsAsync(string, IntentBatch, CallSettings)

public virtual Task<Operation<BatchUpdateIntentsResponse, Struct>> BatchUpdateIntentsAsync(string parent, IntentBatch intentBatchInline, CallSettings callSettings = null)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
parentstring

Required. The name of the agent to update or create intents in. Format: projects/<Project ID>/agent.

intentBatchInlineIntentBatch

The collection of intents to update or create.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationBatchUpdateIntentsResponseStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/agent";
IntentBatch intentBatchInline = new IntentBatch();
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = await intentsClient.BatchUpdateIntentsAsync(parent, intentBatchInline);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = await intentsClient.PollOnceBatchUpdateIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntentsAsync(string, IntentBatch, CancellationToken)

public virtual Task<Operation<BatchUpdateIntentsResponse, Struct>> BatchUpdateIntentsAsync(string parent, IntentBatch intentBatchInline, CancellationToken cancellationToken)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
parentstring

Required. The name of the agent to update or create intents in. Format: projects/<Project ID>/agent.

intentBatchInlineIntentBatch

The collection of intents to update or create.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationBatchUpdateIntentsResponseStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/agent";
IntentBatch intentBatchInline = new IntentBatch();
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = await intentsClient.BatchUpdateIntentsAsync(parent, intentBatchInline);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = await intentsClient.PollOnceBatchUpdateIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntentsAsync(string, string, CallSettings)

public virtual Task<Operation<BatchUpdateIntentsResponse, Struct>> BatchUpdateIntentsAsync(string parent, string intentBatchUri, CallSettings callSettings = null)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
parentstring

Required. The name of the agent to update or create intents in. Format: projects/<Project ID>/agent.

intentBatchUristring

The URI to a Google Cloud Storage file containing intents to update or create. The file format can either be a serialized proto (of IntentBatch type) or JSON object. Note: The URI must start with "gs://".

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationBatchUpdateIntentsResponseStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/agent";
string intentBatchUri = "";
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = await intentsClient.BatchUpdateIntentsAsync(parent, intentBatchUri);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = await intentsClient.PollOnceBatchUpdateIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

BatchUpdateIntentsAsync(string, string, CancellationToken)

public virtual Task<Operation<BatchUpdateIntentsResponse, Struct>> BatchUpdateIntentsAsync(string parent, string intentBatchUri, CancellationToken cancellationToken)

Updates/Creates multiple intents in the specified agent.

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

  • metadata: An empty Struct message
  • response: [BatchUpdateIntentsResponse][google.cloud.dialogflow.v2.BatchUpdateIntentsResponse]

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

Parameters
NameDescription
parentstring

Required. The name of the agent to update or create intents in. Format: projects/<Project ID>/agent.

intentBatchUristring

The URI to a Google Cloud Storage file containing intents to update or create. The file format can either be a serialized proto (of IntentBatch type) or JSON object. Note: The URI must start with "gs://".

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationBatchUpdateIntentsResponseStruct

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/agent";
string intentBatchUri = "";
// Make the request
Operation<BatchUpdateIntentsResponse, Struct> response = await intentsClient.BatchUpdateIntentsAsync(parent, intentBatchUri);

// Poll until the returned long-running operation is complete
Operation<BatchUpdateIntentsResponse, Struct> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
BatchUpdateIntentsResponse 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<BatchUpdateIntentsResponse, Struct> retrievedResponse = await intentsClient.PollOnceBatchUpdateIntentsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    BatchUpdateIntentsResponse retrievedResult = retrievedResponse.Result;
}

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
TypeDescription
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
NameDescription
cancellationTokenCancellationToken

The CancellationToken to use while creating the client.

Returns
TypeDescription
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 an agent prior to sending it queries. See the training documentation.

Parameters
NameDescription
parentAgentName

Required. The agent to create a intent for. Format: projects/<Project ID>/agent.

intentIntent

Required. The intent to create.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Intent

The RPC response.

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

CreateIntent(AgentName, Intent, string, CallSettings)

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

Creates an intent in the specified agent.

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

Parameters
NameDescription
parentAgentName

Required. The agent to create a intent for. Format: projects/<Project ID>/agent.

intentIntent

Required. The intent to create.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Intent

The RPC response.

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

CreateIntent(CreateIntentRequest, CallSettings)

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

Creates an intent in the specified agent.

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

Parameters
NameDescription
requestCreateIntentRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Intent

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
CreateIntentRequest request = new CreateIntentRequest
{
    ParentAsAgentName = AgentName.FromProject("[PROJECT]"),
    Intent = new Intent(),
    LanguageCode = "",
    IntentView = IntentView.Unspecified,
};
// 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 an agent prior to sending it queries. See the training documentation.

Parameters
NameDescription
parentstring

Required. The agent to create a intent for. Format: projects/<Project ID>/agent.

intentIntent

Required. The intent to create.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Intent

The RPC response.

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

CreateIntent(string, Intent, string, CallSettings)

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

Creates an intent in the specified agent.

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

Parameters
NameDescription
parentstring

Required. The agent to create a intent for. Format: projects/<Project ID>/agent.

intentIntent

Required. The intent to create.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Intent

The RPC response.

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

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 an agent prior to sending it queries. See the training documentation.

Parameters
NameDescription
parentAgentName

Required. The agent to create a intent for. Format: projects/<Project ID>/agent.

intentIntent

Required. The intent to create.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

CreateIntentAsync(AgentName, Intent, string, CallSettings)

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

Creates an intent in the specified agent.

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

Parameters
NameDescription
parentAgentName

Required. The agent to create a intent for. Format: projects/<Project ID>/agent.

intentIntent

Required. The intent to create.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

CreateIntentAsync(AgentName, Intent, string, CancellationToken)

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

Creates an intent in the specified agent.

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

Parameters
NameDescription
parentAgentName

Required. The agent to create a intent for. Format: projects/<Project ID>/agent.

intentIntent

Required. The intent to create.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

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 an agent prior to sending it queries. See the training documentation.

Parameters
NameDescription
parentAgentName

Required. The agent to create a intent for. Format: projects/<Project ID>/agent.

intentIntent

Required. The intent to create.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
AgentName parent = AgentName.FromProject("[PROJECT]");
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 an agent prior to sending it queries. See the training documentation.

Parameters
NameDescription
requestCreateIntentRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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.FromProject("[PROJECT]"),
    Intent = new Intent(),
    LanguageCode = "",
    IntentView = IntentView.Unspecified,
};
// 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 an agent prior to sending it queries. See the training documentation.

Parameters
NameDescription
requestCreateIntentRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
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.FromProject("[PROJECT]"),
    Intent = new Intent(),
    LanguageCode = "",
    IntentView = IntentView.Unspecified,
};
// 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 an agent prior to sending it queries. See the training documentation.

Parameters
NameDescription
parentstring

Required. The agent to create a intent for. Format: projects/<Project ID>/agent.

intentIntent

Required. The intent to create.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

CreateIntentAsync(string, Intent, string, CallSettings)

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

Creates an intent in the specified agent.

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

Parameters
NameDescription
parentstring

Required. The agent to create a intent for. Format: projects/<Project ID>/agent.

intentIntent

Required. The intent to create.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

CreateIntentAsync(string, Intent, string, CancellationToken)

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

Creates an intent in the specified agent.

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

Parameters
NameDescription
parentstring

Required. The agent to create a intent for. Format: projects/<Project ID>/agent.

intentIntent

Required. The intent to create.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

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 an agent prior to sending it queries. See the training documentation.

Parameters
NameDescription
parentstring

Required. The agent to create a intent for. Format: projects/<Project ID>/agent.

intentIntent

Required. The intent to create.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/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 and its direct or indirect followup intents.

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

Parameters
NameDescription
requestDeleteIntentRequest

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

callSettingsCallSettings

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.FromProjectIntent("[PROJECT]", "[INTENT]"),
};
// Make the request
intentsClient.DeleteIntent(request);

DeleteIntent(IntentName, CallSettings)

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

Deletes the specified intent and its direct or indirect followup intents.

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

Parameters
NameDescription
nameIntentName

Required. The name of the intent to delete. If this intent has direct or indirect followup intents, we also delete them. Format: projects/<Project ID>/agent/intents/<Intent ID>.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

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

DeleteIntent(string, CallSettings)

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

Deletes the specified intent and its direct or indirect followup intents.

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

Parameters
NameDescription
namestring

Required. The name of the intent to delete. If this intent has direct or indirect followup intents, we also delete them. Format: projects/<Project ID>/agent/intents/<Intent ID>.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/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 and its direct or indirect followup intents.

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

Parameters
NameDescription
requestDeleteIntentRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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.FromProjectIntent("[PROJECT]", "[INTENT]"),
};
// Make the request
await intentsClient.DeleteIntentAsync(request);

DeleteIntentAsync(DeleteIntentRequest, CancellationToken)

public virtual Task DeleteIntentAsync(DeleteIntentRequest request, CancellationToken cancellationToken)

Deletes the specified intent and its direct or indirect followup intents.

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

Parameters
NameDescription
requestDeleteIntentRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
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.FromProjectIntent("[PROJECT]", "[INTENT]"),
};
// Make the request
await intentsClient.DeleteIntentAsync(request);

DeleteIntentAsync(IntentName, CallSettings)

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

Deletes the specified intent and its direct or indirect followup intents.

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

Parameters
NameDescription
nameIntentName

Required. The name of the intent to delete. If this intent has direct or indirect followup intents, we also delete them. Format: projects/<Project ID>/agent/intents/<Intent ID>.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task

A Task containing the RPC response.

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

DeleteIntentAsync(IntentName, CancellationToken)

public virtual Task DeleteIntentAsync(IntentName name, CancellationToken cancellationToken)

Deletes the specified intent and its direct or indirect followup intents.

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

Parameters
NameDescription
nameIntentName

Required. The name of the intent to delete. If this intent has direct or indirect followup intents, we also delete them. Format: projects/<Project ID>/agent/intents/<Intent ID>.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task

A Task containing the RPC response.

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

DeleteIntentAsync(string, CallSettings)

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

Deletes the specified intent and its direct or indirect followup intents.

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

Parameters
NameDescription
namestring

Required. The name of the intent to delete. If this intent has direct or indirect followup intents, we also delete them. Format: projects/<Project ID>/agent/intents/<Intent ID>.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/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 and its direct or indirect followup intents.

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

Parameters
NameDescription
namestring

Required. The name of the intent to delete. If this intent has direct or indirect followup intents, we also delete them. Format: projects/<Project ID>/agent/intents/<Intent ID>.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task

A Task containing the RPC response.

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

GetIntent(GetIntentRequest, CallSettings)

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

Retrieves the specified intent.

Parameters
NameDescription
requestGetIntentRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Intent

The RPC response.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
GetIntentRequest request = new GetIntentRequest
{
    IntentName = IntentName.FromProjectIntent("[PROJECT]", "[INTENT]"),
    LanguageCode = "",
    IntentView = IntentView.Unspecified,
};
// 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
NameDescription
nameIntentName

Required. The name of the intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Intent

The RPC response.

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

GetIntent(IntentName, string, CallSettings)

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

Retrieves the specified intent.

Parameters
NameDescription
nameIntentName

Required. The name of the intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Intent

The RPC response.

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

GetIntent(string, CallSettings)

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

Retrieves the specified intent.

Parameters
NameDescription
namestring

Required. The name of the intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Intent

The RPC response.

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

GetIntent(string, string, CallSettings)

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

Retrieves the specified intent.

Parameters
NameDescription
namestring

Required. The name of the intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Intent

The RPC response.

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

GetIntentAsync(GetIntentRequest, CallSettings)

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

Retrieves the specified intent.

Parameters
NameDescription
requestGetIntentRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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.FromProjectIntent("[PROJECT]", "[INTENT]"),
    LanguageCode = "",
    IntentView = IntentView.Unspecified,
};
// 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
NameDescription
requestGetIntentRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
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.FromProjectIntent("[PROJECT]", "[INTENT]"),
    LanguageCode = "",
    IntentView = IntentView.Unspecified,
};
// 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
NameDescription
nameIntentName

Required. The name of the intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

GetIntentAsync(IntentName, string, CallSettings)

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

Retrieves the specified intent.

Parameters
NameDescription
nameIntentName

Required. The name of the intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

GetIntentAsync(IntentName, string, CancellationToken)

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

Retrieves the specified intent.

Parameters
NameDescription
nameIntentName

Required. The name of the intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

GetIntentAsync(IntentName, CancellationToken)

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

Retrieves the specified intent.

Parameters
NameDescription
nameIntentName

Required. The name of the intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
IntentName name = IntentName.FromProjectIntent("[PROJECT]", "[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
NameDescription
namestring

Required. The name of the intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

GetIntentAsync(string, string, CallSettings)

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

Retrieves the specified intent.

Parameters
NameDescription
namestring

Required. The name of the intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

GetIntentAsync(string, string, CancellationToken)

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

Retrieves the specified intent.

Parameters
NameDescription
namestring

Required. The name of the intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

GetIntentAsync(string, CancellationToken)

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

Retrieves the specified intent.

Parameters
NameDescription
namestring

Required. The name of the intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

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
NameDescription
parentAgentName

Required. The agent to list all intents from. Format: projects/<Project ID>/agent or projects/<Project ID>/locations/<Location ID>/agent.

Alternatively, you can specify the environment to list intents for. Format: projects/<Project ID>/agent/environments/<Environment ID> or projects/<Project ID>/locations/<Location ID>/agent/environments/<Environment ID>. Note: training phrases of the intents will not be returned for non-draft environment.

pageTokenstring

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

pageSizeint

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.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableListIntentsResponseIntent

A pageable sequence of Intent resources.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
AgentName parent = AgentName.FromProject("[PROJECT]");
// 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(AgentName, string, string, int?, CallSettings)

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

Returns the list of all intents in the specified agent.

Parameters
NameDescription
parentAgentName

Required. The agent to list all intents from. Format: projects/<Project ID>/agent or projects/<Project ID>/locations/<Location ID>/agent.

Alternatively, you can specify the environment to list intents for. Format: projects/<Project ID>/agent/environments/<Environment ID> or projects/<Project ID>/locations/<Location ID>/agent/environments/<Environment ID>. Note: training phrases of the intents will not be returned for non-draft environment.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

pageTokenstring

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

pageSizeint

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.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableListIntentsResponseIntent

A pageable sequence of Intent resources.

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

// 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
NameDescription
requestListIntentsRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableListIntentsResponseIntent

A pageable sequence of Intent resources.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
ListIntentsRequest request = new ListIntentsRequest
{
    ParentAsAgentName = AgentName.FromProject("[PROJECT]"),
    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
NameDescription
parentstring

Required. The agent to list all intents from. Format: projects/<Project ID>/agent or projects/<Project ID>/locations/<Location ID>/agent.

Alternatively, you can specify the environment to list intents for. Format: projects/<Project ID>/agent/environments/<Environment ID> or projects/<Project ID>/locations/<Location ID>/agent/environments/<Environment ID>. Note: training phrases of the intents will not be returned for non-draft environment.

pageTokenstring

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

pageSizeint

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.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableListIntentsResponseIntent

A pageable sequence of Intent resources.

Example
// Create client
IntentsClient intentsClient = IntentsClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/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(string, string, string, int?, CallSettings)

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

Returns the list of all intents in the specified agent.

Parameters
NameDescription
parentstring

Required. The agent to list all intents from. Format: projects/<Project ID>/agent or projects/<Project ID>/locations/<Location ID>/agent.

Alternatively, you can specify the environment to list intents for. Format: projects/<Project ID>/agent/environments/<Environment ID> or projects/<Project ID>/locations/<Location ID>/agent/environments/<Environment ID>. Note: training phrases of the intents will not be returned for non-draft environment.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

pageTokenstring

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

pageSizeint

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.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableListIntentsResponseIntent

A pageable sequence of Intent resources.

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

// 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
NameDescription
parentAgentName

Required. The agent to list all intents from. Format: projects/<Project ID>/agent or projects/<Project ID>/locations/<Location ID>/agent.

Alternatively, you can specify the environment to list intents for. Format: projects/<Project ID>/agent/environments/<Environment ID> or projects/<Project ID>/locations/<Location ID>/agent/environments/<Environment ID>. Note: training phrases of the intents will not be returned for non-draft environment.

pageTokenstring

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

pageSizeint

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.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerableListIntentsResponseIntent

A pageable asynchronous sequence of Intent resources.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
AgentName parent = AgentName.FromProject("[PROJECT]");
// 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(AgentName, string, string, int?, CallSettings)

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

Returns the list of all intents in the specified agent.

Parameters
NameDescription
parentAgentName

Required. The agent to list all intents from. Format: projects/<Project ID>/agent or projects/<Project ID>/locations/<Location ID>/agent.

Alternatively, you can specify the environment to list intents for. Format: projects/<Project ID>/agent/environments/<Environment ID> or projects/<Project ID>/locations/<Location ID>/agent/environments/<Environment ID>. Note: training phrases of the intents will not be returned for non-draft environment.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

pageTokenstring

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

pageSizeint

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.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerableListIntentsResponseIntent

A pageable asynchronous sequence of Intent resources.

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

// 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
NameDescription
requestListIntentsRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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.FromProject("[PROJECT]"),
    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
NameDescription
parentstring

Required. The agent to list all intents from. Format: projects/<Project ID>/agent or projects/<Project ID>/locations/<Location ID>/agent.

Alternatively, you can specify the environment to list intents for. Format: projects/<Project ID>/agent/environments/<Environment ID> or projects/<Project ID>/locations/<Location ID>/agent/environments/<Environment ID>. Note: training phrases of the intents will not be returned for non-draft environment.

pageTokenstring

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

pageSizeint

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.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerableListIntentsResponseIntent

A pageable asynchronous sequence of Intent resources.

Example
// Create client
IntentsClient intentsClient = await IntentsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/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(string, string, string, int?, CallSettings)

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

Returns the list of all intents in the specified agent.

Parameters
NameDescription
parentstring

Required. The agent to list all intents from. Format: projects/<Project ID>/agent or projects/<Project ID>/locations/<Location ID>/agent.

Alternatively, you can specify the environment to list intents for. Format: projects/<Project ID>/agent/environments/<Environment ID> or projects/<Project ID>/locations/<Location ID>/agent/environments/<Environment ID>. Note: training phrases of the intents will not be returned for non-draft environment.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

pageTokenstring

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

pageSizeint

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.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerableListIntentsResponseIntent

A pageable asynchronous sequence of Intent resources.

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

// 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;

PollOnceBatchDeleteIntents(string, CallSettings)

public virtual Operation<Empty, Struct> PollOnceBatchDeleteIntents(string operationName, CallSettings callSettings = null)

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

Parameters
NameDescription
operationNamestring

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationEmptyStruct

The result of polling the operation.

PollOnceBatchDeleteIntentsAsync(string, CallSettings)

public virtual Task<Operation<Empty, Struct>> PollOnceBatchDeleteIntentsAsync(string operationName, CallSettings callSettings = null)

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

Parameters
NameDescription
operationNamestring

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationEmptyStruct

A task representing the result of polling the operation.

PollOnceBatchUpdateIntents(string, CallSettings)

public virtual Operation<BatchUpdateIntentsResponse, Struct> PollOnceBatchUpdateIntents(string operationName, CallSettings callSettings = null)

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

Parameters
NameDescription
operationNamestring

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationBatchUpdateIntentsResponseStruct

The result of polling the operation.

PollOnceBatchUpdateIntentsAsync(string, CallSettings)

public virtual Task<Operation<BatchUpdateIntentsResponse, Struct>> PollOnceBatchUpdateIntentsAsync(string operationName, CallSettings callSettings = null)

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

Parameters
NameDescription
operationNamestring

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationBatchUpdateIntentsResponseStruct

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
TypeDescription
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, string, CallSettings)

public virtual Intent UpdateIntent(Intent intent, string languageCode, CallSettings callSettings = null)

Updates the specified intent.

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

Parameters
NameDescription
intentIntent

Required. The intent to update.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Intent

The RPC response.

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

UpdateIntent(Intent, string, FieldMask, CallSettings)

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

Updates the specified intent.

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

Parameters
NameDescription
intentIntent

Required. The intent to update.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

updateMaskFieldMask

Optional. The mask to control which fields get updated.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Intent

The RPC response.

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

UpdateIntent(UpdateIntentRequest, CallSettings)

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

Updates the specified intent.

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

Parameters
NameDescription
requestUpdateIntentRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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(),
    IntentView = IntentView.Unspecified,
};
// Make the request
Intent response = intentsClient.UpdateIntent(request);

UpdateIntentAsync(Intent, string, CallSettings)

public virtual Task<Intent> UpdateIntentAsync(Intent intent, string languageCode, CallSettings callSettings = null)

Updates the specified intent.

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

Parameters
NameDescription
intentIntent

Required. The intent to update.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

UpdateIntentAsync(Intent, string, FieldMask, CallSettings)

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

Updates the specified intent.

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

Parameters
NameDescription
intentIntent

Required. The intent to update.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

updateMaskFieldMask

Optional. The mask to control which fields get updated.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

UpdateIntentAsync(Intent, string, FieldMask, CancellationToken)

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

Updates the specified intent.

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

Parameters
NameDescription
intentIntent

Required. The intent to update.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

updateMaskFieldMask

Optional. The mask to control which fields get updated.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

UpdateIntentAsync(Intent, string, CancellationToken)

public virtual Task<Intent> UpdateIntentAsync(Intent intent, string languageCode, CancellationToken cancellationToken)

Updates the specified intent.

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

Parameters
NameDescription
intentIntent

Required. The intent to update.

languageCodestring

Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskIntent

A Task containing the RPC response.

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

UpdateIntentAsync(UpdateIntentRequest, CallSettings)

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

Updates the specified intent.

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

Parameters
NameDescription
requestUpdateIntentRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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(),
    IntentView = IntentView.Unspecified,
};
// 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 an agent prior to sending it queries. See the training documentation.

Parameters
NameDescription
requestUpdateIntentRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
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(),
    IntentView = IntentView.Unspecified,
};
// Make the request
Intent response = await intentsClient.UpdateIntentAsync(request);