Compute Engine v1 API - Class RegionSslPoliciesClient (2.15.0)

public abstract class RegionSslPoliciesClient

Reference documentation and code samples for the Compute Engine v1 API class RegionSslPoliciesClient.

RegionSslPolicies client wrapper, for convenient use.

Inheritance

object > RegionSslPoliciesClient

Namespace

Google.Cloud.Compute.V1

Assembly

Google.Cloud.Compute.V1.dll

Remarks

The RegionSslPolicies API.

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

The default endpoint for the RegionSslPolicies 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 RegionSslPolicies scopes.

Property Value
TypeDescription
IReadOnlyListstring
Remarks

DeleteOperationsClient

public virtual OperationsClient DeleteOperationsClient { get; }

The long-running operations client for Delete.

Property Value
TypeDescription
OperationsClient

GrpcClient

public virtual RegionSslPolicies.RegionSslPoliciesClient GrpcClient { get; }

The underlying gRPC RegionSslPolicies client

Property Value
TypeDescription
RegionSslPoliciesRegionSslPoliciesClient

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

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
TypeDescription
ServiceMetadata

Methods

Create()

public static RegionSslPoliciesClient Create()

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

Returns
TypeDescription
RegionSslPoliciesClient

The created RegionSslPoliciesClient.

CreateAsync(CancellationToken)

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

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

Parameter
NameDescription
cancellationTokenCancellationToken

The CancellationToken to use while creating the client.

Returns
TypeDescription
TaskRegionSslPoliciesClient

The task representing the created RegionSslPoliciesClient.

Delete(DeleteRegionSslPolicyRequest, CallSettings)

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

Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy resources.

Parameters
NameDescription
requestDeleteRegionSslPolicyRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationOperationOperation

The RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
DeleteRegionSslPolicyRequest request = new DeleteRegionSslPolicyRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = regionSslPoliciesClient.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 = regionSslPoliciesClient.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 sslPolicy, CallSettings callSettings = null)

Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy resources.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

sslPolicystring

Name of the SSL policy to delete. The name must be 1-63 characters long, and comply with RFC1035.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationOperationOperation

The RPC response.

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

// 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 = regionSslPoliciesClient.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(DeleteRegionSslPolicyRequest, CallSettings)

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

Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy resources.

Parameters
NameDescription
requestDeleteRegionSslPolicyRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

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

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

Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy resources.

Parameters
NameDescription
requestDeleteRegionSslPolicyRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
DeleteRegionSslPolicyRequest request = new DeleteRegionSslPolicyRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.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 regionSslPoliciesClient.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 sslPolicy, CallSettings callSettings = null)

Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy resources.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

sslPolicystring

Name of the SSL policy to delete. The name must be 1-63 characters long, and comply with RFC1035.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

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

// 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 regionSslPoliciesClient.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 sslPolicy, CancellationToken cancellationToken)

Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy resources.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

sslPolicystring

Name of the SSL policy to delete. The name must be 1-63 characters long, and comply with RFC1035.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

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

// 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 regionSslPoliciesClient.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(GetRegionSslPolicyRequest, CallSettings)

public virtual SslPolicy Get(GetRegionSslPolicyRequest request, CallSettings callSettings = null)

Lists all of the ordered rules present in a single specified policy.

Parameters
NameDescription
requestGetRegionSslPolicyRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
SslPolicy

The RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
GetRegionSslPolicyRequest request = new GetRegionSslPolicyRequest
{
    Region = "",
    Project = "",
    SslPolicy = "",
};
// Make the request
SslPolicy response = regionSslPoliciesClient.Get(request);

Get(string, string, string, CallSettings)

public virtual SslPolicy Get(string project, string region, string sslPolicy, CallSettings callSettings = null)

Lists all of the ordered rules present in a single specified policy.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

sslPolicystring

Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
SslPolicy

The RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
// Make the request
SslPolicy response = regionSslPoliciesClient.Get(project, region, sslPolicy);

GetAsync(GetRegionSslPolicyRequest, CallSettings)

