Skip to main content

organizations

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

Overview

Nameorganizations
TypeResource
Idazure_isv.confluent.organizations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ARM id of the resource.
namestringThe name of the resource.
locationstringLocation of Organization resource
propertiesobjectOrganization resource properties
systemDataobjectMetadata pertaining to creation and last modification of the resource
tagsobjectOrganization resource tags
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, organizationName
list_by_resource_groupselectsubscriptionId, resourceGroupName
list_by_subscriptionselectsubscriptionId
createinsertsubscriptionId, resourceGroupName, organizationName, data__properties
updateupdatesubscriptionId, resourceGroupName, organizationName
deletedeletesubscriptionId, resourceGroupName, organizationName

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
organizationNamestringOrganization resource name
resourceGroupNamestringResource group name
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Success

SELECT
id,
name,
location,
properties,
systemData,
tags,
type
FROM azure_isv.confluent.organizations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND organizationName = '{{ organizationName }}' -- required
;

INSERT examples

No description available.

INSERT INTO azure_isv.confluent.organizations (
data__properties,
data__tags,
data__location,
subscriptionId,
resourceGroupName,
organizationName
)
SELECT
'{{ properties }}' /* required */,
'{{ tags }}',
'{{ location }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ organizationName }}'
RETURNING
id,
name,
location,
properties,
systemData,
tags,
type
;

UPDATE examples

No description available.

UPDATE azure_isv.confluent.organizations
SET
data__tags = '{{ tags }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND organizationName = '{{ organizationName }}' --required
RETURNING
id,
name,
location,
properties,
systemData,
tags,
type;

DELETE examples

No description available.

DELETE FROM azure_isv.confluent.organizations
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND organizationName = '{{ organizationName }}' --required
;