Compute Engine v1 API - Class AcceleratorTypesClient (2.16.0)

public abstract class AcceleratorTypesClient

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

AcceleratorTypes client wrapper, for convenient use.

Inheritance

object > AcceleratorTypesClient

Namespace

Google.Cloud.Compute.V1

Assembly

Google.Cloud.Compute.V1.dll

Remarks

Services

The AcceleratorTypes API.

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

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

Property Value
Type Description
IReadOnlyListstring
Remarks

GrpcClient

public virtual AcceleratorTypes.AcceleratorTypesClient GrpcClient { get; }

The underlying gRPC AcceleratorTypes client

Property Value
Type Description
AcceleratorTypesAcceleratorTypesClient

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
Type Description
ServiceMetadata

Methods

AggregatedList(AggregatedListAcceleratorTypesRequest, CallSettings)

public virtual PagedEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<string, AcceleratorTypesScopedList>> AggregatedList(AggregatedListAcceleratorTypesRequest request, CallSettings callSettings = null)

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

Parameters
Name Description
request AggregatedListAcceleratorTypesRequest

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
PagedEnumerableAcceleratorTypeAggregatedListKeyValuePairstringAcceleratorTypesScopedList

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

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = AcceleratorTypesClient.Create();
// Initialize request argument(s)
AggregatedListAcceleratorTypesRequest request = new AggregatedListAcceleratorTypesRequest
{
    OrderBy = "",
    Project = "",
    ServiceProjectNumber = 0L,
    Filter = "",
    IncludeAllScopes = false,
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<string, AcceleratorTypesScopedList>> response = acceleratorTypesClient.AggregatedList(request);

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

Retrieves an aggregated list of accelerator 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
PagedEnumerableAcceleratorTypeAggregatedListKeyValuePairstringAcceleratorTypesScopedList

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

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = AcceleratorTypesClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
PagedEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<string, AcceleratorTypesScopedList>> response = acceleratorTypesClient.AggregatedList(project);

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

public virtual PagedAsyncEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<string, AcceleratorTypesScopedList>> AggregatedListAsync(AggregatedListAcceleratorTypesRequest request, CallSettings callSettings = null)

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

Parameters
Name Description
request AggregatedListAcceleratorTypesRequest

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
PagedAsyncEnumerableAcceleratorTypeAggregatedListKeyValuePairstringAcceleratorTypesScopedList

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

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync();
// Initialize request argument(s)
AggregatedListAcceleratorTypesRequest request = new AggregatedListAcceleratorTypesRequest
{
    OrderBy = "",
    Project = "",
    ServiceProjectNumber = 0L,
    Filter = "",
    IncludeAllScopes = false,
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<string, AcceleratorTypesScopedList>> response = acceleratorTypesClient.AggregatedListAsync(request);

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

Retrieves an aggregated list of accelerator 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
PagedAsyncEnumerableAcceleratorTypeAggregatedListKeyValuePairstringAcceleratorTypesScopedList

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

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
PagedAsyncEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<string, AcceleratorTypesScopedList>> response = acceleratorTypesClient.AggregatedListAsync(project);

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

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

Returns
Type Description
AcceleratorTypesClient

The created AcceleratorTypesClient.

CreateAsync(CancellationToken)

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

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

Parameter
Name Description
cancellationToken CancellationToken

The CancellationToken to use while creating the client.

Returns
Type Description
TaskAcceleratorTypesClient

The task representing the created AcceleratorTypesClient.

Get(GetAcceleratorTypeRequest, CallSettings)

public virtual AcceleratorType Get(GetAcceleratorTypeRequest request, CallSettings callSettings = null)

Returns the specified accelerator type.

Parameters
Name Description
request GetAcceleratorTypeRequest

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
AcceleratorType

The RPC response.

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = AcceleratorTypesClient.Create();
// Initialize request argument(s)
GetAcceleratorTypeRequest request = new GetAcceleratorTypeRequest
{
    Zone = "",
    AcceleratorType = "",
    Project = "",
};
// Make the request
AcceleratorType response = acceleratorTypesClient.Get(request);

Get(string, string, string, CallSettings)

public virtual AcceleratorType Get(string project, string zone, string acceleratorType, CallSettings callSettings = null)

Returns the specified accelerator type.

Parameters
Name Description
project string

Project ID for this request.

zone string

The name of the zone for this request.

acceleratorType string

Name of the accelerator type to return.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
AcceleratorType

The RPC response.

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = AcceleratorTypesClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string acceleratorType = "";
// Make the request
AcceleratorType response = acceleratorTypesClient.Get(project, zone, acceleratorType);

GetAsync(GetAcceleratorTypeRequest, CallSettings)

public virtual Task<AcceleratorType> GetAsync(GetAcceleratorTypeRequest request, CallSettings callSettings = null)

Returns the specified accelerator type.

Parameters
Name Description
request GetAcceleratorTypeRequest

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
TaskAcceleratorType

A Task containing the RPC response.

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync();
// Initialize request argument(s)
GetAcceleratorTypeRequest request = new GetAcceleratorTypeRequest
{
    Zone = "",
    AcceleratorType = "",
    Project = "",
};
// Make the request
AcceleratorType response = await acceleratorTypesClient.GetAsync(request);

GetAsync(GetAcceleratorTypeRequest, CancellationToken)

public virtual Task<AcceleratorType> GetAsync(GetAcceleratorTypeRequest request, CancellationToken cancellationToken)

Returns the specified accelerator type.

Parameters
Name Description
request GetAcceleratorTypeRequest

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

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskAcceleratorType

A Task containing the RPC response.

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync();
// Initialize request argument(s)
GetAcceleratorTypeRequest request = new GetAcceleratorTypeRequest
{
    Zone = "",
    AcceleratorType = "",
    Project = "",
};
// Make the request
AcceleratorType response = await acceleratorTypesClient.GetAsync(request);

GetAsync(string, string, string, CallSettings)

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

Returns the specified accelerator type.

Parameters
Name Description
project string

Project ID for this request.

zone string

The name of the zone for this request.

acceleratorType string

Name of the accelerator type to return.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskAcceleratorType

A Task containing the RPC response.

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string acceleratorType = "";
// Make the request
AcceleratorType response = await acceleratorTypesClient.GetAsync(project, zone, acceleratorType);

GetAsync(string, string, string, CancellationToken)

public virtual Task<AcceleratorType> GetAsync(string project, string zone, string acceleratorType, CancellationToken cancellationToken)

Returns the specified accelerator type.

Parameters
Name Description
project string

Project ID for this request.

zone string

The name of the zone for this request.

acceleratorType string

Name of the accelerator type to return.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskAcceleratorType

A Task containing the RPC response.

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string acceleratorType = "";
// Make the request
AcceleratorType response = await acceleratorTypesClient.GetAsync(project, zone, acceleratorType);

List(ListAcceleratorTypesRequest, CallSettings)

public virtual PagedEnumerable<AcceleratorTypeList, AcceleratorType> List(ListAcceleratorTypesRequest request, CallSettings callSettings = null)

Retrieves a list of accelerator types that are available to the specified project.

Parameters
Name Description
request ListAcceleratorTypesRequest

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
PagedEnumerableAcceleratorTypeListAcceleratorType

A pageable sequence of AcceleratorType resources.

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = AcceleratorTypesClient.Create();
// Initialize request argument(s)
ListAcceleratorTypesRequest request = new ListAcceleratorTypesRequest
{
    Zone = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<AcceleratorTypeList, AcceleratorType> response = acceleratorTypesClient.List(request);

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

Retrieves a list of accelerator types that are 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
PagedEnumerableAcceleratorTypeListAcceleratorType

A pageable sequence of AcceleratorType resources.

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = AcceleratorTypesClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
// Make the request
PagedEnumerable<AcceleratorTypeList, AcceleratorType> response = acceleratorTypesClient.List(project, zone);

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

public virtual PagedAsyncEnumerable<AcceleratorTypeList, AcceleratorType> ListAsync(ListAcceleratorTypesRequest request, CallSettings callSettings = null)

Retrieves a list of accelerator types that are available to the specified project.

Parameters
Name Description
request ListAcceleratorTypesRequest

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
PagedAsyncEnumerableAcceleratorTypeListAcceleratorType

A pageable asynchronous sequence of AcceleratorType resources.

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync();
// Initialize request argument(s)
ListAcceleratorTypesRequest request = new ListAcceleratorTypesRequest
{
    Zone = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<AcceleratorTypeList, AcceleratorType> response = acceleratorTypesClient.ListAsync(request);

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

Retrieves a list of accelerator types that are 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
PagedAsyncEnumerableAcceleratorTypeListAcceleratorType

A pageable asynchronous sequence of AcceleratorType resources.

Example
// Create client
AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
// Make the request
PagedAsyncEnumerable<AcceleratorTypeList, AcceleratorType> response = acceleratorTypesClient.ListAsync(project, zone);

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