public abstract class InstanceGroupManagerResizeRequestsClient
Reference documentation and code samples for the Compute Engine v1 API class InstanceGroupManagerResizeRequestsClient.
InstanceGroupManagerResizeRequests client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Compute.V1Assembly
Google.Cloud.Compute.V1.dll
Remarks
The InstanceGroupManagerResizeRequests API.
Properties
CancelOperationsClient
public virtual OperationsClient CancelOperationsClient { get; }
The long-running operations client for Cancel
.
Property Value | |
---|---|
Type | Description |
OperationsClient |
DefaultEndpoint
public static string DefaultEndpoint { get; }
The default endpoint for the InstanceGroupManagerResizeRequests 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 InstanceGroupManagerResizeRequests scopes.
Property Value | |
---|---|
Type | Description |
IReadOnlyListstring |
The default InstanceGroupManagerResizeRequests scopes are:
DeleteOperationsClient
public virtual OperationsClient DeleteOperationsClient { get; }
The long-running operations client for Delete
.
Property Value | |
---|---|
Type | Description |
OperationsClient |
GrpcClient
public virtual InstanceGroupManagerResizeRequests.InstanceGroupManagerResizeRequestsClient GrpcClient { get; }
The underlying gRPC InstanceGroupManagerResizeRequests client
Property Value | |
---|---|
Type | Description |
InstanceGroupManagerResizeRequestsInstanceGroupManagerResizeRequestsClient |
InsertOperationsClient
public virtual OperationsClient InsertOperationsClient { get; }
The long-running operations client for Insert
.
Property Value | |
---|---|
Type | Description |
OperationsClient |
ServiceMetadata
public static ServiceMetadata ServiceMetadata { get; }
The service metadata associated with this client type.
Property Value | |
---|---|
Type | Description |
ServiceMetadata |
Methods
Cancel(CancelInstanceGroupManagerResizeRequestRequest, CallSettings)
public virtual Operation<Operation, Operation> Cancel(CancelInstanceGroupManagerResizeRequestRequest request, CallSettings callSettings = null)
Cancels the specified resize request and removes it from the queue. Cancelled resize request does no longer wait for the resources to be provisioned. Cancel is only possible for requests that are accepted in the queue.
Parameters | |
---|---|
Name | Description |
request |
CancelInstanceGroupManagerResizeRequestRequest 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 |
OperationOperationOperation |
The RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = InstanceGroupManagerResizeRequestsClient.Create();
// Initialize request argument(s)
CancelInstanceGroupManagerResizeRequestRequest request = new CancelInstanceGroupManagerResizeRequestRequest
{
Zone = "",
RequestId = "",
ResizeRequest = "",
Project = "",
InstanceGroupManager = "",
};
// Make the request
lro::Operation<Operation, Operation> response = instanceGroupManagerResizeRequestsClient.Cancel(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 = instanceGroupManagerResizeRequestsClient.PollOnceCancel(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;
}
Cancel(string, string, string, string, CallSettings)
public virtual Operation<Operation, Operation> Cancel(string project, string zone, string instanceGroupManager, string resizeRequest, CallSettings callSettings = null)
Cancels the specified resize request and removes it from the queue. Cancelled resize request does no longer wait for the resources to be provisioned. Cancel is only possible for requests that are accepted in the queue.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string The name of the zone where the managed instance group is located. The name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group. The name should conform to RFC1035 or be a resource ID. |
resizeRequest |
string The name of the resize request to cancel. The name should conform to RFC1035 or be a resource ID. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
The RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = InstanceGroupManagerResizeRequestsClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
string resizeRequest = "";
// Make the request
lro::Operation<Operation, Operation> response = instanceGroupManagerResizeRequestsClient.Cancel(project, zone, instanceGroupManager, resizeRequest);
// 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 = instanceGroupManagerResizeRequestsClient.PollOnceCancel(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;
}
CancelAsync(CancelInstanceGroupManagerResizeRequestRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> CancelAsync(CancelInstanceGroupManagerResizeRequestRequest request, CallSettings callSettings = null)
Cancels the specified resize request and removes it from the queue. Cancelled resize request does no longer wait for the resources to be provisioned. Cancel is only possible for requests that are accepted in the queue.
Parameters | |
---|---|
Name | Description |
request |
CancelInstanceGroupManagerResizeRequestRequest 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 |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
CancelInstanceGroupManagerResizeRequestRequest request = new CancelInstanceGroupManagerResizeRequestRequest
{
Zone = "",
RequestId = "",
ResizeRequest = "",
Project = "",
InstanceGroupManager = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await instanceGroupManagerResizeRequestsClient.CancelAsync(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 instanceGroupManagerResizeRequestsClient.PollOnceCancelAsync(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;
}
CancelAsync(CancelInstanceGroupManagerResizeRequestRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> CancelAsync(CancelInstanceGroupManagerResizeRequestRequest request, CancellationToken cancellationToken)
Cancels the specified resize request and removes it from the queue. Cancelled resize request does no longer wait for the resources to be provisioned. Cancel is only possible for requests that are accepted in the queue.
Parameters | |
---|---|
Name | Description |
request |
CancelInstanceGroupManagerResizeRequestRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
CancelInstanceGroupManagerResizeRequestRequest request = new CancelInstanceGroupManagerResizeRequestRequest
{
Zone = "",
RequestId = "",
ResizeRequest = "",
Project = "",
InstanceGroupManager = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await instanceGroupManagerResizeRequestsClient.CancelAsync(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 instanceGroupManagerResizeRequestsClient.PollOnceCancelAsync(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;
}
CancelAsync(string, string, string, string, CallSettings)
public virtual Task<Operation<Operation, Operation>> CancelAsync(string project, string zone, string instanceGroupManager, string resizeRequest, CallSettings callSettings = null)
Cancels the specified resize request and removes it from the queue. Cancelled resize request does no longer wait for the resources to be provisioned. Cancel is only possible for requests that are accepted in the queue.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string The name of the zone where the managed instance group is located. The name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group. The name should conform to RFC1035 or be a resource ID. |
resizeRequest |
string The name of the resize request to cancel. The name should conform to RFC1035 or be a resource ID. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
string resizeRequest = "";
// Make the request
lro::Operation<Operation, Operation> response = await instanceGroupManagerResizeRequestsClient.CancelAsync(project, zone, instanceGroupManager, resizeRequest);
// 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 instanceGroupManagerResizeRequestsClient.PollOnceCancelAsync(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;
}
CancelAsync(string, string, string, string, CancellationToken)
public virtual Task<Operation<Operation, Operation>> CancelAsync(string project, string zone, string instanceGroupManager, string resizeRequest, CancellationToken cancellationToken)
Cancels the specified resize request and removes it from the queue. Cancelled resize request does no longer wait for the resources to be provisioned. Cancel is only possible for requests that are accepted in the queue.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string The name of the zone where the managed instance group is located. The name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group. The name should conform to RFC1035 or be a resource ID. |
resizeRequest |
string The name of the resize request to cancel. The name should conform to RFC1035 or be a resource ID. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
string resizeRequest = "";
// Make the request
lro::Operation<Operation, Operation> response = await instanceGroupManagerResizeRequestsClient.CancelAsync(project, zone, instanceGroupManager, resizeRequest);
// 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 instanceGroupManagerResizeRequestsClient.PollOnceCancelAsync(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;
}
Create()
public static InstanceGroupManagerResizeRequestsClient Create()
Synchronously creates a InstanceGroupManagerResizeRequestsClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use InstanceGroupManagerResizeRequestsClientBuilder.
Returns | |
---|---|
Type | Description |
InstanceGroupManagerResizeRequestsClient |
The created InstanceGroupManagerResizeRequestsClient. |
CreateAsync(CancellationToken)
public static Task<InstanceGroupManagerResizeRequestsClient> CreateAsync(CancellationToken cancellationToken = default)
Asynchronously creates a InstanceGroupManagerResizeRequestsClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use InstanceGroupManagerResizeRequestsClientBuilder.
Parameter | |
---|---|
Name | Description |
cancellationToken |
CancellationToken The CancellationToken to use while creating the client. |
Returns | |
---|---|
Type | Description |
TaskInstanceGroupManagerResizeRequestsClient |
The task representing the created InstanceGroupManagerResizeRequestsClient. |
Delete(DeleteInstanceGroupManagerResizeRequestRequest, CallSettings)
public virtual Operation<Operation, Operation> Delete(DeleteInstanceGroupManagerResizeRequestRequest request, CallSettings callSettings = null)
Deletes the specified, inactive resize request. Requests that are still active cannot be deleted. Deleting request does not delete instances that were provisioned previously.
Parameters | |
---|---|
Name | Description |
request |
DeleteInstanceGroupManagerResizeRequestRequest 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 |
OperationOperationOperation |
The RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = InstanceGroupManagerResizeRequestsClient.Create();
// Initialize request argument(s)
DeleteInstanceGroupManagerResizeRequestRequest request = new DeleteInstanceGroupManagerResizeRequestRequest
{
Zone = "",
RequestId = "",
ResizeRequest = "",
Project = "",
InstanceGroupManager = "",
};
// Make the request
lro::Operation<Operation, Operation> response = instanceGroupManagerResizeRequestsClient.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 = instanceGroupManagerResizeRequestsClient.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, string, CallSettings)
public virtual Operation<Operation, Operation> Delete(string project, string zone, string instanceGroupManager, string resizeRequest, CallSettings callSettings = null)
Deletes the specified, inactive resize request. Requests that are still active cannot be deleted. Deleting request does not delete instances that were provisioned previously.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string The name of the zone where the managed instance group is located. The name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group. The name should conform to RFC1035 or be a resource ID. |
resizeRequest |
string The name of the resize request to delete. The name should conform to RFC1035 or be a resource ID. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
The RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = InstanceGroupManagerResizeRequestsClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
string resizeRequest = "";
// Make the request
lro::Operation<Operation, Operation> response = instanceGroupManagerResizeRequestsClient.Delete(project, zone, instanceGroupManager, resizeRequest);
// 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 = instanceGroupManagerResizeRequestsClient.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(DeleteInstanceGroupManagerResizeRequestRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteInstanceGroupManagerResizeRequestRequest request, CallSettings callSettings = null)
Deletes the specified, inactive resize request. Requests that are still active cannot be deleted. Deleting request does not delete instances that were provisioned previously.
Parameters | |
---|---|
Name | Description |
request |
DeleteInstanceGroupManagerResizeRequestRequest 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 |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
DeleteInstanceGroupManagerResizeRequestRequest request = new DeleteInstanceGroupManagerResizeRequestRequest
{
Zone = "",
RequestId = "",
ResizeRequest = "",
Project = "",
InstanceGroupManager = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await instanceGroupManagerResizeRequestsClient.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 instanceGroupManagerResizeRequestsClient.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(DeleteInstanceGroupManagerResizeRequestRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteInstanceGroupManagerResizeRequestRequest request, CancellationToken cancellationToken)
Deletes the specified, inactive resize request. Requests that are still active cannot be deleted. Deleting request does not delete instances that were provisioned previously.
Parameters | |
---|---|
Name | Description |
request |
DeleteInstanceGroupManagerResizeRequestRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
DeleteInstanceGroupManagerResizeRequestRequest request = new DeleteInstanceGroupManagerResizeRequestRequest
{
Zone = "",
RequestId = "",
ResizeRequest = "",
Project = "",
InstanceGroupManager = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await instanceGroupManagerResizeRequestsClient.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 instanceGroupManagerResizeRequestsClient.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, string, CallSettings)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string zone, string instanceGroupManager, string resizeRequest, CallSettings callSettings = null)
Deletes the specified, inactive resize request. Requests that are still active cannot be deleted. Deleting request does not delete instances that were provisioned previously.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string The name of the zone where the managed instance group is located. The name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group. The name should conform to RFC1035 or be a resource ID. |
resizeRequest |
string The name of the resize request to delete. The name should conform to RFC1035 or be a resource ID. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
string resizeRequest = "";
// Make the request
lro::Operation<Operation, Operation> response = await instanceGroupManagerResizeRequestsClient.DeleteAsync(project, zone, instanceGroupManager, resizeRequest);
// 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 instanceGroupManagerResizeRequestsClient.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, string, CancellationToken)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string zone, string instanceGroupManager, string resizeRequest, CancellationToken cancellationToken)
Deletes the specified, inactive resize request. Requests that are still active cannot be deleted. Deleting request does not delete instances that were provisioned previously.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string The name of the zone where the managed instance group is located. The name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group. The name should conform to RFC1035 or be a resource ID. |
resizeRequest |
string The name of the resize request to delete. The name should conform to RFC1035 or be a resource ID. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
string resizeRequest = "";
// Make the request
lro::Operation<Operation, Operation> response = await instanceGroupManagerResizeRequestsClient.DeleteAsync(project, zone, instanceGroupManager, resizeRequest);
// 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 instanceGroupManagerResizeRequestsClient.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(GetInstanceGroupManagerResizeRequestRequest, CallSettings)
public virtual InstanceGroupManagerResizeRequest Get(GetInstanceGroupManagerResizeRequestRequest request, CallSettings callSettings = null)
Returns all of the details about the specified resize request.
Parameters | |
---|---|
Name | Description |
request |
GetInstanceGroupManagerResizeRequestRequest 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 |
InstanceGroupManagerResizeRequest |
The RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = InstanceGroupManagerResizeRequestsClient.Create();
// Initialize request argument(s)
GetInstanceGroupManagerResizeRequestRequest request = new GetInstanceGroupManagerResizeRequestRequest
{
Zone = "",
ResizeRequest = "",
Project = "",
InstanceGroupManager = "",
};
// Make the request
InstanceGroupManagerResizeRequest response = instanceGroupManagerResizeRequestsClient.Get(request);
Get(string, string, string, string, CallSettings)
public virtual InstanceGroupManagerResizeRequest Get(string project, string zone, string instanceGroupManager, string resizeRequest, CallSettings callSettings = null)
Returns all of the details about the specified resize request.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string Name of the href="/compute/docs/regions-zones/#available">zone scoping this request. Name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group. Name should conform to RFC1035 or be a resource ID. |
resizeRequest |
string The name of the resize request. Name should conform to RFC1035 or be a resource ID. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
InstanceGroupManagerResizeRequest |
The RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = InstanceGroupManagerResizeRequestsClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
string resizeRequest = "";
// Make the request
InstanceGroupManagerResizeRequest response = instanceGroupManagerResizeRequestsClient.Get(project, zone, instanceGroupManager, resizeRequest);
GetAsync(GetInstanceGroupManagerResizeRequestRequest, CallSettings)
public virtual Task<InstanceGroupManagerResizeRequest> GetAsync(GetInstanceGroupManagerResizeRequestRequest request, CallSettings callSettings = null)
Returns all of the details about the specified resize request.
Parameters | |
---|---|
Name | Description |
request |
GetInstanceGroupManagerResizeRequestRequest 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 |
TaskInstanceGroupManagerResizeRequest |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
GetInstanceGroupManagerResizeRequestRequest request = new GetInstanceGroupManagerResizeRequestRequest
{
Zone = "",
ResizeRequest = "",
Project = "",
InstanceGroupManager = "",
};
// Make the request
InstanceGroupManagerResizeRequest response = await instanceGroupManagerResizeRequestsClient.GetAsync(request);
GetAsync(GetInstanceGroupManagerResizeRequestRequest, CancellationToken)
public virtual Task<InstanceGroupManagerResizeRequest> GetAsync(GetInstanceGroupManagerResizeRequestRequest request, CancellationToken cancellationToken)
Returns all of the details about the specified resize request.
Parameters | |
---|---|
Name | Description |
request |
GetInstanceGroupManagerResizeRequestRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskInstanceGroupManagerResizeRequest |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
GetInstanceGroupManagerResizeRequestRequest request = new GetInstanceGroupManagerResizeRequestRequest
{
Zone = "",
ResizeRequest = "",
Project = "",
InstanceGroupManager = "",
};
// Make the request
InstanceGroupManagerResizeRequest response = await instanceGroupManagerResizeRequestsClient.GetAsync(request);
GetAsync(string, string, string, string, CallSettings)
public virtual Task<InstanceGroupManagerResizeRequest> GetAsync(string project, string zone, string instanceGroupManager, string resizeRequest, CallSettings callSettings = null)
Returns all of the details about the specified resize request.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string Name of the href="/compute/docs/regions-zones/#available">zone scoping this request. Name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group. Name should conform to RFC1035 or be a resource ID. |
resizeRequest |
string The name of the resize request. Name should conform to RFC1035 or be a resource ID. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskInstanceGroupManagerResizeRequest |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
string resizeRequest = "";
// Make the request
InstanceGroupManagerResizeRequest response = await instanceGroupManagerResizeRequestsClient.GetAsync(project, zone, instanceGroupManager, resizeRequest);
GetAsync(string, string, string, string, CancellationToken)
public virtual Task<InstanceGroupManagerResizeRequest> GetAsync(string project, string zone, string instanceGroupManager, string resizeRequest, CancellationToken cancellationToken)
Returns all of the details about the specified resize request.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string Name of the href="/compute/docs/regions-zones/#available">zone scoping this request. Name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group. Name should conform to RFC1035 or be a resource ID. |
resizeRequest |
string The name of the resize request. Name should conform to RFC1035 or be a resource ID. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskInstanceGroupManagerResizeRequest |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
string resizeRequest = "";
// Make the request
InstanceGroupManagerResizeRequest response = await instanceGroupManagerResizeRequestsClient.GetAsync(project, zone, instanceGroupManager, resizeRequest);
Insert(InsertInstanceGroupManagerResizeRequestRequest, CallSettings)
public virtual Operation<Operation, Operation> Insert(InsertInstanceGroupManagerResizeRequestRequest request, CallSettings callSettings = null)
Creates a new resize request that starts provisioning VMs immediately or queues VM creation.
Parameters | |
---|---|
Name | Description |
request |
InsertInstanceGroupManagerResizeRequestRequest 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 |
OperationOperationOperation |
The RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = InstanceGroupManagerResizeRequestsClient.Create();
// Initialize request argument(s)
InsertInstanceGroupManagerResizeRequestRequest request = new InsertInstanceGroupManagerResizeRequestRequest
{
Zone = "",
RequestId = "",
Project = "",
InstanceGroupManager = "",
InstanceGroupManagerResizeRequestResource = new InstanceGroupManagerResizeRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = instanceGroupManagerResizeRequestsClient.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 = instanceGroupManagerResizeRequestsClient.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, string, InstanceGroupManagerResizeRequest, CallSettings)
public virtual Operation<Operation, Operation> Insert(string project, string zone, string instanceGroupManager, InstanceGroupManagerResizeRequest instanceGroupManagerResizeRequestResource, CallSettings callSettings = null)
Creates a new resize request that starts provisioning VMs immediately or queues VM creation.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string The name of the zone where the managed instance group is located and where the resize request will be created. Name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group to which the resize request will be added. Name should conform to RFC1035 or be a resource ID. |
instanceGroupManagerResizeRequestResource |
InstanceGroupManagerResizeRequest The body resource for this request |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
The RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = InstanceGroupManagerResizeRequestsClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
InstanceGroupManagerResizeRequest instanceGroupManagerResizeRequestResource = new InstanceGroupManagerResizeRequest();
// Make the request
lro::Operation<Operation, Operation> response = instanceGroupManagerResizeRequestsClient.Insert(project, zone, instanceGroupManager, instanceGroupManagerResizeRequestResource);
// 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 = instanceGroupManagerResizeRequestsClient.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(InsertInstanceGroupManagerResizeRequestRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertInstanceGroupManagerResizeRequestRequest request, CallSettings callSettings = null)
Creates a new resize request that starts provisioning VMs immediately or queues VM creation.
Parameters | |
---|---|
Name | Description |
request |
InsertInstanceGroupManagerResizeRequestRequest 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 |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
InsertInstanceGroupManagerResizeRequestRequest request = new InsertInstanceGroupManagerResizeRequestRequest
{
Zone = "",
RequestId = "",
Project = "",
InstanceGroupManager = "",
InstanceGroupManagerResizeRequestResource = new InstanceGroupManagerResizeRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = await instanceGroupManagerResizeRequestsClient.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 instanceGroupManagerResizeRequestsClient.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(InsertInstanceGroupManagerResizeRequestRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertInstanceGroupManagerResizeRequestRequest request, CancellationToken cancellationToken)
Creates a new resize request that starts provisioning VMs immediately or queues VM creation.
Parameters | |
---|---|
Name | Description |
request |
InsertInstanceGroupManagerResizeRequestRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
InsertInstanceGroupManagerResizeRequestRequest request = new InsertInstanceGroupManagerResizeRequestRequest
{
Zone = "",
RequestId = "",
Project = "",
InstanceGroupManager = "",
InstanceGroupManagerResizeRequestResource = new InstanceGroupManagerResizeRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = await instanceGroupManagerResizeRequestsClient.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 instanceGroupManagerResizeRequestsClient.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, string, InstanceGroupManagerResizeRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string zone, string instanceGroupManager, InstanceGroupManagerResizeRequest instanceGroupManagerResizeRequestResource, CallSettings callSettings = null)
Creates a new resize request that starts provisioning VMs immediately or queues VM creation.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string The name of the zone where the managed instance group is located and where the resize request will be created. Name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group to which the resize request will be added. Name should conform to RFC1035 or be a resource ID. |
instanceGroupManagerResizeRequestResource |
InstanceGroupManagerResizeRequest The body resource for this request |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
InstanceGroupManagerResizeRequest instanceGroupManagerResizeRequestResource = new InstanceGroupManagerResizeRequest();
// Make the request
lro::Operation<Operation, Operation> response = await instanceGroupManagerResizeRequestsClient.InsertAsync(project, zone, instanceGroupManager, instanceGroupManagerResizeRequestResource);
// 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 instanceGroupManagerResizeRequestsClient.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, string, InstanceGroupManagerResizeRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string zone, string instanceGroupManager, InstanceGroupManagerResizeRequest instanceGroupManagerResizeRequestResource, CancellationToken cancellationToken)
Creates a new resize request that starts provisioning VMs immediately or queues VM creation.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string The name of the zone where the managed instance group is located and where the resize request will be created. Name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group to which the resize request will be added. Name should conform to RFC1035 or be a resource ID. |
instanceGroupManagerResizeRequestResource |
InstanceGroupManagerResizeRequest The body resource for this request |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
InstanceGroupManagerResizeRequest instanceGroupManagerResizeRequestResource = new InstanceGroupManagerResizeRequest();
// Make the request
lro::Operation<Operation, Operation> response = await instanceGroupManagerResizeRequestsClient.InsertAsync(project, zone, instanceGroupManager, instanceGroupManagerResizeRequestResource);
// 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 instanceGroupManagerResizeRequestsClient.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(ListInstanceGroupManagerResizeRequestsRequest, CallSettings)
public virtual PagedEnumerable<InstanceGroupManagerResizeRequestsListResponse, InstanceGroupManagerResizeRequest> List(ListInstanceGroupManagerResizeRequestsRequest request, CallSettings callSettings = null)
Retrieves a list of resize requests that are contained in the managed instance group.
Parameters | |
---|---|
Name | Description |
request |
ListInstanceGroupManagerResizeRequestsRequest 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 |
PagedEnumerableInstanceGroupManagerResizeRequestsListResponseInstanceGroupManagerResizeRequest |
A pageable sequence of InstanceGroupManagerResizeRequest resources. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = InstanceGroupManagerResizeRequestsClient.Create();
// Initialize request argument(s)
ListInstanceGroupManagerResizeRequestsRequest request = new ListInstanceGroupManagerResizeRequestsRequest
{
Zone = "",
OrderBy = "",
Project = "",
InstanceGroupManager = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<InstanceGroupManagerResizeRequestsListResponse, InstanceGroupManagerResizeRequest> response = instanceGroupManagerResizeRequestsClient.List(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (InstanceGroupManagerResizeRequest 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 (InstanceGroupManagerResizeRequestsListResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (InstanceGroupManagerResizeRequest 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<InstanceGroupManagerResizeRequest> 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 (InstanceGroupManagerResizeRequest 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, string, int?, CallSettings)
public virtual PagedEnumerable<InstanceGroupManagerResizeRequestsListResponse, InstanceGroupManagerResizeRequest> List(string project, string zone, string instanceGroupManager, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Retrieves a list of resize requests that are contained in the managed instance group.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string The name of the zone where the managed instance group is located. The name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group. The name should conform to RFC1035. |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int 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 |
PagedEnumerableInstanceGroupManagerResizeRequestsListResponseInstanceGroupManagerResizeRequest |
A pageable sequence of InstanceGroupManagerResizeRequest resources. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = InstanceGroupManagerResizeRequestsClient.Create();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
// Make the request
PagedEnumerable<InstanceGroupManagerResizeRequestsListResponse, InstanceGroupManagerResizeRequest> response = instanceGroupManagerResizeRequestsClient.List(project, zone, instanceGroupManager);
// Iterate over all response items, lazily performing RPCs as required
foreach (InstanceGroupManagerResizeRequest 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 (InstanceGroupManagerResizeRequestsListResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (InstanceGroupManagerResizeRequest 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<InstanceGroupManagerResizeRequest> 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 (InstanceGroupManagerResizeRequest 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(ListInstanceGroupManagerResizeRequestsRequest, CallSettings)
public virtual PagedAsyncEnumerable<InstanceGroupManagerResizeRequestsListResponse, InstanceGroupManagerResizeRequest> ListAsync(ListInstanceGroupManagerResizeRequestsRequest request, CallSettings callSettings = null)
Retrieves a list of resize requests that are contained in the managed instance group.
Parameters | |
---|---|
Name | Description |
request |
ListInstanceGroupManagerResizeRequestsRequest 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 |
PagedAsyncEnumerableInstanceGroupManagerResizeRequestsListResponseInstanceGroupManagerResizeRequest |
A pageable asynchronous sequence of InstanceGroupManagerResizeRequest resources. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
ListInstanceGroupManagerResizeRequestsRequest request = new ListInstanceGroupManagerResizeRequestsRequest
{
Zone = "",
OrderBy = "",
Project = "",
InstanceGroupManager = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<InstanceGroupManagerResizeRequestsListResponse, InstanceGroupManagerResizeRequest> response = instanceGroupManagerResizeRequestsClient.ListAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((InstanceGroupManagerResizeRequest 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((InstanceGroupManagerResizeRequestsListResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (InstanceGroupManagerResizeRequest 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<InstanceGroupManagerResizeRequest> 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 (InstanceGroupManagerResizeRequest 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, string, int?, CallSettings)
public virtual PagedAsyncEnumerable<InstanceGroupManagerResizeRequestsListResponse, InstanceGroupManagerResizeRequest> ListAsync(string project, string zone, string instanceGroupManager, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Retrieves a list of resize requests that are contained in the managed instance group.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
zone |
string The name of the zone where the managed instance group is located. The name should conform to RFC1035. |
instanceGroupManager |
string The name of the managed instance group. The name should conform to RFC1035. |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int 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 |
PagedAsyncEnumerableInstanceGroupManagerResizeRequestsListResponseInstanceGroupManagerResizeRequest |
A pageable asynchronous sequence of InstanceGroupManagerResizeRequest resources. |
// Create client
InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient = await InstanceGroupManagerResizeRequestsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string zone = "";
string instanceGroupManager = "";
// Make the request
PagedAsyncEnumerable<InstanceGroupManagerResizeRequestsListResponse, InstanceGroupManagerResizeRequest> response = instanceGroupManagerResizeRequestsClient.ListAsync(project, zone, instanceGroupManager);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((InstanceGroupManagerResizeRequest 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((InstanceGroupManagerResizeRequestsListResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (InstanceGroupManagerResizeRequest 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<InstanceGroupManagerResizeRequest> 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 (InstanceGroupManagerResizeRequest 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;
PollOnceCancel(string, CallSettings)
public virtual Operation<Operation, Operation> PollOnceCancel(string operationName, CallSettings callSettings = null)
Poll an operation once, using an operationName
from a previous invocation of Cancel
.
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 |
OperationOperationOperation |
The result of polling the operation. |
PollOnceCancelAsync(string, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceCancelAsync(string operationName, CallSettings callSettings = null)
Asynchronously poll an operation once, using an operationName
from a previous invocation of Cancel
.
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 |
TaskOperationOperationOperation |
A task representing the result of polling the operation. |
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 |
OperationOperationOperation |
The result of polling the operation. |
PollOnceDeleteAsync(string, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceDeleteAsync(string operationName, CallSettings callSettings = null)
Asynchronously poll an operation once, using an operationName
from a previous invocation of Delete
.
Parameters | |
---|---|
Name | Description |
operationName |
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 |
TaskOperationOperationOperation |
A task representing the result of polling the operation. |
PollOnceInsert(string, CallSettings)
public virtual Operation<Operation, Operation> PollOnceInsert(string operationName, CallSettings callSettings = null)
Poll an operation once, using an operationName
from a previous invocation of Insert
.
Parameters | |
---|---|
Name | Description |
operationName |
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 |
OperationOperationOperation |
The result of polling the operation. |
PollOnceInsertAsync(string, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceInsertAsync(string operationName, CallSettings callSettings = null)
Asynchronously poll an operation once, using an operationName
from a previous invocation of Insert
.
Parameters | |
---|---|
Name | Description |
operationName |
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 |
TaskOperationOperationOperation |
A task representing the result of polling the operation. |
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.