public abstract class NodeTemplatesClientReference documentation and code samples for the Compute Engine v1 API class NodeTemplatesClient.
NodeTemplates client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Compute.V1Assembly
Google.Cloud.Compute.V1.dll
Remarks
The NodeTemplates API.
Properties
DefaultEndpoint
public static string DefaultEndpoint { get; }The default endpoint for the NodeTemplates 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 NodeTemplates scopes.
| Property Value | |
|---|---|
| Type | Description | 
IReadOnlyListstring | 
        |
The default NodeTemplates scopes are:
DeleteOperationsClient
public virtual OperationsClient DeleteOperationsClient { get; }The long-running operations client for Delete.
| Property Value | |
|---|---|
| Type | Description | 
OperationsClient | 
        |
GrpcClient
public virtual NodeTemplates.NodeTemplatesClient GrpcClient { get; }The underlying gRPC NodeTemplates client
| Property Value | |
|---|---|
| Type | Description | 
NodeTemplatesNodeTemplatesClient | 
        |
InsertOperationsClient
public virtual OperationsClient InsertOperationsClient { get; }The long-running operations client for Insert.
| Property Value | |
|---|---|
| Type | Description | 
OperationsClient | 
        |
ServiceMetadata
public static ServiceMetadata ServiceMetadata { get; }The service metadata associated with this client type.
| Property Value | |
|---|---|
| Type | Description | 
ServiceMetadata | 
        |
Methods
AggregatedList(AggregatedListNodeTemplatesRequest, CallSettings)
public virtual PagedEnumerable<NodeTemplateAggregatedList, KeyValuePair<string, NodeTemplatesScopedList>> AggregatedList(AggregatedListNodeTemplatesRequest request, CallSettings callSettings = null)Retrieves an aggregated list of node templates. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        AggregatedListNodeTemplatesRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
PagedEnumerableNodeTemplateAggregatedListKeyValuePairstringNodeTemplatesScopedList | 
        A pageable sequence of KeyValuePair<TKey, TValue> resources.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
