Skip to main content

organization_cluster_by_ids

Creates, updates, deletes, gets or lists an organization_cluster_by_ids resource.

Overview

Nameorganization_cluster_by_ids
TypeResource
Idazure_isv.confluent.organization_cluster_by_ids

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringId of the cluster
namestringDisplay name of the cluster
kindstringType of cluster
propertiesobjectCluster Properties

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, organizationName, environmentId, clusterId

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
clusterIdstringConfluent kafka or schema registry cluster id
environmentIdstringConfluent environment id
organizationNamestringOrganization 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
id,
name,
kind,
properties
FROM azure_isv.confluent.organization_cluster_by_ids
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND organizationName = '{{ organizationName }}' -- required
AND environmentId = '{{ environmentId }}' -- required
AND clusterId = '{{ clusterId }}' -- required
;