Compute Engine v1 API - Class DiskTypesClient (2.15.0)

public abstract class DiskTypesClient

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

DiskTypes client wrapper, for convenient use.

Inheritance

object > DiskTypesClient

Derived Types

Namespace

Google.Cloud.Compute.V1

Assembly

Google.Cloud.Compute.V1.dll

Remarks

The DiskTypes API.

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

The default endpoint for the DiskTypes 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 DiskTypes scopes.

Property Value
TypeDescription
IReadOnlyListstring
Remarks

GrpcClient

public virtual DiskTypes.DiskTypesClient GrpcClient { get; }

The underlying gRPC DiskTypes client

Property Value
TypeDescription
DiskTypesDiskTypesClient

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
TypeDescription
ServiceMetadata

Methods

AggregatedList(AggregatedListDiskTypesRequest, CallSettings)

public virtual PagedEnumerable<DiskTypeAggregatedList, KeyValuePair<string, DiskTypesScopedList>> AggregatedList(AggregatedListDiskTypesRequest request, CallSettings callSettings = null)

Retrieves an aggregated list of disk types. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.

Parameters
NameDescription
requestAggregatedListDiskTypesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableDiskTypeAggregatedListKeyValuePairstringDiskTypesScopedList

A pageable sequence of KeyValuePair<TKey, TValue> resources.

