public abstract class RevisionsClient
Reference documentation and code samples for the Cloud Run Admin v2 API class RevisionsClient.
Revisions client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Run.V2Assembly
Google.Cloud.Run.V2.dll
Remarks
Cloud Run Revision Control Plane API.
Properties
DefaultEndpoint
public static string DefaultEndpoint { get; }
The default endpoint for the Revisions service, which is a host of "run.googleapis.com" and a port of 443.
Property Value | |
---|---|
Type | Description |
string |
DefaultScopes
public static IReadOnlyList<string> DefaultScopes { get; }
The default Revisions scopes.
Property Value | |
---|---|
Type | Description |
IReadOnlyListstring |
The default Revisions scopes are:
DeleteRevisionOperationsClient
public virtual OperationsClient DeleteRevisionOperationsClient { get; }
The long-running operations client for DeleteRevision
.
Property Value | |
---|---|
Type | Description |
OperationsClient |
GrpcClient
public virtual Revisions.RevisionsClient GrpcClient { get; }
The underlying gRPC Revisions client
Property Value | |
---|---|
Type | Description |
RevisionsRevisionsClient |
LocationsClient
public virtual LocationsClient LocationsClient { get; }
The LocationsClient associated with this client.
Property Value | |
---|---|
Type | Description |
LocationsClient |
ServiceMetadata
public static ServiceMetadata ServiceMetadata { get; }
The service metadata associated with this client type.
Property Value | |
---|---|
Type | Description |
ServiceMetadata |
Methods
Create()
public static RevisionsClient Create()
Synchronously creates a RevisionsClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use RevisionsClientBuilder.
Returns | |
---|---|
Type | Description |
RevisionsClient |
The created RevisionsClient. |
CreateAsync(CancellationToken)
public static Task<RevisionsClient> CreateAsync(CancellationToken cancellationToken = default)
Asynchronously creates a RevisionsClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use RevisionsClientBuilder.
Parameter | |
---|---|
Name | Description |
cancellationToken |
CancellationToken The CancellationToken to use while creating the client. |
Returns | |
---|---|
Type | Description |
TaskRevisionsClient |
The task representing the created RevisionsClient. |
DeleteRevision(DeleteRevisionRequest, CallSettings)
public virtual Operation<Revision, Revision> DeleteRevision(DeleteRevisionRequest request, CallSettings callSettings = null)
Deletes a Revision.
Parameters | |
---|---|
Name | Description |
request |
DeleteRevisionRequest 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 |
OperationRevisionRevision |
The RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = gcrv::RevisionsClient.Create();
// Initialize request argument(s)
gcrv::DeleteRevisionRequest request = new gcrv::DeleteRevisionRequest
{
RevisionName = gcrv::RevisionName.FromProjectLocationServiceRevision("[PROJECT]", "[LOCATION]", "[SERVICE]", "[REVISION]"),
ValidateOnly = false,
Etag = "",
};
// Make the request
Operation<gcrv::Revision, gcrv::Revision> response = revisionsClient.DeleteRevision(request);
// Poll until the returned long-running operation is complete
Operation<gcrv::Revision, gcrv::Revision> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
gcrv::Revision 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
Operation<gcrv::Revision, gcrv::Revision> retrievedResponse = revisionsClient.PollOnceDeleteRevision(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
gcrv::Revision retrievedResult = retrievedResponse.Result;
}
DeleteRevision(RevisionName, CallSettings)
public virtual Operation<Revision, Revision> DeleteRevision(RevisionName name, CallSettings callSettings = null)
Deletes a Revision.
Parameters | |
---|---|
Name | Description |
name |
RevisionName Required. The name of the Revision to delete. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision} |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationRevisionRevision |
The RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = gcrv::RevisionsClient.Create();
// Initialize request argument(s)
gcrv::RevisionName name = gcrv::RevisionName.FromProjectLocationServiceRevision("[PROJECT]", "[LOCATION]", "[SERVICE]", "[REVISION]");
// Make the request
Operation<gcrv::Revision, gcrv::Revision> response = revisionsClient.DeleteRevision(name);
// Poll until the returned long-running operation is complete
Operation<gcrv::Revision, gcrv::Revision> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
gcrv::Revision 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
Operation<gcrv::Revision, gcrv::Revision> retrievedResponse = revisionsClient.PollOnceDeleteRevision(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
gcrv::Revision retrievedResult = retrievedResponse.Result;
}
DeleteRevision(string, CallSettings)
public virtual Operation<Revision, Revision> DeleteRevision(string name, CallSettings callSettings = null)
Deletes a Revision.
Parameters | |
---|---|
Name | Description |
name |
string Required. The name of the Revision to delete. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision} |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationRevisionRevision |
The RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = gcrv::RevisionsClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/services/[SERVICE]/revisions/[REVISION]";
// Make the request
Operation<gcrv::Revision, gcrv::Revision> response = revisionsClient.DeleteRevision(name);
// Poll until the returned long-running operation is complete
Operation<gcrv::Revision, gcrv::Revision> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
gcrv::Revision 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
Operation<gcrv::Revision, gcrv::Revision> retrievedResponse = revisionsClient.PollOnceDeleteRevision(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
gcrv::Revision retrievedResult = retrievedResponse.Result;
}
DeleteRevisionAsync(DeleteRevisionRequest, CallSettings)
public virtual Task<Operation<Revision, Revision>> DeleteRevisionAsync(DeleteRevisionRequest request, CallSettings callSettings = null)
Deletes a Revision.
Parameters | |
---|---|
Name | Description |
request |
DeleteRevisionRequest 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 |
TaskOperationRevisionRevision |
A Task containing the RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
gcrv::DeleteRevisionRequest request = new gcrv::DeleteRevisionRequest
{
RevisionName = gcrv::RevisionName.FromProjectLocationServiceRevision("[PROJECT]", "[LOCATION]", "[SERVICE]", "[REVISION]"),
ValidateOnly = false,
Etag = "",
};
// Make the request
Operation<gcrv::Revision, gcrv::Revision> response = await revisionsClient.DeleteRevisionAsync(request);
// Poll until the returned long-running operation is complete
Operation<gcrv::Revision, gcrv::Revision> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
gcrv::Revision 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
Operation<gcrv::Revision, gcrv::Revision> retrievedResponse = await revisionsClient.PollOnceDeleteRevisionAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
gcrv::Revision retrievedResult = retrievedResponse.Result;
}
DeleteRevisionAsync(DeleteRevisionRequest, CancellationToken)
public virtual Task<Operation<Revision, Revision>> DeleteRevisionAsync(DeleteRevisionRequest request, CancellationToken cancellationToken)
Deletes a Revision.
Parameters | |
---|---|
Name | Description |
request |
DeleteRevisionRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationRevisionRevision |
A Task containing the RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
gcrv::DeleteRevisionRequest request = new gcrv::DeleteRevisionRequest
{
RevisionName = gcrv::RevisionName.FromProjectLocationServiceRevision("[PROJECT]", "[LOCATION]", "[SERVICE]", "[REVISION]"),
ValidateOnly = false,
Etag = "",
};
// Make the request
Operation<gcrv::Revision, gcrv::Revision> response = await revisionsClient.DeleteRevisionAsync(request);
// Poll until the returned long-running operation is complete
Operation<gcrv::Revision, gcrv::Revision> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
gcrv::Revision 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
Operation<gcrv::Revision, gcrv::Revision> retrievedResponse = await revisionsClient.PollOnceDeleteRevisionAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
gcrv::Revision retrievedResult = retrievedResponse.Result;
}
DeleteRevisionAsync(RevisionName, CallSettings)
public virtual Task<Operation<Revision, Revision>> DeleteRevisionAsync(RevisionName name, CallSettings callSettings = null)
Deletes a Revision.
Parameters | |
---|---|
Name | Description |
name |
RevisionName Required. The name of the Revision to delete. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision} |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationRevisionRevision |
A Task containing the RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
gcrv::RevisionName name = gcrv::RevisionName.FromProjectLocationServiceRevision("[PROJECT]", "[LOCATION]", "[SERVICE]", "[REVISION]");
// Make the request
Operation<gcrv::Revision, gcrv::Revision> response = await revisionsClient.DeleteRevisionAsync(name);
// Poll until the returned long-running operation is complete
Operation<gcrv::Revision, gcrv::Revision> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
gcrv::Revision 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
Operation<gcrv::Revision, gcrv::Revision> retrievedResponse = await revisionsClient.PollOnceDeleteRevisionAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
gcrv::Revision retrievedResult = retrievedResponse.Result;
}
DeleteRevisionAsync(RevisionName, CancellationToken)
public virtual Task<Operation<Revision, Revision>> DeleteRevisionAsync(RevisionName name, CancellationToken cancellationToken)
Deletes a Revision.
Parameters | |
---|---|
Name | Description |
name |
RevisionName Required. The name of the Revision to delete. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision} |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationRevisionRevision |
A Task containing the RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
gcrv::RevisionName name = gcrv::RevisionName.FromProjectLocationServiceRevision("[PROJECT]", "[LOCATION]", "[SERVICE]", "[REVISION]");
// Make the request
Operation<gcrv::Revision, gcrv::Revision> response = await revisionsClient.DeleteRevisionAsync(name);
// Poll until the returned long-running operation is complete
Operation<gcrv::Revision, gcrv::Revision> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
gcrv::Revision 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
Operation<gcrv::Revision, gcrv::Revision> retrievedResponse = await revisionsClient.PollOnceDeleteRevisionAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
gcrv::Revision retrievedResult = retrievedResponse.Result;
}
DeleteRevisionAsync(string, CallSettings)
public virtual Task<Operation<Revision, Revision>> DeleteRevisionAsync(string name, CallSettings callSettings = null)
Deletes a Revision.
Parameters | |
---|---|
Name | Description |
name |
string Required. The name of the Revision to delete. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision} |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationRevisionRevision |
A Task containing the RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/services/[SERVICE]/revisions/[REVISION]";
// Make the request
Operation<gcrv::Revision, gcrv::Revision> response = await revisionsClient.DeleteRevisionAsync(name);
// Poll until the returned long-running operation is complete
Operation<gcrv::Revision, gcrv::Revision> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
gcrv::Revision 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
Operation<gcrv::Revision, gcrv::Revision> retrievedResponse = await revisionsClient.PollOnceDeleteRevisionAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
gcrv::Revision retrievedResult = retrievedResponse.Result;
}
DeleteRevisionAsync(string, CancellationToken)
public virtual Task<Operation<Revision, Revision>> DeleteRevisionAsync(string name, CancellationToken cancellationToken)
Deletes a Revision.
Parameters | |
---|---|
Name | Description |
name |
string Required. The name of the Revision to delete. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision} |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationRevisionRevision |
A Task containing the RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/services/[SERVICE]/revisions/[REVISION]";
// Make the request
Operation<gcrv::Revision, gcrv::Revision> response = await revisionsClient.DeleteRevisionAsync(name);
// Poll until the returned long-running operation is complete
Operation<gcrv::Revision, gcrv::Revision> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
gcrv::Revision 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
Operation<gcrv::Revision, gcrv::Revision> retrievedResponse = await revisionsClient.PollOnceDeleteRevisionAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
gcrv::Revision retrievedResult = retrievedResponse.Result;
}
GetRevision(GetRevisionRequest, CallSettings)
public virtual Revision GetRevision(GetRevisionRequest request, CallSettings callSettings = null)
Gets information about a Revision.
Parameters | |
---|---|
Name | Description |
request |
GetRevisionRequest 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 |
Revision |
The RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = gcrv::RevisionsClient.Create();
// Initialize request argument(s)
gcrv::GetRevisionRequest request = new gcrv::GetRevisionRequest
{
RevisionName = gcrv::RevisionName.FromProjectLocationServiceRevision("[PROJECT]", "[LOCATION]", "[SERVICE]", "[REVISION]"),
};
// Make the request
gcrv::Revision response = revisionsClient.GetRevision(request);
GetRevision(RevisionName, CallSettings)
public virtual Revision GetRevision(RevisionName name, CallSettings callSettings = null)
Gets information about a Revision.
Parameters | |
---|---|
Name | Description |
name |
RevisionName Required. The full name of the Revision. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision} |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Revision |
The RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = gcrv::RevisionsClient.Create();
// Initialize request argument(s)
gcrv::RevisionName name = gcrv::RevisionName.FromProjectLocationServiceRevision("[PROJECT]", "[LOCATION]", "[SERVICE]", "[REVISION]");
// Make the request
gcrv::Revision response = revisionsClient.GetRevision(name);
GetRevision(string, CallSettings)
public virtual Revision GetRevision(string name, CallSettings callSettings = null)
Gets information about a Revision.
Parameters | |
---|---|
Name | Description |
name |
string Required. The full name of the Revision. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision} |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Revision |
The RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = gcrv::RevisionsClient.Create();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/services/[SERVICE]/revisions/[REVISION]";
// Make the request
gcrv::Revision response = revisionsClient.GetRevision(name);
GetRevisionAsync(GetRevisionRequest, CallSettings)
public virtual Task<Revision> GetRevisionAsync(GetRevisionRequest request, CallSettings callSettings = null)
Gets information about a Revision.
Parameters | |
---|---|
Name | Description |
request |
GetRevisionRequest 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 |
TaskRevision |
A Task containing the RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
gcrv::GetRevisionRequest request = new gcrv::GetRevisionRequest
{
RevisionName = gcrv::RevisionName.FromProjectLocationServiceRevision("[PROJECT]", "[LOCATION]", "[SERVICE]", "[REVISION]"),
};
// Make the request
gcrv::Revision response = await revisionsClient.GetRevisionAsync(request);
GetRevisionAsync(GetRevisionRequest, CancellationToken)
public virtual Task<Revision> GetRevisionAsync(GetRevisionRequest request, CancellationToken cancellationToken)
Gets information about a Revision.
Parameters | |
---|---|
Name | Description |
request |
GetRevisionRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskRevision |
A Task containing the RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
gcrv::GetRevisionRequest request = new gcrv::GetRevisionRequest
{
RevisionName = gcrv::RevisionName.FromProjectLocationServiceRevision("[PROJECT]", "[LOCATION]", "[SERVICE]", "[REVISION]"),
};
// Make the request
gcrv::Revision response = await revisionsClient.GetRevisionAsync(request);
GetRevisionAsync(RevisionName, CallSettings)
public virtual Task<Revision> GetRevisionAsync(RevisionName name, CallSettings callSettings = null)
Gets information about a Revision.
Parameters | |
---|---|
Name | Description |
name |
RevisionName Required. The full name of the Revision. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision} |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskRevision |
A Task containing the RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
gcrv::RevisionName name = gcrv::RevisionName.FromProjectLocationServiceRevision("[PROJECT]", "[LOCATION]", "[SERVICE]", "[REVISION]");
// Make the request
gcrv::Revision response = await revisionsClient.GetRevisionAsync(name);
GetRevisionAsync(RevisionName, CancellationToken)
public virtual Task<Revision> GetRevisionAsync(RevisionName name, CancellationToken cancellationToken)
Gets information about a Revision.
Parameters | |
---|---|
Name | Description |
name |
RevisionName Required. The full name of the Revision. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision} |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskRevision |
A Task containing the RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
gcrv::RevisionName name = gcrv::RevisionName.FromProjectLocationServiceRevision("[PROJECT]", "[LOCATION]", "[SERVICE]", "[REVISION]");
// Make the request
gcrv::Revision response = await revisionsClient.GetRevisionAsync(name);
GetRevisionAsync(string, CallSettings)
public virtual Task<Revision> GetRevisionAsync(string name, CallSettings callSettings = null)
Gets information about a Revision.
Parameters | |
---|---|
Name | Description |
name |
string Required. The full name of the Revision. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision} |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskRevision |
A Task containing the RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/services/[SERVICE]/revisions/[REVISION]";
// Make the request
gcrv::Revision response = await revisionsClient.GetRevisionAsync(name);
GetRevisionAsync(string, CancellationToken)
public virtual Task<Revision> GetRevisionAsync(string name, CancellationToken cancellationToken)
Gets information about a Revision.
Parameters | |
---|---|
Name | Description |
name |
string Required. The full name of the Revision. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision} |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskRevision |
A Task containing the RPC response. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
string name = "projects/[PROJECT]/locations/[LOCATION]/services/[SERVICE]/revisions/[REVISION]";
// Make the request
gcrv::Revision response = await revisionsClient.GetRevisionAsync(name);
ListRevisions(ListRevisionsRequest, CallSettings)
public virtual PagedEnumerable<ListRevisionsResponse, Revision> ListRevisions(ListRevisionsRequest request, CallSettings callSettings = null)
Lists Revisions from a given Service, or from a given location. Results are sorted by creation time, descending.
Parameters | |
---|---|
Name | Description |
request |
ListRevisionsRequest 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 |
PagedEnumerableListRevisionsResponseRevision |
A pageable sequence of Revision resources. |
// Create client
gcrv::RevisionsClient revisionsClient = gcrv::RevisionsClient.Create();
// Initialize request argument(s)
gcrv::ListRevisionsRequest request = new gcrv::ListRevisionsRequest
{
ParentAsServiceName = gcrv::ServiceName.FromProjectLocationService("[PROJECT]", "[LOCATION]", "[SERVICE]"),
ShowDeleted = false,
};
// Make the request
PagedEnumerable<gcrv::ListRevisionsResponse, gcrv::Revision> response = revisionsClient.ListRevisions(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (gcrv::Revision 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 (gcrv::ListRevisionsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (gcrv::Revision 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<gcrv::Revision> 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 (gcrv::Revision 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;
ListRevisions(ServiceName, string, int?, CallSettings)
public virtual PagedEnumerable<ListRevisionsResponse, Revision> ListRevisions(ServiceName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists Revisions from a given Service, or from a given location. Results are sorted by creation time, descending.
Parameters | |
---|---|
Name | Description |
parent |
ServiceName Required. The Service from which the Revisions should be listed. To list all Revisions across Services, use "-" instead of Service name. Format: projects/{project}/locations/{location}/services/{service} |
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 |
PagedEnumerableListRevisionsResponseRevision |
A pageable sequence of Revision resources. |
// Create client
gcrv::RevisionsClient revisionsClient = gcrv::RevisionsClient.Create();
// Initialize request argument(s)
gcrv::ServiceName parent = gcrv::ServiceName.FromProjectLocationService("[PROJECT]", "[LOCATION]", "[SERVICE]");
// Make the request
PagedEnumerable<gcrv::ListRevisionsResponse, gcrv::Revision> response = revisionsClient.ListRevisions(parent);
// Iterate over all response items, lazily performing RPCs as required
foreach (gcrv::Revision 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 (gcrv::ListRevisionsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (gcrv::Revision 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<gcrv::Revision> 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 (gcrv::Revision 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;
ListRevisions(string, string, int?, CallSettings)
public virtual PagedEnumerable<ListRevisionsResponse, Revision> ListRevisions(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists Revisions from a given Service, or from a given location. Results are sorted by creation time, descending.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The Service from which the Revisions should be listed. To list all Revisions across Services, use "-" instead of Service name. Format: projects/{project}/locations/{location}/services/{service} |
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 |
PagedEnumerableListRevisionsResponseRevision |
A pageable sequence of Revision resources. |
// Create client
gcrv::RevisionsClient revisionsClient = gcrv::RevisionsClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/services/[SERVICE]";
// Make the request
PagedEnumerable<gcrv::ListRevisionsResponse, gcrv::Revision> response = revisionsClient.ListRevisions(parent);
// Iterate over all response items, lazily performing RPCs as required
foreach (gcrv::Revision 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 (gcrv::ListRevisionsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (gcrv::Revision 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<gcrv::Revision> 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 (gcrv::Revision 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;
ListRevisionsAsync(ListRevisionsRequest, CallSettings)
public virtual PagedAsyncEnumerable<ListRevisionsResponse, Revision> ListRevisionsAsync(ListRevisionsRequest request, CallSettings callSettings = null)
Lists Revisions from a given Service, or from a given location. Results are sorted by creation time, descending.
Parameters | |
---|---|
Name | Description |
request |
ListRevisionsRequest 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 |
PagedAsyncEnumerableListRevisionsResponseRevision |
A pageable asynchronous sequence of Revision resources. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
gcrv::ListRevisionsRequest request = new gcrv::ListRevisionsRequest
{
ParentAsServiceName = gcrv::ServiceName.FromProjectLocationService("[PROJECT]", "[LOCATION]", "[SERVICE]"),
ShowDeleted = false,
};
// Make the request
PagedAsyncEnumerable<gcrv::ListRevisionsResponse, gcrv::Revision> response = revisionsClient.ListRevisionsAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((gcrv::Revision 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((gcrv::ListRevisionsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (gcrv::Revision 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<gcrv::Revision> 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 (gcrv::Revision 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;
ListRevisionsAsync(ServiceName, string, int?, CallSettings)
public virtual PagedAsyncEnumerable<ListRevisionsResponse, Revision> ListRevisionsAsync(ServiceName parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists Revisions from a given Service, or from a given location. Results are sorted by creation time, descending.
Parameters | |
---|---|
Name | Description |
parent |
ServiceName Required. The Service from which the Revisions should be listed. To list all Revisions across Services, use "-" instead of Service name. Format: projects/{project}/locations/{location}/services/{service} |
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 |
PagedAsyncEnumerableListRevisionsResponseRevision |
A pageable asynchronous sequence of Revision resources. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
gcrv::ServiceName parent = gcrv::ServiceName.FromProjectLocationService("[PROJECT]", "[LOCATION]", "[SERVICE]");
// Make the request
PagedAsyncEnumerable<gcrv::ListRevisionsResponse, gcrv::Revision> response = revisionsClient.ListRevisionsAsync(parent);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((gcrv::Revision 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((gcrv::ListRevisionsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (gcrv::Revision 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<gcrv::Revision> 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 (gcrv::Revision 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;
ListRevisionsAsync(string, string, int?, CallSettings)
public virtual PagedAsyncEnumerable<ListRevisionsResponse, Revision> ListRevisionsAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists Revisions from a given Service, or from a given location. Results are sorted by creation time, descending.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The Service from which the Revisions should be listed. To list all Revisions across Services, use "-" instead of Service name. Format: projects/{project}/locations/{location}/services/{service} |
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 |
PagedAsyncEnumerableListRevisionsResponseRevision |
A pageable asynchronous sequence of Revision resources. |
// Create client
gcrv::RevisionsClient revisionsClient = await gcrv::RevisionsClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]/services/[SERVICE]";
// Make the request
PagedAsyncEnumerable<gcrv::ListRevisionsResponse, gcrv::Revision> response = revisionsClient.ListRevisionsAsync(parent);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((gcrv::Revision 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((gcrv::ListRevisionsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (gcrv::Revision 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<gcrv::Revision> 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 (gcrv::Revision 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;
PollOnceDeleteRevision(string, CallSettings)
public virtual Operation<Revision, Revision> PollOnceDeleteRevision(string operationName, CallSettings callSettings = null)
Poll an operation once, using an operationName
from a previous invocation of DeleteRevision
.
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 |
OperationRevisionRevision |
The result of polling the operation. |
PollOnceDeleteRevisionAsync(string, CallSettings)
public virtual Task<Operation<Revision, Revision>> PollOnceDeleteRevisionAsync(string operationName, CallSettings callSettings = null)
Asynchronously poll an operation once, using an operationName
from a previous invocation of
DeleteRevision
.
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 |
TaskOperationRevisionRevision |
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.