swift_virtual_network_connection_with_checks
Creates, updates, deletes, gets or lists a swift_virtual_network_connection_with_checks
resource.
Overview
Name | swift_virtual_network_connection_with_checks |
Type | Resource |
Id | azure.app_service.swift_virtual_network_connection_with_checks |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
create_or_update | INSERT | name, resourceGroupName, subscriptionId | Description 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. | |||
update | UPDATE | name, resourceGroupName, subscriptionId | Description 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_checks
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.app_service.swift_virtual_network_connection_with_checks (
name,
resourceGroupName,
subscriptionId,
kind,
properties
)
SELECT
'{{ name }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ kind }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: id
value: string
- name: name
value: string
- name: kind
value: string
- name: type
value: string
- name: properties
value:
- name: subnetResourceId
value: string
- name: swiftSupported
value: boolean
UPDATE
example
Updates a swift_virtual_network_connection_with_checks
resource.
/*+ update */
UPDATE azure.app_service.swift_virtual_network_connection_with_checks
SET
kind = '{{ kind }}',
properties = '{{ properties }}'
WHERE
name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';