Retail v2 API - Class ControlServiceClient (2.4.0)

Stay organized with collections Save and categorize content based on your preferences.
public abstract class ControlServiceClient

Reference documentation and code samples for the Retail v2 API class ControlServiceClient.

ControlService client wrapper, for convenient use.

Inheritance

Object > ControlServiceClient

Derived Types

Namespace

Google.Cloud.Retail.V2

Assembly

Google.Cloud.Retail.V2.dll

Remarks

Service for modifying Control.

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

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

Property Value
TypeDescription
String

DefaultScopes

public static IReadOnlyList<string> DefaultScopes { get; }

The default ControlService scopes.

Property Value
TypeDescription
IReadOnlyList<String>
Remarks

The default ControlService scopes are:

GrpcClient

public virtual ControlService.ControlServiceClient GrpcClient { get; }

The underlying gRPC ControlService client

Property Value
TypeDescription
ControlService.ControlServiceClient

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

Create()

public static ControlServiceClient Create()

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

Returns
TypeDescription
ControlServiceClient

The created ControlServiceClient.

CreateAsync(CancellationToken)

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

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

Parameter
NameDescription
cancellationTokenCancellationToken

The CancellationToken to use while creating the client.

Returns
TypeDescription
Task<ControlServiceClient>

The task representing the created ControlServiceClient.

CreateControl(CatalogName, Control, String, CallSettings)

public virtual Control CreateControl(CatalogName parent, Control control, string controlId, CallSettings callSettings = null)

Creates a Control.

If the [Control][google.cloud.retail.v2.Control] to create already exists, an ALREADY_EXISTS error is returned.

Parameters
NameDescription
parentCatalogName

Required. Full resource name of parent catalog. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}

controlControl

Required. The Control to create.

controlIdString

Required. The ID to use for the Control, which will become the final component of the Control's resource name.

This value should be 4-63 characters, and valid characters are /[a-z][0-9]-_/.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Control

The RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = ControlServiceClient.Create();
// Initialize request argument(s)
CatalogName parent = CatalogName.FromProjectLocationCatalog("[PROJECT]", "[LOCATION]", "[CATALOG]");
Control control = new Control();
string controlId = "";
// Make the request
Control response = controlServiceClient.CreateControl(parent, control, controlId);

CreateControl(CreateControlRequest, CallSettings)

public virtual Control CreateControl(CreateControlRequest request, CallSettings callSettings = null)

Creates a Control.

If the [Control][google.cloud.retail.v2.Control] to create already exists, an ALREADY_EXISTS error is returned.

Parameters
NameDescription
requestCreateControlRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Control

The RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = ControlServiceClient.Create();
// Initialize request argument(s)
CreateControlRequest request = new CreateControlRequest
{
    ParentAsCatalogName = CatalogName.FromProjectLocationCatalog("[PROJECT]", "[LOCATION]", "[CATALOG]"),
    Control = new Control(),
    ControlId = "",
};
// Make the request
Control response = controlServiceClient.CreateControl(request);

CreateControl(String, Control, String, CallSettings)

public virtual Control CreateControl(string parent, Control control, string controlId, CallSettings callSettings = null)

Creates a Control.

If the [Control][google.cloud.retail.v2.Control] to create already exists, an ALREADY_EXISTS error is returned.

Parameters
NameDescription
parentString

Required. Full resource name of parent catalog. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}

controlControl

Required. The Control to create.

controlIdString

Required. The ID to use for the Control, which will become the final component of the Control's resource name.

This value should be 4-63 characters, and valid characters are /[a-z][0-9]-_/.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Control

The RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = ControlServiceClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/catalogs/[CATALOG]";
Control control = new Control();
string controlId = "";
// Make the request
Control response = controlServiceClient.CreateControl(parent, control, controlId);

CreateControlAsync(CatalogName, Control, String, CallSettings)

public virtual Task<Control> CreateControlAsync(CatalogName parent, Control control, string controlId, CallSettings callSettings = null)

Creates a Control.

If the [Control][google.cloud.retail.v2.Control] to create already exists, an ALREADY_EXISTS error is returned.

Parameters
NameDescription
parentCatalogName

