Class RegionBackendServicesClient (1.2.0)

public abstract class RegionBackendServicesClient

RegionBackendServices client wrapper, for convenient use.

Inheritance

Object > RegionBackendServicesClient

Namespace

Google.Cloud.Compute.V1

Assembly

Google.Cloud.Compute.V1.dll

Remarks

The RegionBackendServices API.

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

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

Property Value
TypeDescription
String

DefaultScopes

public static IReadOnlyList<string> DefaultScopes { get; }

The default RegionBackendServices scopes.

Property Value
TypeDescription
IReadOnlyList<String>
Remarks

DeleteOperationsClient

public virtual OperationsClient DeleteOperationsClient { get; }

The long-running operations client for Delete.

Property Value
TypeDescription
OperationsClient

GrpcClient

public virtual RegionBackendServices.RegionBackendServicesClient GrpcClient { get; }

The underlying gRPC RegionBackendServices client

Property Value
TypeDescription
RegionBackendServices.RegionBackendServicesClient

InsertOperationsClient

public virtual OperationsClient InsertOperationsClient { get; }

The long-running operations client for Insert.

Property Value
TypeDescription
OperationsClient

PatchOperationsClient

public virtual OperationsClient PatchOperationsClient { get; }

The long-running operations client for Patch.

Property Value
TypeDescription
OperationsClient

UpdateOperationsClient

public virtual OperationsClient UpdateOperationsClient { get; }

The long-running operations client for Update.

Property Value
TypeDescription
OperationsClient

Methods

Create()

public static RegionBackendServicesClient Create()

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

Returns
TypeDescription
RegionBackendServicesClient

The created RegionBackendServicesClient.

CreateAsync(CancellationToken)

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

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

Parameter
NameDescription
cancellationTokenCancellationToken

The CancellationToken to use while creating the client.

Returns
TypeDescription
Task<RegionBackendServicesClient>

The task representing the created RegionBackendServicesClient.

Delete(DeleteRegionBackendServiceRequest, CallSettings)

public virtual Operation<Operation, Operation> Delete(DeleteRegionBackendServiceRequest request, CallSettings callSettings = null)

Deletes the specified regional BackendService resource.

Parameters
NameDescription
requestDeleteRegionBackendServiceRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
DeleteRegionBackendServiceRequest request = new DeleteRegionBackendServiceRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    BackendService = "",
};
// Make the request
lro::Operation<Operation, Operation> response = regionBackendServicesClient.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 = regionBackendServicesClient.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, String, CallSettings)

public virtual Operation<Operation, Operation> Delete(string project, string region, string backendService, CallSettings callSettings = null)

Deletes the specified regional BackendService resource.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource to delete.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
// Make the request
lro::Operation<Operation, Operation> response = regionBackendServicesClient.Delete(project, region, backendService);

// 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 = regionBackendServicesClient.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(DeleteRegionBackendServiceRequest, CallSettings)

public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteRegionBackendServiceRequest request, CallSettings callSettings = null)

Deletes the specified regional BackendService resource.

Parameters
NameDescription
requestDeleteRegionBackendServiceRequest

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<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
DeleteRegionBackendServiceRequest request = new DeleteRegionBackendServiceRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    BackendService = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.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 regionBackendServicesClient.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(DeleteRegionBackendServiceRequest, CancellationToken)

public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteRegionBackendServiceRequest request, CancellationToken cancellationToken)

Deletes the specified regional BackendService resource.

Parameters
NameDescription
requestDeleteRegionBackendServiceRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
DeleteRegionBackendServiceRequest request = new DeleteRegionBackendServiceRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    BackendService = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.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 regionBackendServicesClient.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, String, CallSettings)

public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string region, string backendService, CallSettings callSettings = null)

Deletes the specified regional BackendService resource.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource to delete.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.DeleteAsync(project, region, backendService);

// 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 regionBackendServicesClient.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, String, CancellationToken)

public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string region, string backendService, CancellationToken cancellationToken)

Deletes the specified regional BackendService resource.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource to delete.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.DeleteAsync(project, region, backendService);

// 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 regionBackendServicesClient.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(GetRegionBackendServiceRequest, CallSettings)

public virtual BackendService Get(GetRegionBackendServiceRequest request, CallSettings callSettings = null)

Returns the specified regional BackendService resource.

