public abstract class RegionSslPoliciesClient
Reference documentation and code samples for the Compute Engine v1 API class RegionSslPoliciesClient.
RegionSslPolicies client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Compute.V1Assembly
Google.Cloud.Compute.V1.dll
Remarks
The RegionSslPolicies API.
Properties
DefaultEndpoint
public static string DefaultEndpoint { get; }
The default endpoint for the RegionSslPolicies service, which is a host of "compute.googleapis.com" and a port of 443.
Property Value | |
---|---|
Type | Description |
String |
DefaultScopes
public static IReadOnlyList<string> DefaultScopes { get; }
The default RegionSslPolicies scopes.
Property Value | |
---|---|
Type | Description |
IReadOnlyList<String> |
The default RegionSslPolicies scopes are:
DeleteOperationsClient
public virtual OperationsClient DeleteOperationsClient { get; }
The long-running operations client for Delete
.
Property Value | |
---|---|
Type | Description |
OperationsClient |
GrpcClient
public virtual RegionSslPolicies.RegionSslPoliciesClient GrpcClient { get; }
The underlying gRPC RegionSslPolicies client
Property Value | |
---|---|
Type | Description |
RegionSslPolicies.RegionSslPoliciesClient |
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 RegionSslPoliciesClient Create()
Synchronously creates a RegionSslPoliciesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use RegionSslPoliciesClientBuilder.
Returns | |
---|---|
Type | Description |
RegionSslPoliciesClient | The created RegionSslPoliciesClient. |
CreateAsync(CancellationToken)
public static Task<RegionSslPoliciesClient> CreateAsync(CancellationToken cancellationToken = default(CancellationToken))
Asynchronously creates a RegionSslPoliciesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use RegionSslPoliciesClientBuilder.
Parameter | |
---|---|
Name | Description |
cancellationToken | CancellationToken The CancellationToken to use while creating the client. |
Returns | |
---|---|
Type | Description |
Task<RegionSslPoliciesClient> | The task representing the created RegionSslPoliciesClient. |
Delete(DeleteRegionSslPolicyRequest, CallSettings)
public virtual Operation<Operation, Operation> Delete(DeleteRegionSslPolicyRequest request, CallSettings callSettings = null)
Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy resources.
Parameters | |
---|---|
Name | Description |
request | DeleteRegionSslPolicyRequest 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 |
Operation<Operation, Operation> | The RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
DeleteRegionSslPolicyRequest request = new DeleteRegionSslPolicyRequest
{
RequestId = "",
Region = "",
Project = "",
SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = regionSslPoliciesClient.Delete(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = regionSslPoliciesClient.PollOnceDelete(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
Delete(String, String, String, CallSettings)
public virtual Operation<Operation, Operation> Delete(string project, string region, string sslPolicy, CallSettings callSettings = null)
Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy resources.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping 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 |
Operation<Operation, Operation> | The RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
// Make the request
lro::Operation<Operation, Operation> response = regionSslPoliciesClient.Delete(project, region, sslPolicy);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = regionSslPoliciesClient.PollOnceDelete(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(DeleteRegionSslPolicyRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteRegionSslPolicyRequest request, CallSettings callSettings = null)
Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy resources.
Parameters | |
---|---|
Name | Description |
request | DeleteRegionSslPolicyRequest 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 |
Task<Operation<Operation, Operation>> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
DeleteRegionSslPolicyRequest request = new DeleteRegionSslPolicyRequest
{
RequestId = "",
Region = "",
Project = "",
SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.DeleteAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await regionSslPoliciesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(DeleteRegionSslPolicyRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteRegionSslPolicyRequest request, CancellationToken cancellationToken)
Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy resources.
Parameters | |
---|---|
Name | Description |
request | DeleteRegionSslPolicyRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
DeleteRegionSslPolicyRequest request = new DeleteRegionSslPolicyRequest
{
RequestId = "",
Region = "",
Project = "",
SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.DeleteAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await regionSslPoliciesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(String, String, String, CallSettings)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string region, string sslPolicy, CallSettings callSettings = null)
Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy resources.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping 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 |
Task<Operation<Operation, Operation>> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.DeleteAsync(project, region, sslPolicy);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await regionSslPoliciesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(String, String, String, CancellationToken)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string region, string sslPolicy, CancellationToken cancellationToken)
Deletes the specified SSL policy. The SSL policy resource can be deleted only if it is not in use by any TargetHttpsProxy or TargetSslProxy resources.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping 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 |
Task<Operation<Operation, Operation>> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.DeleteAsync(project, region, sslPolicy);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await regionSslPoliciesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
Get(GetRegionSslPolicyRequest, CallSettings)
public virtual SslPolicy Get(GetRegionSslPolicyRequest request, CallSettings callSettings = null)
Lists all of the ordered rules present in a single specified policy.
Parameters | |
---|---|
Name | Description |
request | GetRegionSslPolicyRequest 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
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
GetRegionSslPolicyRequest request = new GetRegionSslPolicyRequest
{
Region = "",
Project = "",
SslPolicy = "",
};
// Make the request
SslPolicy response = regionSslPoliciesClient.Get(request);
Get(String, String, String, CallSettings)
public virtual SslPolicy Get(string project, string region, string sslPolicy, CallSettings callSettings = null)
Lists all of the ordered rules present in a single specified policy.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping 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
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
// Make the request
SslPolicy response = regionSslPoliciesClient.Get(project, region, sslPolicy);
GetAsync(GetRegionSslPolicyRequest, CallSettings)
public virtual Task<SslPolicy> GetAsync(GetRegionSslPolicyRequest request, CallSettings callSettings = null)
Lists all of the ordered rules present in a single specified policy.
Parameters | |
---|---|
Name | Description |
request | GetRegionSslPolicyRequest 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 |
Task<SslPolicy> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
GetRegionSslPolicyRequest request = new GetRegionSslPolicyRequest
{
Region = "",
Project = "",
SslPolicy = "",
};
// Make the request
SslPolicy response = await regionSslPoliciesClient.GetAsync(request);
GetAsync(GetRegionSslPolicyRequest, CancellationToken)
public virtual Task<SslPolicy> GetAsync(GetRegionSslPolicyRequest request, CancellationToken cancellationToken)
Lists all of the ordered rules present in a single specified policy.
Parameters | |
---|---|
Name | Description |
request | GetRegionSslPolicyRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<SslPolicy> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
GetRegionSslPolicyRequest request = new GetRegionSslPolicyRequest
{
Region = "",
Project = "",
SslPolicy = "",
};
// Make the request
SslPolicy response = await regionSslPoliciesClient.GetAsync(request);
GetAsync(String, String, String, CallSettings)
public virtual Task<SslPolicy> GetAsync(string project, string region, string sslPolicy, CallSettings callSettings = null)
Lists all of the ordered rules present in a single specified policy.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping 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 |
Task<SslPolicy> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
// Make the request
SslPolicy response = await regionSslPoliciesClient.GetAsync(project, region, sslPolicy);
GetAsync(String, String, String, CancellationToken)
public virtual Task<SslPolicy> GetAsync(string project, string region, string sslPolicy, CancellationToken cancellationToken)
Lists all of the ordered rules present in a single specified policy.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping 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 |
Task<SslPolicy> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
// Make the request
SslPolicy response = await regionSslPoliciesClient.GetAsync(project, region, sslPolicy);
Insert(InsertRegionSslPolicyRequest, CallSettings)
public virtual Operation<Operation, Operation> Insert(InsertRegionSslPolicyRequest request, CallSettings callSettings = null)
Creates a new policy in the specified project and region using the data included in the request.
Parameters | |
---|---|
Name | Description |
request | InsertRegionSslPolicyRequest 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 |
Operation<Operation, Operation> | The RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
InsertRegionSslPolicyRequest request = new InsertRegionSslPolicyRequest
{
RequestId = "",
Region = "",
Project = "",
SslPolicyResource = new SslPolicy(),
};
// Make the request
lro::Operation<Operation, Operation> response = regionSslPoliciesClient.Insert(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = regionSslPoliciesClient.PollOnceInsert(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
Insert(String, String, SslPolicy, CallSettings)
public virtual Operation<Operation, Operation> Insert(string project, string region, SslPolicy sslPolicyResource, CallSettings callSettings = null)
Creates a new policy in the specified project and region using the data included in the request.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping this request. |
sslPolicyResource | SslPolicy The body resource for this request |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Operation<Operation, Operation> | The RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = regionSslPoliciesClient.Insert(project, region, sslPolicyResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = regionSslPoliciesClient.PollOnceInsert(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(InsertRegionSslPolicyRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertRegionSslPolicyRequest request, CallSettings callSettings = null)
Creates a new policy in the specified project and region using the data included in the request.
Parameters | |
---|---|
Name | Description |
request | InsertRegionSslPolicyRequest 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 |
Task<Operation<Operation, Operation>> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
InsertRegionSslPolicyRequest request = new InsertRegionSslPolicyRequest
{
RequestId = "",
Region = "",
Project = "",
SslPolicyResource = new SslPolicy(),
};
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.InsertAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await regionSslPoliciesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(InsertRegionSslPolicyRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertRegionSslPolicyRequest request, CancellationToken cancellationToken)
Creates a new policy in the specified project and region using the data included in the request.
Parameters | |
---|---|
Name | Description |
request | InsertRegionSslPolicyRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
InsertRegionSslPolicyRequest request = new InsertRegionSslPolicyRequest
{
RequestId = "",
Region = "",
Project = "",
SslPolicyResource = new SslPolicy(),
};
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.InsertAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await regionSslPoliciesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(String, String, SslPolicy, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string region, SslPolicy sslPolicyResource, CallSettings callSettings = null)
Creates a new policy in the specified project and region using the data included in the request.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping this request. |
sslPolicyResource | SslPolicy The body resource for this request |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.InsertAsync(project, region, sslPolicyResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await regionSslPoliciesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(String, String, SslPolicy, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string region, SslPolicy sslPolicyResource, CancellationToken cancellationToken)
Creates a new policy in the specified project and region using the data included in the request.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping this request. |
sslPolicyResource | SslPolicy The body resource for this request |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.InsertAsync(project, region, sslPolicyResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await regionSslPoliciesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
List(ListRegionSslPoliciesRequest, CallSettings)
public virtual PagedEnumerable<SslPoliciesList, SslPolicy> List(ListRegionSslPoliciesRequest request, CallSettings callSettings = null)
Lists all the SSL policies that have been configured for the specified project and region.
Parameters | |
---|---|
Name | Description |
request | ListRegionSslPoliciesRequest 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 |
PagedEnumerable<SslPoliciesList, SslPolicy> | A pageable sequence of SslPolicy resources. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
ListRegionSslPoliciesRequest request = new ListRegionSslPoliciesRequest
{
Region = "",
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<SslPoliciesList, SslPolicy> response = regionSslPoliciesClient.List(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (SslPolicy item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (SslPoliciesList page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (SslPolicy item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<SslPolicy> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (SslPolicy item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
List(String, String, String, Nullable<Int32>, CallSettings)
public virtual PagedEnumerable<SslPoliciesList, SslPolicy> List(string project, string region, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists all the SSL policies that have been configured for the specified project and region.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping this request. |
pageToken | String The 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 | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerable<SslPoliciesList, SslPolicy> | A pageable sequence of SslPolicy resources. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
PagedEnumerable<SslPoliciesList, SslPolicy> response = regionSslPoliciesClient.List(project, region);
// Iterate over all response items, lazily performing RPCs as required
foreach (SslPolicy item in response)
{
// Do something with each item
Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (SslPoliciesList page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (SslPolicy item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<SslPolicy> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (SslPolicy item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListAsync(ListRegionSslPoliciesRequest, CallSettings)
public virtual PagedAsyncEnumerable<SslPoliciesList, SslPolicy> ListAsync(ListRegionSslPoliciesRequest request, CallSettings callSettings = null)
Lists all the SSL policies that have been configured for the specified project and region.
Parameters | |
---|---|
Name | Description |
request | ListRegionSslPoliciesRequest 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 |
PagedAsyncEnumerable<SslPoliciesList, SslPolicy> | A pageable asynchronous sequence of SslPolicy resources. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
ListRegionSslPoliciesRequest request = new ListRegionSslPoliciesRequest
{
Region = "",
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<SslPoliciesList, SslPolicy> response = regionSslPoliciesClient.ListAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((SslPolicy item) =>
{
// Do something with each item
Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((SslPoliciesList page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (SslPolicy item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<SslPolicy> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (SslPolicy item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListAsync(String, String, String, Nullable<Int32>, CallSettings)
public virtual PagedAsyncEnumerable<SslPoliciesList, SslPolicy> ListAsync(string project, string region, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists all the SSL policies that have been configured for the specified project and region.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping this request. |
pageToken | String The 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 | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerable<SslPoliciesList, SslPolicy> | A pageable asynchronous sequence of SslPolicy resources. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
PagedAsyncEnumerable<SslPoliciesList, SslPolicy> response = regionSslPoliciesClient.ListAsync(project, region);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((SslPolicy item) =>
{
// Do something with each item
Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((SslPoliciesList page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (SslPolicy item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<SslPolicy> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (SslPolicy item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListAvailableFeatures(ListAvailableFeaturesRegionSslPoliciesRequest, CallSettings)
public virtual SslPoliciesListAvailableFeaturesResponse ListAvailableFeatures(ListAvailableFeaturesRegionSslPoliciesRequest request, CallSettings callSettings = null)
Lists all features that can be specified in the SSL policy when using custom profile.
Parameters | |
---|---|
Name | Description |
request | ListAvailableFeaturesRegionSslPoliciesRequest 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
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
ListAvailableFeaturesRegionSslPoliciesRequest request = new ListAvailableFeaturesRegionSslPoliciesRequest
{
PageToken = "",
MaxResults = 0U,
Region = "",
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
SslPoliciesListAvailableFeaturesResponse response = regionSslPoliciesClient.ListAvailableFeatures(request);
ListAvailableFeatures(String, String, CallSettings)
public virtual SslPoliciesListAvailableFeaturesResponse ListAvailableFeatures(string project, string region, CallSettings callSettings = null)
Lists all features that can be specified in the SSL policy when using custom profile.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping this request. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
SslPoliciesListAvailableFeaturesResponse | The RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
SslPoliciesListAvailableFeaturesResponse response = regionSslPoliciesClient.ListAvailableFeatures(project, region);
ListAvailableFeaturesAsync(ListAvailableFeaturesRegionSslPoliciesRequest, CallSettings)
public virtual Task<SslPoliciesListAvailableFeaturesResponse> ListAvailableFeaturesAsync(ListAvailableFeaturesRegionSslPoliciesRequest request, CallSettings callSettings = null)
Lists all features that can be specified in the SSL policy when using custom profile.
Parameters | |
---|---|
Name | Description |
request | ListAvailableFeaturesRegionSslPoliciesRequest 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 |
Task<SslPoliciesListAvailableFeaturesResponse> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
ListAvailableFeaturesRegionSslPoliciesRequest request = new ListAvailableFeaturesRegionSslPoliciesRequest
{
PageToken = "",
MaxResults = 0U,
Region = "",
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
SslPoliciesListAvailableFeaturesResponse response = await regionSslPoliciesClient.ListAvailableFeaturesAsync(request);
ListAvailableFeaturesAsync(ListAvailableFeaturesRegionSslPoliciesRequest, CancellationToken)
public virtual Task<SslPoliciesListAvailableFeaturesResponse> ListAvailableFeaturesAsync(ListAvailableFeaturesRegionSslPoliciesRequest request, CancellationToken cancellationToken)
Lists all features that can be specified in the SSL policy when using custom profile.
Parameters | |
---|---|
Name | Description |
request | ListAvailableFeaturesRegionSslPoliciesRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<SslPoliciesListAvailableFeaturesResponse> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
ListAvailableFeaturesRegionSslPoliciesRequest request = new ListAvailableFeaturesRegionSslPoliciesRequest
{
PageToken = "",
MaxResults = 0U,
Region = "",
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
SslPoliciesListAvailableFeaturesResponse response = await regionSslPoliciesClient.ListAvailableFeaturesAsync(request);
ListAvailableFeaturesAsync(String, String, CallSettings)
public virtual Task<SslPoliciesListAvailableFeaturesResponse> ListAvailableFeaturesAsync(string project, string region, CallSettings callSettings = null)
Lists all features that can be specified in the SSL policy when using custom profile.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping this request. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<SslPoliciesListAvailableFeaturesResponse> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
SslPoliciesListAvailableFeaturesResponse response = await regionSslPoliciesClient.ListAvailableFeaturesAsync(project, region);
ListAvailableFeaturesAsync(String, String, CancellationToken)
public virtual Task<SslPoliciesListAvailableFeaturesResponse> ListAvailableFeaturesAsync(string project, string region, CancellationToken cancellationToken)
Lists all features that can be specified in the SSL policy when using custom profile.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping this request. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<SslPoliciesListAvailableFeaturesResponse> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
SslPoliciesListAvailableFeaturesResponse response = await regionSslPoliciesClient.ListAvailableFeaturesAsync(project, region);
Patch(PatchRegionSslPolicyRequest, CallSettings)
public virtual Operation<Operation, Operation> Patch(PatchRegionSslPolicyRequest request, CallSettings callSettings = null)
Patches the specified SSL policy with the data included in the request.
Parameters | |
---|---|
Name | Description |
request | PatchRegionSslPolicyRequest 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 |
Operation<Operation, Operation> | The RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
PatchRegionSslPolicyRequest request = new PatchRegionSslPolicyRequest
{
RequestId = "",
Region = "",
Project = "",
SslPolicyResource = new SslPolicy(),
SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = regionSslPoliciesClient.Patch(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = regionSslPoliciesClient.PollOncePatch(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
Patch(String, String, String, SslPolicy, CallSettings)
public virtual Operation<Operation, Operation> Patch(string project, string region, string sslPolicy, SslPolicy sslPolicyResource, CallSettings callSettings = null)
Patches the specified SSL policy with the data included in the request.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping 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 |
Operation<Operation, Operation> | The RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = RegionSslPoliciesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = regionSslPoliciesClient.Patch(project, region, sslPolicy, sslPolicyResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = regionSslPoliciesClient.PollOncePatch(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
PatchAsync(PatchRegionSslPolicyRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> PatchAsync(PatchRegionSslPolicyRequest request, CallSettings callSettings = null)
Patches the specified SSL policy with the data included in the request.
Parameters | |
---|---|
Name | Description |
request | PatchRegionSslPolicyRequest 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 |
Task<Operation<Operation, Operation>> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
PatchRegionSslPolicyRequest request = new PatchRegionSslPolicyRequest
{
RequestId = "",
Region = "",
Project = "",
SslPolicyResource = new SslPolicy(),
SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.PatchAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await regionSslPoliciesClient.PollOncePatchAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
PatchAsync(PatchRegionSslPolicyRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> PatchAsync(PatchRegionSslPolicyRequest request, CancellationToken cancellationToken)
Patches the specified SSL policy with the data included in the request.
Parameters | |
---|---|
Name | Description |
request | PatchRegionSslPolicyRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
PatchRegionSslPolicyRequest request = new PatchRegionSslPolicyRequest
{
RequestId = "",
Region = "",
Project = "",
SslPolicyResource = new SslPolicy(),
SslPolicy = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.PatchAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await regionSslPoliciesClient.PollOncePatchAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
PatchAsync(String, String, String, SslPolicy, CallSettings)
public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, string region, string sslPolicy, SslPolicy sslPolicyResource, CallSettings callSettings = null)
Patches the specified SSL policy with the data included in the request.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping 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 |
Task<Operation<Operation, Operation>> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.PatchAsync(project, region, sslPolicy, sslPolicyResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await regionSslPoliciesClient.PollOncePatchAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
PatchAsync(String, String, String, SslPolicy, CancellationToken)
public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, string region, string sslPolicy, SslPolicy sslPolicyResource, CancellationToken cancellationToken)
Patches the specified SSL policy with the data included in the request.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String Name of the region scoping 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 |
Task<Operation<Operation, Operation>> | A Task containing the RPC response. |
// Create client
RegionSslPoliciesClient regionSslPoliciesClient = await RegionSslPoliciesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string sslPolicy = "";
SslPolicy sslPolicyResource = new SslPolicy();
// Make the request
lro::Operation<Operation, Operation> response = await regionSslPoliciesClient.PatchAsync(project, region, sslPolicy, sslPolicyResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await regionSslPoliciesClient.PollOncePatchAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Operation retrievedResult = retrievedResponse.Result;
}
PollOnceDelete(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceDelete(string operationName, CallSettings callSettings = null)
Poll an operation once, using an operationName
from a previous invocation of Delete
.
Parameters | |
---|---|
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 |
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 | 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 |
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 | 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 |
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 | 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 |
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 | 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 |
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 | 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 |
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.