ip_extended_communities
Creates, updates, deletes, gets or lists an ip_extended_communities
resource.
Overview
Name | ip_extended_communities |
Type | Resource |
Id | azure.managed_network_fabric.ip_extended_communities |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_resource_group
- list_by_subscription
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | Resource properties. |
tags | object | Resource tags. |
Lists all IpExtendedCommunities under the resource group.
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | Resource properties. |
tags | object | Resource tags. |
Lists all IpExtendedCommunities under the subscription.
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | Resource properties. |
tags | object | Resource tags. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , ipExtendedCommunityName | Implements IP Extended Community GET method. | |
list_by_resource_group | select | subscriptionId , resourceGroupName | Implements IpExtendedCommunities list by resource group GET method. | |
list_by_subscription | select | subscriptionId | Implements IpExtendedCommunities list by subscription GET method. | |
create | insert | subscriptionId , resourceGroupName , ipExtendedCommunityName , data__properties | Implements IP Extended Community PUT method. | |
update | update | subscriptionId , resourceGroupName , ipExtendedCommunityName | API to update certain properties of the IP Extended Community resource. | |
delete | delete | subscriptionId , resourceGroupName , ipExtendedCommunityName | Implements IP Extended Community DELETE method. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
ipExtendedCommunityName | string | Name of the IP Extended Community. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list_by_resource_group
- list_by_subscription
Implements IP Extended Community GET method.
SELECT
location,
properties,
tags
FROM azure.managed_network_fabric.ip_extended_communities
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND ipExtendedCommunityName = '{{ ipExtendedCommunityName }}' -- required
;
Implements IpExtendedCommunities list by resource group GET method.
SELECT
location,
properties,
tags
FROM azure.managed_network_fabric.ip_extended_communities
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;
Implements IpExtendedCommunities list by subscription GET method.
SELECT
location,
properties,
tags
FROM azure.managed_network_fabric.ip_extended_communities
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT
examples
- create
- Manifest
Implements IP Extended Community PUT method.
INSERT INTO azure.managed_network_fabric.ip_extended_communities (
data__tags,
data__location,
data__properties,
subscriptionId,
resourceGroupName,
ipExtendedCommunityName
)
SELECT
'{{ tags }}',
'{{ location }}',
'{{ properties }}' /* required */,
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ ipExtendedCommunityName }}'
RETURNING
location,
properties,
tags
;
# Description fields are for documentation purposes
- name: ip_extended_communities
props:
- name: subscriptionId
value: string (uuid)
description: Required parameter for the ip_extended_communities resource.
- name: resourceGroupName
value: string
description: Required parameter for the ip_extended_communities resource.
- name: ipExtendedCommunityName
value: string
description: Required parameter for the ip_extended_communities resource.
- name: tags
value: object
description: |
Resource tags.
- name: location
value: string
description: |
The geo-location where the resource lives
- name: properties
value: object
description: |
Resource properties.
UPDATE
examples
- update
API to update certain properties of the IP Extended Community resource.
UPDATE azure.managed_network_fabric.ip_extended_communities
SET
data__properties = '{{ properties }}',
data__tags = '{{ tags }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND ipExtendedCommunityName = '{{ ipExtendedCommunityName }}' --required
RETURNING
location,
properties,
tags;
DELETE
examples
- delete
Implements IP Extended Community DELETE method.
DELETE FROM azure.managed_network_fabric.ip_extended_communities
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND ipExtendedCommunityName = '{{ ipExtendedCommunityName }}' --required
;