Parameters
NameDescription
requestGetRegionBackendServiceRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
BackendService

The RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
GetRegionBackendServiceRequest request = new GetRegionBackendServiceRequest
{
    Region = "",
    Project = "",
    BackendService = "",
};
// Make the request
BackendService response = regionBackendServicesClient.Get(request);

Get(String, String, String, CallSettings)

public virtual BackendService Get(string project, string region, string backendService, CallSettings callSettings = null)

Returns the specified regional BackendService resource.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource to return.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
BackendService

The RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
// Make the request
BackendService response = regionBackendServicesClient.Get(project, region, backendService);

GetAsync(GetRegionBackendServiceRequest, CallSettings)

public virtual Task<BackendService> GetAsync(GetRegionBackendServiceRequest request, CallSettings callSettings = null)

Returns the specified regional BackendService resource.

Parameters
NameDescription
requestGetRegionBackendServiceRequest

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

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
GetRegionBackendServiceRequest request = new GetRegionBackendServiceRequest
{
    Region = "",
    Project = "",
    BackendService = "",
};
// Make the request
BackendService response = await regionBackendServicesClient.GetAsync(request);

GetAsync(GetRegionBackendServiceRequest, CancellationToken)

public virtual Task<BackendService> GetAsync(GetRegionBackendServiceRequest request, CancellationToken cancellationToken)

Returns the specified regional BackendService resource.

Parameters
NameDescription
requestGetRegionBackendServiceRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<BackendService>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
GetRegionBackendServiceRequest request = new GetRegionBackendServiceRequest
{
    Region = "",
    Project = "",
    BackendService = "",
};
// Make the request
BackendService response = await regionBackendServicesClient.GetAsync(request);

GetAsync(String, String, String, CallSettings)

public virtual Task<BackendService> GetAsync(string project, string region, string backendService, CallSettings callSettings = null)

Returns the specified regional BackendService resource.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource to return.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<BackendService>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
// Make the request
BackendService response = await regionBackendServicesClient.GetAsync(project, region, backendService);

GetAsync(String, String, String, CancellationToken)

public virtual Task<BackendService> GetAsync(string project, string region, string backendService, CancellationToken cancellationToken)

Returns the specified regional BackendService resource.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource to return.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<BackendService>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
// Make the request
BackendService response = await regionBackendServicesClient.GetAsync(project, region, backendService);

GetHealth(GetHealthRegionBackendServiceRequest, CallSettings)

public virtual BackendServiceGroupHealth GetHealth(GetHealthRegionBackendServiceRequest request, CallSettings callSettings = null)

Gets the most recent health check results for this regional BackendService.

Parameters
NameDescription
requestGetHealthRegionBackendServiceRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
BackendServiceGroupHealth

The RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
GetHealthRegionBackendServiceRequest request = new GetHealthRegionBackendServiceRequest
{
    ResourceGroupReferenceResource = new ResourceGroupReference(),
    Region = "",
    Project = "",
    BackendService = "",
};
// Make the request
BackendServiceGroupHealth response = regionBackendServicesClient.GetHealth(request);

GetHealth(String, String, String, ResourceGroupReference, CallSettings)

public virtual BackendServiceGroupHealth GetHealth(string project, string region, string backendService, ResourceGroupReference resourceGroupReferenceResource, CallSettings callSettings = null)

Gets the most recent health check results for this regional BackendService.

Parameters
NameDescription
projectString
regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource for which to get health.

resourceGroupReferenceResourceResourceGroupReference

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
BackendServiceGroupHealth

The RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
ResourceGroupReference resourceGroupReferenceResource = new ResourceGroupReference();
// Make the request
BackendServiceGroupHealth response = regionBackendServicesClient.GetHealth(project, region, backendService, resourceGroupReferenceResource);

GetHealthAsync(GetHealthRegionBackendServiceRequest, CallSettings)

public virtual Task<BackendServiceGroupHealth> GetHealthAsync(GetHealthRegionBackendServiceRequest request, CallSettings callSettings = null)

Gets the most recent health check results for this regional BackendService.

Parameters
NameDescription
requestGetHealthRegionBackendServiceRequest

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

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
GetHealthRegionBackendServiceRequest request = new GetHealthRegionBackendServiceRequest
{
    ResourceGroupReferenceResource = new ResourceGroupReference(),
    Region = "",
    Project = "",
    BackendService = "",
};
// Make the request
BackendServiceGroupHealth response = await regionBackendServicesClient.GetHealthAsync(request);

