public abstract class TargetTcpProxiesClientTargetTcpProxies client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Compute.V1Assembly
Google.Cloud.Compute.V1.dll
Remarks
The TargetTcpProxies API.
Properties
DefaultEndpoint
public static string DefaultEndpoint { get; }The default endpoint for the TargetTcpProxies service, which is a host of "compute.googleapis.com" and a port of 443.
| Property Value | |
|---|---|
| Type | Description |
String |
|
DefaultScopes
public static IReadOnlyList<string> DefaultScopes { get; }The default TargetTcpProxies scopes.
| Property Value | |
|---|---|
| Type | Description |
IReadOnlyList<String> |
|
The default TargetTcpProxies scopes are:
DeleteOperationsClient
public virtual OperationsClient DeleteOperationsClient { get; }The long-running operations client for Delete.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
GrpcClient
public virtual TargetTcpProxies.TargetTcpProxiesClient GrpcClient { get; }The underlying gRPC TargetTcpProxies client
| Property Value | |
|---|---|
| Type | Description |
TargetTcpProxies.TargetTcpProxiesClient |
|
InsertOperationsClient
public virtual OperationsClient InsertOperationsClient { get; }The long-running operations client for Insert.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
ServiceMetadata
public static ServiceMetadata ServiceMetadata { get; }The service metadata associated with this client type.
| Property Value | |
|---|---|
| Type | Description |
ServiceMetadata |
|
SetBackendServiceOperationsClient
public virtual OperationsClient SetBackendServiceOperationsClient { get; }The long-running operations client for SetBackendService.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
SetProxyHeaderOperationsClient
public virtual OperationsClient SetProxyHeaderOperationsClient { get; }The long-running operations client for SetProxyHeader.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
Methods
Create()
public static TargetTcpProxiesClient Create()Synchronously creates a TargetTcpProxiesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use TargetTcpProxiesClientBuilder.
| Returns | |
|---|---|
| Type | Description |
TargetTcpProxiesClient |
The created TargetTcpProxiesClient. |
CreateAsync(CancellationToken)
public static Task<TargetTcpProxiesClient> CreateAsync(CancellationToken cancellationToken = default(CancellationToken))Asynchronously creates a TargetTcpProxiesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use TargetTcpProxiesClientBuilder.
| Parameter | |
|---|---|
| Name | Description |
cancellationToken |
CancellationTokenThe CancellationToken to use while creating the client. |
| Returns | |
|---|---|
| Type | Description |
Task<TargetTcpProxiesClient> |
The task representing the created TargetTcpProxiesClient. |
Delete(DeleteTargetTcpProxyRequest, CallSettings)
public virtual Operation<Operation, Operation> Delete(DeleteTargetTcpProxyRequest request, CallSettings callSettings = null)Deletes the specified TargetTcpProxy resource.
| Parameters | |
|---|---|
| Name | Description |
request |
DeleteTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
// Initialize request argument(s)
DeleteTargetTcpProxyRequest request = new DeleteTargetTcpProxyRequest
{
RequestId = "",
Project = "",
TargetTcpProxy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = targetTcpProxiesClient.Delete(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = targetTcpProxiesClient.PollOnceDelete(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
Delete(String, String, CallSettings)
public virtual Operation<Operation, Operation> Delete(string project, string targetTcpProxy, CallSettings callSettings = null)Deletes the specified TargetTcpProxy resource.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxy |
StringName of the TargetTcpProxy resource to delete. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
// Initialize request argument(s)
string project = "";
string targetTcpProxy = "";
// Make the request
lro::Operation<Operation, Operation> response = targetTcpProxiesClient.Delete(project, targetTcpProxy);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = targetTcpProxiesClient.PollOnceDelete(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(DeleteTargetTcpProxyRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteTargetTcpProxyRequest request, CallSettings callSettings = null)Deletes the specified TargetTcpProxy resource.
| Parameters | |
|---|---|
| Name | Description |
request |
DeleteTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
DeleteTargetTcpProxyRequest request = new DeleteTargetTcpProxyRequest
{
RequestId = "",
Project = "",
TargetTcpProxy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.DeleteAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(DeleteTargetTcpProxyRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteTargetTcpProxyRequest request, CancellationToken cancellationToken)Deletes the specified TargetTcpProxy resource.
| Parameters | |
|---|---|
| Name | Description |
request |
DeleteTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
DeleteTargetTcpProxyRequest request = new DeleteTargetTcpProxyRequest
{
RequestId = "",
Project = "",
TargetTcpProxy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.DeleteAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(String, String, CallSettings)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string targetTcpProxy, CallSettings callSettings = null)Deletes the specified TargetTcpProxy resource.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxy |
StringName of the TargetTcpProxy resource to delete. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string targetTcpProxy = "";
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.DeleteAsync(project, targetTcpProxy);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(String, String, CancellationToken)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string targetTcpProxy, CancellationToken cancellationToken)Deletes the specified TargetTcpProxy resource.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxy |
StringName of the TargetTcpProxy resource to delete. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string targetTcpProxy = "";
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.DeleteAsync(project, targetTcpProxy);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
Get(GetTargetTcpProxyRequest, CallSettings)
public virtual TargetTcpProxy Get(GetTargetTcpProxyRequest request, CallSettings callSettings = null)Returns the specified TargetTcpProxy resource. Gets a list of available target TCP proxies by making a list() request.
| Parameters | |
|---|---|
| Name | Description |
request |
GetTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
TargetTcpProxy |
The RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
// Initialize request argument(s)
GetTargetTcpProxyRequest request = new GetTargetTcpProxyRequest
{
Project = "",
TargetTcpProxy = "",
};
// Make the request
TargetTcpProxy response = targetTcpProxiesClient.Get(request);
Get(String, String, CallSettings)
public virtual TargetTcpProxy Get(string project, string targetTcpProxy, CallSettings callSettings = null)Returns the specified TargetTcpProxy resource. Gets a list of available target TCP proxies by making a list() request.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxy |
StringName of the TargetTcpProxy resource to return. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
TargetTcpProxy |
The RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
// Initialize request argument(s)
string project = "";
string targetTcpProxy = "";
// Make the request
TargetTcpProxy response = targetTcpProxiesClient.Get(project, targetTcpProxy);
GetAsync(GetTargetTcpProxyRequest, CallSettings)
public virtual Task<TargetTcpProxy> GetAsync(GetTargetTcpProxyRequest request, CallSettings callSettings = null)Returns the specified TargetTcpProxy resource. Gets a list of available target TCP proxies by making a list() request.
| Parameters | |
|---|---|
| Name | Description |
request |
GetTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<TargetTcpProxy> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
GetTargetTcpProxyRequest request = new GetTargetTcpProxyRequest
{
Project = "",
TargetTcpProxy = "",
};
// Make the request
TargetTcpProxy response = await targetTcpProxiesClient.GetAsync(request);
GetAsync(GetTargetTcpProxyRequest, CancellationToken)
public virtual Task<TargetTcpProxy> GetAsync(GetTargetTcpProxyRequest request, CancellationToken cancellationToken)Returns the specified TargetTcpProxy resource. Gets a list of available target TCP proxies by making a list() request.
| Parameters | |
|---|---|
| Name | Description |
request |
GetTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<TargetTcpProxy> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
GetTargetTcpProxyRequest request = new GetTargetTcpProxyRequest
{
Project = "",
TargetTcpProxy = "",
};
// Make the request
TargetTcpProxy response = await targetTcpProxiesClient.GetAsync(request);
GetAsync(String, String, CallSettings)
public virtual Task<TargetTcpProxy> GetAsync(string project, string targetTcpProxy, CallSettings callSettings = null)Returns the specified TargetTcpProxy resource. Gets a list of available target TCP proxies by making a list() request.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxy |
StringName of the TargetTcpProxy resource to return. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<TargetTcpProxy> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string targetTcpProxy = "";
// Make the request
TargetTcpProxy response = await targetTcpProxiesClient.GetAsync(project, targetTcpProxy);
GetAsync(String, String, CancellationToken)
public virtual Task<TargetTcpProxy> GetAsync(string project, string targetTcpProxy, CancellationToken cancellationToken)Returns the specified TargetTcpProxy resource. Gets a list of available target TCP proxies by making a list() request.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxy |
StringName of the TargetTcpProxy resource to return. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<TargetTcpProxy> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string targetTcpProxy = "";
// Make the request
TargetTcpProxy response = await targetTcpProxiesClient.GetAsync(project, targetTcpProxy);
Insert(InsertTargetTcpProxyRequest, CallSettings)
public virtual Operation<Operation, Operation> Insert(InsertTargetTcpProxyRequest request, CallSettings callSettings = null)Creates a TargetTcpProxy resource in the specified project using the data included in the request.
| Parameters | |
|---|---|
| Name | Description |
request |
InsertTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
// Initialize request argument(s)
InsertTargetTcpProxyRequest request = new InsertTargetTcpProxyRequest
{
RequestId = "",
TargetTcpProxyResource = new TargetTcpProxy(),
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = targetTcpProxiesClient.Insert(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = targetTcpProxiesClient.PollOnceInsert(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
Insert(String, TargetTcpProxy, CallSettings)
public virtual Operation<Operation, Operation> Insert(string project, TargetTcpProxy targetTcpProxyResource, CallSettings callSettings = null)Creates a TargetTcpProxy resource in the specified project using the data included in the request.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxyResource |
TargetTcpProxyThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
// Initialize request argument(s)
string project = "";
TargetTcpProxy targetTcpProxyResource = new TargetTcpProxy();
// Make the request
lro::Operation<Operation, Operation> response = targetTcpProxiesClient.Insert(project, targetTcpProxyResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = targetTcpProxiesClient.PollOnceInsert(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(InsertTargetTcpProxyRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertTargetTcpProxyRequest request, CallSettings callSettings = null)Creates a TargetTcpProxy resource in the specified project using the data included in the request.
| Parameters | |
|---|---|
| Name | Description |
request |
InsertTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
InsertTargetTcpProxyRequest request = new InsertTargetTcpProxyRequest
{
RequestId = "",
TargetTcpProxyResource = new TargetTcpProxy(),
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.InsertAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(InsertTargetTcpProxyRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertTargetTcpProxyRequest request, CancellationToken cancellationToken)Creates a TargetTcpProxy resource in the specified project using the data included in the request.
| Parameters | |
|---|---|
| Name | Description |
request |
InsertTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
InsertTargetTcpProxyRequest request = new InsertTargetTcpProxyRequest
{
RequestId = "",
TargetTcpProxyResource = new TargetTcpProxy(),
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.InsertAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(String, TargetTcpProxy, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, TargetTcpProxy targetTcpProxyResource, CallSettings callSettings = null)Creates a TargetTcpProxy resource in the specified project using the data included in the request.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxyResource |
TargetTcpProxyThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
TargetTcpProxy targetTcpProxyResource = new TargetTcpProxy();
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.InsertAsync(project, targetTcpProxyResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(String, TargetTcpProxy, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, TargetTcpProxy targetTcpProxyResource, CancellationToken cancellationToken)Creates a TargetTcpProxy resource in the specified project using the data included in the request.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxyResource |
TargetTcpProxyThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
TargetTcpProxy targetTcpProxyResource = new TargetTcpProxy();
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.InsertAsync(project, targetTcpProxyResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
List(ListTargetTcpProxiesRequest, CallSettings)
public virtual PagedEnumerable<TargetTcpProxyList, TargetTcpProxy> List(ListTargetTcpProxiesRequest request, CallSettings callSettings = null)Retrieves the list of TargetTcpProxy resources available to the specified project.
| Parameters | |
|---|---|
| Name | Description |
request |
ListTargetTcpProxiesRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedEnumerable<TargetTcpProxyList, TargetTcpProxy> |
A pageable sequence of TargetTcpProxy resources. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
// Initialize request argument(s)
ListTargetTcpProxiesRequest request = new ListTargetTcpProxiesRequest
{
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<TargetTcpProxyList, TargetTcpProxy> response = targetTcpProxiesClient.List(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (TargetTcpProxy 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 (TargetTcpProxyList page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (TargetTcpProxy 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<TargetTcpProxy> 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 (TargetTcpProxy 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;
List(String, String, Nullable<Int32>, CallSettings)
public virtual PagedEnumerable<TargetTcpProxyList, TargetTcpProxy> List(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)Retrieves the list of TargetTcpProxy resources available to the specified project.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
pageToken |
StringThe token returned from the previous request. A value of |
pageSize |
Nullable<Int32>The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedEnumerable<TargetTcpProxyList, TargetTcpProxy> |
A pageable sequence of TargetTcpProxy resources. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
PagedEnumerable<TargetTcpProxyList, TargetTcpProxy> response = targetTcpProxiesClient.List(project);
// Iterate over all response items, lazily performing RPCs as required
foreach (TargetTcpProxy 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 (TargetTcpProxyList page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (TargetTcpProxy 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<TargetTcpProxy> 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 (TargetTcpProxy 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;
ListAsync(ListTargetTcpProxiesRequest, CallSettings)
public virtual PagedAsyncEnumerable<TargetTcpProxyList, TargetTcpProxy> ListAsync(ListTargetTcpProxiesRequest request, CallSettings callSettings = null)Retrieves the list of TargetTcpProxy resources available to the specified project.
| Parameters | |
|---|---|
| Name | Description |
request |
ListTargetTcpProxiesRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedAsyncEnumerable<TargetTcpProxyList, TargetTcpProxy> |
A pageable asynchronous sequence of TargetTcpProxy resources. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
ListTargetTcpProxiesRequest request = new ListTargetTcpProxiesRequest
{
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<TargetTcpProxyList, TargetTcpProxy> response = targetTcpProxiesClient.ListAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((TargetTcpProxy 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((TargetTcpProxyList page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (TargetTcpProxy 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<TargetTcpProxy> 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 (TargetTcpProxy 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;
ListAsync(String, String, Nullable<Int32>, CallSettings)
public virtual PagedAsyncEnumerable<TargetTcpProxyList, TargetTcpProxy> ListAsync(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)Retrieves the list of TargetTcpProxy resources available to the specified project.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
pageToken |
StringThe token returned from the previous request. A value of |
pageSize |
Nullable<Int32>The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedAsyncEnumerable<TargetTcpProxyList, TargetTcpProxy> |
A pageable asynchronous sequence of TargetTcpProxy resources. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
PagedAsyncEnumerable<TargetTcpProxyList, TargetTcpProxy> response = targetTcpProxiesClient.ListAsync(project);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((TargetTcpProxy 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((TargetTcpProxyList page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (TargetTcpProxy 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<TargetTcpProxy> 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 (TargetTcpProxy 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;
PollOnceDelete(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceDelete(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of Delete.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceDeleteAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceDeleteAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of Delete
.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
PollOnceInsert(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceInsert(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of Insert.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceInsertAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceInsertAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of Insert
.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
PollOnceSetBackendService(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceSetBackendService(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of SetBackendService
.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceSetBackendServiceAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceSetBackendServiceAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of
SetBackendService.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
PollOnceSetProxyHeader(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceSetProxyHeader(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of SetProxyHeader.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceSetProxyHeaderAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceSetProxyHeaderAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of
SetProxyHeader.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
SetBackendService(SetBackendServiceTargetTcpProxyRequest, CallSettings)
public virtual Operation<Operation, Operation> SetBackendService(SetBackendServiceTargetTcpProxyRequest request, CallSettings callSettings = null)Changes the BackendService for TargetTcpProxy.
| Parameters | |
|---|---|
| Name | Description |
request |
SetBackendServiceTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
// Initialize request argument(s)
SetBackendServiceTargetTcpProxyRequest request = new SetBackendServiceTargetTcpProxyRequest
{
RequestId = "",
Project = "",
TargetTcpProxiesSetBackendServiceRequestResource = new TargetTcpProxiesSetBackendServiceRequest(),
TargetTcpProxy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = targetTcpProxiesClient.SetBackendService(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = targetTcpProxiesClient.PollOnceSetBackendService(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
SetBackendService(String, String, TargetTcpProxiesSetBackendServiceRequest, CallSettings)
public virtual Operation<Operation, Operation> SetBackendService(string project, string targetTcpProxy, TargetTcpProxiesSetBackendServiceRequest targetTcpProxiesSetBackendServiceRequestResource, CallSettings callSettings = null)Changes the BackendService for TargetTcpProxy.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxy |
StringName of the TargetTcpProxy resource whose BackendService resource is to be set. |
targetTcpProxiesSetBackendServiceRequestResource |
TargetTcpProxiesSetBackendServiceRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
// Initialize request argument(s)
string project = "";
string targetTcpProxy = "";
TargetTcpProxiesSetBackendServiceRequest targetTcpProxiesSetBackendServiceRequestResource = new TargetTcpProxiesSetBackendServiceRequest();
// Make the request
lro::Operation<Operation, Operation> response = targetTcpProxiesClient.SetBackendService(project, targetTcpProxy, targetTcpProxiesSetBackendServiceRequestResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = targetTcpProxiesClient.PollOnceSetBackendService(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
SetBackendServiceAsync(SetBackendServiceTargetTcpProxyRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> SetBackendServiceAsync(SetBackendServiceTargetTcpProxyRequest request, CallSettings callSettings = null)Changes the BackendService for TargetTcpProxy.
| Parameters | |
|---|---|
| Name | Description |
request |
SetBackendServiceTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
SetBackendServiceTargetTcpProxyRequest request = new SetBackendServiceTargetTcpProxyRequest
{
RequestId = "",
Project = "",
TargetTcpProxiesSetBackendServiceRequestResource = new TargetTcpProxiesSetBackendServiceRequest(),
TargetTcpProxy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.SetBackendServiceAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceSetBackendServiceAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
SetBackendServiceAsync(SetBackendServiceTargetTcpProxyRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> SetBackendServiceAsync(SetBackendServiceTargetTcpProxyRequest request, CancellationToken cancellationToken)Changes the BackendService for TargetTcpProxy.
| Parameters | |
|---|---|
| Name | Description |
request |
SetBackendServiceTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
SetBackendServiceTargetTcpProxyRequest request = new SetBackendServiceTargetTcpProxyRequest
{
RequestId = "",
Project = "",
TargetTcpProxiesSetBackendServiceRequestResource = new TargetTcpProxiesSetBackendServiceRequest(),
TargetTcpProxy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.SetBackendServiceAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceSetBackendServiceAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
SetBackendServiceAsync(String, String, TargetTcpProxiesSetBackendServiceRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> SetBackendServiceAsync(string project, string targetTcpProxy, TargetTcpProxiesSetBackendServiceRequest targetTcpProxiesSetBackendServiceRequestResource, CallSettings callSettings = null)Changes the BackendService for TargetTcpProxy.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxy |
StringName of the TargetTcpProxy resource whose BackendService resource is to be set. |
targetTcpProxiesSetBackendServiceRequestResource |
TargetTcpProxiesSetBackendServiceRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string targetTcpProxy = "";
TargetTcpProxiesSetBackendServiceRequest targetTcpProxiesSetBackendServiceRequestResource = new TargetTcpProxiesSetBackendServiceRequest();
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.SetBackendServiceAsync(project, targetTcpProxy, targetTcpProxiesSetBackendServiceRequestResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceSetBackendServiceAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
SetBackendServiceAsync(String, String, TargetTcpProxiesSetBackendServiceRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> SetBackendServiceAsync(string project, string targetTcpProxy, TargetTcpProxiesSetBackendServiceRequest targetTcpProxiesSetBackendServiceRequestResource, CancellationToken cancellationToken)Changes the BackendService for TargetTcpProxy.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxy |
StringName of the TargetTcpProxy resource whose BackendService resource is to be set. |
targetTcpProxiesSetBackendServiceRequestResource |
TargetTcpProxiesSetBackendServiceRequestThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string targetTcpProxy = "";
TargetTcpProxiesSetBackendServiceRequest targetTcpProxiesSetBackendServiceRequestResource = new TargetTcpProxiesSetBackendServiceRequest();
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.SetBackendServiceAsync(project, targetTcpProxy, targetTcpProxiesSetBackendServiceRequestResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceSetBackendServiceAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
SetProxyHeader(SetProxyHeaderTargetTcpProxyRequest, CallSettings)
public virtual Operation<Operation, Operation> SetProxyHeader(SetProxyHeaderTargetTcpProxyRequest request, CallSettings callSettings = null)Changes the ProxyHeaderType for TargetTcpProxy.
| Parameters | |
|---|---|
| Name | Description |
request |
SetProxyHeaderTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
// Initialize request argument(s)
SetProxyHeaderTargetTcpProxyRequest request = new SetProxyHeaderTargetTcpProxyRequest
{
RequestId = "",
TargetTcpProxiesSetProxyHeaderRequestResource = new TargetTcpProxiesSetProxyHeaderRequest(),
Project = "",
TargetTcpProxy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = targetTcpProxiesClient.SetProxyHeader(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = targetTcpProxiesClient.PollOnceSetProxyHeader(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
SetProxyHeader(String, String, TargetTcpProxiesSetProxyHeaderRequest, CallSettings)
public virtual Operation<Operation, Operation> SetProxyHeader(string project, string targetTcpProxy, TargetTcpProxiesSetProxyHeaderRequest targetTcpProxiesSetProxyHeaderRequestResource, CallSettings callSettings = null)Changes the ProxyHeaderType for TargetTcpProxy.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxy |
StringName of the TargetTcpProxy resource whose ProxyHeader is to be set. |
targetTcpProxiesSetProxyHeaderRequestResource |
TargetTcpProxiesSetProxyHeaderRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
// Initialize request argument(s)
string project = "";
string targetTcpProxy = "";
TargetTcpProxiesSetProxyHeaderRequest targetTcpProxiesSetProxyHeaderRequestResource = new TargetTcpProxiesSetProxyHeaderRequest();
// Make the request
lro::Operation<Operation, Operation> response = targetTcpProxiesClient.SetProxyHeader(project, targetTcpProxy, targetTcpProxiesSetProxyHeaderRequestResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = targetTcpProxiesClient.PollOnceSetProxyHeader(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
SetProxyHeaderAsync(SetProxyHeaderTargetTcpProxyRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> SetProxyHeaderAsync(SetProxyHeaderTargetTcpProxyRequest request, CallSettings callSettings = null)Changes the ProxyHeaderType for TargetTcpProxy.
| Parameters | |
|---|---|
| Name | Description |
request |
SetProxyHeaderTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
SetProxyHeaderTargetTcpProxyRequest request = new SetProxyHeaderTargetTcpProxyRequest
{
RequestId = "",
TargetTcpProxiesSetProxyHeaderRequestResource = new TargetTcpProxiesSetProxyHeaderRequest(),
Project = "",
TargetTcpProxy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.SetProxyHeaderAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceSetProxyHeaderAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
SetProxyHeaderAsync(SetProxyHeaderTargetTcpProxyRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> SetProxyHeaderAsync(SetProxyHeaderTargetTcpProxyRequest request, CancellationToken cancellationToken)Changes the ProxyHeaderType for TargetTcpProxy.
| Parameters | |
|---|---|
| Name | Description |
request |
SetProxyHeaderTargetTcpProxyRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
SetProxyHeaderTargetTcpProxyRequest request = new SetProxyHeaderTargetTcpProxyRequest
{
RequestId = "",
TargetTcpProxiesSetProxyHeaderRequestResource = new TargetTcpProxiesSetProxyHeaderRequest(),
Project = "",
TargetTcpProxy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.SetProxyHeaderAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceSetProxyHeaderAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
SetProxyHeaderAsync(String, String, TargetTcpProxiesSetProxyHeaderRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> SetProxyHeaderAsync(string project, string targetTcpProxy, TargetTcpProxiesSetProxyHeaderRequest targetTcpProxiesSetProxyHeaderRequestResource, CallSettings callSettings = null)Changes the ProxyHeaderType for TargetTcpProxy.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxy |
StringName of the TargetTcpProxy resource whose ProxyHeader is to be set. |
targetTcpProxiesSetProxyHeaderRequestResource |
TargetTcpProxiesSetProxyHeaderRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string targetTcpProxy = "";
TargetTcpProxiesSetProxyHeaderRequest targetTcpProxiesSetProxyHeaderRequestResource = new TargetTcpProxiesSetProxyHeaderRequest();
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.SetProxyHeaderAsync(project, targetTcpProxy, targetTcpProxiesSetProxyHeaderRequestResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceSetProxyHeaderAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
SetProxyHeaderAsync(String, String, TargetTcpProxiesSetProxyHeaderRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> SetProxyHeaderAsync(string project, string targetTcpProxy, TargetTcpProxiesSetProxyHeaderRequest targetTcpProxiesSetProxyHeaderRequestResource, CancellationToken cancellationToken)Changes the ProxyHeaderType for TargetTcpProxy.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
targetTcpProxy |
StringName of the TargetTcpProxy resource whose ProxyHeader is to be set. |
targetTcpProxiesSetProxyHeaderRequestResource |
TargetTcpProxiesSetProxyHeaderRequestThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string targetTcpProxy = "";
TargetTcpProxiesSetProxyHeaderRequest targetTcpProxiesSetProxyHeaderRequestResource = new TargetTcpProxiesSetProxyHeaderRequest();
// Make the request
lro::Operation<Operation, Operation> response = await targetTcpProxiesClient.SetProxyHeaderAsync(project, targetTcpProxy, targetTcpProxiesSetProxyHeaderRequestResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await targetTcpProxiesClient.PollOnceSetProxyHeaderAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
ShutdownDefaultChannelsAsync()
public static Task ShutdownDefaultChannelsAsync()Shuts down any channels automatically created by Create() and CreateAsync(CancellationToken). Channels which weren't automatically created are not affected.
| Returns | |
|---|---|
| Type | Description |
Task |
A task representing the asynchronous shutdown operation. |
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.