Compute Engine v1 API - Class StoragePoolTypesClient (2.16.0)

public abstract class StoragePoolTypesClient

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

StoragePoolTypes client wrapper, for convenient use.

Inheritance

object > StoragePoolTypesClient

Namespace

Google.Cloud.Compute.V1

Assembly

Google.Cloud.Compute.V1.dll

Remarks

The StoragePoolTypes API.

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

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

Property Value
Type Description
IReadOnlyListstring
Remarks

GrpcClient

public virtual StoragePoolTypes.StoragePoolTypesClient GrpcClient { get; }

The underlying gRPC StoragePoolTypes client

Property Value
Type Description
StoragePoolTypesStoragePoolTypesClient

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
Type Description
ServiceMetadata

Methods

AggregatedList(AggregatedListStoragePoolTypesRequest, CallSettings)

public virtual PagedEnumerable<StoragePoolTypeAggregatedList, KeyValuePair<string, StoragePoolTypesScopedList>> AggregatedList(AggregatedListStoragePoolTypesRequest request, CallSettings callSettings = null)

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

Parameters
Name Description
request AggregatedListStoragePoolTypesRequest

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
PagedEnumerableStoragePoolTypeAggregatedListKeyValuePairstringStoragePoolTypesScopedList

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

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = StoragePoolTypesClient.Create();
// Initialize request argument(s)
AggregatedListStoragePoolTypesRequest request = new AggregatedListStoragePoolTypesRequest
{
    OrderBy = "",
    Project = "",
    ServiceProjectNumber = 0L,
    Filter = "",
    IncludeAllScopes = false,
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<StoragePoolTypeAggregatedList, KeyValuePair<string, StoragePoolTypesScopedList>> response = storagePoolTypesClient.AggregatedList(request);

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

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

Parameters
Name Description
project string

Project ID 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
PagedEnumerableStoragePoolTypeAggregatedListKeyValuePairstringStoragePoolTypesScopedList

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

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = StoragePoolTypesClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
PagedEnumerable<StoragePoolTypeAggregatedList, KeyValuePair<string, StoragePoolTypesScopedList>> response = storagePoolTypesClient.AggregatedList(project);

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

public virtual PagedAsyncEnumerable<StoragePoolTypeAggregatedList, KeyValuePair<string, StoragePoolTypesScopedList>> AggregatedListAsync(AggregatedListStoragePoolTypesRequest request, CallSettings callSettings = null)

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

Parameters
Name Description
request AggregatedListStoragePoolTypesRequest

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
PagedAsyncEnumerableStoragePoolTypeAggregatedListKeyValuePairstringStoragePoolTypesScopedList

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

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = await StoragePoolTypesClient.CreateAsync();
// Initialize request argument(s)
AggregatedListStoragePoolTypesRequest request = new AggregatedListStoragePoolTypesRequest
{
    OrderBy = "",
    Project = "",
    ServiceProjectNumber = 0L,
    Filter = "",
    IncludeAllScopes = false,
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<StoragePoolTypeAggregatedList, KeyValuePair<string, StoragePoolTypesScopedList>> response = storagePoolTypesClient.AggregatedListAsync(request);

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

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

Parameters
Name Description
project string

Project ID 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
PagedAsyncEnumerableStoragePoolTypeAggregatedListKeyValuePairstringStoragePoolTypesScopedList

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

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = await StoragePoolTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
PagedAsyncEnumerable<StoragePoolTypeAggregatedList, KeyValuePair<string, StoragePoolTypesScopedList>> response = storagePoolTypesClient.AggregatedListAsync(project);

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

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

Returns
Type Description
StoragePoolTypesClient

The created StoragePoolTypesClient.

CreateAsync(CancellationToken)

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

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

Parameter
Name Description
cancellationToken CancellationToken

The CancellationToken to use while creating the client.

Returns
Type Description
TaskStoragePoolTypesClient

The task representing the created StoragePoolTypesClient.

Get(GetStoragePoolTypeRequest, CallSettings)

public virtual StoragePoolType Get(GetStoragePoolTypeRequest request, CallSettings callSettings = null)

Returns the specified storage pool type.

Parameters
Name Description
request GetStoragePoolTypeRequest

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
StoragePoolType

The RPC response.

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = StoragePoolTypesClient.Create();
// Initialize request argument(s)
GetStoragePoolTypeRequest request = new GetStoragePoolTypeRequest
{
    Zone = "",
    Project = "",
    StoragePoolType = "",
};
// Make the request
StoragePoolType response = storagePoolTypesClient.Get(request);

Get(string, string, string, CallSettings)

public virtual StoragePoolType Get(string project, string zone, string storagePoolType, CallSettings callSettings = null)

Returns the specified storage pool type.

Parameters
Name Description
project string

Project ID for this request.

zone string

The name of the zone for this request.

storagePoolType string

Name of the storage pool type to return.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
StoragePoolType

The RPC response.

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = StoragePoolTypesClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string storagePoolType = "";
// Make the request
StoragePoolType response = storagePoolTypesClient.Get(project, zone, storagePoolType);

GetAsync(GetStoragePoolTypeRequest, CallSettings)

public virtual Task<StoragePoolType> GetAsync(GetStoragePoolTypeRequest request, CallSettings callSettings = null)

Returns the specified storage pool type.

Parameters
Name Description
request GetStoragePoolTypeRequest

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
TaskStoragePoolType

A Task containing the RPC response.

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = await StoragePoolTypesClient.CreateAsync();
// Initialize request argument(s)
GetStoragePoolTypeRequest request = new GetStoragePoolTypeRequest
{
    Zone = "",
    Project = "",
    StoragePoolType = "",
};
// Make the request
StoragePoolType response = await storagePoolTypesClient.GetAsync(request);

GetAsync(GetStoragePoolTypeRequest, CancellationToken)

public virtual Task<StoragePoolType> GetAsync(GetStoragePoolTypeRequest request, CancellationToken cancellationToken)

Returns the specified storage pool type.

Parameters
Name Description
request GetStoragePoolTypeRequest

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

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskStoragePoolType

A Task containing the RPC response.

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = await StoragePoolTypesClient.CreateAsync();
// Initialize request argument(s)
GetStoragePoolTypeRequest request = new GetStoragePoolTypeRequest
{
    Zone = "",
    Project = "",
    StoragePoolType = "",
};
// Make the request
StoragePoolType response = await storagePoolTypesClient.GetAsync(request);

GetAsync(string, string, string, CallSettings)

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

Returns the specified storage pool type.

Parameters
Name Description
project string

Project ID for this request.

zone string

The name of the zone for this request.

storagePoolType string

Name of the storage pool type to return.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskStoragePoolType

A Task containing the RPC response.

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = await StoragePoolTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string storagePoolType = "";
// Make the request
StoragePoolType response = await storagePoolTypesClient.GetAsync(project, zone, storagePoolType);

GetAsync(string, string, string, CancellationToken)

public virtual Task<StoragePoolType> GetAsync(string project, string zone, string storagePoolType, CancellationToken cancellationToken)

Returns the specified storage pool type.

Parameters
Name Description
project string

Project ID for this request.

zone string

The name of the zone for this request.

storagePoolType string

Name of the storage pool type to return.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskStoragePoolType

A Task containing the RPC response.

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = await StoragePoolTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string storagePoolType = "";
// Make the request
StoragePoolType response = await storagePoolTypesClient.GetAsync(project, zone, storagePoolType);

List(ListStoragePoolTypesRequest, CallSettings)

public virtual PagedEnumerable<StoragePoolTypeList, StoragePoolType> List(ListStoragePoolTypesRequest request, CallSettings callSettings = null)

Retrieves a list of storage pool types available to the specified project.

Parameters
Name Description
request ListStoragePoolTypesRequest

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
PagedEnumerableStoragePoolTypeListStoragePoolType

A pageable sequence of StoragePoolType resources.

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = StoragePoolTypesClient.Create();
// Initialize request argument(s)
ListStoragePoolTypesRequest request = new ListStoragePoolTypesRequest
{
    Zone = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<StoragePoolTypeList, StoragePoolType> response = storagePoolTypesClient.List(request);

// Iterate over all response items, lazily performing RPCs as required
foreach (StoragePoolType 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 (StoragePoolTypeList page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (StoragePoolType 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<StoragePoolType> 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 (StoragePoolType 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<StoragePoolTypeList, StoragePoolType> List(string project, string zone, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Retrieves a list of storage pool types available to the specified project.

Parameters
Name Description
project string

Project ID for this request.

zone string

The name of the zone 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
PagedEnumerableStoragePoolTypeListStoragePoolType

A pageable sequence of StoragePoolType resources.

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = StoragePoolTypesClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
// Make the request
PagedEnumerable<StoragePoolTypeList, StoragePoolType> response = storagePoolTypesClient.List(project, zone);

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

public virtual PagedAsyncEnumerable<StoragePoolTypeList, StoragePoolType> ListAsync(ListStoragePoolTypesRequest request, CallSettings callSettings = null)

Retrieves a list of storage pool types available to the specified project.

Parameters
Name Description
request ListStoragePoolTypesRequest

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
PagedAsyncEnumerableStoragePoolTypeListStoragePoolType

A pageable asynchronous sequence of StoragePoolType resources.

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = await StoragePoolTypesClient.CreateAsync();
// Initialize request argument(s)
ListStoragePoolTypesRequest request = new ListStoragePoolTypesRequest
{
    Zone = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<StoragePoolTypeList, StoragePoolType> response = storagePoolTypesClient.ListAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((StoragePoolType 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((StoragePoolTypeList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (StoragePoolType 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<StoragePoolType> 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 (StoragePoolType 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<StoragePoolTypeList, StoragePoolType> ListAsync(string project, string zone, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Retrieves a list of storage pool types available to the specified project.

Parameters
Name Description
project string

Project ID for this request.

zone string

The name of the zone 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
PagedAsyncEnumerableStoragePoolTypeListStoragePoolType

A pageable asynchronous sequence of StoragePoolType resources.

Example
// Create client
StoragePoolTypesClient storagePoolTypesClient = await StoragePoolTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
// Make the request
PagedAsyncEnumerable<StoragePoolTypeList, StoragePoolType> response = storagePoolTypesClient.ListAsync(project, zone);

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