GetHealthAsync(GetHealthRegionBackendServiceRequest, CancellationToken)

public virtual Task<BackendServiceGroupHealth> GetHealthAsync(GetHealthRegionBackendServiceRequest request, CancellationToken cancellationToken)

Gets the most recent health check results for this regional BackendService.

Parameters
NameDescription
requestGetHealthRegionBackendServiceRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<BackendServiceGroupHealth>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
GetHealthRegionBackendServiceRequest request = new GetHealthRegionBackendServiceRequest
{
    ResourceGroupReferenceResource = new ResourceGroupReference(),
    Region = "",
    Project = "",
    BackendService = "",
};
// Make the request
BackendServiceGroupHealth response = await regionBackendServicesClient.GetHealthAsync(request);

GetHealthAsync(String, String, String, ResourceGroupReference, CallSettings)

public virtual Task<BackendServiceGroupHealth> GetHealthAsync(string project, string region, string backendService, ResourceGroupReference resourceGroupReferenceResource, CallSettings callSettings = null)

Gets the most recent health check results for this regional BackendService.

Parameters
NameDescription
projectString
regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource for which to get health.

resourceGroupReferenceResourceResourceGroupReference

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<BackendServiceGroupHealth>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
ResourceGroupReference resourceGroupReferenceResource = new ResourceGroupReference();
// Make the request
BackendServiceGroupHealth response = await regionBackendServicesClient.GetHealthAsync(project, region, backendService, resourceGroupReferenceResource);

GetHealthAsync(String, String, String, ResourceGroupReference, CancellationToken)

public virtual Task<BackendServiceGroupHealth> GetHealthAsync(string project, string region, string backendService, ResourceGroupReference resourceGroupReferenceResource, CancellationToken cancellationToken)

Gets the most recent health check results for this regional BackendService.

Parameters
NameDescription
projectString
regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource for which to get health.

resourceGroupReferenceResourceResourceGroupReference

The body resource for this request

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<BackendServiceGroupHealth>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
ResourceGroupReference resourceGroupReferenceResource = new ResourceGroupReference();
// Make the request
BackendServiceGroupHealth response = await regionBackendServicesClient.GetHealthAsync(project, region, backendService, resourceGroupReferenceResource);

Insert(InsertRegionBackendServiceRequest, CallSettings)

public virtual Operation<Operation, Operation> Insert(InsertRegionBackendServiceRequest request, CallSettings callSettings = null)

Creates a regional BackendService resource in the specified project using the data included in the request. For more information, see Backend services overview.

Parameters
NameDescription
requestInsertRegionBackendServiceRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
InsertRegionBackendServiceRequest request = new InsertRegionBackendServiceRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    BackendServiceResource = new BackendService(),
};
// Make the request
lro::Operation<Operation, Operation> response = regionBackendServicesClient.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 = regionBackendServicesClient.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, String, BackendService, CallSettings)

public virtual Operation<Operation, Operation> Insert(string project, string region, BackendService backendServiceResource, CallSettings callSettings = null)

Creates a regional BackendService resource in the specified project using the data included in the request. For more information, see Backend services overview.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceResourceBackendService

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
BackendService backendServiceResource = new BackendService();
// Make the request
lro::Operation<Operation, Operation> response = regionBackendServicesClient.Insert(project, region, backendServiceResource);

// 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 = regionBackendServicesClient.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(InsertRegionBackendServiceRequest, CallSettings)

public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertRegionBackendServiceRequest request, CallSettings callSettings = null)

Creates a regional BackendService resource in the specified project using the data included in the request. For more information, see Backend services overview.

Parameters
NameDescription
requestInsertRegionBackendServiceRequest

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<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
InsertRegionBackendServiceRequest request = new InsertRegionBackendServiceRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    BackendServiceResource = new BackendService(),
};
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.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 regionBackendServicesClient.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(InsertRegionBackendServiceRequest, CancellationToken)

public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertRegionBackendServiceRequest request, CancellationToken cancellationToken)

Creates a regional BackendService resource in the specified project using the data included in the request. For more information, see Backend services overview.

