organization_environment_by_ids
Creates, updates, deletes, gets or lists a organization_environment_by_ids
resource.
Overview
Name | organization_environment_by_ids |
Type | Resource |
Id | azure_isv.confluent.organization_environment_by_ids |
Fields
- vw_organization_environment_by_ids
- organization_environment_by_ids
Name | Datatype | Description |
---|---|---|
id | text | Id of the environment |
name | text | Display name of the environment |
environmentId | text | field from the properties object |
kind | text | Type of environment |
metadata | text | field from the properties object |
organizationName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Id of the environment |
name | string | Display name of the environment |
kind | string | Type of environment |
properties | object | Environment resource property |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | environmentId, organizationName, resourceGroupName, subscriptionId |
SELECT
examples
- vw_organization_environment_by_ids
- organization_environment_by_ids
SELECT
id,
name,
environmentId,
kind,
metadata,
organizationName,
resourceGroupName,
subscriptionId
FROM azure_isv.confluent.vw_organization_environment_by_ids
WHERE environmentId = '{{ environmentId }}'
AND organizationName = '{{ organizationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
kind,
properties
FROM azure_isv.confluent.organization_environment_by_ids
WHERE environmentId = '{{ environmentId }}'
AND organizationName = '{{ organizationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';