Required. Full resource name of parent catalog. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}

controlControl

Required. The Control to create.

controlIdString

Required. The ID to use for the Control, which will become the final component of the Control's resource name.

This value should be 4-63 characters, and valid characters are /[a-z][0-9]-_/.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Control>

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
CatalogName parent = CatalogName.FromProjectLocationCatalog("[PROJECT]", "[LOCATION]", "[CATALOG]");
Control control = new Control();
string controlId = "";
// Make the request
Control response = await controlServiceClient.CreateControlAsync(parent, control, controlId);

CreateControlAsync(CatalogName, Control, String, CancellationToken)

public virtual Task<Control> CreateControlAsync(CatalogName parent, Control control, string controlId, CancellationToken cancellationToken)

Creates a Control.

If the [Control][google.cloud.retail.v2.Control] to create already exists, an ALREADY_EXISTS error is returned.

Parameters
NameDescription
parentCatalogName

Required. Full resource name of parent catalog. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}

controlControl

Required. The Control to create.

controlIdString

Required. The ID to use for the Control, which will become the final component of the Control's resource name.

This value should be 4-63 characters, and valid characters are /[a-z][0-9]-_/.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Control>

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
CatalogName parent = CatalogName.FromProjectLocationCatalog("[PROJECT]", "[LOCATION]", "[CATALOG]");
Control control = new Control();
string controlId = "";
// Make the request
Control response = await controlServiceClient.CreateControlAsync(parent, control, controlId);

CreateControlAsync(CreateControlRequest, CallSettings)

public virtual Task<Control> CreateControlAsync(CreateControlRequest request, CallSettings callSettings = null)

Creates a Control.

If the [Control][google.cloud.retail.v2.Control] to create already exists, an ALREADY_EXISTS error is returned.

Parameters
NameDescription
requestCreateControlRequest

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<Control>

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
CreateControlRequest request = new CreateControlRequest
{
    ParentAsCatalogName = CatalogName.FromProjectLocationCatalog("[PROJECT]", "[LOCATION]", "[CATALOG]"),
    Control = new Control(),
    ControlId = "",
};
// Make the request
Control response = await controlServiceClient.CreateControlAsync(request);

CreateControlAsync(CreateControlRequest, CancellationToken)

public virtual Task<Control> CreateControlAsync(CreateControlRequest request, CancellationToken cancellationToken)

Creates a Control.

If the [Control][google.cloud.retail.v2.Control] to create already exists, an ALREADY_EXISTS error is returned.

Parameters
NameDescription
requestCreateControlRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Control>

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
CreateControlRequest request = new CreateControlRequest
{
    ParentAsCatalogName = CatalogName.FromProjectLocationCatalog("[PROJECT]", "[LOCATION]", "[CATALOG]"),
    Control = new Control(),
    ControlId = "",
};
// Make the request
Control response = await controlServiceClient.CreateControlAsync(request);

CreateControlAsync(String, Control, String, CallSettings)

public virtual Task<Control> CreateControlAsync(string parent, Control control, string controlId, CallSettings callSettings = null)

Creates a Control.

If the [Control][google.cloud.retail.v2.Control] to create already exists, an ALREADY_EXISTS error is returned.

Parameters
NameDescription
parentString

Required. Full resource name of parent catalog. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}

controlControl

Required. The Control to create.

controlIdString

Required. The ID to use for the Control, which will become the final component of the Control's resource name.

This value should be 4-63 characters, and valid characters are /[a-z][0-9]-_/.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Control>

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/catalogs/[CATALOG]";
Control control = new Control();
string controlId = "";
// Make the request
Control response = await controlServiceClient.CreateControlAsync(parent, control, controlId);

CreateControlAsync(String, Control, String, CancellationToken)

public virtual Task<Control> CreateControlAsync(string parent, Control control, string controlId, CancellationToken cancellationToken)

Creates a Control.

If the [Control][google.cloud.retail.v2.Control] to create already exists, an ALREADY_EXISTS error is returned.

Parameters
NameDescription
parentString

Required. Full resource name of parent catalog. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}

controlControl

Required. The Control to create.

controlIdString

Required. The ID to use for the Control, which will become the final component of the Control's resource name.

