Compute Engine v1 API - Class NodeTemplatesClient (2.7.0)

public abstract class NodeTemplatesClient

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

NodeTemplates client wrapper, for convenient use.

Inheritance

object > NodeTemplatesClient

Derived Types

Namespace

GoogleCloudGoogle.Cloud.ComputeV1

Assembly

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
TypeDescription
string

DefaultScopes

public static IReadOnlyList<string> DefaultScopes { get; }

The default NodeTemplates scopes.

Property Value
TypeDescription
IReadOnlyListstring
Remarks

DeleteOperationsClient

public virtual OperationsClient DeleteOperationsClient { get; }

The long-running operations client for Delete.

Property Value
TypeDescription
OperationsClient

GrpcClient

public virtual NodeTemplates.NodeTemplatesClient GrpcClient { get; }

The underlying gRPC NodeTemplates client

Property Value
TypeDescription
NodeTemplatesNodeTemplatesClient

InsertOperationsClient

public virtual OperationsClient InsertOperationsClient { get; }

The long-running operations client for Insert.

Property Value
TypeDescription
OperationsClient

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
TypeDescription
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.

Parameters
NameDescription
requestAggregatedListNodeTemplatesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableNodeTemplateAggregatedListKeyValuePairstringNodeTemplatesScopedList

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