Parameters
NameDescription
requestInsertRegionBackendServiceRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
InsertRegionBackendServiceRequest request = new InsertRegionBackendServiceRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    BackendServiceResource = new BackendService(),
};
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.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 regionBackendServicesClient.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, String, BackendService, CallSettings)

public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string region, BackendService backendServiceResource, CallSettings callSettings = null)

Creates a regional BackendService resource in the specified project using the data included in the request. For more information, see Backend services overview.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceResourceBackendService

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
BackendService backendServiceResource = new BackendService();
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.InsertAsync(project, region, backendServiceResource);

// 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 regionBackendServicesClient.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, String, BackendService, CancellationToken)

public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string region, BackendService backendServiceResource, CancellationToken cancellationToken)

Creates a regional BackendService resource in the specified project using the data included in the request. For more information, see Backend services overview.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceResourceBackendService

The body resource for this request

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
BackendService backendServiceResource = new BackendService();
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.InsertAsync(project, region, backendServiceResource);

// 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 regionBackendServicesClient.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(ListRegionBackendServicesRequest, CallSettings)

public virtual PagedEnumerable<BackendServiceList, BackendService> List(ListRegionBackendServicesRequest request, CallSettings callSettings = null)

Retrieves the list of regional BackendService resources available to the specified project in the given region.

Parameters
NameDescription
requestListRegionBackendServicesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerable<BackendServiceList, BackendService>