This value should be 4-63 characters, and valid characters are /[a-z][0-9]-_/.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Control>

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/catalogs/[CATALOG]";
Control control = new Control();
string controlId = "";
// Make the request
Control response = await controlServiceClient.CreateControlAsync(parent, control, controlId);

DeleteControl(ControlName, CallSettings)

public virtual void DeleteControl(ControlName name, CallSettings callSettings = null)

Deletes a Control.

If the [Control][google.cloud.retail.v2.Control] to delete does not exist, a NOT_FOUND error is returned.

Parameters
NameDescription
nameControlName

Required. The resource name of the Control to delete. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
ControlServiceClient controlServiceClient = ControlServiceClient.Create();
// Initialize request argument(s)
ControlName name = ControlName.FromProjectLocationCatalogControl("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CONTROL]");
// Make the request
controlServiceClient.DeleteControl(name);

DeleteControl(DeleteControlRequest, CallSettings)

public virtual void DeleteControl(DeleteControlRequest request, CallSettings callSettings = null)

Deletes a Control.

If the [Control][google.cloud.retail.v2.Control] to delete does not exist, a NOT_FOUND error is returned.

Parameters
NameDescription
requestDeleteControlRequest

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
ControlServiceClient controlServiceClient = ControlServiceClient.Create();
// Initialize request argument(s)
DeleteControlRequest request = new DeleteControlRequest
{
    ControlName = ControlName.FromProjectLocationCatalogControl("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CONTROL]"),
};
// Make the request
controlServiceClient.DeleteControl(request);

DeleteControl(String, CallSettings)

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

Deletes a Control.

If the [Control][google.cloud.retail.v2.Control] to delete does not exist, a NOT_FOUND error is returned.

Parameters
NameDescription
nameString

Required. The resource name of the Control to delete. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Example
// Create client
ControlServiceClient controlServiceClient = ControlServiceClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/catalogs/[CATALOG]/controls/[CONTROL]";
// Make the request
controlServiceClient.DeleteControl(name);

DeleteControlAsync(ControlName, CallSettings)

public virtual Task DeleteControlAsync(ControlName name, CallSettings callSettings = null)

Deletes a Control.

If the [Control][google.cloud.retail.v2.Control] to delete does not exist, a NOT_FOUND error is returned.

Parameters
NameDescription
nameControlName

Required. The resource name of the Control to delete. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
ControlName name = ControlName.FromProjectLocationCatalogControl("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CONTROL]");
// Make the request
await controlServiceClient.DeleteControlAsync(name);

DeleteControlAsync(ControlName, CancellationToken)

public virtual Task DeleteControlAsync(ControlName name, CancellationToken cancellationToken)

Deletes a Control.

If the [Control][google.cloud.retail.v2.Control] to delete does not exist, a NOT_FOUND error is returned.

Parameters
NameDescription
nameControlName

Required. The resource name of the Control to delete. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
ControlName name = ControlName.FromProjectLocationCatalogControl("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CONTROL]");
// Make the request
await controlServiceClient.DeleteControlAsync(name);

DeleteControlAsync(DeleteControlRequest, CallSettings)

public virtual Task DeleteControlAsync(DeleteControlRequest request, CallSettings callSettings = null)

Deletes a Control.

If the [Control][google.cloud.retail.v2.Control] to delete does not exist, a NOT_FOUND error is returned.

Parameters
NameDescription
requestDeleteControlRequest

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
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
DeleteControlRequest request = new DeleteControlRequest
{
    ControlName = ControlName.FromProjectLocationCatalogControl("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CONTROL]"),
};
// Make the request
await controlServiceClient.DeleteControlAsync(request);

DeleteControlAsync(DeleteControlRequest, CancellationToken)

public virtual Task DeleteControlAsync(DeleteControlRequest request, CancellationToken cancellationToken)

Deletes a Control.

If the [Control][google.cloud.retail.v2.Control] to delete does not exist, a NOT_FOUND error is returned.

Parameters
NameDescription
requestDeleteControlRequest

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
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
DeleteControlRequest request = new DeleteControlRequest
{
    ControlName = ControlName.FromProjectLocationCatalogControl("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CONTROL]"),
};
// Make the request
await controlServiceClient.DeleteControlAsync(request);

