Skip to main content

organization_clusters

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

Overview

Nameorganization_clusters
TypeResource
Idazure_isv.confluent.organization_clusters

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
listselectsubscriptionId, resourceGroupName, organizationName, environmentIdpageSize, pageToken

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
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.
pageSizeinteger (int32)Pagination size
pageTokenstringAn opaque pagination token to fetch the next set of records

SELECT examples

Success

SELECT
id,
name,
kind,
properties
FROM azure_isv.confluent.organization_clusters
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND organizationName = '{{ organizationName }}' -- required
AND environmentId = '{{ environmentId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
;