Example
// Create client
DiskTypesClient diskTypesClient = DiskTypesClient.Create();
// Initialize request argument(s)
AggregatedListDiskTypesRequest request = new AggregatedListDiskTypesRequest
{
    OrderBy = "",
    Project = "",
    ServiceProjectNumber = 0L,
    Filter = "",
    IncludeAllScopes = false,
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<DiskTypeAggregatedList, KeyValuePair<string, DiskTypesScopedList>> response = diskTypesClient.AggregatedList(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (KeyValuePair<string, DiskTypesScopedList> 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 (DiskTypeAggregatedList page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (KeyValuePair<string, DiskTypesScopedList> 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, DiskTypesScopedList>> 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, DiskTypesScopedList> 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, int?, CallSettings)

public virtual PagedEnumerable<DiskTypeAggregatedList, KeyValuePair<string, DiskTypesScopedList>> AggregatedList(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Retrieves an aggregated list of disk types. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.

Parameters
NameDescription
projectstring

Project ID for this request.

pageTokenstring

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

pageSizeint

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
PagedEnumerableDiskTypeAggregatedListKeyValuePairstringDiskTypesScopedList

A pageable sequence of KeyValuePair<TKey, TValue> resources.

Example
// Create client
DiskTypesClient diskTypesClient = DiskTypesClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
PagedEnumerable<DiskTypeAggregatedList, KeyValuePair<string, DiskTypesScopedList>> response = diskTypesClient.AggregatedList(project);

// Iterate over all response items, lazily performing RPCs as required
foreach (KeyValuePair<string, DiskTypesScopedList> 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 (DiskTypeAggregatedList page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (KeyValuePair<string, DiskTypesScopedList> 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, DiskTypesScopedList>> 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, DiskTypesScopedList> 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(AggregatedListDiskTypesRequest, CallSettings)

public virtual PagedAsyncEnumerable<DiskTypeAggregatedList, KeyValuePair<string, DiskTypesScopedList>> AggregatedListAsync(AggregatedListDiskTypesRequest request, CallSettings callSettings = null)

Retrieves an aggregated list of disk types. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.

Parameters
NameDescription
requestAggregatedListDiskTypesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerableDiskTypeAggregatedListKeyValuePairstringDiskTypesScopedList

A pageable asynchronous sequence of KeyValuePair<TKey, TValue> resources.

Example
// Create client
DiskTypesClient diskTypesClient = await DiskTypesClient.CreateAsync();
// Initialize request argument(s)
AggregatedListDiskTypesRequest request = new AggregatedListDiskTypesRequest
{
    OrderBy = "",
    Project = "",
    ServiceProjectNumber = 0L,
    Filter = "",
    IncludeAllScopes = false,
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<DiskTypeAggregatedList, KeyValuePair<string, DiskTypesScopedList>> response = diskTypesClient.AggregatedListAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((KeyValuePair<string, DiskTypesScopedList> 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((DiskTypeAggregatedList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (KeyValuePair<string, DiskTypesScopedList> 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, DiskTypesScopedList>> 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, DiskTypesScopedList> 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, int?, CallSettings)

public virtual PagedAsyncEnumerable<DiskTypeAggregatedList, KeyValuePair<string, DiskTypesScopedList>> AggregatedListAsync(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Retrieves an aggregated list of disk types. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.

Parameters
NameDescription
projectstring

Project ID for this request.

pageTokenstring

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

pageSizeint

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
PagedAsyncEnumerableDiskTypeAggregatedListKeyValuePairstringDiskTypesScopedList

A pageable asynchronous sequence of KeyValuePair<TKey, TValue> resources.

Example
// Create client
DiskTypesClient diskTypesClient = await DiskTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
PagedAsyncEnumerable<DiskTypeAggregatedList, KeyValuePair<string, DiskTypesScopedList>> response = diskTypesClient.AggregatedListAsync(project);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((KeyValuePair<string, DiskTypesScopedList> 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((DiskTypeAggregatedList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (KeyValuePair<string, DiskTypesScopedList> 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, DiskTypesScopedList>> 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, DiskTypesScopedList> 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 DiskTypesClient Create()

Synchronously creates a DiskTypesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use DiskTypesClientBuilder.

Returns
TypeDescription
DiskTypesClient

The created DiskTypesClient.

CreateAsync(CancellationToken)

public static Task<DiskTypesClient> CreateAsync(CancellationToken cancellationToken = default)

Asynchronously creates a DiskTypesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use DiskTypesClientBuilder.

Parameter
NameDescription
cancellationTokenCancellationToken

The CancellationToken to use while creating the client.

Returns
TypeDescription
TaskDiskTypesClient

The task representing the created DiskTypesClient.

Get(GetDiskTypeRequest, CallSettings)

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

Returns the specified disk type.

Parameters
NameDescription
requestGetDiskTypeRequest

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
DiskTypesClient diskTypesClient = DiskTypesClient.Create();
// Initialize request argument(s)
GetDiskTypeRequest request = new GetDiskTypeRequest
{
    Zone = "",
    DiskType = "",
    Project = "",
};
// Make the request
DiskType response = diskTypesClient.Get(request);

Get(string, string, string, CallSettings)

public virtual DiskType Get(string project, string zone, string diskType, CallSettings callSettings = null)

Returns the specified disk type.

Parameters
NameDescription
projectstring

Project ID for this request.

zonestring

The name of the zone 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
DiskTypesClient diskTypesClient = DiskTypesClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string diskType = "";
// Make the request
DiskType response = diskTypesClient.Get(project, zone, diskType);

GetAsync(GetDiskTypeRequest, CallSettings)

public virtual Task<DiskType> GetAsync(GetDiskTypeRequest request, CallSettings callSettings = null)

Returns the specified disk type.

Parameters
NameDescription
requestGetDiskTypeRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskDiskType

A Task containing the RPC response.

Example
// Create client
DiskTypesClient diskTypesClient = await DiskTypesClient.CreateAsync();
// Initialize request argument(s)
GetDiskTypeRequest request = new GetDiskTypeRequest
{
    Zone = "",
    DiskType = "",
    Project = "",
};
// Make the request
DiskType response = await diskTypesClient.GetAsync(request);

GetAsync(GetDiskTypeRequest, CancellationToken)

public virtual Task<DiskType> GetAsync(GetDiskTypeRequest request, CancellationToken cancellationToken)

Returns the specified disk type.

Parameters
NameDescription
requestGetDiskTypeRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskDiskType

A Task containing the RPC response.

Example
// Create client
DiskTypesClient diskTypesClient = await DiskTypesClient.CreateAsync();
// Initialize request argument(s)
GetDiskTypeRequest request = new GetDiskTypeRequest
{
    Zone = "",
    DiskType = "",
    Project = "",
};
// Make the request
DiskType response = await diskTypesClient.GetAsync(request);

GetAsync(string, string, string, CallSettings)

public virtual Task<DiskType> GetAsync(string project, string zone, string diskType, CallSettings callSettings = null)

Returns the specified disk type.

Parameters
NameDescription
projectstring

Project ID for this request.

zonestring

The name of the zone for this request.

diskTypestring

Name of the disk type to return.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskDiskType

A Task containing the RPC response.

Example
// Create client
DiskTypesClient diskTypesClient = await DiskTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string diskType = "";
// Make the request
DiskType response = await diskTypesClient.GetAsync(project, zone, diskType);

GetAsync(string, string, string, CancellationToken)

public virtual Task<DiskType> GetAsync(string project, string zone, string diskType, CancellationToken cancellationToken)

Returns the specified disk type.

Parameters
NameDescription
projectstring

Project ID for this request.

zonestring

The name of the zone for this request.

diskTypestring

Name of the disk type to return.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskDiskType

A Task containing the RPC response.

Example
// Create client
DiskTypesClient diskTypesClient = await DiskTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string diskType = "";
// Make the request
DiskType response = await diskTypesClient.GetAsync(project, zone, diskType);

List(ListDiskTypesRequest, CallSettings)

public virtual PagedEnumerable<DiskTypeList, DiskType> List(ListDiskTypesRequest request, CallSettings callSettings = null)

Retrieves a list of disk types available to the specified project.

Parameters
NameDescription
requestListDiskTypesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableDiskTypeListDiskType

A pageable sequence of DiskType resources.

Example
// Create client
DiskTypesClient diskTypesClient = DiskTypesClient.Create();
// Initialize request argument(s)
ListDiskTypesRequest request = new ListDiskTypesRequest
{
    Zone = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<DiskTypeList, DiskType> response = diskTypesClient.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 (DiskTypeList 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<DiskTypeList, DiskType> List(string project, string zone, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Retrieves a list of disk types available to the specified project.

Parameters
NameDescription
projectstring

Project ID for this request.

zonestring

The name of the zone for this request.

pageTokenstring

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

pageSizeint

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
PagedEnumerableDiskTypeListDiskType

A pageable sequence of DiskType resources.

Example
// Create client
DiskTypesClient diskTypesClient = DiskTypesClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
// Make the request
PagedEnumerable<DiskTypeList, DiskType> response = diskTypesClient.List(project, zone);

// 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 (DiskTypeList 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(ListDiskTypesRequest, CallSettings)

public virtual PagedAsyncEnumerable<DiskTypeList, DiskType> ListAsync(ListDiskTypesRequest request, CallSettings callSettings = null)

Retrieves a list of disk types available to the specified project.

Parameters
NameDescription
requestListDiskTypesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerableDiskTypeListDiskType

A pageable asynchronous sequence of DiskType resources.

Example
// Create client
DiskTypesClient diskTypesClient = await DiskTypesClient.CreateAsync();
// Initialize request argument(s)
ListDiskTypesRequest request = new ListDiskTypesRequest
{
    Zone = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<DiskTypeList, DiskType> response = diskTypesClient.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((DiskTypeList 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<DiskTypeList, DiskType> ListAsync(string project, string zone, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Retrieves a list of disk types available to the specified project.

Parameters
NameDescription
projectstring

Project ID for this request.

zonestring

The name of the zone for this request.

pageTokenstring

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

pageSizeint

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
PagedAsyncEnumerableDiskTypeListDiskType

A pageable asynchronous sequence of DiskType resources.

Example
// Create client
DiskTypesClient diskTypesClient = await DiskTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
// Make the request
PagedAsyncEnumerable<DiskTypeList, DiskType> response = diskTypesClient.ListAsync(project, zone);

// 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((DiskTypeList 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.