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
configurationTypestringConfigurationType Type - Applicable for Serverless only.
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.
projectTypestringProject Type - Applicable for Serverless only.
statusstringThe Elastic deployment status. Known values are: "Healthy" and "Unhealthy".
versionstringVersion of the elasticsearch in Elastic cloud deployment.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, monitor_name, subscription_idFetch detailed information about Elastic cloud deployments corresponding to the Elastic monitor resource. Fetch detailed information about Elastic cloud deployments corresponding to the Elastic monitor resource.

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
monitor_namestringMonitor resource name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Fetch detailed information about Elastic cloud deployments corresponding to the Elastic monitor resource. Fetch detailed information about Elastic cloud deployments corresponding to the Elastic monitor resource.

SELECT
configurationType,
deploymentUrl,
diskCapacity,
elasticsearchEndPoint,
marketplaceSaasInfo,
memoryCapacity,
projectType,
status,
version
FROM azure_isv.elastic.deployment_info
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND monitor_name = '{{ monitor_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;