Skip to main content

swift_virtual_network_connection_with_check_slots

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

Overview

Nameswift_virtual_network_connection_with_check_slots
TypeResource
Idazure.app_service.swift_virtual_network_connection_with_check_slots

Fields

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

Methods

NameAccessible byRequired ParamsDescription
create_or_updateINSERTname, resourceGroupName, slot, subscriptionIdDescription for Integrates this Web App with a Virtual Network. This requires that 1) "swiftSupported" is true when doing a GET against this resource, and 2) that the target Subnet has already been delegated, and is not
in use by another App Service Plan other than the one this App is in.
updateUPDATEname, resourceGroupName, slot, subscriptionIdDescription for Integrates this Web App with a Virtual Network. This requires that 1) "swiftSupported" is true when doing a GET against this resource, and 2) that the target Subnet has already been delegated, and is not
in use by another App Service Plan other than the one this App is in.

INSERT example

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

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

UPDATE example

Updates a swift_virtual_network_connection_with_check_slots resource.

/*+ update */
UPDATE azure.app_service.swift_virtual_network_connection_with_check_slots
SET
kind = '{{ kind }}',
properties = '{{ properties }}'
WHERE
name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND slot = '{{ slot }}'
AND subscriptionId = '{{ subscriptionId }}';