public abstract class SslPoliciesClientSslPolicies client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Compute.V1Assembly
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 | |
|---|---|
| Type | Description |
String |
|
DefaultScopes
public static IReadOnlyList<string> DefaultScopes { get; }The default SslPolicies scopes.
| Property Value | |
|---|---|
| Type | Description |
IReadOnlyList<String> |
|
The default SslPolicies scopes are:
DeleteOperationsClient
public virtual OperationsClient DeleteOperationsClient { get; }The long-running operations client for Delete.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
GrpcClient
public virtual SslPolicies.SslPoliciesClient GrpcClient { get; }The underlying gRPC SslPolicies client
| Property Value | |
|---|---|
| Type | Description |
SslPolicies.SslPoliciesClient |
|
InsertOperationsClient
public virtual OperationsClient InsertOperationsClient { get; }The long-running operations client for Insert.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
PatchOperationsClient
public virtual OperationsClient PatchOperationsClient { get; }The long-running operations client for Patch.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
ServiceMetadata
public static ServiceMetadata ServiceMetadata { get; }The service metadata associated with this client type.
| Property Value | |
|---|---|
| Type | Description |
ServiceMetadata |
|
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 | |
|---|---|
| Type | Description |
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 | |
|---|---|
| Name | Description |
cancellationToken |
CancellationTokenThe CancellationToken to use while creating the client. |
| Returns | |
|---|---|
| Type | Description |
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 | |
|---|---|
| Name | Description |
request |
DeleteSslPolicyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
sslPolicy |
StringName of the SSL policy to delete. The name must be 1-63 characters long, and comply with RFC1035. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// 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 | |
|---|---|
| Name | Description |
request |
DeleteSslPolicyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
request |
DeleteSslPolicyRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
sslPolicy |
StringName of the SSL policy to delete. The name must be 1-63 characters long, and comply with RFC1035. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
sslPolicy |
StringName of the SSL policy to delete. The name must be 1-63 characters long, and comply with RFC1035. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// 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 | |
|---|---|
| Name | Description |
request |
GetSslPolicyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
SslPolicy |
The RPC response. |
// 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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
sslPolicy |
StringName of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
SslPolicy |
The RPC response. |
// 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 | |
|---|---|
| Name | Description |
request |
GetSslPolicyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<SslPolicy> |
A Task containing the RPC response. |
// 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 | |
|---|---|
| Name | Description |
request |
GetSslPolicyRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<SslPolicy> |
A Task containing the RPC response. |
// 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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
sslPolicy |
StringName of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<SslPolicy> |
A Task containing the RPC response. |
// 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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
sslPolicy |
StringName of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<SslPolicy> |
A Task containing the RPC response. |
// 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 | |
|---|---|
| Name | Description |
request |
InsertSslPolicyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
sslPolicyResource |
SslPolicyThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
request |
InsertSslPolicyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
request |
InsertSslPolicyRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
sslPolicyResource |
SslPolicyThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
sslPolicyResource |
SslPolicyThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
request |
ListSslPoliciesRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedEnumerable<SslPoliciesList, SslPolicy> |
A pageable sequence of SslPolicy resources. |
// 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 = null, CallSettings callSettings = null)Lists all the SSL policies that have been configured for the specified project.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
pageToken |
StringThe token returned from the previous request. A value of |
pageSize |
Nullable<Int32>The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedEnumerable<SslPoliciesList, SslPolicy> |
A pageable sequence of SslPolicy resources. |
// 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 | |
|---|---|
| Name | Description |
request |
ListSslPoliciesRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedAsyncEnumerable<SslPoliciesList, SslPolicy> |
A pageable asynchronous sequence of SslPolicy resources. |
// 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 = null, CallSettings callSettings = null)Lists all the SSL policies that have been configured for the specified project.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
pageToken |
StringThe token returned from the previous request. A value of |
pageSize |
Nullable<Int32>The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedAsyncEnumerable<SslPoliciesList, SslPolicy> |
A pageable asynchronous sequence of SslPolicy resources. |
// 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 | |
|---|---|
| Name | Description |
request |
ListAvailableFeaturesSslPoliciesRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
SslPoliciesListAvailableFeaturesResponse |
The RPC response. |
// 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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
SslPoliciesListAvailableFeaturesResponse |
The RPC response. |
// 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 | |
|---|---|
| Name | Description |
request |
ListAvailableFeaturesSslPoliciesRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<SslPoliciesListAvailableFeaturesResponse> |
A Task containing the RPC response. |
// 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 | |
|---|---|
| Name | Description |
request |
ListAvailableFeaturesSslPoliciesRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<SslPoliciesListAvailableFeaturesResponse> |
A Task containing the RPC response. |
// 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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<SslPoliciesListAvailableFeaturesResponse> |
A Task containing the RPC response. |
// 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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<SslPoliciesListAvailableFeaturesResponse> |
A Task containing the RPC response. |
// 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 | |
|---|---|
| Name | Description |
request |
PatchSslPolicyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
sslPolicy |
StringName of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. |
sslPolicyResource |
SslPolicyThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
request |
PatchSslPolicyRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
request |
PatchSslPolicyRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
sslPolicy |
StringName of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. |
sslPolicyResource |
SslPolicyThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
sslPolicy |
StringName of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. |
sslPolicyResource |
SslPolicyThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
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 | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceDeleteAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceDeleteAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of Delete
.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
PollOnceInsert(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceInsert(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of Insert.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceInsertAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceInsertAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of Insert
.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
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 | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
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 | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
ShutdownDefaultChannelsAsync()
public static Task ShutdownDefaultChannelsAsync()Shuts down any channels automatically created by Create() and CreateAsync(CancellationToken). Channels which weren't automatically created are not affected.
| Returns | |
|---|---|
| Type | Description |
Task |
A task representing the asynchronous shutdown operation. |
After calling this method, further calls to Create() and CreateAsync(CancellationToken) will create new channels, which could in turn be shut down by another call to this method.