public abstract class RegionDiskTypesClient
RegionDiskTypes client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Compute.V1Assembly
Google.Cloud.Compute.V1.dll
Remarks
The RegionDiskTypes API.
Properties
DefaultEndpoint
public static string DefaultEndpoint { get; }
The default endpoint for the RegionDiskTypes 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 RegionDiskTypes scopes.
Property Value | |
---|---|
Type | Description |
IReadOnlyList<String> |
The default RegionDiskTypes scopes are:
GrpcClient
public virtual RegionDiskTypes.RegionDiskTypesClient GrpcClient { get; }
The underlying gRPC RegionDiskTypes client
Property Value | |
---|---|
Type | Description |
RegionDiskTypes.RegionDiskTypesClient |
Methods
Create()
public static RegionDiskTypesClient Create()
Synchronously creates a RegionDiskTypesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use RegionDiskTypesClientBuilder.
Returns | |
---|---|
Type | Description |
RegionDiskTypesClient | The created RegionDiskTypesClient. |
CreateAsync(CancellationToken)
public static Task<RegionDiskTypesClient> CreateAsync(CancellationToken cancellationToken = default(CancellationToken))
Asynchronously creates a RegionDiskTypesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use RegionDiskTypesClientBuilder.
Parameter | |
---|---|
Name | Description |
cancellationToken | CancellationToken The CancellationToken to use while creating the client. |
Returns | |
---|---|
Type | Description |
Task<RegionDiskTypesClient> | The task representing the created RegionDiskTypesClient. |
Get(GetRegionDiskTypeRequest, CallSettings)
public virtual DiskType Get(GetRegionDiskTypeRequest request, CallSettings callSettings = null)
Returns the specified regional disk type. Gets a list of available disk types by making a list() request.
Parameters | |
---|---|
Name | Description |
request | GetRegionDiskTypeRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
DiskType | The RPC response. |
// Create client
RegionDiskTypesClient regionDiskTypesClient = RegionDiskTypesClient.Create();
// Initialize request argument(s)
GetRegionDiskTypeRequest request = new GetRegionDiskTypeRequest
{
DiskType = "",
Region = "",
Project = "",
};
// Make the request
DiskType response = regionDiskTypesClient.Get(request);
Get(String, String, String, CallSettings)
public virtual DiskType Get(string project, string region, string diskType, CallSettings callSettings = null)
Returns the specified regional disk type. Gets a list of available disk types by making a list() request.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String The name of the region for this request. |
diskType | String Name of the disk type to return. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
DiskType | The RPC response. |
// Create client
RegionDiskTypesClient regionDiskTypesClient = RegionDiskTypesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string diskType = "";
// Make the request
DiskType response = regionDiskTypesClient.Get(project, region, diskType);
GetAsync(GetRegionDiskTypeRequest, CallSettings)
public virtual Task<DiskType> GetAsync(GetRegionDiskTypeRequest request, CallSettings callSettings = null)
Returns the specified regional disk type. Gets a list of available disk types by making a list() request.
Parameters | |
---|---|
Name | Description |
request | GetRegionDiskTypeRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<DiskType> | A Task containing the RPC response. |
// Create client
RegionDiskTypesClient regionDiskTypesClient = await RegionDiskTypesClient.CreateAsync();
// Initialize request argument(s)
GetRegionDiskTypeRequest request = new GetRegionDiskTypeRequest
{
DiskType = "",
Region = "",
Project = "",
};
// Make the request
DiskType response = await regionDiskTypesClient.GetAsync(request);
GetAsync(GetRegionDiskTypeRequest, CancellationToken)
public virtual Task<DiskType> GetAsync(GetRegionDiskTypeRequest request, CancellationToken cancellationToken)
Returns the specified regional disk type. Gets a list of available disk types by making a list() request.
Parameters | |
---|---|
Name | Description |
request | GetRegionDiskTypeRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<DiskType> | A Task containing the RPC response. |
// Create client
RegionDiskTypesClient regionDiskTypesClient = await RegionDiskTypesClient.CreateAsync();
// Initialize request argument(s)
GetRegionDiskTypeRequest request = new GetRegionDiskTypeRequest
{
DiskType = "",
Region = "",
Project = "",
};
// Make the request
DiskType response = await regionDiskTypesClient.GetAsync(request);
GetAsync(String, String, String, CallSettings)
public virtual Task<DiskType> GetAsync(string project, string region, string diskType, CallSettings callSettings = null)
Returns the specified regional disk type. Gets a list of available disk types by making a list() request.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String The name of the region for this request. |
diskType | String Name of the disk type to return. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<DiskType> | A Task containing the RPC response. |
// Create client
RegionDiskTypesClient regionDiskTypesClient = await RegionDiskTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string diskType = "";
// Make the request
DiskType response = await regionDiskTypesClient.GetAsync(project, region, diskType);
GetAsync(String, String, String, CancellationToken)
public virtual Task<DiskType> GetAsync(string project, string region, string diskType, CancellationToken cancellationToken)
Returns the specified regional disk type. Gets a list of available disk types by making a list() request.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String The name of the region for this request. |
diskType | String Name of the disk type to return. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<DiskType> | A Task containing the RPC response. |
// Create client
RegionDiskTypesClient regionDiskTypesClient = await RegionDiskTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string diskType = "";
// Make the request
DiskType response = await regionDiskTypesClient.GetAsync(project, region, diskType);
List(ListRegionDiskTypesRequest, CallSettings)
public virtual PagedEnumerable<RegionDiskTypeList, DiskType> List(ListRegionDiskTypesRequest request, CallSettings callSettings = null)
Retrieves a list of regional disk types available to the specified project.
Parameters | |
---|---|
Name | Description |
request | ListRegionDiskTypesRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerable<RegionDiskTypeList, DiskType> | A pageable sequence of DiskType resources. |
// Create client
RegionDiskTypesClient regionDiskTypesClient = RegionDiskTypesClient.Create();
// Initialize request argument(s)
ListRegionDiskTypesRequest request = new ListRegionDiskTypesRequest
{
Region = "",
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<RegionDiskTypeList, DiskType> response = regionDiskTypesClient.List(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (DiskType 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 (RegionDiskTypeList page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (DiskType 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<DiskType> 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 (DiskType 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<RegionDiskTypeList, DiskType> List(string project, string region, string pageToken = null, int? pageSize = default(int? ), CallSettings callSettings = null)
Retrieves a list of regional disk types available to the specified project.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String The name of the region for this request. |
pageToken | String The token returned from the previous request. A value of |
pageSize | Nullable<Int32> The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerable<RegionDiskTypeList, DiskType> | A pageable sequence of DiskType resources. |
// Create client
RegionDiskTypesClient regionDiskTypesClient = RegionDiskTypesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
PagedEnumerable<RegionDiskTypeList, DiskType> response = regionDiskTypesClient.List(project, region);
// Iterate over all response items, lazily performing RPCs as required
foreach (DiskType 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 (RegionDiskTypeList page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (DiskType 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<DiskType> 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 (DiskType 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(ListRegionDiskTypesRequest, CallSettings)
public virtual PagedAsyncEnumerable<RegionDiskTypeList, DiskType> ListAsync(ListRegionDiskTypesRequest request, CallSettings callSettings = null)
Retrieves a list of regional disk types available to the specified project.
Parameters | |
---|---|
Name | Description |
request | ListRegionDiskTypesRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerable<RegionDiskTypeList, DiskType> | A pageable asynchronous sequence of DiskType resources. |
// Create client
RegionDiskTypesClient regionDiskTypesClient = await RegionDiskTypesClient.CreateAsync();
// Initialize request argument(s)
ListRegionDiskTypesRequest request = new ListRegionDiskTypesRequest
{
Region = "",
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<RegionDiskTypeList, DiskType> response = regionDiskTypesClient.ListAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((DiskType 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((RegionDiskTypeList page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (DiskType 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<DiskType> 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 (DiskType 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<RegionDiskTypeList, DiskType> ListAsync(string project, string region, string pageToken = null, int? pageSize = default(int? ), CallSettings callSettings = null)
Retrieves a list of regional disk types available to the specified project.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String The name of the region for this request. |
pageToken | String The token returned from the previous request. A value of |
pageSize | Nullable<Int32> The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerable<RegionDiskTypeList, DiskType> | A pageable asynchronous sequence of DiskType resources. |
// Create client
RegionDiskTypesClient regionDiskTypesClient = await RegionDiskTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
PagedAsyncEnumerable<RegionDiskTypeList, DiskType> response = regionDiskTypesClient.ListAsync(project, region);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((DiskType 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((RegionDiskTypeList page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (DiskType 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<DiskType> 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 (DiskType 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;
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.