public virtual Task<SslPolicy> GetAsync(GetRegionSslPolicyRequest request, CallSettings callSettings = null)

Lists all of the ordered rules present in a single specified policy.

Parameters
NameDescription
requestGetRegionSslPolicyRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskSslPolicy

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
GetRegionSslPolicyRequest request = new GetRegionSslPolicyRequest
{
    Region = "",
    Project = "",
    SslPolicy = "",
};
// Make the request
SslPolicy response = await regionSslPoliciesClient.GetAsync(request);

GetAsync(GetRegionSslPolicyRequest, CancellationToken)

public virtual Task<SslPolicy> GetAsync(GetRegionSslPolicyRequest request, CancellationToken cancellationToken)

Lists all of the ordered rules present in a single specified policy.

Parameters
NameDescription
requestGetRegionSslPolicyRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskSslPolicy

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
GetRegionSslPolicyRequest request = new GetRegionSslPolicyRequest
{
    Region = "",
    Project = "",
    SslPolicy = "",
};
// Make the request
SslPolicy response = await regionSslPoliciesClient.GetAsync(request);

GetAsync(string, string, string, CallSettings)

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

Lists all of the ordered rules present in a single specified policy.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

sslPolicystring

Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskSslPolicy

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
// Make the request
SslPolicy response = await regionSslPoliciesClient.GetAsync(project, region, sslPolicy);

GetAsync(string, string, string, CancellationToken)

public virtual Task<SslPolicy> GetAsync(string project, string region, string sslPolicy, CancellationToken cancellationToken)

Lists all of the ordered rules present in a single specified policy.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

sslPolicystring

Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskSslPolicy

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
// Make the request
SslPolicy response = await regionSslPoliciesClient.GetAsync(project, region, sslPolicy);

Insert(InsertRegionSslPolicyRequest, CallSettings)

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

Creates a new policy in the specified project and region using the data included in the request.

Parameters
NameDescription
requestInsertRegionSslPolicyRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationOperationOperation

The RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
InsertRegionSslPolicyRequest request = new InsertRegionSslPolicyRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    SslPolicyResource = new SslPolicy(),
};
// Make the request
lro::Operation<Operation, Operation> response = regionSslPoliciesClient.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 = regionSslPoliciesClient.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, SslPolicy, CallSettings)

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

Creates a new policy in the specified project and region using the data included in the request.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

sslPolicyResourceSslPolicy

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationOperationOperation

The RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = regionSslPoliciesClient.Insert(project, region, sslPolicyResource);

// 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 = regionSslPoliciesClient.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(InsertRegionSslPolicyRequest, CallSettings)

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

Creates a new policy in the specified project and region using the data included in the request.

Parameters
NameDescription
requestInsertRegionSslPolicyRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

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

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

Creates a new policy in the specified project and region using the data included in the request.

Parameters
NameDescription
requestInsertRegionSslPolicyRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
InsertRegionSslPolicyRequest request = new InsertRegionSslPolicyRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    SslPolicyResource = new SslPolicy(),
};
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.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 regionSslPoliciesClient.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, SslPolicy, CallSettings)

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

Creates a new policy in the specified project and region using the data included in the request.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

sslPolicyResourceSslPolicy

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.InsertAsync(project, region, sslPolicyResource);

// 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 regionSslPoliciesClient.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, SslPolicy, CancellationToken)

public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string region, SslPolicy sslPolicyResource, CancellationToken cancellationToken)

Creates a new policy in the specified project and region using the data included in the request.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

sslPolicyResourceSslPolicy

The body resource for this request

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.InsertAsync(project, region, sslPolicyResource);

// 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 regionSslPoliciesClient.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(ListRegionSslPoliciesRequest, CallSettings)

public virtual PagedEnumerable<SslPoliciesList, SslPolicy> List(ListRegionSslPoliciesRequest request, CallSettings callSettings = null)

Lists all the SSL policies that have been configured for the specified project and region.

Parameters
NameDescription
requestListRegionSslPoliciesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableSslPoliciesListSslPolicy

