Skip to main content

applications_by_ids

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

Overview

Nameapplications_by_ids
TypeResource
Idazure.managed_applications.applications_by_ids

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
create_or_updateinsertapplicationId, data__properties, data__kindCreates or updates a managed application.

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
applicationIdstringThe fully qualified ID of the managed application, including the managed application name and the managed application resource type. Use the format, /subscriptions/{guid}/resourceGroups/{resource-group-name}/Microsoft.Solutions/applications/{application-name}

INSERT examples

Creates or updates a managed application.

INSERT INTO azure.managed_applications.applications_by_ids (
data__properties,
data__plan,
data__kind,
data__identity,
data__managedBy,
data__sku,
applicationId
)
SELECT
'{{ properties }}' /* required */,
'{{ plan }}',
'{{ kind }}' /* required */,
'{{ identity }}',
'{{ managedBy }}',
'{{ sku }}',
'{{ applicationId }}'
RETURNING
identity,
kind,
managedBy,
plan,
properties,
sku
;