DeleteControlAsync(String, CallSettings)

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

Deletes a Control.

If the [Control][google.cloud.retail.v2.Control] to delete does not exist, a NOT_FOUND error is returned.

Parameters
NameDescription
nameString

Required. The resource name of the Control to delete. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/catalogs/[CATALOG]/controls/[CONTROL]";
// Make the request
await controlServiceClient.DeleteControlAsync(name);

DeleteControlAsync(String, CancellationToken)

public virtual Task DeleteControlAsync(string name, CancellationToken cancellationToken)

Deletes a Control.

If the [Control][google.cloud.retail.v2.Control] to delete does not exist, a NOT_FOUND error is returned.

Parameters
NameDescription
nameString

Required. The resource name of the Control to delete. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/catalogs/[CATALOG]/controls/[CONTROL]";
// Make the request
await controlServiceClient.DeleteControlAsync(name);

GetControl(ControlName, CallSettings)

public virtual Control GetControl(ControlName name, CallSettings callSettings = null)

Gets a Control.

Parameters
NameDescription
nameControlName

Required. The resource name of the Control to get. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Control

The RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = ControlServiceClient.Create();
// Initialize request argument(s)
ControlName name = ControlName.FromProjectLocationCatalogControl("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CONTROL]");
// Make the request
Control response = controlServiceClient.GetControl(name);

GetControl(GetControlRequest, CallSettings)

public virtual Control GetControl(GetControlRequest request, CallSettings callSettings = null)

Gets a Control.

Parameters
NameDescription
requestGetControlRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Control

The RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = ControlServiceClient.Create();
// Initialize request argument(s)
GetControlRequest request = new GetControlRequest
{
    ControlName = ControlName.FromProjectLocationCatalogControl("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CONTROL]"),
};
// Make the request
Control response = controlServiceClient.GetControl(request);

GetControl(String, CallSettings)

public virtual Control GetControl(string name, CallSettings callSettings = null)

Gets a Control.

Parameters
NameDescription
nameString

Required. The resource name of the Control to get. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Control

The RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = ControlServiceClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/catalogs/[CATALOG]/controls/[CONTROL]";
// Make the request
Control response = controlServiceClient.GetControl(name);

GetControlAsync(ControlName, CallSettings)

public virtual Task<Control> GetControlAsync(ControlName name, CallSettings callSettings = null)

Gets a Control.

Parameters
NameDescription
nameControlName

Required. The resource name of the Control to get. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Control>

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
ControlName name = ControlName.FromProjectLocationCatalogControl("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CONTROL]");
// Make the request
Control response = await controlServiceClient.GetControlAsync(name);

GetControlAsync(ControlName, CancellationToken)

public virtual Task<Control> GetControlAsync(ControlName name, CancellationToken cancellationToken)

Gets a Control.

Parameters
NameDescription
nameControlName

Required. The resource name of the Control to get. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Control>

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
ControlName name = ControlName.FromProjectLocationCatalogControl("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CONTROL]");
// Make the request
Control response = await controlServiceClient.GetControlAsync(name);

GetControlAsync(GetControlRequest, CallSettings)

public virtual Task<Control> GetControlAsync(GetControlRequest request, CallSettings callSettings = null)

Gets a Control.

Parameters
NameDescription
requestGetControlRequest

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<Control>

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
GetControlRequest request = new GetControlRequest
{
    ControlName = ControlName.FromProjectLocationCatalogControl("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CONTROL]"),
};
// Make the request
Control response = await controlServiceClient.GetControlAsync(request);

GetControlAsync(GetControlRequest, CancellationToken)

public virtual Task<Control> GetControlAsync(GetControlRequest request, CancellationToken cancellationToken)

Gets a Control.

Parameters
NameDescription
requestGetControlRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Control>

A Task containing the RPC response.

Example
// Create client
ControlServiceClient controlServiceClient = await ControlServiceClient.CreateAsync();
// Initialize request argument(s)
GetControlRequest request = new GetControlRequest
{
    ControlName = ControlName.FromProjectLocationCatalogControl("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CONTROL]"),
};