Compute Engine v1 API - Class RegionDiskTypesClient (2.16.0)

public abstract class RegionDiskTypesClient

Reference documentation and code samples for the Compute Engine v1 API class RegionDiskTypesClient.

RegionDiskTypes client wrapper, for convenient use.

Inheritance

object > RegionDiskTypesClient

Namespace

Google.Cloud.Compute.V1

Assembly

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
IReadOnlyListstring
Remarks

GrpcClient

public virtual RegionDiskTypes.RegionDiskTypesClient GrpcClient { get; }

The underlying gRPC RegionDiskTypes client

Property Value
Type Description
RegionDiskTypesRegionDiskTypesClient

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
Type Description
ServiceMetadata

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)

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
TaskRegionDiskTypesClient

The task representing the created RegionDiskTypesClient.

Get(GetRegionDiskTypeRequest, CallSettings)

public virtual DiskType Get(GetRegionDiskTypeRequest request, CallSettings callSettings = null)

Returns the specified regional disk type.

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.

Example
// 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.

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.

Example
// 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.

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
TaskDiskType

A Task containing the RPC response.

Example
// 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.

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
TaskDiskType

A Task containing the RPC response.

Example
// 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.

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
TaskDiskType

A Task containing the RPC response.

Example
// 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.

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
TaskDiskType

A Task containing the RPC response.

Example
// 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
PagedEnumerableRegionDiskTypeListDiskType

A pageable sequence of DiskType resources.

Example
// 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, int?, CallSettings)

public virtual PagedEnumerable<RegionDiskTypeList, DiskType> List(string project, string region, string pageToken = null, int? pageSize = null, 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 null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableRegionDiskTypeListDiskType

A pageable sequence of DiskType resources.

Example
// 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
PagedAsyncEnumerableRegionDiskTypeListDiskType

A pageable asynchronous sequence of DiskType resources.

Example
// 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, int?, CallSettings)

public virtual PagedAsyncEnumerable<RegionDiskTypeList, DiskType> ListAsync(string project, string region, string pageToken = null, int? pageSize = null, 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 null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableRegionDiskTypeListDiskType

A pageable asynchronous sequence of DiskType resources.

Example
// 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.

Remarks

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.