Class RegionDiskTypesClient (2.1.0)

public abstract 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
TypeDescription
String

DefaultScopes

public static IReadOnlyList<string> DefaultScopes { get; }

The default RegionDiskTypes scopes.

Property Value
TypeDescription
IReadOnlyList<String>
Remarks

GrpcClient

public virtual RegionDiskTypes.RegionDiskTypesClient GrpcClient { get; }

The underlying gRPC RegionDiskTypes client

Property Value
TypeDescription
RegionDiskTypes.RegionDiskTypesClient

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
TypeDescription
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
TypeDescription
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
NameDescription
cancellationTokenCancellationToken

The CancellationToken to use while creating the client.

Returns
TypeDescription
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
NameDescription
requestGetRegionDiskTypeRequest

The request object containing all of the parameters for the API call.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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. Gets a list of available disk types by making a list() request.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

The name of the region for this request.

diskTypeString

Name of the disk type to return.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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. Gets a list of available disk types by making a list() request.

Parameters
NameDescription
requestGetRegionDiskTypeRequest

The request object containing all of the parameters for the API call.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<DiskType>

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. Gets a list of available disk types by making a list() request.

Parameters
NameDescription
requestGetRegionDiskTypeRequest

The request object containing all of the parameters for the API call.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<DiskType>

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. Gets a list of available disk types by making a list() request.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

The name of the region for this request.

diskTypeString

Name of the disk type to return.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<DiskType>

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. Gets a list of available disk types by making a list() request.

Parameters
NameDescription
projectString

Project ID for this request.

regionString

The name of the region for this request.

diskTypeString

Name of the disk type to return.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<DiskType>

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
NameDescription
requestListRegionDiskTypesRequest

The request object containing all of the parameters for the API call.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerable<RegionDiskTypeList, DiskType>

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, Nullable<Int32>, 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
NameDescription
projectString

Project ID for this request.

regionString

The name of the region for this request.

pageTokenString

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSizeNullable<Int32>

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.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerable<RegionDiskTypeList, DiskType>

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
NameDescription
requestListRegionDiskTypesRequest

The request object containing all of the parameters for the API call.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerable<RegionDiskTypeList, DiskType>

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, Nullable<Int32>, 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
NameDescription
projectString

Project ID for this request.

regionString

The name of the region for this request.

pageTokenString

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSizeNullable<Int32>

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.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerable<RegionDiskTypeList, DiskType>

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
TypeDescription
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.