inbound_endpoints
Creates, updates, deletes, gets or lists a inbound_endpoints
resource.
Overview
Name | inbound_endpoints |
Type | Resource |
Id | azure.dns_resolver.inbound_endpoints |
Fields
- vw_inbound_endpoints
- inbound_endpoints
Name | Datatype | Description |
---|---|---|
dnsResolverName | text | field from the properties object |
etag | text | ETag of the inbound endpoint. |
inboundEndpointName | text | field from the properties object |
ip_configurations | text | field from the properties object |
location | text | The geo-location where the resource lives |
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 |
tags | text | Resource tags. |
Name | Datatype | Description |
---|---|---|
etag | string | ETag of the inbound endpoint. |
location | string | The geo-location where the resource lives |
properties | object | Represents the properties of an inbound endpoint for a DNS resolver. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | dnsResolverName, inboundEndpointName, resourceGroupName, subscriptionId | Gets properties of an inbound endpoint for a DNS resolver. |
list | SELECT | dnsResolverName, resourceGroupName, subscriptionId | Lists inbound endpoints for a DNS resolver. |
create_or_update | INSERT | dnsResolverName, inboundEndpointName, resourceGroupName, subscriptionId, data__properties | Creates or updates an inbound endpoint for a DNS resolver. |
delete | DELETE | dnsResolverName, inboundEndpointName, resourceGroupName, subscriptionId | Deletes an inbound endpoint for a DNS resolver. WARNING: This operation cannot be undone. |
update | UPDATE | dnsResolverName, inboundEndpointName, resourceGroupName, subscriptionId | Updates an inbound endpoint for a DNS resolver. |
SELECT
examples
Lists inbound endpoints for a DNS resolver.
- vw_inbound_endpoints
- inbound_endpoints
SELECT
dnsResolverName,
etag,
inboundEndpointName,
ip_configurations,
location,
provisioning_state,
resourceGroupName,
resource_guid,
subscriptionId,
system_data,
tags
FROM azure.dns_resolver.vw_inbound_endpoints
WHERE dnsResolverName = '{{ dnsResolverName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
etag,
location,
properties,
systemData,
tags
FROM azure.dns_resolver.inbound_endpoints
WHERE dnsResolverName = '{{ dnsResolverName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new inbound_endpoints
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.dns_resolver.inbound_endpoints (
dnsResolverName,
inboundEndpointName,
resourceGroupName,
subscriptionId,
data__properties,
properties,
tags,
location
)
SELECT
'{{ dnsResolverName }}',
'{{ inboundEndpointName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}',
'{{ tags }}',
'{{ location }}'
;
- name: your_resource_model_name
props:
- name: etag
value: string
- name: properties
value:
- name: ipConfigurations
value:
- - name: subnet
value:
- name: id
value: string
- name: privateIpAddress
value: string
- name: privateIpAllocationMethod
value: string
- name: provisioningState
value: []
- name: resourceGuid
value: []
- 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: tags
value: object
- name: location
value: string
UPDATE
example
Updates a inbound_endpoints
resource.
/*+ update */
UPDATE azure.dns_resolver.inbound_endpoints
SET
tags = '{{ tags }}'
WHERE
dnsResolverName = '{{ dnsResolverName }}'
AND inboundEndpointName = '{{ inboundEndpointName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified inbound_endpoints
resource.
/*+ delete */
DELETE FROM azure.dns_resolver.inbound_endpoints
WHERE dnsResolverName = '{{ dnsResolverName }}'
AND inboundEndpointName = '{{ inboundEndpointName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';