node_types_nodes
Creates, updates, deletes, gets or lists a node_types_nodes
resource.
Overview
Name | node_types_nodes |
Type | Resource |
Id | azure.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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
delete | exec | subscriptionId , resourceGroupName , clusterName , nodeTypeName | api-version | 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. |
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.
Name | Datatype | Description |
---|---|---|
clusterName | string | The name of the cluster resource. |
nodeTypeName | string | The name of the node type. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | The customer subscription identifier. |
api-version | string | The 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
- delete
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 }}"
}'
;