Skip to main content

connected_partner_resources

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

Overview

Nameconnected_partner_resources
TypeResource
Idazure_isv.elastic.connected_partner_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
azureResourceIdstringThe azure resource Id of the resource.
locationstringThe location of the resource.
partnerDeploymentNamestringElastic resource name.
partnerDeploymentUristringURL of the resource in Elastic cloud.
typestringThe hosting type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, monitor_name, subscription_idList all active deployments associated with the marketplace subscription linked to the given Elastic monitor resource. List all active deployments associated with the marketplace subscription linked to the given 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

List all active deployments associated with the marketplace subscription linked to the given Elastic monitor resource. List all active deployments associated with the marketplace subscription linked to the given Elastic monitor resource.

SELECT
azureResourceId,
location,
partnerDeploymentName,
partnerDeploymentUri,
type
FROM azure_isv.elastic.connected_partner_resources
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND monitor_name = '{{ monitor_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;