AggregatedListNodeTemplatesRequest request = new AggregatedListNodeTemplatesRequest
{
    OrderBy = "",
    Project = "",
    ServiceProjectNumber = 0L,
    Filter = "",
    IncludeAllScopes = false,
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<NodeTemplateAggregatedList, KeyValuePair<string, NodeTemplatesScopedList>> response = nodeTemplatesClient.AggregatedList(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (KeyValuePair<string, NodeTemplatesScopedList> 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 (NodeTemplateAggregatedList page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (KeyValuePair<string, NodeTemplatesScopedList> 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, NodeTemplatesScopedList>> 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, NodeTemplatesScopedList> 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<NodeTemplateAggregatedList, KeyValuePair<string, NodeTemplatesScopedList>> AggregatedList(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)Retrieves an aggregated list of node templates. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
pageToken | 
        stringThe token returned from the previous request. A value of   | 
      
pageSize | 
        intThe 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 | 
PagedEnumerableNodeTemplateAggregatedListKeyValuePairstringNodeTemplatesScopedList | 
        A pageable sequence of KeyValuePair<TKey, TValue> resources.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
PagedEnumerable<NodeTemplateAggregatedList, KeyValuePair<string, NodeTemplatesScopedList>> response = nodeTemplatesClient.AggregatedList(project);
// Iterate over all response items, lazily performing RPCs as required
foreach (KeyValuePair<string, NodeTemplatesScopedList> 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 (NodeTemplateAggregatedList page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (KeyValuePair<string, NodeTemplatesScopedList> 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, NodeTemplatesScopedList>> 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, NodeTemplatesScopedList> 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(AggregatedListNodeTemplatesRequest, CallSettings)
public virtual PagedAsyncEnumerable<NodeTemplateAggregatedList, KeyValuePair<string, NodeTemplatesScopedList>> AggregatedListAsync(AggregatedListNodeTemplatesRequest request, CallSettings callSettings = null)Retrieves an aggregated list of node templates. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        AggregatedListNodeTemplatesRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
PagedAsyncEnumerableNodeTemplateAggregatedListKeyValuePairstringNodeTemplatesScopedList | 
        A pageable asynchronous sequence of KeyValuePair<TKey, TValue> resources.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
AggregatedListNodeTemplatesRequest request = new AggregatedListNodeTemplatesRequest
{
    OrderBy = "",
    Project = "",
    ServiceProjectNumber = 0L,
    Filter = "",
    IncludeAllScopes = false,
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<NodeTemplateAggregatedList, KeyValuePair<string, NodeTemplatesScopedList>> response = nodeTemplatesClient.AggregatedListAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((KeyValuePair<string, NodeTemplatesScopedList> 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((NodeTemplateAggregatedList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (KeyValuePair<string, NodeTemplatesScopedList> 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, NodeTemplatesScopedList>> 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, NodeTemplatesScopedList> 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<NodeTemplateAggregatedList, KeyValuePair<string, NodeTemplatesScopedList>> AggregatedListAsync(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)Retrieves an aggregated list of node templates. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
pageToken | 
        stringThe token returned from the previous request. A value of   | 
      
pageSize | 
        intThe 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 | 
PagedAsyncEnumerableNodeTemplateAggregatedListKeyValuePairstringNodeTemplatesScopedList | 
        A pageable asynchronous sequence of KeyValuePair<TKey, TValue> resources.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
PagedAsyncEnumerable<NodeTemplateAggregatedList, KeyValuePair<string, NodeTemplatesScopedList>> response = nodeTemplatesClient.AggregatedListAsync(project);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((KeyValuePair<string, NodeTemplatesScopedList> 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((NodeTemplateAggregatedList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (KeyValuePair<string, NodeTemplatesScopedList> 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, NodeTemplatesScopedList>> 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, NodeTemplatesScopedList> 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 NodeTemplatesClient Create()Synchronously creates a NodeTemplatesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use NodeTemplatesClientBuilder.
| Returns | |
|---|---|
| Type | Description | 
NodeTemplatesClient | 
        The created NodeTemplatesClient.  | 
      
CreateAsync(CancellationToken)
public static Task<NodeTemplatesClient> CreateAsync(CancellationToken cancellationToken = default)Asynchronously creates a NodeTemplatesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use NodeTemplatesClientBuilder.
| Parameter | |
|---|---|
| Name | Description | 
cancellationToken | 
        CancellationTokenThe CancellationToken to use while creating the client.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskNodeTemplatesClient | 
        The task representing the created NodeTemplatesClient.  | 
      
Delete(DeleteNodeTemplateRequest, CallSettings)
public virtual Operation<Operation, Operation> Delete(DeleteNodeTemplateRequest request, CallSettings callSettings = null)Deletes the specified NodeTemplate resource.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        DeleteNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
OperationOperationOperation | 
        The RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
DeleteNodeTemplateRequest request = new DeleteNodeTemplateRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    NodeTemplate = "",
};
// Make the request
lro::Operation<Operation, Operation> response = nodeTemplatesClient.Delete(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = nodeTemplatesClient.PollOnceDelete(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
Delete(string, string, string, CallSettings)
public virtual Operation<Operation, Operation> Delete(string project, string region, string nodeTemplate, CallSettings callSettings = null)Deletes the specified NodeTemplate resource.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
nodeTemplate | 
        stringName of the NodeTemplate resource to delete.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
OperationOperationOperation | 
        The RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string nodeTemplate = "";
// Make the request
lro::Operation<Operation, Operation> response = nodeTemplatesClient.Delete(project, region, nodeTemplate);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = nodeTemplatesClient.PollOnceDelete(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(DeleteNodeTemplateRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteNodeTemplateRequest request, CallSettings callSettings = null)Deletes the specified NodeTemplate resource.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        DeleteNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskOperationOperationOperation | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
DeleteNodeTemplateRequest request = new DeleteNodeTemplateRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    NodeTemplate = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await nodeTemplatesClient.DeleteAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await nodeTemplatesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(DeleteNodeTemplateRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteNodeTemplateRequest request, CancellationToken cancellationToken)Deletes the specified NodeTemplate resource.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        DeleteNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
cancellationToken | 
        CancellationTokenA CancellationToken to use for this RPC.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskOperationOperationOperation | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
DeleteNodeTemplateRequest request = new DeleteNodeTemplateRequest
{
    RequestId = "",
    Region = "",
    Project = "",
    NodeTemplate = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await nodeTemplatesClient.DeleteAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await nodeTemplatesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(string, string, string, CallSettings)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string region, string nodeTemplate, CallSettings callSettings = null)Deletes the specified NodeTemplate resource.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
nodeTemplate | 
        stringName of the NodeTemplate resource to delete.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskOperationOperationOperation | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string nodeTemplate = "";
// Make the request
lro::Operation<Operation, Operation> response = await nodeTemplatesClient.DeleteAsync(project, region, nodeTemplate);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await nodeTemplatesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(string, string, string, CancellationToken)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string region, string nodeTemplate, CancellationToken cancellationToken)Deletes the specified NodeTemplate resource.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
nodeTemplate | 
        stringName of the NodeTemplate resource to delete.  | 
      
cancellationToken | 
        CancellationTokenA CancellationToken to use for this RPC.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskOperationOperationOperation | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string nodeTemplate = "";
// Make the request
lro::Operation<Operation, Operation> response = await nodeTemplatesClient.DeleteAsync(project, region, nodeTemplate);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await nodeTemplatesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
Get(GetNodeTemplateRequest, CallSettings)
public virtual NodeTemplate Get(GetNodeTemplateRequest request, CallSettings callSettings = null)Returns the specified node template.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        GetNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
NodeTemplate | 
        The RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
GetNodeTemplateRequest request = new GetNodeTemplateRequest
{
    Region = "",
    Project = "",
    NodeTemplate = "",
};
// Make the request
NodeTemplate response = nodeTemplatesClient.Get(request);
Get(string, string, string, CallSettings)
public virtual NodeTemplate Get(string project, string region, string nodeTemplate, CallSettings callSettings = null)Returns the specified node template.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
nodeTemplate | 
        stringName of the node template to return.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
NodeTemplate | 
        The RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string nodeTemplate = "";
// Make the request
NodeTemplate response = nodeTemplatesClient.Get(project, region, nodeTemplate);
GetAsync(GetNodeTemplateRequest, CallSettings)
public virtual Task<NodeTemplate> GetAsync(GetNodeTemplateRequest request, CallSettings callSettings = null)Returns the specified node template.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        GetNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskNodeTemplate | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
GetNodeTemplateRequest request = new GetNodeTemplateRequest
{
    Region = "",
    Project = "",
    NodeTemplate = "",
};
// Make the request
NodeTemplate response = await nodeTemplatesClient.GetAsync(request);
GetAsync(GetNodeTemplateRequest, CancellationToken)
public virtual Task<NodeTemplate> GetAsync(GetNodeTemplateRequest request, CancellationToken cancellationToken)Returns the specified node template.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        GetNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
cancellationToken | 
        CancellationTokenA CancellationToken to use for this RPC.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskNodeTemplate | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
GetNodeTemplateRequest request = new GetNodeTemplateRequest
{
    Region = "",
    Project = "",
    NodeTemplate = "",
};
// Make the request
NodeTemplate response = await nodeTemplatesClient.GetAsync(request);
GetAsync(string, string, string, CallSettings)
public virtual Task<NodeTemplate> GetAsync(string project, string region, string nodeTemplate, CallSettings callSettings = null)Returns the specified node template.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
nodeTemplate | 
        stringName of the node template to return.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskNodeTemplate | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string nodeTemplate = "";
// Make the request
NodeTemplate response = await nodeTemplatesClient.GetAsync(project, region, nodeTemplate);
GetAsync(string, string, string, CancellationToken)
public virtual Task<NodeTemplate> GetAsync(string project, string region, string nodeTemplate, CancellationToken cancellationToken)Returns the specified node template.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
nodeTemplate | 
        stringName of the node template to return.  | 
      
cancellationToken | 
        CancellationTokenA CancellationToken to use for this RPC.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskNodeTemplate | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string nodeTemplate = "";
// Make the request
NodeTemplate response = await nodeTemplatesClient.GetAsync(project, region, nodeTemplate);
GetIamPolicy(GetIamPolicyNodeTemplateRequest, CallSettings)
public virtual Policy GetIamPolicy(GetIamPolicyNodeTemplateRequest request, CallSettings callSettings = null)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        GetIamPolicyNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
Policy | 
        The RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
GetIamPolicyNodeTemplateRequest request = new GetIamPolicyNodeTemplateRequest
{
    Region = "",
    Resource = "",
    Project = "",
    OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = nodeTemplatesClient.GetIamPolicy(request);
GetIamPolicy(string, string, string, CallSettings)
public virtual Policy GetIamPolicy(string project, string region, string resource, CallSettings callSettings = null)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
resource | 
        stringName or id of the resource for this request.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
Policy | 
        The RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
// Make the request
Policy response = nodeTemplatesClient.GetIamPolicy(project, region, resource);
GetIamPolicyAsync(GetIamPolicyNodeTemplateRequest, CallSettings)
public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyNodeTemplateRequest request, CallSettings callSettings = null)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        GetIamPolicyNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskPolicy | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyNodeTemplateRequest request = new GetIamPolicyNodeTemplateRequest
{
    Region = "",
    Resource = "",
    Project = "",
    OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = await nodeTemplatesClient.GetIamPolicyAsync(request);
GetIamPolicyAsync(GetIamPolicyNodeTemplateRequest, CancellationToken)
public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyNodeTemplateRequest request, CancellationToken cancellationToken)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        GetIamPolicyNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
cancellationToken | 
        CancellationTokenA CancellationToken to use for this RPC.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskPolicy | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyNodeTemplateRequest request = new GetIamPolicyNodeTemplateRequest
{
    Region = "",
    Resource = "",
    Project = "",
    OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = await nodeTemplatesClient.GetIamPolicyAsync(request);
GetIamPolicyAsync(string, string, string, CallSettings)
public virtual Task<Policy> GetIamPolicyAsync(string project, string region, string resource, CallSettings callSettings = null)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
resource | 
        stringName or id of the resource for this request.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskPolicy | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
// Make the request
Policy response = await nodeTemplatesClient.GetIamPolicyAsync(project, region, resource);
GetIamPolicyAsync(string, string, string, CancellationToken)
public virtual Task<Policy> GetIamPolicyAsync(string project, string region, string resource, CancellationToken cancellationToken)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
resource | 
        stringName or id of the resource for this request.  | 
      
cancellationToken | 
        CancellationTokenA CancellationToken to use for this RPC.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskPolicy | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
// Make the request
Policy response = await nodeTemplatesClient.GetIamPolicyAsync(project, region, resource);
Insert(InsertNodeTemplateRequest, CallSettings)
public virtual Operation<Operation, Operation> Insert(InsertNodeTemplateRequest request, CallSettings callSettings = null)Creates a NodeTemplate resource in the specified project using the data included in the request.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        InsertNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
OperationOperationOperation | 
        The RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
InsertNodeTemplateRequest request = new InsertNodeTemplateRequest
{
    RequestId = "",
    NodeTemplateResource = new NodeTemplate(),
    Region = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = nodeTemplatesClient.Insert(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = nodeTemplatesClient.PollOnceInsert(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
Insert(string, string, NodeTemplate, CallSettings)
public virtual Operation<Operation, Operation> Insert(string project, string region, NodeTemplate nodeTemplateResource, CallSettings callSettings = null)Creates a NodeTemplate resource in the specified project using the data included in the request.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
nodeTemplateResource | 
        NodeTemplateThe body resource for this request  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
OperationOperationOperation | 
        The RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
NodeTemplate nodeTemplateResource = new NodeTemplate();
// Make the request
lro::Operation<Operation, Operation> response = nodeTemplatesClient.Insert(project, region, nodeTemplateResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = nodeTemplatesClient.PollOnceInsert(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(InsertNodeTemplateRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertNodeTemplateRequest request, CallSettings callSettings = null)Creates a NodeTemplate resource in the specified project using the data included in the request.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        InsertNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskOperationOperationOperation | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
InsertNodeTemplateRequest request = new InsertNodeTemplateRequest
{
    RequestId = "",
    NodeTemplateResource = new NodeTemplate(),
    Region = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await nodeTemplatesClient.InsertAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await nodeTemplatesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(InsertNodeTemplateRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertNodeTemplateRequest request, CancellationToken cancellationToken)Creates a NodeTemplate resource in the specified project using the data included in the request.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        InsertNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
cancellationToken | 
        CancellationTokenA CancellationToken to use for this RPC.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskOperationOperationOperation | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
InsertNodeTemplateRequest request = new InsertNodeTemplateRequest
{
    RequestId = "",
    NodeTemplateResource = new NodeTemplate(),
    Region = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await nodeTemplatesClient.InsertAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await nodeTemplatesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(string, string, NodeTemplate, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string region, NodeTemplate nodeTemplateResource, CallSettings callSettings = null)Creates a NodeTemplate resource in the specified project using the data included in the request.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
nodeTemplateResource | 
        NodeTemplateThe body resource for this request  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskOperationOperationOperation | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
NodeTemplate nodeTemplateResource = new NodeTemplate();
// Make the request
lro::Operation<Operation, Operation> response = await nodeTemplatesClient.InsertAsync(project, region, nodeTemplateResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await nodeTemplatesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(string, string, NodeTemplate, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string region, NodeTemplate nodeTemplateResource, CancellationToken cancellationToken)Creates a NodeTemplate resource in the specified project using the data included in the request.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
nodeTemplateResource | 
        NodeTemplateThe body resource for this request  | 
      
cancellationToken | 
        CancellationTokenA CancellationToken to use for this RPC.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskOperationOperationOperation | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
NodeTemplate nodeTemplateResource = new NodeTemplate();
// Make the request
lro::Operation<Operation, Operation> response = await nodeTemplatesClient.InsertAsync(project, region, nodeTemplateResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;
// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await nodeTemplatesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
List(ListNodeTemplatesRequest, CallSettings)
public virtual PagedEnumerable<NodeTemplateList, NodeTemplate> List(ListNodeTemplatesRequest request, CallSettings callSettings = null)Retrieves a list of node templates available to the specified project.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        ListNodeTemplatesRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
PagedEnumerableNodeTemplateListNodeTemplate | 
        A pageable sequence of NodeTemplate resources.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
ListNodeTemplatesRequest request = new ListNodeTemplatesRequest
{
    Region = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<NodeTemplateList, NodeTemplate> response = nodeTemplatesClient.List(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (NodeTemplate 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 (NodeTemplateList page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NodeTemplate 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<NodeTemplate> 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 (NodeTemplate 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<NodeTemplateList, NodeTemplate> List(string project, string region, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)Retrieves a list of node templates available to the specified project.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
pageToken | 
        stringThe token returned from the previous request. A value of   | 
      
pageSize | 
        intThe 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 | 
PagedEnumerableNodeTemplateListNodeTemplate | 
        A pageable sequence of NodeTemplate resources.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
PagedEnumerable<NodeTemplateList, NodeTemplate> response = nodeTemplatesClient.List(project, region);
// Iterate over all response items, lazily performing RPCs as required
foreach (NodeTemplate 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 (NodeTemplateList page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NodeTemplate 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<NodeTemplate> 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 (NodeTemplate 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(ListNodeTemplatesRequest, CallSettings)
public virtual PagedAsyncEnumerable<NodeTemplateList, NodeTemplate> ListAsync(ListNodeTemplatesRequest request, CallSettings callSettings = null)Retrieves a list of node templates available to the specified project.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        ListNodeTemplatesRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
PagedAsyncEnumerableNodeTemplateListNodeTemplate | 
        A pageable asynchronous sequence of NodeTemplate resources.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
ListNodeTemplatesRequest request = new ListNodeTemplatesRequest
{
    Region = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<NodeTemplateList, NodeTemplate> response = nodeTemplatesClient.ListAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((NodeTemplate 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((NodeTemplateList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NodeTemplate 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<NodeTemplate> 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 (NodeTemplate 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<NodeTemplateList, NodeTemplate> ListAsync(string project, string region, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)Retrieves a list of node templates available to the specified project.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
pageToken | 
        stringThe token returned from the previous request. A value of   | 
      
pageSize | 
        intThe 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 | 
PagedAsyncEnumerableNodeTemplateListNodeTemplate | 
        A pageable asynchronous sequence of NodeTemplate resources.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
PagedAsyncEnumerable<NodeTemplateList, NodeTemplate> response = nodeTemplatesClient.ListAsync(project, region);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((NodeTemplate 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((NodeTemplateList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NodeTemplate 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<NodeTemplate> 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 (NodeTemplate 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;
PollOnceDelete(string, CallSettings)
public virtual Operation<Operation, Operation> PollOnceDelete(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of Delete.
| Parameters | |
|---|---|
| Name | Description | 
operationName | 
        stringThe name of a previously invoked operation. Must not be   | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
OperationOperationOperation | 
        The result of polling the operation.  | 
      
PollOnceDeleteAsync(string, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceDeleteAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of Delete
.
| Parameters | |
|---|---|
| Name | Description | 
operationName | 
        stringThe name of a previously invoked operation. Must not be   | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskOperationOperationOperation | 
        A task representing the result of polling the operation.  | 
      
PollOnceInsert(string, CallSettings)
public virtual Operation<Operation, Operation> PollOnceInsert(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of Insert.
| Parameters | |
|---|---|
| Name | Description | 
operationName | 
        stringThe name of a previously invoked operation. Must not be   | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
OperationOperationOperation | 
        The result of polling the operation.  | 
      
PollOnceInsertAsync(string, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceInsertAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of Insert
.
| Parameters | |
|---|---|
| Name | Description | 
operationName | 
        stringThe name of a previously invoked operation. Must not be   | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskOperationOperationOperation | 
        A task representing the result of polling the operation.  | 
      
SetIamPolicy(SetIamPolicyNodeTemplateRequest, CallSettings)
public virtual Policy SetIamPolicy(SetIamPolicyNodeTemplateRequest request, CallSettings callSettings = null)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        SetIamPolicyNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
Policy | 
        The RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
SetIamPolicyNodeTemplateRequest request = new SetIamPolicyNodeTemplateRequest
{
    Region = "",
    Resource = "",
    Project = "",
    RegionSetPolicyRequestResource = new RegionSetPolicyRequest(),
};
// Make the request
Policy response = nodeTemplatesClient.SetIamPolicy(request);
SetIamPolicy(string, string, string, RegionSetPolicyRequest, CallSettings)
public virtual Policy SetIamPolicy(string project, string region, string resource, RegionSetPolicyRequest regionSetPolicyRequestResource, CallSettings callSettings = null)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
resource | 
        stringName or id of the resource for this request.  | 
      
regionSetPolicyRequestResource | 
        RegionSetPolicyRequestThe body resource for this request  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
Policy | 
        The RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
RegionSetPolicyRequest regionSetPolicyRequestResource = new RegionSetPolicyRequest();
// Make the request
Policy response = nodeTemplatesClient.SetIamPolicy(project, region, resource, regionSetPolicyRequestResource);
SetIamPolicyAsync(SetIamPolicyNodeTemplateRequest, CallSettings)
public virtual Task<Policy> SetIamPolicyAsync(SetIamPolicyNodeTemplateRequest request, CallSettings callSettings = null)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        SetIamPolicyNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskPolicy | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyNodeTemplateRequest request = new SetIamPolicyNodeTemplateRequest
{
    Region = "",
    Resource = "",
    Project = "",
    RegionSetPolicyRequestResource = new RegionSetPolicyRequest(),
};
// Make the request
Policy response = await nodeTemplatesClient.SetIamPolicyAsync(request);
SetIamPolicyAsync(SetIamPolicyNodeTemplateRequest, CancellationToken)
public virtual Task<Policy> SetIamPolicyAsync(SetIamPolicyNodeTemplateRequest request, CancellationToken cancellationToken)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        SetIamPolicyNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
cancellationToken | 
        CancellationTokenA CancellationToken to use for this RPC.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskPolicy | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyNodeTemplateRequest request = new SetIamPolicyNodeTemplateRequest
{
    Region = "",
    Resource = "",
    Project = "",
    RegionSetPolicyRequestResource = new RegionSetPolicyRequest(),
};
// Make the request
Policy response = await nodeTemplatesClient.SetIamPolicyAsync(request);
SetIamPolicyAsync(string, string, string, RegionSetPolicyRequest, CallSettings)
public virtual Task<Policy> SetIamPolicyAsync(string project, string region, string resource, RegionSetPolicyRequest regionSetPolicyRequestResource, CallSettings callSettings = null)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
resource | 
        stringName or id of the resource for this request.  | 
      
regionSetPolicyRequestResource | 
        RegionSetPolicyRequestThe body resource for this request  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskPolicy | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
RegionSetPolicyRequest regionSetPolicyRequestResource = new RegionSetPolicyRequest();
// Make the request
Policy response = await nodeTemplatesClient.SetIamPolicyAsync(project, region, resource, regionSetPolicyRequestResource);
SetIamPolicyAsync(string, string, string, RegionSetPolicyRequest, CancellationToken)
public virtual Task<Policy> SetIamPolicyAsync(string project, string region, string resource, RegionSetPolicyRequest regionSetPolicyRequestResource, CancellationToken cancellationToken)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
resource | 
        stringName or id of the resource for this request.  | 
      
regionSetPolicyRequestResource | 
        RegionSetPolicyRequestThe body resource for this request  | 
      
cancellationToken | 
        CancellationTokenA CancellationToken to use for this RPC.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskPolicy | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
RegionSetPolicyRequest regionSetPolicyRequestResource = new RegionSetPolicyRequest();
// Make the request
Policy response = await nodeTemplatesClient.SetIamPolicyAsync(project, region, resource, regionSetPolicyRequestResource);
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.
TestIamPermissions(TestIamPermissionsNodeTemplateRequest, CallSettings)
public virtual TestPermissionsResponse TestIamPermissions(TestIamPermissionsNodeTemplateRequest request, CallSettings callSettings = null)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        TestIamPermissionsNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TestPermissionsResponse | 
        The RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
TestIamPermissionsNodeTemplateRequest request = new TestIamPermissionsNodeTemplateRequest
{
    Region = "",
    Resource = "",
    Project = "",
    TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = nodeTemplatesClient.TestIamPermissions(request);
TestIamPermissions(string, string, string, TestPermissionsRequest, CallSettings)
public virtual TestPermissionsResponse TestIamPermissions(string project, string region, string resource, TestPermissionsRequest testPermissionsRequestResource, CallSettings callSettings = null)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
resource | 
        stringName or id of the resource for this request.  | 
      
testPermissionsRequestResource | 
        TestPermissionsRequestThe body resource for this request  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TestPermissionsResponse | 
        The RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = nodeTemplatesClient.TestIamPermissions(project, region, resource, testPermissionsRequestResource);
TestIamPermissionsAsync(TestIamPermissionsNodeTemplateRequest, CallSettings)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(TestIamPermissionsNodeTemplateRequest request, CallSettings callSettings = null)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        TestIamPermissionsNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskTestPermissionsResponse | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsNodeTemplateRequest request = new TestIamPermissionsNodeTemplateRequest
{
    Region = "",
    Resource = "",
    Project = "",
    TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = await nodeTemplatesClient.TestIamPermissionsAsync(request);
TestIamPermissionsAsync(TestIamPermissionsNodeTemplateRequest, CancellationToken)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(TestIamPermissionsNodeTemplateRequest request, CancellationToken cancellationToken)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description | 
request | 
        TestIamPermissionsNodeTemplateRequestThe request object containing all of the parameters for the API call.  | 
      
cancellationToken | 
        CancellationTokenA CancellationToken to use for this RPC.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskTestPermissionsResponse | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsNodeTemplateRequest request = new TestIamPermissionsNodeTemplateRequest
{
    Region = "",
    Resource = "",
    Project = "",
    TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = await nodeTemplatesClient.TestIamPermissionsAsync(request);
TestIamPermissionsAsync(string, string, string, TestPermissionsRequest, CallSettings)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(string project, string region, string resource, TestPermissionsRequest testPermissionsRequestResource, CallSettings callSettings = null)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
resource | 
        stringName or id of the resource for this request.  | 
      
testPermissionsRequestResource | 
        TestPermissionsRequestThe body resource for this request  | 
      
callSettings | 
        CallSettingsIf not null, applies overrides to this RPC call.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskTestPermissionsResponse | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = await nodeTemplatesClient.TestIamPermissionsAsync(project, region, resource, testPermissionsRequestResource);
TestIamPermissionsAsync(string, string, string, TestPermissionsRequest, CancellationToken)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(string project, string region, string resource, TestPermissionsRequest testPermissionsRequestResource, CancellationToken cancellationToken)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description | 
project | 
        stringProject ID for this request.  | 
      
region | 
        stringThe name of the region for this request.  | 
      
resource | 
        stringName or id of the resource for this request.  | 
      
testPermissionsRequestResource | 
        TestPermissionsRequestThe body resource for this request  | 
      
cancellationToken | 
        CancellationTokenA CancellationToken to use for this RPC.  | 
      
| Returns | |
|---|---|
| Type | Description | 
TaskTestPermissionsResponse | 
        A Task containing the RPC response.  | 
      
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = await nodeTemplatesClient.TestIamPermissionsAsync(project, region, resource, testPermissionsRequestResource);