Class SslPoliciesClient (1.3.0)

public abstract class SslPoliciesClient

SslPolicies client wrapper, for convenient use.

Inheritance

Object > SslPoliciesClient

Derived Types

Namespace

Google.Cloud.Compute.V1

Assembly

Google.Cloud.Compute.V1.dll

Remarks

The SslPolicies API.

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

The default endpoint for the SslPolicies 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 SslPolicies 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 SslPolicies.SslPoliciesClient GrpcClient { get; }

The underlying gRPC SslPolicies client

Property Value
TypeDescription
SslPolicies.SslPoliciesClient

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

Methods

Create()

public static SslPoliciesClient Create()

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

Returns
TypeDescription
SslPoliciesClient

The created SslPoliciesClient.

CreateAsync(CancellationToken)

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

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

Parameter
NameDescription
cancellationTokenCancellationToken

The CancellationToken to use while creating the client.

Returns
TypeDescription
Task<SslPoliciesClient>

The task representing the created SslPoliciesClient.

Delete(DeleteSslPolicyRequest, CallSettings)

public virtual Operation<Operation, Operation> Delete(DeleteSslPolicyRequest 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
requestDeleteSslPolicyRequest

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
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
DeleteSslPolicyRequest request = new DeleteSslPolicyRequest
{
    RequestId = "",
    Project = "",
    SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = sslPoliciesClient.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 = sslPoliciesClient.PollOnceDelete(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

Delete(String, String, CallSettings)

public virtual Operation<Operation, Operation> Delete(string project, string 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.

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

The RPC response.

Example
// Create client
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string sslPolicy = "";
// Make the request
lro::Operation<Operation, Operation> response = sslPoliciesClient.Delete(project, 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 = sslPoliciesClient.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(DeleteSslPolicyRequest, CallSettings)

public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteSslPolicyRequest 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
requestDeleteSslPolicyRequest

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
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
DeleteSslPolicyRequest request = new DeleteSslPolicyRequest
{
    RequestId = "",
    Project = "",
    SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await sslPoliciesClient.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 sslPoliciesClient.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(DeleteSslPolicyRequest, CancellationToken)

public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteSslPolicyRequest 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
requestDeleteSslPolicyRequest

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
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
DeleteSslPolicyRequest request = new DeleteSslPolicyRequest
{
    RequestId = "",
    Project = "",
    SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await sslPoliciesClient.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 sslPoliciesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

DeleteAsync(String, String, CallSettings)

public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string 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.

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

A Task containing the RPC response.

Example
// Create client
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string sslPolicy = "";
// Make the request
lro::Operation<Operation, Operation> response = await sslPoliciesClient.DeleteAsync(project, 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 sslPoliciesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

DeleteAsync(String, String, CancellationToken)

public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string 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.

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

A Task containing the RPC response.

Example
// Create client
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string sslPolicy = "";
// Make the request
lro::Operation<Operation, Operation> response = await sslPoliciesClient.DeleteAsync(project, 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 sslPoliciesClient.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(GetSslPolicyRequest, CallSettings)

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

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

Parameters
NameDescription
requestGetSslPolicyRequest

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
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
GetSslPolicyRequest request = new GetSslPolicyRequest
{
    Project = "",
    SslPolicy = "",
};
// Make the request
SslPolicy response = sslPoliciesClient.Get(request);

Get(String, String, CallSettings)

public virtual SslPolicy Get(string project, 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.

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
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string sslPolicy = "";
// Make the request
SslPolicy response = sslPoliciesClient.Get(project, sslPolicy);

GetAsync(GetSslPolicyRequest, CallSettings)

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

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

Parameters
NameDescription
requestGetSslPolicyRequest

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

A Task containing the RPC response.

Example
// Create client
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
GetSslPolicyRequest request = new GetSslPolicyRequest
{
    Project = "",
    SslPolicy = "",
};
// Make the request
SslPolicy response = await sslPoliciesClient.GetAsync(request);

GetAsync(GetSslPolicyRequest, CancellationToken)

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

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

Parameters
NameDescription
requestGetSslPolicyRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<SslPolicy>

A Task containing the RPC response.

Example
// Create client
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
GetSslPolicyRequest request = new GetSslPolicyRequest
{
    Project = "",
    SslPolicy = "",
};
// Make the request
SslPolicy response = await sslPoliciesClient.GetAsync(request);

GetAsync(String, String, CallSettings)

public virtual Task<SslPolicy> GetAsync(string project, 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.

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
Task<SslPolicy>

A Task containing the RPC response.

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

GetAsync(String, String, CancellationToken)

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

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

Parameters
NameDescription
projectString

Project ID for 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
Task<SslPolicy>

A Task containing the RPC response.

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

Insert(InsertSslPolicyRequest, CallSettings)

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

Returns the specified SSL policy resource. Gets a list of available SSL policies by making a list() request.

Parameters
NameDescription
requestInsertSslPolicyRequest

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
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
InsertSslPolicyRequest request = new InsertSslPolicyRequest
{
    RequestId = "",
    Project = "",
    SslPolicyResource = new SslPolicy(),
};
// Make the request
lro::Operation<Operation, Operation> response = sslPoliciesClient.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 = sslPoliciesClient.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, SslPolicy, CallSettings)

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

Returns the specified SSL policy resource. Gets a list of available SSL policies by making a list() request.

Parameters
NameDescription
projectString

Project ID for this request.

sslPolicyResourceSslPolicy

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
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = sslPoliciesClient.Insert(project, 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 = sslPoliciesClient.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(InsertSslPolicyRequest, CallSettings)

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

Returns the specified SSL policy resource. Gets a list of available SSL policies by making a list() request.

Parameters
NameDescription
requestInsertSslPolicyRequest

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
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
InsertSslPolicyRequest request = new InsertSslPolicyRequest
{
    RequestId = "",
    Project = "",
    SslPolicyResource = new SslPolicy(),
};
// Make the request
lro::Operation<Operation, Operation> response = await sslPoliciesClient.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 sslPoliciesClient.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(InsertSslPolicyRequest, CancellationToken)

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

Returns the specified SSL policy resource. Gets a list of available SSL policies by making a list() request.

Parameters
NameDescription
requestInsertSslPolicyRequest

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
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
InsertSslPolicyRequest request = new InsertSslPolicyRequest
{
    RequestId = "",
    Project = "",
    SslPolicyResource = new SslPolicy(),
};
// Make the request
lro::Operation<Operation, Operation> response = await sslPoliciesClient.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 sslPoliciesClient.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, SslPolicy, CallSettings)

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

Returns the specified SSL policy resource. Gets a list of available SSL policies by making a list() request.

Parameters
NameDescription
projectString

Project ID for this request.

sslPolicyResourceSslPolicy

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
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = await sslPoliciesClient.InsertAsync(project, 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 sslPoliciesClient.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, SslPolicy, CancellationToken)

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

Returns the specified SSL policy resource. Gets a list of available SSL policies by making a list() request.

Parameters
NameDescription
projectString

Project ID for this request.

sslPolicyResourceSslPolicy

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
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = await sslPoliciesClient.InsertAsync(project, 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 sslPoliciesClient.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(ListSslPoliciesRequest, CallSettings)

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

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

Parameters
NameDescription
requestListSslPoliciesRequest

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<SslPoliciesList, SslPolicy>

A pageable sequence of SslPolicy resources.

Example
// Create client
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
ListSslPoliciesRequest request = new ListSslPoliciesRequest
{
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<SslPoliciesList, SslPolicy> response = sslPoliciesClient.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, Nullable<Int32>, CallSettings)

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

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

Parameters
NameDescription
projectString

Project ID for 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<SslPoliciesList, SslPolicy>

A pageable sequence of SslPolicy resources.

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

// 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(ListSslPoliciesRequest, CallSettings)

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

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

Parameters
NameDescription
requestListSslPoliciesRequest

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<SslPoliciesList, SslPolicy>

A pageable asynchronous sequence of SslPolicy resources.

Example
// Create client
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
ListSslPoliciesRequest request = new ListSslPoliciesRequest
{
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<SslPoliciesList, SslPolicy> response = sslPoliciesClient.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, Nullable<Int32>, CallSettings)

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

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

Parameters
NameDescription
projectString

Project ID for 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<SslPoliciesList, SslPolicy>

A pageable asynchronous sequence of SslPolicy resources.

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

// 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(ListAvailableFeaturesSslPoliciesRequest, CallSettings)

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

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

Parameters
NameDescription
requestListAvailableFeaturesSslPoliciesRequest

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
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
ListAvailableFeaturesSslPoliciesRequest request = new ListAvailableFeaturesSslPoliciesRequest
{
    PageToken = "",
    MaxResults = 0U,
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
SslPoliciesListAvailableFeaturesResponse response = sslPoliciesClient.ListAvailableFeatures(request);

ListAvailableFeatures(String, CallSettings)

public virtual SslPoliciesListAvailableFeaturesResponse ListAvailableFeatures(string project, 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.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
SslPoliciesListAvailableFeaturesResponse

The RPC response.

Example
// Create client
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
SslPoliciesListAvailableFeaturesResponse response = sslPoliciesClient.ListAvailableFeatures(project);

ListAvailableFeaturesAsync(ListAvailableFeaturesSslPoliciesRequest, CallSettings)

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

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

Parameters
NameDescription
requestListAvailableFeaturesSslPoliciesRequest

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

A Task containing the RPC response.

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

ListAvailableFeaturesAsync(ListAvailableFeaturesSslPoliciesRequest, CancellationToken)

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

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

Parameters
NameDescription
requestListAvailableFeaturesSslPoliciesRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<SslPoliciesListAvailableFeaturesResponse>

A Task containing the RPC response.

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

ListAvailableFeaturesAsync(String, CallSettings)

public virtual Task<SslPoliciesListAvailableFeaturesResponse> ListAvailableFeaturesAsync(string project, 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.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<SslPoliciesListAvailableFeaturesResponse>

A Task containing the RPC response.

Example
// Create client
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
SslPoliciesListAvailableFeaturesResponse response = await sslPoliciesClient.ListAvailableFeaturesAsync(project);

ListAvailableFeaturesAsync(String, CancellationToken)

public virtual Task<SslPoliciesListAvailableFeaturesResponse> ListAvailableFeaturesAsync(string project, 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.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<SslPoliciesListAvailableFeaturesResponse>

A Task containing the RPC response.

Example
// Create client
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
SslPoliciesListAvailableFeaturesResponse response = await sslPoliciesClient.ListAvailableFeaturesAsync(project);

Patch(PatchSslPolicyRequest, CallSettings)

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

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

Parameters
NameDescription
requestPatchSslPolicyRequest

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
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
PatchSslPolicyRequest request = new PatchSslPolicyRequest
{
    RequestId = "",
    Project = "",
    SslPolicyResource = new SslPolicy(),
    SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = sslPoliciesClient.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 = sslPoliciesClient.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, SslPolicy, CallSettings)

public virtual Operation<Operation, Operation> Patch(string project, 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.

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

The RPC response.

Example
// Create client
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string sslPolicy = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = sslPoliciesClient.Patch(project, 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 = sslPoliciesClient.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(PatchSslPolicyRequest, CallSettings)

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

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

Parameters
NameDescription
requestPatchSslPolicyRequest

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
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
PatchSslPolicyRequest request = new PatchSslPolicyRequest
{
    RequestId = "",
    Project = "",
    SslPolicyResource = new SslPolicy(),
    SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await sslPoliciesClient.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 sslPoliciesClient.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(PatchSslPolicyRequest, CancellationToken)

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

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

Parameters
NameDescription
requestPatchSslPolicyRequest

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
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
PatchSslPolicyRequest request = new PatchSslPolicyRequest
{
    RequestId = "",
    Project = "",
    SslPolicyResource = new SslPolicy(),
    SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await sslPoliciesClient.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 sslPoliciesClient.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, SslPolicy, CallSettings)

public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, 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.

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

A Task containing the RPC response.

Example
// Create client
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string sslPolicy = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = await sslPoliciesClient.PatchAsync(project, 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 sslPoliciesClient.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, SslPolicy, CancellationToken)

public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, 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.

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

A Task containing the RPC response.

Example
// Create client
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string sslPolicy = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = await sslPoliciesClient.PatchAsync(project, 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 sslPoliciesClient.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.

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.