connectivity_configurations
Creates, updates, deletes, gets or lists a connectivity_configurations
resource.
Overview
Name | connectivity_configurations |
Type | Resource |
Id | azure.network.connectivity_configurations |
Fields
- vw_connectivity_configurations
- connectivity_configurations
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | Resource name. |
description | text | field from the properties object |
applies_to_groups | text | field from the properties object |
configurationName | text | field from the properties object |
connectivity_topology | text | field from the properties object |
delete_existing_peering | text | field from the properties object |
etag | text | A unique read-only string that changes whenever the resource is updated. |
hubs | text | field from the properties object |
is_global | text | field from the properties object |
networkManagerName | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resource_guid | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
type | text | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Properties of network manager connectivity configuration |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | configurationName, networkManagerName, resourceGroupName, subscriptionId | Gets a Network Connectivity Configuration, specified by the resource group, network manager name, and connectivity Configuration name |
list | SELECT | networkManagerName, resourceGroupName, subscriptionId | Lists all the network manager connectivity configuration in a specified network manager. |
create_or_update | INSERT | configurationName, networkManagerName, resourceGroupName, subscriptionId | Creates/Updates a new network manager connectivity configuration |
delete | DELETE | configurationName, networkManagerName, resourceGroupName, subscriptionId | Deletes a network manager connectivity configuration, specified by the resource group, network manager name, and connectivity configuration name |
SELECT
examples
Lists all the network manager connectivity configuration in a specified network manager.
- vw_connectivity_configurations
- connectivity_configurations
SELECT
id,
name,
description,
applies_to_groups,
configurationName,
connectivity_topology,
delete_existing_peering,
etag,
hubs,
is_global,
networkManagerName,
provisioning_state,
resourceGroupName,
resource_guid,
subscriptionId,
system_data,
type
FROM azure.network.vw_connectivity_configurations
WHERE networkManagerName = '{{ networkManagerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
etag,
properties,
systemData,
type
FROM azure.network.connectivity_configurations
WHERE networkManagerName = '{{ networkManagerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new connectivity_configurations
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.network.connectivity_configurations (
configurationName,
networkManagerName,
resourceGroupName,
subscriptionId,
properties
)
SELECT
'{{ configurationName }}',
'{{ networkManagerName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: description
value: string
- name: connectivityTopology
value: string
- name: hubs
value:
- - name: resourceId
value: string
- name: resourceType
value: string
- name: isGlobal
value: string
- name: appliesToGroups
value:
- - name: networkGroupId
value: string
- name: useHubGateway
value: string
- name: isGlobal
value: string
- name: groupConnectivity
value: string
- name: provisioningState
value: []
- name: deleteExistingPeering
value: string
- name: resourceGuid
value: string
- name: systemData
value:
- name: createdBy
value: string
- name: createdByType
value: string
- name: createdAt
value: string
- name: lastModifiedBy
value: string
- name: lastModifiedByType
value: string
- name: lastModifiedAt
value: string
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: etag
value: string
DELETE
example
Deletes the specified connectivity_configurations
resource.
/*+ delete */
DELETE FROM azure.network.connectivity_configurations
WHERE configurationName = '{{ configurationName }}'
AND networkManagerName = '{{ networkManagerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';