Skip to main content

node_types_nodes

Creates, updates, deletes, gets or lists a node_types_nodes resource.

Overview

Namenode_types_nodes
TypeResource
Idazure.service_fabric_managed_clusters.node_types_nodes

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
deleteexecsubscriptionId, resourceGroupName, clusterName, nodeTypeNameapi-versionDeletes one or more nodes on the node type. It will disable the fabric nodes, trigger a delete on the VMs and removes the state from the cluster.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
clusterNamestringThe name of the cluster resource.
nodeTypeNamestringThe name of the node type.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringThe customer subscription identifier.
api-versionstringThe version of the Service Fabric resource provider API. This is a required parameter and it's value must be "2024-06-01-preview" for this specification.

Lifecycle Methods

Deletes one or more nodes on the node type. It will disable the fabric nodes, trigger a delete on the VMs and removes the state from the cluster.

EXEC azure.service_fabric_managed_clusters.node_types_nodes.delete 
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@clusterName='{{ clusterName }}' --required,
@nodeTypeName='{{ nodeTypeName }}' --required,
@api-version='{{ api-version }}'
@@json=
'{
"nodes": "{{ nodes }}",
"force": {{ force }},
"updateType": "{{ updateType }}"
}'
;