public abstract class AcceleratorTypesClientAcceleratorTypes client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Compute.V1Assembly
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 | 
| IReadOnlyList<String> | |
The default AcceleratorTypes scopes are:
GrpcClient
public virtual AcceleratorTypes.AcceleratorTypesClient GrpcClient { get; }The underlying gRPC AcceleratorTypes client
| Property Value | |
|---|---|
| Type | Description | 
| AcceleratorTypes.AcceleratorTypesClient | |
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.
| Parameters | |
|---|---|
| Name | Description | 
| request | AggregatedListAcceleratorTypesRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| PagedEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<String, AcceleratorTypesScopedList>> | A pageable sequence of KeyValuePair<TKey,TValue> resources. | 
// Create client
AcceleratorTypesClient acceleratorTypesClient = AcceleratorTypesClient.Create();
// Initialize request argument(s)
AggregatedListAcceleratorTypesRequest request = new AggregatedListAcceleratorTypesRequest
{
    OrderBy = "",
    Project = "",
    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, Nullable<Int32>, 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.
| Parameters | |
|---|---|
| Name | Description | 
| project | StringProject ID for this request. | 
| pageToken | StringThe token returned from the previous request. A value of  | 
| pageSize | Nullable<Int32>The size of page to request. The response will not be larger than this, but may be smaller. A value of
 | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| PagedEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<String, AcceleratorTypesScopedList>> | A pageable sequence of KeyValuePair<TKey,TValue> resources. | 
// 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.
| Parameters | |
|---|---|
| Name | Description | 
| request | AggregatedListAcceleratorTypesRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| PagedAsyncEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<String, AcceleratorTypesScopedList>> | A pageable asynchronous sequence of KeyValuePair<TKey,TValue> resources. | 
// Create client
AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync();
// Initialize request argument(s)
AggregatedListAcceleratorTypesRequest request = new AggregatedListAcceleratorTypesRequest
{
    OrderBy = "",
    Project = "",
    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, Nullable<Int32>, 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.
| Parameters | |
|---|---|
| Name | Description | 
| project | StringProject ID for this request. | 
| pageToken | StringThe token returned from the previous request. A value of  | 
| pageSize | Nullable<Int32>The size of page to request. The response will not be larger than this, but may be smaller. A value of
 | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| PagedAsyncEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<String, AcceleratorTypesScopedList>> | A pageable asynchronous sequence of KeyValuePair<TKey,TValue> resources. | 
// 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(CancellationToken))Asynchronously creates a AcceleratorTypesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use AcceleratorTypesClientBuilder.
| Parameter | |
|---|---|
| Name | Description | 
| cancellationToken | CancellationTokenThe CancellationToken to use while creating the client. | 
| Returns | |
|---|---|
| Type | Description | 
| Task<AcceleratorTypesClient> | 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 | GetAcceleratorTypeRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| AcceleratorType | The RPC response. | 
// 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 | StringProject ID for this request. | 
| zone | StringThe name of the zone for this request. | 
| acceleratorType | StringName of the accelerator type to return. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| AcceleratorType | The RPC response. | 
// 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 | GetAcceleratorTypeRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| Task<AcceleratorType> | A Task containing the RPC response. | 
// 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 | GetAcceleratorTypeRequestThe request object containing all of the parameters for the API call. | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| Task<AcceleratorType> | A Task containing the RPC response. | 
// 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 | StringProject ID for this request. | 
| zone | StringThe name of the zone for this request. | 
| acceleratorType | StringName of the accelerator type to return. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| Task<AcceleratorType> | A Task containing the RPC response. | 
// 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 | StringProject ID for this request. | 
| zone | StringThe name of the zone for this request. | 
| acceleratorType | StringName of the accelerator type to return. | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| Task<AcceleratorType> | A Task containing the RPC response. | 
// 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 | ListAcceleratorTypesRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| PagedEnumerable<AcceleratorTypeList, AcceleratorType> | A pageable sequence of AcceleratorType resources. | 
// 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, Nullable<Int32>, 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 | StringProject ID for this request. | 
| zone | StringThe name of the zone for this request. | 
| pageToken | StringThe token returned from the previous request. A value of  | 
| pageSize | Nullable<Int32>The size of page to request. The response will not be larger than this, but may be smaller. A value of
 | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| PagedEnumerable<AcceleratorTypeList, AcceleratorType> | A pageable sequence of AcceleratorType resources. | 
// 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 | ListAcceleratorTypesRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| PagedAsyncEnumerable<AcceleratorTypeList, AcceleratorType> | A pageable asynchronous sequence of AcceleratorType resources. | 
// 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, Nullable<Int32>, 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 | StringProject ID for this request. | 
| zone | StringThe name of the zone for this request. | 
| pageToken | StringThe token returned from the previous request. A value of  | 
| pageSize | Nullable<Int32>The size of page to request. The response will not be larger than this, but may be smaller. A value of
 | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| PagedAsyncEnumerable<AcceleratorTypeList, AcceleratorType> | A pageable asynchronous sequence of AcceleratorType resources. | 
// 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. | 
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.