Skip to main content

azure_large_instances

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

Overview

Nameazure_large_instances
TypeResource
Idazure.large_instances.azure_large_instances

Fields

NameDatatypeDescription
azureLargeInstanceNametextfield from the properties object
azure_large_instance_idtextfield from the properties object
hardware_profiletextfield from the properties object
hw_revisiontextfield from the properties object
locationtextThe geo-location where the resource lives
network_profiletextfield from the properties object
os_profiletextfield from the properties object
partner_node_idtextfield from the properties object
power_statetextfield from the properties object
provisioning_statetextfield from the properties object
proximity_placement_grouptextfield from the properties object
resourceGroupNametextfield from the properties object
storage_profiletextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextResource tags.

Methods

NameAccessible byRequired ParamsDescription
getSELECTazureLargeInstanceName, resourceGroupName, subscriptionIdGets an Azure Large Instance for the specified subscription, resource group,
and instance name.
list_by_resource_groupSELECTresourceGroupName, subscriptionIdGets 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_subscriptionSELECTsubscriptionIdGets a list of Azure Large Instances in the specified subscription. The
operations returns various properties of each Azure Large Instance.
updateUPDATEazureLargeInstanceName, resourceGroupName, subscriptionIdPatches the Tags field of an Azure Large Instance for the specified
subscription, resource group, and instance name.
restartEXECazureLargeInstanceName, resourceGroupName, subscriptionIdThe operation to restart an Azure Large Instance (only for compute instances)
shutdownEXECazureLargeInstanceName, resourceGroupName, subscriptionIdThe operation to shutdown an Azure Large Instance (only for compute instances)
startEXECazureLargeInstanceName, resourceGroupName, subscriptionIdThe 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.

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 }}';

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 }}';