CloudAutoScaleProviderDeleteGroupAsync Method |
This API is preliminary and subject to change.
Remove and delete a scaling group.
Namespace: net.openstack.Providers.RackspaceAssembly: openstacknet (in openstacknet.dll) Version: 1.7.7+Branch.master.Sha.25d803f397c8693c2c13777ef6675f796f520f2c
Syntax public Task DeleteGroupAsync(
ScalingGroupId groupId,
Nullable<bool> force,
CancellationToken cancellationToken
)
Public Function DeleteGroupAsync (
groupId As ScalingGroupId,
force As Nullable(Of Boolean),
cancellationToken As CancellationToken
) As Task
public:
virtual Task^ DeleteGroupAsync(
ScalingGroupId^ groupId,
Nullable<bool> force,
CancellationToken cancellationToken
) sealed
abstract DeleteGroupAsync :
groupId : ScalingGroupId *
force : Nullable<bool> *
cancellationToken : CancellationToken -> Task
override DeleteGroupAsync :
groupId : ScalingGroupId *
force : Nullable<bool> *
cancellationToken : CancellationToken -> Task
Parameters
- groupId
- Type: net.openstack.Providers.Rackspace.Objects.AutoScaleScalingGroupId
The ID of the scaling group. This is obtained from ScalingGroup.Id. - force
- Type: SystemNullableBoolean
to delete the scaling group even if it has active or pending entities; otherwise, to only delete the group if it does not contain any entities. If the value is , a provider-specific default value is used. - cancellationToken
- Type: System.ThreadingCancellationToken
The CancellationToken that the task will observe.
Return Value
Type:
TaskA
Task object representing the asynchronous operation.
Implements
IAutoScaleServiceDeleteGroupAsync(ScalingGroupId, NullableBoolean, CancellationToken)Exceptions Remarks
If force is , active servers in the group will be
immediately deleted, and pending servers will be deleted once they finish building and become
active.
Version Information .NET Framework
Supported in: 4.5
openstack.net
Supported in: 1.6, 1.5, 1.4, 1.3.6
See Also