applications
Creates, updates, deletes, gets or lists a applications
resource.
Overview
Name | applications |
Type | Resource |
Id | azure.hdinsight.applications |
Fields
- vw_applications
- applications
Name | Datatype | Description |
---|---|---|
applicationName | text | field from the properties object |
application_state | text | field from the properties object |
application_type | text | field from the properties object |
clusterName | text | field from the properties object |
compute_profile | text | field from the properties object |
created_date | text | field from the properties object |
errors | text | field from the properties object |
etag | text | The ETag for the application |
https_endpoints | text | field from the properties object |
install_script_actions | text | field from the properties object |
marketplace_identifier | text | field from the properties object |
private_link_configurations | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
ssh_endpoints | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
tags | text | The tags for the application. |
uninstall_script_actions | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
etag | string | The ETag for the application |
properties | object | The HDInsight cluster application GET response. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | The tags for the application. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | applicationName, clusterName, resourceGroupName, subscriptionId | Gets properties of the specified application. |
list_by_cluster | SELECT | clusterName, resourceGroupName, subscriptionId | Lists all of the applications for the HDInsight cluster. |
create | INSERT | applicationName, clusterName, resourceGroupName, subscriptionId | Creates applications for the HDInsight cluster. |
delete | DELETE | applicationName, clusterName, resourceGroupName, subscriptionId | Deletes the specified application on the HDInsight cluster. |
SELECT
examples
Lists all of the applications for the HDInsight cluster.
- vw_applications
- applications
SELECT
applicationName,
application_state,
application_type,
clusterName,
compute_profile,
created_date,
errors,
etag,
https_endpoints,
install_script_actions,
marketplace_identifier,
private_link_configurations,
provisioning_state,
resourceGroupName,
ssh_endpoints,
subscriptionId,
system_data,
tags,
uninstall_script_actions
FROM azure.hdinsight.vw_applications
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
etag,
properties,
systemData,
tags
FROM azure.hdinsight.applications
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new applications
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.hdinsight.applications (
applicationName,
clusterName,
resourceGroupName,
subscriptionId,
etag,
tags,
properties
)
SELECT
'{{ applicationName }}',
'{{ clusterName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ etag }}',
'{{ tags }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: etag
value: string
- name: tags
value: object
- name: properties
value:
- name: computeProfile
value:
- name: roles
value:
- - name: name
value: string
- name: minInstanceCount
value: integer
- name: targetInstanceCount
value: integer
- name: VMGroupName
value: string
- name: autoscale
value:
- name: capacity
value:
- name: minInstanceCount
value: integer
- name: maxInstanceCount
value: integer
- name: recurrence
value:
- name: timeZone
value: string
- name: schedule
value:
- - name: days
value:
- string
- name: timeAndCapacity
value:
- name: time
value: string
- name: minInstanceCount
value: integer
- name: maxInstanceCount
value: integer
- name: hardwareProfile
value:
- name: vmSize
value: string
- name: osProfile
value:
- name: linuxOperatingSystemProfile
value:
- name: username
value: string
- name: password
value: string
- name: sshProfile
value:
- name: publicKeys
value:
- - name: certificateData
value: string
- name: virtualNetworkProfile
value:
- name: id
value: string
- name: subnet
value: string
- name: dataDisksGroups
value:
- - name: disksPerNode
value: integer
- name: storageAccountType
value: string
- name: diskSizeGB
value: integer
- name: scriptActions
value:
- - name: name
value: string
- name: uri
value: string
- name: parameters
value: string
- name: encryptDataDisks
value: boolean
- name: installScriptActions
value:
- - name: name
value: string
- name: uri
value: string
- name: parameters
value: string
- name: roles
value:
- string
- name: applicationName
value: string
- name: uninstallScriptActions
value:
- - name: name
value: string
- name: uri
value: string
- name: parameters
value: string
- name: roles
value:
- string
- name: applicationName
value: string
- name: httpsEndpoints
value:
- - name: accessModes
value:
- string
- name: location
value: string
- name: destinationPort
value: integer
- name: publicPort
value: integer
- name: privateIPAddress
value: string
- name: subDomainSuffix
value: string
- name: disableGatewayAuth
value: boolean
- name: sshEndpoints
value:
- - name: location
value: string
- name: destinationPort
value: integer
- name: publicPort
value: integer
- name: privateIPAddress
value: string
- name: provisioningState
value: string
- name: applicationType
value: string
- name: applicationState
value: string
- name: errors
value:
- - name: code
value: string
- name: message
value: string
- name: createdDate
value: string
- name: marketplaceIdentifier
value: string
- name: privateLinkConfigurations
value:
- - name: id
value: string
- name: name
value: string
- name: type
value: string
- name: properties
value:
- name: groupId
value: string
- name: provisioningState
value: string
- name: ipConfigurations
value:
- - name: id
value: string
- name: name
value: string
- name: type
value: string
- name: properties
value:
- name: provisioningState
value: string
- name: primary
value: boolean
- name: privateIPAddress
value: string
- name: privateIPAllocationMethod
value: string
- name: subnet
value:
- name: id
value: string
- name: systemData
value:
- name: createdBy
value: string
- name: createdByType
value: string
- name: createdAt
value: string
- name: lastModifiedBy
value: string
- name: lastModifiedByType
value: string
- name: lastModifiedAt
value: string
DELETE
example
Deletes the specified applications
resource.
/*+ delete */
DELETE FROM azure.hdinsight.applications
WHERE applicationName = '{{ applicationName }}'
AND clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';