Skip to main content

organizations

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

Overview

Nameorganizations
TypeResource
Idazure_isv.informatica.organizations

Fields

NameDatatypeDescription
company_detailstextfield from the properties object
informatica_propertiestextfield from the properties object
link_organizationtextfield from the properties object
locationtextThe geo-location where the resource lives
marketplace_detailstextfield from the properties object
organizationNametextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextResource tags.
user_detailstextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTorganizationName, resourceGroupName, subscriptionIdGet a InformaticaOrganizationResource
list_by_resource_groupSELECTresourceGroupName, subscriptionIdList InformaticaOrganizationResource resources by resource group
list_by_subscriptionSELECTsubscriptionIdList InformaticaOrganizationResource resources by subscription ID
create_or_updateINSERTorganizationName, resourceGroupName, subscriptionIdCreate a InformaticaOrganizationResource
deleteDELETEorganizationName, resourceGroupName, subscriptionIdDelete a InformaticaOrganizationResource
updateUPDATEorganizationName, resourceGroupName, subscriptionIdUpdate a InformaticaOrganizationResource

SELECT examples

List InformaticaOrganizationResource resources by subscription ID

SELECT
company_details,
informatica_properties,
link_organization,
location,
marketplace_details,
organizationName,
provisioning_state,
resourceGroupName,
subscriptionId,
tags,
user_details
FROM azure_isv.informatica.vw_organizations
WHERE subscriptionId = '{{ subscriptionId }}';

INSERT example

Use the following StackQL query and manifest file to create a new organizations resource.

/*+ create */
INSERT INTO azure_isv.informatica.organizations (
organizationName,
resourceGroupName,
subscriptionId,
properties,
tags,
location
)
SELECT
'{{ organizationName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}',
'{{ tags }}',
'{{ location }}'
;

UPDATE example

Updates a organizations resource.

/*+ update */
UPDATE azure_isv.informatica.organizations
SET
tags = '{{ tags }}',
properties = '{{ properties }}'
WHERE
organizationName = '{{ organizationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified organizations resource.

/*+ delete */
DELETE FROM azure_isv.informatica.organizations
WHERE organizationName = '{{ organizationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';