Skip to main content

zip_deployment_for_static_sites

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

Overview

Namezip_deployment_for_static_sites
TypeResource
Idazure.app_service.zip_deployment_for_static_sites

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 Deploys zipped content to a static site.

INSERT example

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

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