Example
// Create client
NodeTemplatesClient nodeTemplatesClient = NodeTemplatesClient.Create();
// Initialize request argument(s)
AggregatedListNodeTemplatesRequest request = new AggregatedListNodeTemplatesRequest
{
    OrderBy = "",
    Project = "",
    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.

Parameters
NameDescription
projectstring

Project ID for this request.

pageTokenstring

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

pageSizeint

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableNodeTemplateAggregatedListKeyValuePairstringNodeTemplatesScopedList

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

Example
// 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.

Parameters
NameDescription
requestAggregatedListNodeTemplatesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerableNodeTemplateAggregatedListKeyValuePairstringNodeTemplatesScopedList

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

Example
// Create client
NodeTemplatesClient nodeTemplatesClient = await NodeTemplatesClient.CreateAsync();
// Initialize request argument(s)
AggregatedListNodeTemplatesRequest request = new AggregatedListNodeTemplatesRequest
{
    OrderBy = "",
    Project = "",
    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.

Parameters
NameDescription
projectstring

Project ID for this request.

pageTokenstring

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

pageSizeint

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerableNodeTemplateAggregatedListKeyValuePairstringNodeTemplatesScopedList

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

Example
// 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
TypeDescription
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
NameDescription
cancellationTokenCancellationToken

The CancellationToken to use while creating the client.

Returns
TypeDescription
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
NameDescription
requestDeleteNodeTemplateRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationOperationOperation

The RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

nodeTemplatestring

Name of the NodeTemplate resource to delete.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationOperationOperation

The RPC response.

Example
// 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
NameDescription
requestDeleteNodeTemplateRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// 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
NameDescription
requestDeleteNodeTemplateRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

nodeTemplatestring

Name of the NodeTemplate resource to delete.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

nodeTemplatestring

Name of the NodeTemplate resource to delete.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// 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. Gets a list of available node templates by making a list() request.

Parameters
NameDescription
requestGetNodeTemplateRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
NodeTemplate

The RPC response.

Example
// 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. Gets a list of available node templates by making a list() request.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

nodeTemplatestring

Name of the node template to return.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
NodeTemplate

The RPC response.

Example
// 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. Gets a list of available node templates by making a list() request.

Parameters
NameDescription
requestGetNodeTemplateRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskNodeTemplate

A Task containing the RPC response.

Example
// 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. Gets a list of available node templates by making a list() request.

Parameters
NameDescription
requestGetNodeTemplateRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskNodeTemplate

A Task containing the RPC response.

Example
// 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. Gets a list of available node templates by making a list() request.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

nodeTemplatestring

Name of the node template to return.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskNodeTemplate

A Task containing the RPC response.

Example
// 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. Gets a list of available node templates by making a list() request.

Parameters
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

nodeTemplatestring

Name of the node template to return.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskNodeTemplate

A Task containing the RPC response.

Example
// 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
NameDescription
requestGetIamPolicyNodeTemplateRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Policy

The RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

resourcestring

Name or id of the resource for this request.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Policy

The RPC response.

Example
// 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
NameDescription
requestGetIamPolicyNodeTemplateRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskPolicy

A Task containing the RPC response.

Example
// 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
NameDescription
requestGetIamPolicyNodeTemplateRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskPolicy

A Task containing the RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

resourcestring

Name or id of the resource for this request.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskPolicy

A Task containing the RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

resourcestring

Name or id of the resource for this request.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskPolicy

A Task containing the RPC response.

Example
// 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
NameDescription
requestInsertNodeTemplateRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationOperationOperation

The RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

nodeTemplateResourceNodeTemplate

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
OperationOperationOperation

The RPC response.

Example
// 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
NameDescription
requestInsertNodeTemplateRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// 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
NameDescription
requestInsertNodeTemplateRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

nodeTemplateResourceNodeTemplate

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

nodeTemplateResourceNodeTemplate

The body resource for this request

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// 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
NameDescription
requestListNodeTemplatesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableNodeTemplateListNodeTemplate

A pageable sequence of NodeTemplate resources.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

pageTokenstring

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

pageSizeint

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerableNodeTemplateListNodeTemplate

A pageable sequence of NodeTemplate resources.

Example
// 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
NameDescription
requestListNodeTemplatesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerableNodeTemplateListNodeTemplate

A pageable asynchronous sequence of NodeTemplate resources.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

pageTokenstring

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

pageSizeint

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerableNodeTemplateListNodeTemplate

A pageable asynchronous sequence of NodeTemplate resources.

Example
// 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
NameDescription
operationNamestring

The name of a previously invoked operation. Must not be null or empty.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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
NameDescription
operationNamestring

The name of a previously invoked operation. Must not be null or empty.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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
NameDescription
operationNamestring

The name of a previously invoked operation. Must not be null or empty.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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
NameDescription
operationNamestring

The name of a previously invoked operation. Must not be null or empty.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
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
NameDescription
requestSetIamPolicyNodeTemplateRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Policy

The RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

resourcestring

Name or id of the resource for this request.

regionSetPolicyRequestResourceRegionSetPolicyRequest

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Policy

The RPC response.

Example
// 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
NameDescription
requestSetIamPolicyNodeTemplateRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskPolicy

A Task containing the RPC response.

Example
// 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
NameDescription
requestSetIamPolicyNodeTemplateRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskPolicy

A Task containing the RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

resourcestring

Name or id of the resource for this request.

regionSetPolicyRequestResourceRegionSetPolicyRequest

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskPolicy

A Task containing the RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

resourcestring

Name or id of the resource for this request.

regionSetPolicyRequestResourceRegionSetPolicyRequest

The body resource for this request

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskPolicy

A Task containing the RPC response.

Example
// 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
TypeDescription
Task

A task representing the asynchronous shutdown operation.

Remarks

After calling this method, further calls to Create() and CreateAsync(CancellationToken) will create new channels, which could in turn be shut down by another call to this method.

TestIamPermissions(TestIamPermissionsNodeTemplateRequest, CallSettings)

public virtual TestPermissionsResponse TestIamPermissions(TestIamPermissionsNodeTemplateRequest request, CallSettings callSettings = null)

Returns permissions that a caller has on the specified resource.

Parameters
NameDescription
requestTestIamPermissionsNodeTemplateRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TestPermissionsResponse

The RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

resourcestring

Name or id of the resource for this request.

testPermissionsRequestResourceTestPermissionsRequest

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TestPermissionsResponse

The RPC response.

Example
// 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
NameDescription
requestTestIamPermissionsNodeTemplateRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskTestPermissionsResponse

A Task containing the RPC response.

Example
// 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
NameDescription
requestTestIamPermissionsNodeTemplateRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskTestPermissionsResponse

A Task containing the RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

resourcestring

Name or id of the resource for this request.

testPermissionsRequestResourceTestPermissionsRequest

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskTestPermissionsResponse

A Task containing the RPC response.

Example
// 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
NameDescription
projectstring

Project ID for this request.

regionstring

The name of the region for this request.

resourcestring

Name or id of the resource for this request.

testPermissionsRequestResourceTestPermissionsRequest

The body resource for this request

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskTestPermissionsResponse

A Task containing the RPC response.

Example
// 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);