Skip to main content

deployment_info

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

Overview

Namedeployment_info
TypeResource
Idazure_isv.elastic.deployment_info

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
deploymentUrlstringDeployment URL of the elasticsearch in Elastic cloud deployment.
diskCapacitystringDisk capacity of the elasticsearch in Elastic cloud deployment.
elasticsearchEndPointstringElasticsearch endpoint in Elastic cloud deployment. This is either the aliased_endpoint if available, or the service_url otherwise.
marketplaceSaasInfoobjectMarketplace SaaS Info of the resource.
memoryCapacitystringRAM capacity of the elasticsearch in Elastic cloud deployment.
statusstringThe Elastic deployment status.
versionstringVersion of the elasticsearch in Elastic cloud deployment.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, monitorName

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
monitorNamestringMonitor resource name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Success

SELECT
deploymentUrl,
diskCapacity,
elasticsearchEndPoint,
marketplaceSaasInfo,
memoryCapacity,
status,
version
FROM azure_isv.elastic.deployment_info
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND monitorName = '{{ monitorName }}' -- required
;