Skip to main content

ms_deploy_operations

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

Overview

Namems_deploy_operations
TypeResource
Idazure.app_service.ms_deploy_operations

Fields

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

Methods

NameAccessible byRequired ParamsDescription
createINSERTname, resourceGroupName, subscriptionIdDescription for Invoke the MSDeploy web app extension.

INSERT example

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

/*+ create */
INSERT INTO azure.app_service.ms_deploy_operations (
name,
resourceGroupName,
subscriptionId,
kind,
properties
)
SELECT
'{{ name }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ kind }}',
'{{ properties }}'
;