A pageable sequence of BackendService resources.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
ListRegionBackendServicesRequest request = new ListRegionBackendServicesRequest
{
    Region = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<BackendServiceList, BackendService> response = regionBackendServicesClient.List(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (BackendService 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 (BackendServiceList page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BackendService 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<BackendService> 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 (BackendService 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, String, Nullable<Int32>, CallSettings)

public virtual PagedEnumerable<BackendServiceList, BackendService> List(string project, string region, string pageToken = null, int? pageSize = default(int? ), CallSettings callSettings = null)

Retrieves the list of regional BackendService resources available to the specified project in the given region.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

pageTokenString

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

pageSizeNullable<Int32>

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerable<BackendServiceList, BackendService>

A pageable sequence of BackendService resources.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
PagedEnumerable<BackendServiceList, BackendService> response = regionBackendServicesClient.List(project, region);

// Iterate over all response items, lazily performing RPCs as required
foreach (BackendService 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 (BackendServiceList page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BackendService 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<BackendService> 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 (BackendService 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(ListRegionBackendServicesRequest, CallSettings)

public virtual PagedAsyncEnumerable<BackendServiceList, BackendService> ListAsync(ListRegionBackendServicesRequest request, CallSettings callSettings = null)

Retrieves the list of regional BackendService resources available to the specified project in the given region.

Parameters
NameDescription
requestListRegionBackendServicesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerable<BackendServiceList, BackendService>

A pageable asynchronous sequence of BackendService resources.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
ListRegionBackendServicesRequest request = new ListRegionBackendServicesRequest
{
    Region = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<BackendServiceList, BackendService> response = regionBackendServicesClient.ListAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((BackendService 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((BackendServiceList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BackendService 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<BackendService> 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 (BackendService 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, String, Nullable<Int32>, CallSettings)

public virtual PagedAsyncEnumerable<BackendServiceList, BackendService> ListAsync(string project, string region, string pageToken = null, int? pageSize = default(int? ), CallSettings callSettings = null)

Retrieves the list of regional BackendService resources available to the specified project in the given region.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

pageTokenString

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

pageSizeNullable<Int32>

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerable<BackendServiceList, BackendService>

A pageable asynchronous sequence of BackendService resources.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
PagedAsyncEnumerable<BackendServiceList, BackendService> response = regionBackendServicesClient.ListAsync(project, region);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((BackendService 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((BackendServiceList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (BackendService 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<BackendService> 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 (BackendService 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;

Patch(PatchRegionBackendServiceRequest, CallSettings)

public virtual Operation<Operation, Operation> Patch(PatchRegionBackendServiceRequest request, CallSettings callSettings = null)

Updates the specified regional BackendService resource with the data included in the request. For more information, see Understanding backend services This method supports PATCH semantics and uses the JSON merge patch format and processing rules.

Parameters
NameDescription
requestPatchRegionBackendServiceRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
PatchRegionBackendServiceRequest request = new PatchRegionBackendServiceRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    BackendService = "",
    BackendServiceResource = new BackendService(),
};
// Make the request
lro::Operation<Operation, Operation> response = regionBackendServicesClient.Patch(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 = regionBackendServicesClient.PollOncePatch(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;
}

Patch(String, String, String, BackendService, CallSettings)

public virtual Operation<Operation, Operation> Patch(string project, string region, string backendService, BackendService backendServiceResource, CallSettings callSettings = null)

Updates the specified regional BackendService resource with the data included in the request. For more information, see Understanding backend services This method supports PATCH semantics and uses the JSON merge patch format and processing rules.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource to patch.

backendServiceResourceBackendService

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
BackendService backendServiceResource = new BackendService();
// Make the request
lro::Operation<Operation, Operation> response = regionBackendServicesClient.Patch(project, region, backendService, backendServiceResource);

// 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 = regionBackendServicesClient.PollOncePatch(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;
}

PatchAsync(PatchRegionBackendServiceRequest, CallSettings)

public virtual Task<Operation<Operation, Operation>> PatchAsync(PatchRegionBackendServiceRequest request, CallSettings callSettings = null)

Updates the specified regional BackendService resource with the data included in the request. For more information, see Understanding backend services This method supports PATCH semantics and uses the JSON merge patch format and processing rules.

Parameters
NameDescription
requestPatchRegionBackendServiceRequest

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<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
PatchRegionBackendServiceRequest request = new PatchRegionBackendServiceRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    BackendService = "",
    BackendServiceResource = new BackendService(),
};
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.PatchAsync(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 regionBackendServicesClient.PollOncePatchAsync(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;
}

PatchAsync(PatchRegionBackendServiceRequest, CancellationToken)

public virtual Task<Operation<Operation, Operation>> PatchAsync(PatchRegionBackendServiceRequest request, CancellationToken cancellationToken)

Updates the specified regional BackendService resource with the data included in the request. For more information, see Understanding backend services This method supports PATCH semantics and uses the JSON merge patch format and processing rules.

Parameters
NameDescription
requestPatchRegionBackendServiceRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
PatchRegionBackendServiceRequest request = new PatchRegionBackendServiceRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    BackendService = "",
    BackendServiceResource = new BackendService(),
};
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.PatchAsync(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 regionBackendServicesClient.PollOncePatchAsync(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;
}

PatchAsync(String, String, String, BackendService, CallSettings)

public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, string region, string backendService, BackendService backendServiceResource, CallSettings callSettings = null)

Updates the specified regional BackendService resource with the data included in the request. For more information, see Understanding backend services This method supports PATCH semantics and uses the JSON merge patch format and processing rules.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource to patch.

backendServiceResourceBackendService

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
BackendService backendServiceResource = new BackendService();
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.PatchAsync(project, region, backendService, backendServiceResource);

// 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 regionBackendServicesClient.PollOncePatchAsync(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;
}

PatchAsync(String, String, String, BackendService, CancellationToken)

public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, string region, string backendService, BackendService backendServiceResource, CancellationToken cancellationToken)

Updates the specified regional BackendService resource with the data included in the request. For more information, see Understanding backend services This method supports PATCH semantics and uses the JSON merge patch format and processing rules.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource to patch.

backendServiceResourceBackendService

The body resource for this request

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
BackendService backendServiceResource = new BackendService();
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.PatchAsync(project, region, backendService, backendServiceResource);

// 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 regionBackendServicesClient.PollOncePatchAsync(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;
}

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

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A task representing the result of polling the operation.

PollOncePatch(String, CallSettings)

public virtual Operation<Operation, Operation> PollOncePatch(string operationName, CallSettings callSettings = null)

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

Parameters
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The result of polling the operation.

PollOncePatchAsync(String, CallSettings)

public virtual Task<Operation<Operation, Operation>> PollOncePatchAsync(string operationName, CallSettings callSettings = null)

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

Parameters
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A task representing the result of polling the operation.

PollOnceUpdate(String, CallSettings)

public virtual Operation<Operation, Operation> PollOnceUpdate(string operationName, CallSettings callSettings = null)

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

Parameters
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The result of polling the operation.

PollOnceUpdateAsync(String, CallSettings)

public virtual Task<Operation<Operation, Operation>> PollOnceUpdateAsync(string operationName, CallSettings callSettings = null)

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

Parameters
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A task representing the result of polling the operation.

ShutdownDefaultChannelsAsync()

public static Task ShutdownDefaultChannelsAsync()

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

Returns
TypeDescription
Task

A task representing the asynchronous shutdown operation.

Remarks

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

Update(UpdateRegionBackendServiceRequest, CallSettings)

public virtual Operation<Operation, Operation> Update(UpdateRegionBackendServiceRequest request, CallSettings callSettings = null)

Updates the specified regional BackendService resource with the data included in the request. For more information, see Backend services overview .

Parameters
NameDescription
requestUpdateRegionBackendServiceRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
UpdateRegionBackendServiceRequest request = new UpdateRegionBackendServiceRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    BackendService = "",
    BackendServiceResource = new BackendService(),
};
// Make the request
lro::Operation<Operation, Operation> response = regionBackendServicesClient.Update(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 = regionBackendServicesClient.PollOnceUpdate(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;
}

Update(String, String, String, BackendService, CallSettings)

public virtual Operation<Operation, Operation> Update(string project, string region, string backendService, BackendService backendServiceResource, CallSettings callSettings = null)

Updates the specified regional BackendService resource with the data included in the request. For more information, see Backend services overview .

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource to update.

backendServiceResourceBackendService

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = RegionBackendServicesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
BackendService backendServiceResource = new BackendService();
// Make the request
lro::Operation<Operation, Operation> response = regionBackendServicesClient.Update(project, region, backendService, backendServiceResource);

// 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 = regionBackendServicesClient.PollOnceUpdate(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;
}

UpdateAsync(UpdateRegionBackendServiceRequest, CallSettings)

public virtual Task<Operation<Operation, Operation>> UpdateAsync(UpdateRegionBackendServiceRequest request, CallSettings callSettings = null)

Updates the specified regional BackendService resource with the data included in the request. For more information, see Backend services overview .

Parameters
NameDescription
requestUpdateRegionBackendServiceRequest

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<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
UpdateRegionBackendServiceRequest request = new UpdateRegionBackendServiceRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    BackendService = "",
    BackendServiceResource = new BackendService(),
};
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.UpdateAsync(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 regionBackendServicesClient.PollOnceUpdateAsync(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;
}

UpdateAsync(UpdateRegionBackendServiceRequest, CancellationToken)

public virtual Task<Operation<Operation, Operation>> UpdateAsync(UpdateRegionBackendServiceRequest request, CancellationToken cancellationToken)

Updates the specified regional BackendService resource with the data included in the request. For more information, see Backend services overview .

Parameters
NameDescription
requestUpdateRegionBackendServiceRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
UpdateRegionBackendServiceRequest request = new UpdateRegionBackendServiceRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    BackendService = "",
    BackendServiceResource = new BackendService(),
};
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.UpdateAsync(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 regionBackendServicesClient.PollOnceUpdateAsync(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;
}

UpdateAsync(String, String, String, BackendService, CallSettings)

public virtual Task<Operation<Operation, Operation>> UpdateAsync(string project, string region, string backendService, BackendService backendServiceResource, CallSettings callSettings = null)

Updates the specified regional BackendService resource with the data included in the request. For more information, see Backend services overview .

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource to update.

backendServiceResourceBackendService

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
BackendService backendServiceResource = new BackendService();
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.UpdateAsync(project, region, backendService, backendServiceResource);

// 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 regionBackendServicesClient.PollOnceUpdateAsync(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;
}

UpdateAsync(String, String, String, BackendService, CancellationToken)

public virtual Task<Operation<Operation, Operation>> UpdateAsync(string project, string region, string backendService, BackendService backendServiceResource, CancellationToken cancellationToken)

Updates the specified regional BackendService resource with the data included in the request. For more information, see Backend services overview .

Parameters
NameDescription
projectString

Project ID for this request.

regionString

Name of the region scoping this request.

backendServiceString

Name of the BackendService resource to update.

backendServiceResourceBackendService

The body resource for this request

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
RegionBackendServicesClient regionBackendServicesClient = await RegionBackendServicesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string backendService = "";
BackendService backendServiceResource = new BackendService();
// Make the request
lro::Operation<Operation, Operation> response = await regionBackendServicesClient.UpdateAsync(project, region, backendService, backendServiceResource);

// 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 regionBackendServicesClient.PollOnceUpdateAsync(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;
}