azure_large_instances
Creates, updates, deletes, gets or lists a azure_large_instances
resource.
Overview
Name | azure_large_instances |
Type | Resource |
Id | azure.large_instances.azure_large_instances |
Fields
- vw_azure_large_instances
- azure_large_instances
Name | Datatype | Description |
---|---|---|
azureLargeInstanceName | text | field from the properties object |
azure_large_instance_id | text | field from the properties object |
hardware_profile | text | field from the properties object |
hw_revision | text | field from the properties object |
location | text | The geo-location where the resource lives |
network_profile | text | field from the properties object |
os_profile | text | field from the properties object |
partner_node_id | text | field from the properties object |
power_state | text | field from the properties object |
provisioning_state | text | field from the properties object |
proximity_placement_group | text | field from the properties object |
resourceGroupName | text | field from the properties object |
storage_profile | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | Describes the properties of an Azure Large Instance. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | azureLargeInstanceName, resourceGroupName, subscriptionId | Gets an Azure Large Instance for the specified subscription, resource group, |
and instance name. | |||
list_by_resource_group | SELECT | resourceGroupName, subscriptionId | Gets a list of Azure Large Instances in the specified subscription and resource |
group. The operations returns various properties of each Azure Large Instance. | |||
list_by_subscription | SELECT | subscriptionId | Gets a list of Azure Large Instances in the specified subscription. The |
operations returns various properties of each Azure Large Instance. | |||
update | UPDATE | azureLargeInstanceName, resourceGroupName, subscriptionId | Patches the Tags field of an Azure Large Instance for the specified |
subscription, resource group, and instance name. | |||
restart | EXEC | azureLargeInstanceName, resourceGroupName, subscriptionId | The operation to restart an Azure Large Instance (only for compute instances) |
shutdown | EXEC | azureLargeInstanceName, resourceGroupName, subscriptionId | The operation to shutdown an Azure Large Instance (only for compute instances) |
start | EXEC | azureLargeInstanceName, resourceGroupName, subscriptionId | The operation to start an Azure Large Instance (only for compute instances) |
SELECT
examples
Gets a list of Azure Large Instances in the specified subscription. The operations returns various properties of each Azure Large Instance.
- vw_azure_large_instances
- azure_large_instances
SELECT
azureLargeInstanceName,
azure_large_instance_id,
hardware_profile,
hw_revision,
location,
network_profile,
os_profile,
partner_node_id,
power_state,
provisioning_state,
proximity_placement_group,
resourceGroupName,
storage_profile,
subscriptionId,
tags
FROM azure.large_instances.vw_azure_large_instances
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
location,
properties,
tags
FROM azure.large_instances.azure_large_instances
WHERE subscriptionId = '{{ subscriptionId }}';
UPDATE
example
Updates a azure_large_instances
resource.
/*+ update */
UPDATE azure.large_instances.azure_large_instances
SET
tags = '{{ tags }}'
WHERE
azureLargeInstanceName = '{{ azureLargeInstanceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';