applications_by_ids
Creates, updates, deletes, gets or lists an applications_by_ids
resource.
Overview
Name | applications_by_ids |
Type | Resource |
Id | azure.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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
create_or_update | insert | applicationId , data__properties , data__kind | Creates 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.
Name | Datatype | Description |
---|---|---|
applicationId | string | The 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
- create_or_update
- Manifest
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
;
# Description fields are for documentation purposes
- name: applications_by_ids
props:
- name: applicationId
value: string
description: Required parameter for the applications_by_ids resource.
- name: properties
value: object
description: |
The managed application properties.
- name: plan
value: object
description: |
The plan information.
- name: kind
value: string
description: |
The kind of the managed application. Allowed values are MarketPlace and ServiceCatalog.
- name: identity
value: object
description: |
The identity of the resource.
- name: managedBy
value: string
description: |
ID of the resource that manages this resource.
- name: sku
value: object
description: |
The SKU of the resource.