public abstract class DisksClientDisks client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Compute.V1Assembly
Google.Cloud.Compute.V1.dll
Remarks
The Disks API.
Properties
AddResourcePoliciesOperationsClient
public virtual OperationsClient AddResourcePoliciesOperationsClient { get; }The long-running operations client for AddResourcePolicies.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
CreateSnapshotOperationsClient
public virtual OperationsClient CreateSnapshotOperationsClient { get; }The long-running operations client for CreateSnapshot.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
DefaultEndpoint
public static string DefaultEndpoint { get; }The default endpoint for the Disks 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 Disks scopes.
| Property Value | |
|---|---|
| Type | Description |
IReadOnlyList<String> |
|
The default Disks scopes are:
DeleteOperationsClient
public virtual OperationsClient DeleteOperationsClient { get; }The long-running operations client for Delete.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
GrpcClient
public virtual Disks.DisksClient GrpcClient { get; }The underlying gRPC Disks client
| Property Value | |
|---|---|
| Type | Description |
Disks.DisksClient |
|
InsertOperationsClient
public virtual OperationsClient InsertOperationsClient { get; }The long-running operations client for Insert.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
RemoveResourcePoliciesOperationsClient
public virtual OperationsClient RemoveResourcePoliciesOperationsClient { get; }The long-running operations client for RemoveResourcePolicies.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
ResizeOperationsClient
public virtual OperationsClient ResizeOperationsClient { get; }The long-running operations client for Resize.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
ServiceMetadata
public static ServiceMetadata ServiceMetadata { get; }The service metadata associated with this client type.
| Property Value | |
|---|---|
| Type | Description |
ServiceMetadata |
|
SetLabelsOperationsClient
public virtual OperationsClient SetLabelsOperationsClient { get; }The long-running operations client for SetLabels.
| Property Value | |
|---|---|
| Type | Description |
OperationsClient |
|
Methods
AddResourcePolicies(AddResourcePoliciesDiskRequest, CallSettings)
public virtual Operation<Operation, Operation> AddResourcePolicies(AddResourcePoliciesDiskRequest request, CallSettings callSettings = null)Adds existing resource policies to a disk. You can only add one policy which will be applied to this disk for scheduling snapshot creation.
| Parameters | |
|---|---|
| Name | Description |
request |
AddResourcePoliciesDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
AddResourcePoliciesDiskRequest request = new AddResourcePoliciesDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
Project = "",
DisksAddResourcePoliciesRequestResource = new DisksAddResourcePoliciesRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = disksClient.AddResourcePolicies(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 = disksClient.PollOnceAddResourcePolicies(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;
}
AddResourcePolicies(String, String, String, DisksAddResourcePoliciesRequest, CallSettings)
public virtual Operation<Operation, Operation> AddResourcePolicies(string project, string zone, string disk, DisksAddResourcePoliciesRequest disksAddResourcePoliciesRequestResource, CallSettings callSettings = null)Adds existing resource policies to a disk. You can only add one policy which will be applied to this disk for scheduling snapshot creation.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringThe disk name for this request. |
disksAddResourcePoliciesRequestResource |
DisksAddResourcePoliciesRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
DisksAddResourcePoliciesRequest disksAddResourcePoliciesRequestResource = new DisksAddResourcePoliciesRequest();
// Make the request
lro::Operation<Operation, Operation> response = disksClient.AddResourcePolicies(project, zone, disk, disksAddResourcePoliciesRequestResource);
// 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 = disksClient.PollOnceAddResourcePolicies(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;
}
AddResourcePoliciesAsync(AddResourcePoliciesDiskRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> AddResourcePoliciesAsync(AddResourcePoliciesDiskRequest request, CallSettings callSettings = null)Adds existing resource policies to a disk. You can only add one policy which will be applied to this disk for scheduling snapshot creation.
| Parameters | |
|---|---|
| Name | Description |
request |
AddResourcePoliciesDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
AddResourcePoliciesDiskRequest request = new AddResourcePoliciesDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
Project = "",
DisksAddResourcePoliciesRequestResource = new DisksAddResourcePoliciesRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.AddResourcePoliciesAsync(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 disksClient.PollOnceAddResourcePoliciesAsync(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;
}
AddResourcePoliciesAsync(AddResourcePoliciesDiskRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> AddResourcePoliciesAsync(AddResourcePoliciesDiskRequest request, CancellationToken cancellationToken)Adds existing resource policies to a disk. You can only add one policy which will be applied to this disk for scheduling snapshot creation.
| Parameters | |
|---|---|
| Name | Description |
request |
AddResourcePoliciesDiskRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
AddResourcePoliciesDiskRequest request = new AddResourcePoliciesDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
Project = "",
DisksAddResourcePoliciesRequestResource = new DisksAddResourcePoliciesRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.AddResourcePoliciesAsync(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 disksClient.PollOnceAddResourcePoliciesAsync(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;
}
AddResourcePoliciesAsync(String, String, String, DisksAddResourcePoliciesRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> AddResourcePoliciesAsync(string project, string zone, string disk, DisksAddResourcePoliciesRequest disksAddResourcePoliciesRequestResource, CallSettings callSettings = null)Adds existing resource policies to a disk. You can only add one policy which will be applied to this disk for scheduling snapshot creation.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringThe disk name for this request. |
disksAddResourcePoliciesRequestResource |
DisksAddResourcePoliciesRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
DisksAddResourcePoliciesRequest disksAddResourcePoliciesRequestResource = new DisksAddResourcePoliciesRequest();
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.AddResourcePoliciesAsync(project, zone, disk, disksAddResourcePoliciesRequestResource);
// 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 disksClient.PollOnceAddResourcePoliciesAsync(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;
}
AddResourcePoliciesAsync(String, String, String, DisksAddResourcePoliciesRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> AddResourcePoliciesAsync(string project, string zone, string disk, DisksAddResourcePoliciesRequest disksAddResourcePoliciesRequestResource, CancellationToken cancellationToken)Adds existing resource policies to a disk. You can only add one policy which will be applied to this disk for scheduling snapshot creation.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringThe disk name for this request. |
disksAddResourcePoliciesRequestResource |
DisksAddResourcePoliciesRequestThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
DisksAddResourcePoliciesRequest disksAddResourcePoliciesRequestResource = new DisksAddResourcePoliciesRequest();
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.AddResourcePoliciesAsync(project, zone, disk, disksAddResourcePoliciesRequestResource);
// 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 disksClient.PollOnceAddResourcePoliciesAsync(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;
}
AggregatedList(AggregatedListDisksRequest, CallSettings)
public virtual PagedEnumerable<DiskAggregatedList, KeyValuePair<string, DisksScopedList>> AggregatedList(AggregatedListDisksRequest request, CallSettings callSettings = null)Retrieves an aggregated list of persistent disks.
| Parameters | |
|---|---|
| Name | Description |
request |
AggregatedListDisksRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedEnumerable<DiskAggregatedList, KeyValuePair<String, DisksScopedList>> |
A pageable sequence of KeyValuePair<TKey,TValue> resources. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
AggregatedListDisksRequest request = new AggregatedListDisksRequest
{
OrderBy = "",
Project = "",
Filter = "",
IncludeAllScopes = false,
ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<DiskAggregatedList, KeyValuePair<string, DisksScopedList>> response = disksClient.AggregatedList(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (KeyValuePair<string, DisksScopedList> 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 (DiskAggregatedList page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (KeyValuePair<string, DisksScopedList> item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<KeyValuePair<string, DisksScopedList>> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (KeyValuePair<string, DisksScopedList> item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
AggregatedList(String, String, Nullable<Int32>, CallSettings)
public virtual PagedEnumerable<DiskAggregatedList, KeyValuePair<string, DisksScopedList>> AggregatedList(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)Retrieves an aggregated list of persistent disks.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
pageToken |
StringThe token returned from the previous request. A value of |
pageSize |
Nullable<Int32>The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedEnumerable<DiskAggregatedList, KeyValuePair<String, DisksScopedList>> |
A pageable sequence of KeyValuePair<TKey,TValue> resources. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
PagedEnumerable<DiskAggregatedList, KeyValuePair<string, DisksScopedList>> response = disksClient.AggregatedList(project);
// Iterate over all response items, lazily performing RPCs as required
foreach (KeyValuePair<string, DisksScopedList> 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 (DiskAggregatedList page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (KeyValuePair<string, DisksScopedList> item in page)
{
// Do something with each item
Console.WriteLine(item);
}
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<KeyValuePair<string, DisksScopedList>> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (KeyValuePair<string, DisksScopedList> item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
AggregatedListAsync(AggregatedListDisksRequest, CallSettings)
public virtual PagedAsyncEnumerable<DiskAggregatedList, KeyValuePair<string, DisksScopedList>> AggregatedListAsync(AggregatedListDisksRequest request, CallSettings callSettings = null)Retrieves an aggregated list of persistent disks.
| Parameters | |
|---|---|
| Name | Description |
request |
AggregatedListDisksRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedAsyncEnumerable<DiskAggregatedList, KeyValuePair<String, DisksScopedList>> |
A pageable asynchronous sequence of KeyValuePair<TKey,TValue> resources. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
AggregatedListDisksRequest request = new AggregatedListDisksRequest
{
OrderBy = "",
Project = "",
Filter = "",
IncludeAllScopes = false,
ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<DiskAggregatedList, KeyValuePair<string, DisksScopedList>> response = disksClient.AggregatedListAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((KeyValuePair<string, DisksScopedList> 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((DiskAggregatedList page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (KeyValuePair<string, DisksScopedList> item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<KeyValuePair<string, DisksScopedList>> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (KeyValuePair<string, DisksScopedList> item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
AggregatedListAsync(String, String, Nullable<Int32>, CallSettings)
public virtual PagedAsyncEnumerable<DiskAggregatedList, KeyValuePair<string, DisksScopedList>> AggregatedListAsync(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)Retrieves an aggregated list of persistent disks.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
pageToken |
StringThe token returned from the previous request. A value of |
pageSize |
Nullable<Int32>The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedAsyncEnumerable<DiskAggregatedList, KeyValuePair<String, DisksScopedList>> |
A pageable asynchronous sequence of KeyValuePair<TKey,TValue> resources. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
PagedAsyncEnumerable<DiskAggregatedList, KeyValuePair<string, DisksScopedList>> response = disksClient.AggregatedListAsync(project);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((KeyValuePair<string, DisksScopedList> 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((DiskAggregatedList page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (KeyValuePair<string, DisksScopedList> item in page)
{
// Do something with each item
Console.WriteLine(item);
}
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<KeyValuePair<string, DisksScopedList>> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (KeyValuePair<string, DisksScopedList> item in singlePage)
{
// Do something with each item
Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
Create()
public static DisksClient Create()Synchronously creates a DisksClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use DisksClientBuilder.
| Returns | |
|---|---|
| Type | Description |
DisksClient |
The created DisksClient. |
CreateAsync(CancellationToken)
public static Task<DisksClient> CreateAsync(CancellationToken cancellationToken = default(CancellationToken))Asynchronously creates a DisksClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use DisksClientBuilder.
| Parameter | |
|---|---|
| Name | Description |
cancellationToken |
CancellationTokenThe CancellationToken to use while creating the client. |
| Returns | |
|---|---|
| Type | Description |
Task<DisksClient> |
The task representing the created DisksClient. |
CreateSnapshot(CreateSnapshotDiskRequest, CallSettings)
public virtual Operation<Operation, Operation> CreateSnapshot(CreateSnapshotDiskRequest request, CallSettings callSettings = null)Creates a snapshot of a specified persistent disk. For regular snapshot creation, consider using snapshots.insert instead, as that method supports more features, such as creating snapshots in a project different from the source disk project.
| Parameters | |
|---|---|
| Name | Description |
request |
CreateSnapshotDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
CreateSnapshotDiskRequest request = new CreateSnapshotDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
Project = "",
GuestFlush = false,
SnapshotResource = new Snapshot(),
};
// Make the request
lro::Operation<Operation, Operation> response = disksClient.CreateSnapshot(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 = disksClient.PollOnceCreateSnapshot(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;
}
CreateSnapshot(String, String, String, Snapshot, CallSettings)
public virtual Operation<Operation, Operation> CreateSnapshot(string project, string zone, string disk, Snapshot snapshotResource, CallSettings callSettings = null)Creates a snapshot of a specified persistent disk. For regular snapshot creation, consider using snapshots.insert instead, as that method supports more features, such as creating snapshots in a project different from the source disk project.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringName of the persistent disk to snapshot. |
snapshotResource |
SnapshotThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
Snapshot snapshotResource = new Snapshot();
// Make the request
lro::Operation<Operation, Operation> response = disksClient.CreateSnapshot(project, zone, disk, snapshotResource);
// 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 = disksClient.PollOnceCreateSnapshot(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;
}
CreateSnapshotAsync(CreateSnapshotDiskRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> CreateSnapshotAsync(CreateSnapshotDiskRequest request, CallSettings callSettings = null)Creates a snapshot of a specified persistent disk. For regular snapshot creation, consider using snapshots.insert instead, as that method supports more features, such as creating snapshots in a project different from the source disk project.
| Parameters | |
|---|---|
| Name | Description |
request |
CreateSnapshotDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
CreateSnapshotDiskRequest request = new CreateSnapshotDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
Project = "",
GuestFlush = false,
SnapshotResource = new Snapshot(),
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.CreateSnapshotAsync(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 disksClient.PollOnceCreateSnapshotAsync(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;
}
CreateSnapshotAsync(CreateSnapshotDiskRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> CreateSnapshotAsync(CreateSnapshotDiskRequest request, CancellationToken cancellationToken)Creates a snapshot of a specified persistent disk. For regular snapshot creation, consider using snapshots.insert instead, as that method supports more features, such as creating snapshots in a project different from the source disk project.
| Parameters | |
|---|---|
| Name | Description |
request |
CreateSnapshotDiskRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
CreateSnapshotDiskRequest request = new CreateSnapshotDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
Project = "",
GuestFlush = false,
SnapshotResource = new Snapshot(),
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.CreateSnapshotAsync(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 disksClient.PollOnceCreateSnapshotAsync(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;
}
CreateSnapshotAsync(String, String, String, Snapshot, CallSettings)
public virtual Task<Operation<Operation, Operation>> CreateSnapshotAsync(string project, string zone, string disk, Snapshot snapshotResource, CallSettings callSettings = null)Creates a snapshot of a specified persistent disk. For regular snapshot creation, consider using snapshots.insert instead, as that method supports more features, such as creating snapshots in a project different from the source disk project.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringName of the persistent disk to snapshot. |
snapshotResource |
SnapshotThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
Snapshot snapshotResource = new Snapshot();
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.CreateSnapshotAsync(project, zone, disk, snapshotResource);
// 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 disksClient.PollOnceCreateSnapshotAsync(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;
}
CreateSnapshotAsync(String, String, String, Snapshot, CancellationToken)
public virtual Task<Operation<Operation, Operation>> CreateSnapshotAsync(string project, string zone, string disk, Snapshot snapshotResource, CancellationToken cancellationToken)Creates a snapshot of a specified persistent disk. For regular snapshot creation, consider using snapshots.insert instead, as that method supports more features, such as creating snapshots in a project different from the source disk project.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringName of the persistent disk to snapshot. |
snapshotResource |
SnapshotThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
Snapshot snapshotResource = new Snapshot();
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.CreateSnapshotAsync(project, zone, disk, snapshotResource);
// 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 disksClient.PollOnceCreateSnapshotAsync(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(DeleteDiskRequest, CallSettings)
public virtual Operation<Operation, Operation> Delete(DeleteDiskRequest request, CallSettings callSettings = null)Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.
| Parameters | |
|---|---|
| Name | Description |
request |
DeleteDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
DeleteDiskRequest request = new DeleteDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = disksClient.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 = disksClient.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 zone, string disk, CallSettings callSettings = null)Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringName of the persistent disk to delete. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
// Make the request
lro::Operation<Operation, Operation> response = disksClient.Delete(project, zone, disk);
// 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 = disksClient.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(DeleteDiskRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteDiskRequest request, CallSettings callSettings = null)Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.
| Parameters | |
|---|---|
| Name | Description |
request |
DeleteDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
DeleteDiskRequest request = new DeleteDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.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 disksClient.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(DeleteDiskRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteDiskRequest request, CancellationToken cancellationToken)Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.
| Parameters | |
|---|---|
| Name | Description |
request |
DeleteDiskRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
DeleteDiskRequest request = new DeleteDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.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 disksClient.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 zone, string disk, CallSettings callSettings = null)Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringName of the persistent disk to delete. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.DeleteAsync(project, zone, disk);
// 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 disksClient.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 zone, string disk, CancellationToken cancellationToken)Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringName of the persistent disk to delete. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.DeleteAsync(project, zone, disk);
// 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 disksClient.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(GetDiskRequest, CallSettings)
public virtual Disk Get(GetDiskRequest request, CallSettings callSettings = null)Returns a specified persistent disk. Gets a list of available persistent disks by making a list() request.
| Parameters | |
|---|---|
| Name | Description |
request |
GetDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Disk |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
GetDiskRequest request = new GetDiskRequest
{
Disk = "",
Zone = "",
Project = "",
};
// Make the request
Disk response = disksClient.Get(request);
Get(String, String, String, CallSettings)
public virtual Disk Get(string project, string zone, string disk, CallSettings callSettings = null)Returns a specified persistent disk. Gets a list of available persistent disks by making a list() request.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringName of the persistent disk to return. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Disk |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
// Make the request
Disk response = disksClient.Get(project, zone, disk);
GetAsync(GetDiskRequest, CallSettings)
public virtual Task<Disk> GetAsync(GetDiskRequest request, CallSettings callSettings = null)Returns a specified persistent disk. Gets a list of available persistent disks by making a list() request.
| Parameters | |
|---|---|
| Name | Description |
request |
GetDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Disk> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
GetDiskRequest request = new GetDiskRequest
{
Disk = "",
Zone = "",
Project = "",
};
// Make the request
Disk response = await disksClient.GetAsync(request);
GetAsync(GetDiskRequest, CancellationToken)
public virtual Task<Disk> GetAsync(GetDiskRequest request, CancellationToken cancellationToken)Returns a specified persistent disk. Gets a list of available persistent disks by making a list() request.
| Parameters | |
|---|---|
| Name | Description |
request |
GetDiskRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Disk> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
GetDiskRequest request = new GetDiskRequest
{
Disk = "",
Zone = "",
Project = "",
};
// Make the request
Disk response = await disksClient.GetAsync(request);
GetAsync(String, String, String, CallSettings)
public virtual Task<Disk> GetAsync(string project, string zone, string disk, CallSettings callSettings = null)Returns a specified persistent disk. Gets a list of available persistent disks by making a list() request.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringName of the persistent disk to return. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Disk> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
// Make the request
Disk response = await disksClient.GetAsync(project, zone, disk);
GetAsync(String, String, String, CancellationToken)
public virtual Task<Disk> GetAsync(string project, string zone, string disk, CancellationToken cancellationToken)Returns a specified persistent disk. Gets a list of available persistent disks by making a list() request.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringName of the persistent disk to return. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Disk> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
// Make the request
Disk response = await disksClient.GetAsync(project, zone, disk);
GetIamPolicy(GetIamPolicyDiskRequest, CallSettings)
public virtual Policy GetIamPolicy(GetIamPolicyDiskRequest request, CallSettings callSettings = null)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description |
request |
GetIamPolicyDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Policy |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
GetIamPolicyDiskRequest request = new GetIamPolicyDiskRequest
{
Zone = "",
Resource = "",
Project = "",
OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = disksClient.GetIamPolicy(request);
GetIamPolicy(String, String, String, CallSettings)
public virtual Policy GetIamPolicy(string project, string zone, string resource, CallSettings callSettings = null)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
resource |
StringName or id of the resource for this request. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Policy |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string resource = "";
// Make the request
Policy response = disksClient.GetIamPolicy(project, zone, resource);
GetIamPolicyAsync(GetIamPolicyDiskRequest, CallSettings)
public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyDiskRequest request, CallSettings callSettings = null)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description |
request |
GetIamPolicyDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Policy> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyDiskRequest request = new GetIamPolicyDiskRequest
{
Zone = "",
Resource = "",
Project = "",
OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = await disksClient.GetIamPolicyAsync(request);
GetIamPolicyAsync(GetIamPolicyDiskRequest, CancellationToken)
public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyDiskRequest request, CancellationToken cancellationToken)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description |
request |
GetIamPolicyDiskRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Policy> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyDiskRequest request = new GetIamPolicyDiskRequest
{
Zone = "",
Resource = "",
Project = "",
OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = await disksClient.GetIamPolicyAsync(request);
GetIamPolicyAsync(String, String, String, CallSettings)
public virtual Task<Policy> GetIamPolicyAsync(string project, string zone, string resource, CallSettings callSettings = null)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
resource |
StringName or id of the resource for this request. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Policy> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string resource = "";
// Make the request
Policy response = await disksClient.GetIamPolicyAsync(project, zone, resource);
GetIamPolicyAsync(String, String, String, CancellationToken)
public virtual Task<Policy> GetIamPolicyAsync(string project, string zone, string resource, CancellationToken cancellationToken)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
resource |
StringName or id of the resource for this request. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Policy> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string resource = "";
// Make the request
Policy response = await disksClient.GetIamPolicyAsync(project, zone, resource);
Insert(InsertDiskRequest, CallSettings)
public virtual Operation<Operation, Operation> Insert(InsertDiskRequest request, CallSettings callSettings = null)Creates a persistent disk in the specified project using the data in the request. You can create a disk from a source (sourceImage, sourceSnapshot, or sourceDisk) or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.
| Parameters | |
|---|---|
| Name | Description |
request |
InsertDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
InsertDiskRequest request = new InsertDiskRequest
{
Zone = "",
DiskResource = new Disk(),
RequestId = "",
SourceImage = "",
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = disksClient.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 = disksClient.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, Disk, CallSettings)
public virtual Operation<Operation, Operation> Insert(string project, string zone, Disk diskResource, CallSettings callSettings = null)Creates a persistent disk in the specified project using the data in the request. You can create a disk from a source (sourceImage, sourceSnapshot, or sourceDisk) or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
diskResource |
DiskThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
Disk diskResource = new Disk();
// Make the request
lro::Operation<Operation, Operation> response = disksClient.Insert(project, zone, diskResource);
// 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 = disksClient.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(InsertDiskRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertDiskRequest request, CallSettings callSettings = null)Creates a persistent disk in the specified project using the data in the request. You can create a disk from a source (sourceImage, sourceSnapshot, or sourceDisk) or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.
| Parameters | |
|---|---|
| Name | Description |
request |
InsertDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
InsertDiskRequest request = new InsertDiskRequest
{
Zone = "",
DiskResource = new Disk(),
RequestId = "",
SourceImage = "",
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.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 disksClient.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(InsertDiskRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertDiskRequest request, CancellationToken cancellationToken)Creates a persistent disk in the specified project using the data in the request. You can create a disk from a source (sourceImage, sourceSnapshot, or sourceDisk) or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.
| Parameters | |
|---|---|
| Name | Description |
request |
InsertDiskRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
InsertDiskRequest request = new InsertDiskRequest
{
Zone = "",
DiskResource = new Disk(),
RequestId = "",
SourceImage = "",
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.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 disksClient.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, Disk, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string zone, Disk diskResource, CallSettings callSettings = null)Creates a persistent disk in the specified project using the data in the request. You can create a disk from a source (sourceImage, sourceSnapshot, or sourceDisk) or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
diskResource |
DiskThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
Disk diskResource = new Disk();
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.InsertAsync(project, zone, diskResource);
// 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 disksClient.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, Disk, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string zone, Disk diskResource, CancellationToken cancellationToken)Creates a persistent disk in the specified project using the data in the request. You can create a disk from a source (sourceImage, sourceSnapshot, or sourceDisk) or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
diskResource |
DiskThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
Disk diskResource = new Disk();
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.InsertAsync(project, zone, diskResource);
// 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 disksClient.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(ListDisksRequest, CallSettings)
public virtual PagedEnumerable<DiskList, Disk> List(ListDisksRequest request, CallSettings callSettings = null)Retrieves a list of persistent disks contained within the specified zone.
| Parameters | |
|---|---|
| Name | Description |
request |
ListDisksRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedEnumerable<DiskList, Disk> |
A pageable sequence of Disk resources. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
ListDisksRequest request = new ListDisksRequest
{
Zone = "",
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<DiskList, Disk> response = disksClient.List(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (Disk 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 (DiskList page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Disk 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<Disk> 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 (Disk 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<DiskList, Disk> List(string project, string zone, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)Retrieves a list of persistent disks contained within the specified zone.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
pageToken |
StringThe token returned from the previous request. A value of |
pageSize |
Nullable<Int32>The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedEnumerable<DiskList, Disk> |
A pageable sequence of Disk resources. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
// Make the request
PagedEnumerable<DiskList, Disk> response = disksClient.List(project, zone);
// Iterate over all response items, lazily performing RPCs as required
foreach (Disk 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 (DiskList page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Disk 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<Disk> 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 (Disk 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(ListDisksRequest, CallSettings)
public virtual PagedAsyncEnumerable<DiskList, Disk> ListAsync(ListDisksRequest request, CallSettings callSettings = null)Retrieves a list of persistent disks contained within the specified zone.
| Parameters | |
|---|---|
| Name | Description |
request |
ListDisksRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedAsyncEnumerable<DiskList, Disk> |
A pageable asynchronous sequence of Disk resources. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
ListDisksRequest request = new ListDisksRequest
{
Zone = "",
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<DiskList, Disk> response = disksClient.ListAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Disk 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((DiskList page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Disk 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<Disk> 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 (Disk 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<DiskList, Disk> ListAsync(string project, string zone, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)Retrieves a list of persistent disks contained within the specified zone.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
pageToken |
StringThe token returned from the previous request. A value of |
pageSize |
Nullable<Int32>The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
PagedAsyncEnumerable<DiskList, Disk> |
A pageable asynchronous sequence of Disk resources. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
// Make the request
PagedAsyncEnumerable<DiskList, Disk> response = disksClient.ListAsync(project, zone);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((Disk 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((DiskList page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (Disk 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<Disk> 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 (Disk 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;
PollOnceAddResourcePolicies(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceAddResourcePolicies(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of AddResourcePolicies
.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceAddResourcePoliciesAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceAddResourcePoliciesAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of
AddResourcePolicies.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
PollOnceCreateSnapshot(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceCreateSnapshot(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of CreateSnapshot.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceCreateSnapshotAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceCreateSnapshotAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of
CreateSnapshot.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
PollOnceDelete(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceDelete(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of Delete.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceDeleteAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceDeleteAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of Delete
.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
PollOnceInsert(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceInsert(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of Insert.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceInsertAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceInsertAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of Insert
.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
PollOnceRemoveResourcePolicies(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceRemoveResourcePolicies(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of
RemoveResourcePolicies.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceRemoveResourcePoliciesAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceRemoveResourcePoliciesAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of
RemoveResourcePolicies.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
PollOnceResize(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceResize(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of Resize.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceResizeAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceResizeAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of Resize
.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
PollOnceSetLabels(String, CallSettings)
public virtual Operation<Operation, Operation> PollOnceSetLabels(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of SetLabels.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The result of polling the operation. |
PollOnceSetLabelsAsync(String, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceSetLabelsAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of
SetLabels.
| Parameters | |
|---|---|
| Name | Description |
operationName |
StringThe name of a previously invoked operation. Must not be |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A task representing the result of polling the operation. |
RemoveResourcePolicies(RemoveResourcePoliciesDiskRequest, CallSettings)
public virtual Operation<Operation, Operation> RemoveResourcePolicies(RemoveResourcePoliciesDiskRequest request, CallSettings callSettings = null)Removes resource policies from a disk.
| Parameters | |
|---|---|
| Name | Description |
request |
RemoveResourcePoliciesDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
RemoveResourcePoliciesDiskRequest request = new RemoveResourcePoliciesDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
Project = "",
DisksRemoveResourcePoliciesRequestResource = new DisksRemoveResourcePoliciesRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = disksClient.RemoveResourcePolicies(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 = disksClient.PollOnceRemoveResourcePolicies(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;
}
RemoveResourcePolicies(String, String, String, DisksRemoveResourcePoliciesRequest, CallSettings)
public virtual Operation<Operation, Operation> RemoveResourcePolicies(string project, string zone, string disk, DisksRemoveResourcePoliciesRequest disksRemoveResourcePoliciesRequestResource, CallSettings callSettings = null)Removes resource policies from a disk.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringThe disk name for this request. |
disksRemoveResourcePoliciesRequestResource |
DisksRemoveResourcePoliciesRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
DisksRemoveResourcePoliciesRequest disksRemoveResourcePoliciesRequestResource = new DisksRemoveResourcePoliciesRequest();
// Make the request
lro::Operation<Operation, Operation> response = disksClient.RemoveResourcePolicies(project, zone, disk, disksRemoveResourcePoliciesRequestResource);
// 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 = disksClient.PollOnceRemoveResourcePolicies(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;
}
RemoveResourcePoliciesAsync(RemoveResourcePoliciesDiskRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> RemoveResourcePoliciesAsync(RemoveResourcePoliciesDiskRequest request, CallSettings callSettings = null)Removes resource policies from a disk.
| Parameters | |
|---|---|
| Name | Description |
request |
RemoveResourcePoliciesDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
RemoveResourcePoliciesDiskRequest request = new RemoveResourcePoliciesDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
Project = "",
DisksRemoveResourcePoliciesRequestResource = new DisksRemoveResourcePoliciesRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.RemoveResourcePoliciesAsync(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 disksClient.PollOnceRemoveResourcePoliciesAsync(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;
}
RemoveResourcePoliciesAsync(RemoveResourcePoliciesDiskRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> RemoveResourcePoliciesAsync(RemoveResourcePoliciesDiskRequest request, CancellationToken cancellationToken)Removes resource policies from a disk.
| Parameters | |
|---|---|
| Name | Description |
request |
RemoveResourcePoliciesDiskRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
RemoveResourcePoliciesDiskRequest request = new RemoveResourcePoliciesDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
Project = "",
DisksRemoveResourcePoliciesRequestResource = new DisksRemoveResourcePoliciesRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.RemoveResourcePoliciesAsync(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 disksClient.PollOnceRemoveResourcePoliciesAsync(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;
}
RemoveResourcePoliciesAsync(String, String, String, DisksRemoveResourcePoliciesRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> RemoveResourcePoliciesAsync(string project, string zone, string disk, DisksRemoveResourcePoliciesRequest disksRemoveResourcePoliciesRequestResource, CallSettings callSettings = null)Removes resource policies from a disk.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringThe disk name for this request. |
disksRemoveResourcePoliciesRequestResource |
DisksRemoveResourcePoliciesRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
DisksRemoveResourcePoliciesRequest disksRemoveResourcePoliciesRequestResource = new DisksRemoveResourcePoliciesRequest();
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.RemoveResourcePoliciesAsync(project, zone, disk, disksRemoveResourcePoliciesRequestResource);
// 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 disksClient.PollOnceRemoveResourcePoliciesAsync(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;
}
RemoveResourcePoliciesAsync(String, String, String, DisksRemoveResourcePoliciesRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> RemoveResourcePoliciesAsync(string project, string zone, string disk, DisksRemoveResourcePoliciesRequest disksRemoveResourcePoliciesRequestResource, CancellationToken cancellationToken)Removes resource policies from a disk.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringThe disk name for this request. |
disksRemoveResourcePoliciesRequestResource |
DisksRemoveResourcePoliciesRequestThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
DisksRemoveResourcePoliciesRequest disksRemoveResourcePoliciesRequestResource = new DisksRemoveResourcePoliciesRequest();
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.RemoveResourcePoliciesAsync(project, zone, disk, disksRemoveResourcePoliciesRequestResource);
// 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 disksClient.PollOnceRemoveResourcePoliciesAsync(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;
}
Resize(ResizeDiskRequest, CallSettings)
public virtual Operation<Operation, Operation> Resize(ResizeDiskRequest request, CallSettings callSettings = null)Resizes the specified persistent disk. You can only increase the size of the disk.
| Parameters | |
|---|---|
| Name | Description |
request |
ResizeDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
ResizeDiskRequest request = new ResizeDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
DisksResizeRequestResource = new DisksResizeRequest(),
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = disksClient.Resize(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 = disksClient.PollOnceResize(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;
}
Resize(String, String, String, DisksResizeRequest, CallSettings)
public virtual Operation<Operation, Operation> Resize(string project, string zone, string disk, DisksResizeRequest disksResizeRequestResource, CallSettings callSettings = null)Resizes the specified persistent disk. You can only increase the size of the disk.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringThe name of the persistent disk. |
disksResizeRequestResource |
DisksResizeRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
DisksResizeRequest disksResizeRequestResource = new DisksResizeRequest();
// Make the request
lro::Operation<Operation, Operation> response = disksClient.Resize(project, zone, disk, disksResizeRequestResource);
// 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 = disksClient.PollOnceResize(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;
}
ResizeAsync(ResizeDiskRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> ResizeAsync(ResizeDiskRequest request, CallSettings callSettings = null)Resizes the specified persistent disk. You can only increase the size of the disk.
| Parameters | |
|---|---|
| Name | Description |
request |
ResizeDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
ResizeDiskRequest request = new ResizeDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
DisksResizeRequestResource = new DisksResizeRequest(),
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.ResizeAsync(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 disksClient.PollOnceResizeAsync(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;
}
ResizeAsync(ResizeDiskRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> ResizeAsync(ResizeDiskRequest request, CancellationToken cancellationToken)Resizes the specified persistent disk. You can only increase the size of the disk.
| Parameters | |
|---|---|
| Name | Description |
request |
ResizeDiskRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
ResizeDiskRequest request = new ResizeDiskRequest
{
Disk = "",
Zone = "",
RequestId = "",
DisksResizeRequestResource = new DisksResizeRequest(),
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.ResizeAsync(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 disksClient.PollOnceResizeAsync(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;
}
ResizeAsync(String, String, String, DisksResizeRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> ResizeAsync(string project, string zone, string disk, DisksResizeRequest disksResizeRequestResource, CallSettings callSettings = null)Resizes the specified persistent disk. You can only increase the size of the disk.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringThe name of the persistent disk. |
disksResizeRequestResource |
DisksResizeRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
DisksResizeRequest disksResizeRequestResource = new DisksResizeRequest();
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.ResizeAsync(project, zone, disk, disksResizeRequestResource);
// 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 disksClient.PollOnceResizeAsync(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;
}
ResizeAsync(String, String, String, DisksResizeRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> ResizeAsync(string project, string zone, string disk, DisksResizeRequest disksResizeRequestResource, CancellationToken cancellationToken)Resizes the specified persistent disk. You can only increase the size of the disk.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
disk |
StringThe name of the persistent disk. |
disksResizeRequestResource |
DisksResizeRequestThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string disk = "";
DisksResizeRequest disksResizeRequestResource = new DisksResizeRequest();
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.ResizeAsync(project, zone, disk, disksResizeRequestResource);
// 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 disksClient.PollOnceResizeAsync(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;
}
SetIamPolicy(SetIamPolicyDiskRequest, CallSettings)
public virtual Policy SetIamPolicy(SetIamPolicyDiskRequest request, CallSettings callSettings = null)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description |
request |
SetIamPolicyDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Policy |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
SetIamPolicyDiskRequest request = new SetIamPolicyDiskRequest
{
Zone = "",
Resource = "",
Project = "",
ZoneSetPolicyRequestResource = new ZoneSetPolicyRequest(),
};
// Make the request
Policy response = disksClient.SetIamPolicy(request);
SetIamPolicy(String, String, String, ZoneSetPolicyRequest, CallSettings)
public virtual Policy SetIamPolicy(string project, string zone, string resource, ZoneSetPolicyRequest zoneSetPolicyRequestResource, CallSettings callSettings = null)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
resource |
StringName or id of the resource for this request. |
zoneSetPolicyRequestResource |
ZoneSetPolicyRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Policy |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string resource = "";
ZoneSetPolicyRequest zoneSetPolicyRequestResource = new ZoneSetPolicyRequest();
// Make the request
Policy response = disksClient.SetIamPolicy(project, zone, resource, zoneSetPolicyRequestResource);
SetIamPolicyAsync(SetIamPolicyDiskRequest, CallSettings)
public virtual Task<Policy> SetIamPolicyAsync(SetIamPolicyDiskRequest request, CallSettings callSettings = null)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description |
request |
SetIamPolicyDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Policy> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyDiskRequest request = new SetIamPolicyDiskRequest
{
Zone = "",
Resource = "",
Project = "",
ZoneSetPolicyRequestResource = new ZoneSetPolicyRequest(),
};
// Make the request
Policy response = await disksClient.SetIamPolicyAsync(request);
SetIamPolicyAsync(SetIamPolicyDiskRequest, CancellationToken)
public virtual Task<Policy> SetIamPolicyAsync(SetIamPolicyDiskRequest request, CancellationToken cancellationToken)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description |
request |
SetIamPolicyDiskRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Policy> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyDiskRequest request = new SetIamPolicyDiskRequest
{
Zone = "",
Resource = "",
Project = "",
ZoneSetPolicyRequestResource = new ZoneSetPolicyRequest(),
};
// Make the request
Policy response = await disksClient.SetIamPolicyAsync(request);
SetIamPolicyAsync(String, String, String, ZoneSetPolicyRequest, CallSettings)
public virtual Task<Policy> SetIamPolicyAsync(string project, string zone, string resource, ZoneSetPolicyRequest zoneSetPolicyRequestResource, CallSettings callSettings = null)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
resource |
StringName or id of the resource for this request. |
zoneSetPolicyRequestResource |
ZoneSetPolicyRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Policy> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string resource = "";
ZoneSetPolicyRequest zoneSetPolicyRequestResource = new ZoneSetPolicyRequest();
// Make the request
Policy response = await disksClient.SetIamPolicyAsync(project, zone, resource, zoneSetPolicyRequestResource);
SetIamPolicyAsync(String, String, String, ZoneSetPolicyRequest, CancellationToken)
public virtual Task<Policy> SetIamPolicyAsync(string project, string zone, string resource, ZoneSetPolicyRequest zoneSetPolicyRequestResource, CancellationToken cancellationToken)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
resource |
StringName or id of the resource for this request. |
zoneSetPolicyRequestResource |
ZoneSetPolicyRequestThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Policy> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string resource = "";
ZoneSetPolicyRequest zoneSetPolicyRequestResource = new ZoneSetPolicyRequest();
// Make the request
Policy response = await disksClient.SetIamPolicyAsync(project, zone, resource, zoneSetPolicyRequestResource);
SetLabels(SetLabelsDiskRequest, CallSettings)
public virtual Operation<Operation, Operation> SetLabels(SetLabelsDiskRequest request, CallSettings callSettings = null)Sets the labels on a disk. To learn more about labels, read the Labeling Resources documentation.
| Parameters | |
|---|---|
| Name | Description |
request |
SetLabelsDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
SetLabelsDiskRequest request = new SetLabelsDiskRequest
{
Zone = "",
RequestId = "",
Resource = "",
Project = "",
ZoneSetLabelsRequestResource = new ZoneSetLabelsRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = disksClient.SetLabels(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 = disksClient.PollOnceSetLabels(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;
}
SetLabels(String, String, String, ZoneSetLabelsRequest, CallSettings)
public virtual Operation<Operation, Operation> SetLabels(string project, string zone, string resource, ZoneSetLabelsRequest zoneSetLabelsRequestResource, CallSettings callSettings = null)Sets the labels on a disk. To learn more about labels, read the Labeling Resources documentation.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
resource |
StringName or id of the resource for this request. |
zoneSetLabelsRequestResource |
ZoneSetLabelsRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Operation<Operation, Operation> |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string resource = "";
ZoneSetLabelsRequest zoneSetLabelsRequestResource = new ZoneSetLabelsRequest();
// Make the request
lro::Operation<Operation, Operation> response = disksClient.SetLabels(project, zone, resource, zoneSetLabelsRequestResource);
// 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 = disksClient.PollOnceSetLabels(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;
}
SetLabelsAsync(SetLabelsDiskRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> SetLabelsAsync(SetLabelsDiskRequest request, CallSettings callSettings = null)Sets the labels on a disk. To learn more about labels, read the Labeling Resources documentation.
| Parameters | |
|---|---|
| Name | Description |
request |
SetLabelsDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
SetLabelsDiskRequest request = new SetLabelsDiskRequest
{
Zone = "",
RequestId = "",
Resource = "",
Project = "",
ZoneSetLabelsRequestResource = new ZoneSetLabelsRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.SetLabelsAsync(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 disksClient.PollOnceSetLabelsAsync(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;
}
SetLabelsAsync(SetLabelsDiskRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> SetLabelsAsync(SetLabelsDiskRequest request, CancellationToken cancellationToken)Sets the labels on a disk. To learn more about labels, read the Labeling Resources documentation.
| Parameters | |
|---|---|
| Name | Description |
request |
SetLabelsDiskRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
SetLabelsDiskRequest request = new SetLabelsDiskRequest
{
Zone = "",
RequestId = "",
Resource = "",
Project = "",
ZoneSetLabelsRequestResource = new ZoneSetLabelsRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.SetLabelsAsync(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 disksClient.PollOnceSetLabelsAsync(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;
}
SetLabelsAsync(String, String, String, ZoneSetLabelsRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> SetLabelsAsync(string project, string zone, string resource, ZoneSetLabelsRequest zoneSetLabelsRequestResource, CallSettings callSettings = null)Sets the labels on a disk. To learn more about labels, read the Labeling Resources documentation.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
resource |
StringName or id of the resource for this request. |
zoneSetLabelsRequestResource |
ZoneSetLabelsRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string resource = "";
ZoneSetLabelsRequest zoneSetLabelsRequestResource = new ZoneSetLabelsRequest();
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.SetLabelsAsync(project, zone, resource, zoneSetLabelsRequestResource);
// 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 disksClient.PollOnceSetLabelsAsync(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;
}
SetLabelsAsync(String, String, String, ZoneSetLabelsRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> SetLabelsAsync(string project, string zone, string resource, ZoneSetLabelsRequest zoneSetLabelsRequestResource, CancellationToken cancellationToken)Sets the labels on a disk. To learn more about labels, read the Labeling Resources documentation.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
resource |
StringName or id of the resource for this request. |
zoneSetLabelsRequestResource |
ZoneSetLabelsRequestThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<Operation<Operation, Operation>> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string resource = "";
ZoneSetLabelsRequest zoneSetLabelsRequestResource = new ZoneSetLabelsRequest();
// Make the request
lro::Operation<Operation, Operation> response = await disksClient.SetLabelsAsync(project, zone, resource, zoneSetLabelsRequestResource);
// 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 disksClient.PollOnceSetLabelsAsync(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;
}
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.
TestIamPermissions(TestIamPermissionsDiskRequest, CallSettings)
public virtual TestPermissionsResponse TestIamPermissions(TestIamPermissionsDiskRequest request, CallSettings callSettings = null)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description |
request |
TestIamPermissionsDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
TestPermissionsResponse |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
TestIamPermissionsDiskRequest request = new TestIamPermissionsDiskRequest
{
Zone = "",
Resource = "",
Project = "",
TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = disksClient.TestIamPermissions(request);
TestIamPermissions(String, String, String, TestPermissionsRequest, CallSettings)
public virtual TestPermissionsResponse TestIamPermissions(string project, string zone, string resource, TestPermissionsRequest testPermissionsRequestResource, CallSettings callSettings = null)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
resource |
StringName or id of the resource for this request. |
testPermissionsRequestResource |
TestPermissionsRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
TestPermissionsResponse |
The RPC response. |
// Create client
DisksClient disksClient = DisksClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = disksClient.TestIamPermissions(project, zone, resource, testPermissionsRequestResource);
TestIamPermissionsAsync(TestIamPermissionsDiskRequest, CallSettings)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(TestIamPermissionsDiskRequest request, CallSettings callSettings = null)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description |
request |
TestIamPermissionsDiskRequestThe request object containing all of the parameters for the API call. |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<TestPermissionsResponse> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsDiskRequest request = new TestIamPermissionsDiskRequest
{
Zone = "",
Resource = "",
Project = "",
TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = await disksClient.TestIamPermissionsAsync(request);
TestIamPermissionsAsync(TestIamPermissionsDiskRequest, CancellationToken)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(TestIamPermissionsDiskRequest request, CancellationToken cancellationToken)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description |
request |
TestIamPermissionsDiskRequestThe request object containing all of the parameters for the API call. |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<TestPermissionsResponse> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsDiskRequest request = new TestIamPermissionsDiskRequest
{
Zone = "",
Resource = "",
Project = "",
TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = await disksClient.TestIamPermissionsAsync(request);
TestIamPermissionsAsync(String, String, String, TestPermissionsRequest, CallSettings)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(string project, string zone, string resource, TestPermissionsRequest testPermissionsRequestResource, CallSettings callSettings = null)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
resource |
StringName or id of the resource for this request. |
testPermissionsRequestResource |
TestPermissionsRequestThe body resource for this request |
callSettings |
CallSettingsIf not null, applies overrides to this RPC call. |
| Returns | |
|---|---|
| Type | Description |
Task<TestPermissionsResponse> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = await disksClient.TestIamPermissionsAsync(project, zone, resource, testPermissionsRequestResource);
TestIamPermissionsAsync(String, String, String, TestPermissionsRequest, CancellationToken)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(string project, string zone, string resource, TestPermissionsRequest testPermissionsRequestResource, CancellationToken cancellationToken)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description |
project |
StringProject ID for this request. |
zone |
StringThe name of the zone for this request. |
resource |
StringName or id of the resource for this request. |
testPermissionsRequestResource |
TestPermissionsRequestThe body resource for this request |
cancellationToken |
CancellationTokenA CancellationToken to use for this RPC. |
| Returns | |
|---|---|
| Type | Description |
Task<TestPermissionsResponse> |
A Task containing the RPC response. |
// Create client
DisksClient disksClient = await DisksClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = await disksClient.TestIamPermissionsAsync(project, zone, resource, testPermissionsRequestResource);