Skip to main content

applications_by_ids

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

Overview

Nameapplications_by_ids
TypeResource
Idazure.managed_applications.applications_by_ids

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
create_or_updateINSERTapplicationId, data__kind, data__propertiesCreates or updates a managed application.

INSERT example

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

/*+ create */
INSERT INTO azure.managed_applications.applications_by_ids (
applicationId,
data__kind,
data__properties,
properties,
plan,
kind,
identity,
managedBy,
sku
)
SELECT
'{{ applicationId }}',
'{{ data__kind }}',
'{{ data__properties }}',
'{{ properties }}',
'{{ plan }}',
'{{ kind }}',
'{{ identity }}',
'{{ managedBy }}',
'{{ sku }}'
;