public abstract class SslPoliciesClient
Reference documentation and code samples for the Compute Engine v1 API class SslPoliciesClient.
SslPolicies 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 |
IReadOnlyListstring |
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 |
SslPoliciesSslPoliciesClient |
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
AggregatedList(AggregatedListSslPoliciesRequest, CallSettings)
public virtual PagedEnumerable<SslPoliciesAggregatedList, KeyValuePair<string, SslPoliciesScopedList>> AggregatedList(AggregatedListSslPoliciesRequest request, CallSettings callSettings = null)
Retrieves the list of all SslPolicy resources, regional and global, available to the specified project. To prevent failure, Google recommends that you set the returnPartialSuccess
parameter to true
.
Parameters | |
---|---|
Name | Description |
request |
AggregatedListSslPoliciesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableSslPoliciesAggregatedListKeyValuePairstringSslPoliciesScopedList |
A pageable sequence of KeyValuePair<TKey, TValue> resources. |
// Create client
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
AggregatedListSslPoliciesRequest request = new AggregatedListSslPoliciesRequest
{
OrderBy = "",
Project = "",
ServiceProjectNumber = 0L,
Filter = "",
IncludeAllScopes = false,
ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<SslPoliciesAggregatedList, KeyValuePair<string, SslPoliciesScopedList>> response = sslPoliciesClient.AggregatedList(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (KeyValuePair<string, SslPoliciesScopedList> 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 (SslPoliciesAggregatedList page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (KeyValuePair<string, SslPoliciesScopedList> 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<KeyValuePair<string, SslPoliciesScopedList>> 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 (KeyValuePair<string, SslPoliciesScopedList> 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;
AggregatedList(string, string, int?, CallSettings)
public virtual PagedEnumerable<SslPoliciesAggregatedList, KeyValuePair<string, SslPoliciesScopedList>> AggregatedList(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Retrieves the list of all SslPolicy resources, regional and global, available to the specified project. To prevent failure, Google recommends that you set the returnPartialSuccess
parameter to true
.
Parameters | |
---|---|
Name | Description |
project |
string Name of the project scoping this request. |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableSslPoliciesAggregatedListKeyValuePairstringSslPoliciesScopedList |
A pageable sequence of KeyValuePair<TKey, TValue> resources. |
// Create client
SslPoliciesClient sslPoliciesClient = SslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
PagedEnumerable<SslPoliciesAggregatedList, KeyValuePair<string, SslPoliciesScopedList>> response = sslPoliciesClient.AggregatedList(project);
// Iterate over all response items, lazily performing RPCs as required
foreach (KeyValuePair<string, SslPoliciesScopedList> 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 (SslPoliciesAggregatedList page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (KeyValuePair<string, SslPoliciesScopedList> 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<KeyValuePair<string, SslPoliciesScopedList>> 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 (KeyValuePair<string, SslPoliciesScopedList> 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;
AggregatedListAsync(AggregatedListSslPoliciesRequest, CallSettings)
public virtual PagedAsyncEnumerable<SslPoliciesAggregatedList, KeyValuePair<string, SslPoliciesScopedList>> AggregatedListAsync(AggregatedListSslPoliciesRequest request, CallSettings callSettings = null)
Retrieves the list of all SslPolicy resources, regional and global, available to the specified project. To prevent failure, Google recommends that you set the returnPartialSuccess
parameter to true
.
Parameters | |
---|---|
Name | Description |
request |
AggregatedListSslPoliciesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableSslPoliciesAggregatedListKeyValuePairstringSslPoliciesScopedList |
A pageable asynchronous sequence of KeyValuePair<TKey, TValue> resources. |
// Create client
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
AggregatedListSslPoliciesRequest request = new AggregatedListSslPoliciesRequest
{
OrderBy = "",
Project = "",
ServiceProjectNumber = 0L,
Filter = "",
IncludeAllScopes = false,
ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<SslPoliciesAggregatedList, KeyValuePair<string, SslPoliciesScopedList>> response = sslPoliciesClient.AggregatedListAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((KeyValuePair<string, SslPoliciesScopedList> 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((SslPoliciesAggregatedList page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (KeyValuePair<string, SslPoliciesScopedList> 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<KeyValuePair<string, SslPoliciesScopedList>> 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 (KeyValuePair<string, SslPoliciesScopedList> 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;
AggregatedListAsync(string, string, int?, CallSettings)
public virtual PagedAsyncEnumerable<SslPoliciesAggregatedList, KeyValuePair<string, SslPoliciesScopedList>> AggregatedListAsync(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Retrieves the list of all SslPolicy resources, regional and global, available to the specified project. To prevent failure, Google recommends that you set the returnPartialSuccess
parameter to true
.
Parameters | |
---|---|
Name | Description |
project |
string Name of the project scoping this request. |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableSslPoliciesAggregatedListKeyValuePairstringSslPoliciesScopedList |
A pageable asynchronous sequence of KeyValuePair<TKey, TValue> resources. |
// Create client
SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
PagedAsyncEnumerable<SslPoliciesAggregatedList, KeyValuePair<string, SslPoliciesScopedList>> response = sslPoliciesClient.AggregatedListAsync(project);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((KeyValuePair<string, SslPoliciesScopedList> 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((SslPoliciesAggregatedList page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (KeyValuePair<string, SslPoliciesScopedList> 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<KeyValuePair<string, SslPoliciesScopedList>> 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 (KeyValuePair<string, SslPoliciesScopedList> 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;
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)
Asynchronously creates a SslPoliciesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use SslPoliciesClientBuilder.
Parameter | |
---|---|
Name | Description |
cancellationToken |
CancellationToken The CancellationToken to use while creating the client. |
Returns | |
---|---|
Type | Description |
TaskSslPoliciesClient |
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 |
DeleteSslPolicyRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
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 |
string Project ID for this request. |
sslPolicy |
string Name of the SSL policy to delete. The name must be 1-63 characters long, and comply with RFC1035. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
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 |
DeleteSslPolicyRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
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 |
DeleteSslPolicyRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
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 |
string Project ID for this request. |
sslPolicy |
string Name of the SSL policy to delete. The name must be 1-63 characters long, and comply with RFC1035. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
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 |
string Project ID for this request. |
sslPolicy |
string Name of the SSL policy to delete. The name must be 1-63 characters long, and comply with RFC1035. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
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 |
GetSslPolicyRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If 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 |
string Project ID for this request. |
sslPolicy |
string Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. |
callSettings |
CallSettings If 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 |
GetSslPolicyRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskSslPolicy |
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 |
GetSslPolicyRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskSslPolicy |
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 |
string Project ID for this request. |
sslPolicy |
string Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskSslPolicy |
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 |
string Project ID for this request. |
sslPolicy |
string Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskSslPolicy |
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.
Parameters | |
---|---|
Name | Description |
request |
InsertSslPolicyRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
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.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
sslPolicyResource |
SslPolicy The body resource for this request |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
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.
Parameters | |
---|---|
Name | Description |
request |
InsertSslPolicyRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
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.
Parameters | |
---|---|
Name | Description |
request |
InsertSslPolicyRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
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.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
sslPolicyResource |
SslPolicy The body resource for this request |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
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.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
sslPolicyResource |
SslPolicy The body resource for this request |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
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 |
ListSslPoliciesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableSslPoliciesListSslPolicy |
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, int?, 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 |
string Project ID for this request. |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableSslPoliciesListSslPolicy |
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 |
ListSslPoliciesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableSslPoliciesListSslPolicy |
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, int?, 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 |
string Project ID for this request. |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableSslPoliciesListSslPolicy |
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 |
ListAvailableFeaturesSslPoliciesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If 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 |
string Project ID for this request. |
callSettings |
CallSettings If 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 |
ListAvailableFeaturesSslPoliciesRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskSslPoliciesListAvailableFeaturesResponse |
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 |
ListAvailableFeaturesSslPoliciesRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskSslPoliciesListAvailableFeaturesResponse |
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 |
string Project ID for this request. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskSslPoliciesListAvailableFeaturesResponse |
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 |
string Project ID for this request. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskSslPoliciesListAvailableFeaturesResponse |
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 |
PatchSslPolicyRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
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 |
string Project ID for this request. |
sslPolicy |
string Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. |
sslPolicyResource |
SslPolicy The body resource for this request |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
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 |
PatchSslPolicyRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
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 |
PatchSslPolicyRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
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 |
string Project ID for this request. |
sslPolicy |
string Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. |
sslPolicyResource |
SslPolicy The body resource for this request |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
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 |
string Project ID for this request. |
sslPolicy |
string Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. |
sslPolicyResource |
SslPolicy The body resource for this request |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
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 |
string The name of a previously invoked operation. Must not be |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
The result of polling the operation. |
PollOnceDeleteAsync(string, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceDeleteAsync(string operationName, CallSettings callSettings = null)
Asynchronously poll an operation once, using an operationName
from a previous invocation of Delete
.
Parameters | |
---|---|
Name | Description |
operationName |
string The name of a previously invoked operation. Must not be |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A task representing the result of polling the operation. |
PollOnceInsert(string, CallSettings)
public virtual Operation<Operation, Operation> PollOnceInsert(string operationName, CallSettings callSettings = null)
Poll an operation once, using an operationName
from a previous invocation of Insert
.
Parameters | |
---|---|
Name | Description |
operationName |
string The name of a previously invoked operation. Must not be |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
The result of polling the operation. |
PollOnceInsertAsync(string, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceInsertAsync(string operationName, CallSettings callSettings = null)
Asynchronously poll an operation once, using an operationName
from a previous invocation of Insert
.
Parameters | |
---|---|
Name | Description |
operationName |
string The name of a previously invoked operation. Must not be |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A task representing the result of polling the operation. |
PollOncePatch(string, CallSettings)
public virtual Operation<Operation, Operation> PollOncePatch(string operationName, CallSettings callSettings = null)
Poll an operation once, using an operationName
from a previous invocation of Patch
.
Parameters | |
---|---|
Name | Description |
operationName |
string The name of a previously invoked operation. Must not be |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
The result of polling the operation. |
PollOncePatchAsync(string, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOncePatchAsync(string operationName, CallSettings callSettings = null)
Asynchronously poll an operation once, using an operationName
from a previous invocation of Patch
.
Parameters | |
---|---|
Name | Description |
operationName |
string The name of a previously invoked operation. Must not be |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A task representing the result of polling the operation. |
ShutdownDefaultChannelsAsync()
public static Task ShutdownDefaultChannelsAsync()
Shuts down any channels automatically created by Create() and CreateAsync(CancellationToken). Channels which weren't automatically created are not affected.
Returns | |
---|---|
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.