public abstract 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 |
IReadOnlyList<String> |
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 |
NodeTemplates.NodeTemplatesClient |
InsertOperationsClient
public virtual OperationsClient InsertOperationsClient { get; }
The long-running operations client for Insert
.
Property Value | |
---|---|
Type | Description |
OperationsClient |
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 | |
---|---|
Name | Description |
request | AggregatedListNodeTemplatesRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerable<NodeTemplateAggregatedList, KeyValuePair<String, NodeTemplatesScopedList>> | A pageable sequence of KeyValuePair<TKey,TValue> resources. |
// 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, Nullable<Int32>, CallSettings)
public virtual PagedEnumerable<NodeTemplateAggregatedList, KeyValuePair<string, NodeTemplatesScopedList>> AggregatedList(string project, string pageToken = null, int? pageSize = default(int? ), CallSettings callSettings = null)
Retrieves an aggregated list of node templates.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
pageToken | String The token returned from the previous request. A value of |
pageSize | Nullable<Int32> The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerable<NodeTemplateAggregatedList, KeyValuePair<String, NodeTemplatesScopedList>> | 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.
Parameters | |
---|---|
Name | Description |
request | AggregatedListNodeTemplatesRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerable<NodeTemplateAggregatedList, KeyValuePair<String, NodeTemplatesScopedList>> | 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 = "",
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, Nullable<Int32>, CallSettings)
public virtual PagedAsyncEnumerable<NodeTemplateAggregatedList, KeyValuePair<string, NodeTemplatesScopedList>> AggregatedListAsync(string project, string pageToken = null, int? pageSize = default(int? ), CallSettings callSettings = null)
Retrieves an aggregated list of node templates.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
pageToken | String The token returned from the previous request. A value of |
pageSize | Nullable<Int32> The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerable<NodeTemplateAggregatedList, KeyValuePair<String, NodeTemplatesScopedList>> | 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(CancellationToken))
Asynchronously creates a NodeTemplatesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use NodeTemplatesClientBuilder.
Parameter | |
---|---|
Name | Description |
cancellationToken | CancellationToken The CancellationToken to use while creating the client. |
Returns | |
---|---|
Type | Description |
Task<NodeTemplatesClient> | 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 | DeleteNodeTemplateRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Operation<Operation, Operation> | 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 | String Project ID for this request. |
region | String The name of the region for this request. |
nodeTemplate | String Name of the NodeTemplate resource to delete. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Operation<Operation, Operation> | 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 | DeleteNodeTemplateRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | 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 | DeleteNodeTemplateRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | 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 | String Project ID for this request. |
region | String The name of the region for this request. |
nodeTemplate | String Name of the NodeTemplate resource to delete. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | 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 | String Project ID for this request. |
region | String The name of the region for this request. |
nodeTemplate | String Name of the NodeTemplate resource to delete. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | 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. Gets a list of available node templates by making a list() request.
Parameters | |
---|---|
Name | Description |
request | GetNodeTemplateRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
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. Gets a list of available node templates by making a list() request.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String The name of the region for this request. |
nodeTemplate | String Name of the node template to return. |
callSettings | CallSettings If 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. Gets a list of available node templates by making a list() request.
Parameters | |
---|---|
Name | Description |
request | GetNodeTemplateRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<NodeTemplate> | 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. Gets a list of available node templates by making a list() request.
Parameters | |
---|---|
Name | Description |
request | GetNodeTemplateRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<NodeTemplate> | 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. Gets a list of available node templates by making a list() request.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String The name of the region for this request. |
nodeTemplate | String Name of the node template to return. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<NodeTemplate> | 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. Gets a list of available node templates by making a list() request.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String The name of the region for this request. |
nodeTemplate | String Name of the node template to return. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<NodeTemplate> | 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 | GetIamPolicyNodeTemplateRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
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 | String Project ID for this request. |
region | String The name of the region for this request. |
resource | String Name or id of the resource for this request. |
callSettings | CallSettings If 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 | GetIamPolicyNodeTemplateRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Policy> | 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 | GetIamPolicyNodeTemplateRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Policy> | 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 | String Project ID for this request. |
region | String The name of the region for this request. |
resource | String Name or id of the resource for this request. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Policy> | 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 | String Project ID for this request. |
region | String The name of the region for this request. |
resource | String Name or id of the resource for this request. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Policy> | 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 | InsertNodeTemplateRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Operation<Operation, Operation> | 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 | String Project ID for this request. |
region | String The name of the region for this request. |
nodeTemplateResource | NodeTemplate The body resource for this request |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Operation<Operation, Operation> | 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 | InsertNodeTemplateRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | 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 | InsertNodeTemplateRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | 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 | String Project ID for this request. |
region | String The name of the region for this request. |
nodeTemplateResource | NodeTemplate The body resource for this request |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | 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 | String Project ID for this request. |
region | String The name of the region for this request. |
nodeTemplateResource | NodeTemplate The body resource for this request |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | 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 | ListNodeTemplatesRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerable<NodeTemplateList, NodeTemplate> | 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, Nullable<Int32>, CallSettings)
public virtual PagedEnumerable<NodeTemplateList, NodeTemplate> List(string project, string region, string pageToken = null, int? pageSize = default(int? ), CallSettings callSettings = null)
Retrieves a list of node templates available to the specified project.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String The name of the region for this request. |
pageToken | String The token returned from the previous request. A value of |
pageSize | Nullable<Int32> The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerable<NodeTemplateList, NodeTemplate> | 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 | ListNodeTemplatesRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerable<NodeTemplateList, NodeTemplate> | 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, Nullable<Int32>, CallSettings)
public virtual PagedAsyncEnumerable<NodeTemplateList, NodeTemplate> ListAsync(string project, string region, string pageToken = null, int? pageSize = default(int? ), CallSettings callSettings = null)
Retrieves a list of node templates available to the specified project.
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
region | String The name of the region for this request. |
pageToken | String The token returned from the previous request. A value of |
pageSize | Nullable<Int32> The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerable<NodeTemplateList, NodeTemplate> | 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 | String The name of a previously invoked operation. Must not be |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Operation<Operation, Operation> | 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 | String The name of a previously invoked operation. Must not be |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | 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 | String The name of a previously invoked operation. Must not be |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Operation<Operation, Operation> | 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 | String The name of a previously invoked operation. Must not be |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Operation<Operation, Operation>> | 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 | SetIamPolicyNodeTemplateRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
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 | String Project ID for this request. |
region | String The name of the region for this request. |
resource | String Name or id of the resource for this request. |
regionSetPolicyRequestResource | RegionSetPolicyRequest The body resource for this request |
callSettings | CallSettings If 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 | SetIamPolicyNodeTemplateRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Policy> | 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 | SetIamPolicyNodeTemplateRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Policy> | 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 | String Project ID for this request. |
region | String The name of the region for this request. |
resource | String Name or id of the resource for this request. |
regionSetPolicyRequestResource | RegionSetPolicyRequest The body resource for this request |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<Policy> | 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 | String Project ID for this request. |
region | String The name of the region for this request. |
resource | String Name or id of the resource for this request. |
regionSetPolicyRequestResource | RegionSetPolicyRequest The body resource for this request |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<Policy> | 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 | TestIamPermissionsNodeTemplateRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
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 | String Project ID for this request. |
region | String The name of the region for this request. |
resource | String Name or id of the resource for this request. |
testPermissionsRequestResource | TestPermissionsRequest The body resource for this request |
callSettings | CallSettings If 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 | TestIamPermissionsNodeTemplateRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<TestPermissionsResponse> | 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 | TestIamPermissionsNodeTemplateRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<TestPermissionsResponse> | 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 | String Project ID for this request. |
region | String The name of the region for this request. |
resource | String Name or id of the resource for this request. |
testPermissionsRequestResource | TestPermissionsRequest The body resource for this request |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
Task<TestPermissionsResponse> | 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 | String Project ID for this request. |
region | String The name of the region for this request. |
resource | String Name or id of the resource for this request. |
testPermissionsRequestResource | TestPermissionsRequest The body resource for this request |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
Task<TestPermissionsResponse> | 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);