Skip to main content

organizations_serverless_metadata

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

Overview

Nameorganizations_serverless_metadata
TypeResource
Idazure_isv.informatica.organizations_serverless_metadata

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
serverlessConfigPropertiesobjectserverless config properties
serverlessRuntimeConfigPropertiesobjectserverless runtime config properties
typestringtype of the runtime environment.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, organizationNameGets Metadata of the serverless runtime environment.

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

Gets Metadata of the serverless runtime environment.

SELECT
serverlessConfigProperties,
serverlessRuntimeConfigProperties,
type
FROM azure_isv.informatica.organizations_serverless_metadata
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND organizationName = '{{ organizationName }}' -- required
;