A pageable sequence of SslPolicy resources.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
ListRegionSslPoliciesRequest request = new ListRegionSslPoliciesRequest
{
    Region = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<SslPoliciesList, SslPolicy> response = regionSslPoliciesClient.List(request);

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

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

Lists all the SSL policies that have been configured for the specified project and 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.

pageSizeint

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableSslPoliciesListSslPolicy

A pageable sequence of SslPolicy resources.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
PagedEnumerable<SslPoliciesList, SslPolicy> response = regionSslPoliciesClient.List(project, region);

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

public virtual PagedAsyncEnumerable<SslPoliciesList, SslPolicy> ListAsync(ListRegionSslPoliciesRequest request, CallSettings callSettings = null)

Lists all the SSL policies that have been configured for the specified project and region.

Parameters
NameDescription
requestListRegionSslPoliciesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerableSslPoliciesListSslPolicy

A pageable asynchronous sequence of SslPolicy resources.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
ListRegionSslPoliciesRequest request = new ListRegionSslPoliciesRequest
{
    Region = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<SslPoliciesList, SslPolicy> response = regionSslPoliciesClient.ListAsync(request);

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

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

Lists all the SSL policies that have been configured for the specified project and 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.

pageSizeint

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerableSslPoliciesListSslPolicy

A pageable asynchronous sequence of SslPolicy resources.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
PagedAsyncEnumerable<SslPoliciesList, SslPolicy> response = regionSslPoliciesClient.ListAsync(project, region);

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

ListAvailableFeatures(ListAvailableFeaturesRegionSslPoliciesRequest, CallSettings)

public virtual SslPoliciesListAvailableFeaturesResponse ListAvailableFeatures(ListAvailableFeaturesRegionSslPoliciesRequest request, CallSettings callSettings = null)

Lists all features that can be specified in the SSL policy when using custom profile.

Parameters
NameDescription
requestListAvailableFeaturesRegionSslPoliciesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
SslPoliciesListAvailableFeaturesResponse

The RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
ListAvailableFeaturesRegionSslPoliciesRequest request = new ListAvailableFeaturesRegionSslPoliciesRequest
{
    PageToken = "",
    MaxResults = 0U,
    Region = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
SslPoliciesListAvailableFeaturesResponse response = regionSslPoliciesClient.ListAvailableFeatures(request);

ListAvailableFeatures(string, string, CallSettings)

public virtual SslPoliciesListAvailableFeaturesResponse ListAvailableFeatures(string project, string region, CallSettings callSettings = null)

Lists all features that can be specified in the SSL policy when using custom profile.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
SslPoliciesListAvailableFeaturesResponse

The RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
SslPoliciesListAvailableFeaturesResponse response = regionSslPoliciesClient.ListAvailableFeatures(project, region);

ListAvailableFeaturesAsync(ListAvailableFeaturesRegionSslPoliciesRequest, CallSettings)

public virtual Task<SslPoliciesListAvailableFeaturesResponse> ListAvailableFeaturesAsync(ListAvailableFeaturesRegionSslPoliciesRequest request, CallSettings callSettings = null)

Lists all features that can be specified in the SSL policy when using custom profile.

Parameters
NameDescription
requestListAvailableFeaturesRegionSslPoliciesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskSslPoliciesListAvailableFeaturesResponse

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
ListAvailableFeaturesRegionSslPoliciesRequest request = new ListAvailableFeaturesRegionSslPoliciesRequest
{
    PageToken = "",
    MaxResults = 0U,
    Region = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
SslPoliciesListAvailableFeaturesResponse response = await regionSslPoliciesClient.ListAvailableFeaturesAsync(request);

ListAvailableFeaturesAsync(ListAvailableFeaturesRegionSslPoliciesRequest, CancellationToken)

public virtual Task<SslPoliciesListAvailableFeaturesResponse> ListAvailableFeaturesAsync(ListAvailableFeaturesRegionSslPoliciesRequest request, CancellationToken cancellationToken)

Lists all features that can be specified in the SSL policy when using custom profile.

Parameters
NameDescription
requestListAvailableFeaturesRegionSslPoliciesRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskSslPoliciesListAvailableFeaturesResponse

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
ListAvailableFeaturesRegionSslPoliciesRequest request = new ListAvailableFeaturesRegionSslPoliciesRequest
{
    PageToken = "",
    MaxResults = 0U,
    Region = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
SslPoliciesListAvailableFeaturesResponse response = await regionSslPoliciesClient.ListAvailableFeaturesAsync(request);

ListAvailableFeaturesAsync(string, string, CallSettings)

public virtual Task<SslPoliciesListAvailableFeaturesResponse> ListAvailableFeaturesAsync(string project, string region, CallSettings callSettings = null)

Lists all features that can be specified in the SSL policy when using custom profile.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskSslPoliciesListAvailableFeaturesResponse

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
SslPoliciesListAvailableFeaturesResponse response = await regionSslPoliciesClient.ListAvailableFeaturesAsync(project, region);

ListAvailableFeaturesAsync(string, string, CancellationToken)

public virtual Task<SslPoliciesListAvailableFeaturesResponse> ListAvailableFeaturesAsync(string project, string region, CancellationToken cancellationToken)

Lists all features that can be specified in the SSL policy when using custom profile.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskSslPoliciesListAvailableFeaturesResponse

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
SslPoliciesListAvailableFeaturesResponse response = await regionSslPoliciesClient.ListAvailableFeaturesAsync(project, region);

Patch(PatchRegionSslPolicyRequest, CallSettings)

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

Patches the specified SSL policy with the data included in the request.

Parameters
NameDescription
requestPatchRegionSslPolicyRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationOperationOperation

The RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
PatchRegionSslPolicyRequest request = new PatchRegionSslPolicyRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    SslPolicyResource = new SslPolicy(),
    SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = regionSslPoliciesClient.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 = regionSslPoliciesClient.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, SslPolicy, CallSettings)

public virtual Operation<Operation, Operation> Patch(string project, string region, string sslPolicy, SslPolicy sslPolicyResource, CallSettings callSettings = null)

Patches the specified SSL policy with the data included in the request.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

sslPolicystring

Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035.

sslPolicyResourceSslPolicy

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationOperationOperation

The RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = regionSslPoliciesClient.Patch(project, region, sslPolicy, sslPolicyResource);

// 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 = regionSslPoliciesClient.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(PatchRegionSslPolicyRequest, CallSettings)

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

Patches the specified SSL policy with the data included in the request.

Parameters
NameDescription
requestPatchRegionSslPolicyRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

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

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

Patches the specified SSL policy with the data included in the request.

Parameters
NameDescription
requestPatchRegionSslPolicyRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
PatchRegionSslPolicyRequest request = new PatchRegionSslPolicyRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    SslPolicyResource = new SslPolicy(),
    SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.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 regionSslPoliciesClient.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, SslPolicy, CallSettings)

public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, string region, string sslPolicy, SslPolicy sslPolicyResource, CallSettings callSettings = null)

Patches the specified SSL policy with the data included in the request.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

sslPolicystring

Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035.

sslPolicyResourceSslPolicy

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.PatchAsync(project, region, sslPolicy, sslPolicyResource);

// 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 regionSslPoliciesClient.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, SslPolicy, CancellationToken)

public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, string region, string sslPolicy, SslPolicy sslPolicyResource, CancellationToken cancellationToken)

Patches the specified SSL policy with the data included in the request.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

Name of the region scoping this request.

sslPolicystring

Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035.

sslPolicyResourceSslPolicy

The body resource for this request

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.PatchAsync(project, region, sslPolicy, sslPolicyResource);

// 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 regionSslPoliciesClient.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
OperationOperationOperation

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
TaskOperationOperationOperation

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
OperationOperationOperation

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
TaskOperationOperationOperation

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
OperationOperationOperation

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
TaskOperationOperationOperation

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.