Skip to main content

organizations

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

Overview

Nameorganizations
TypeResource
Idazure_isv.informatica.organizations

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
locationstringThe geo-location where the resource lives
propertiesobjectThe resource-specific properties for this resource.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, organizationNameGet a InformaticaOrganizationResource
list_by_resource_groupselectsubscriptionId, resourceGroupNameList InformaticaOrganizationResource resources by resource group
list_by_subscriptionselectsubscriptionIdList InformaticaOrganizationResource resources by subscription ID
create_or_updateinsertsubscriptionId, resourceGroupName, organizationNameCreate a InformaticaOrganizationResource
updateupdatesubscriptionId, resourceGroupName, organizationNameUpdate a InformaticaOrganizationResource
deletedeletesubscriptionId, resourceGroupName, organizationNameDelete a InformaticaOrganizationResource

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
organizationNamestringName of the Organizations resource
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Get a InformaticaOrganizationResource

SELECT
location,
properties,
tags
FROM azure_isv.informatica.organizations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND organizationName = '{{ organizationName }}' -- required
;

INSERT examples

Create a InformaticaOrganizationResource

INSERT INTO azure_isv.informatica.organizations (
data__properties,
data__tags,
data__location,
subscriptionId,
resourceGroupName,
organizationName
)
SELECT
'{{ properties }}',
'{{ tags }}',
'{{ location }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ organizationName }}'
RETURNING
location,
properties,
tags
;

UPDATE examples

Update a InformaticaOrganizationResource

UPDATE azure_isv.informatica.organizations
SET
data__tags = '{{ tags }}',
data__properties = '{{ properties }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND organizationName = '{{ organizationName }}' --required
RETURNING
location,
properties,
tags;

DELETE examples

Delete a InformaticaOrganizationResource

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