dnssec_configs
Creates, updates, deletes, gets or lists a dnssec_configs
resource.
Overview
Name | dnssec_configs |
Type | Resource |
Id | azure.dns.dnssec_configs |
Fields
- vw_dnssec_configs
- dnssec_configs
Name | Datatype | Description |
---|---|---|
id | text | The ID of the DNSSEC configuration. |
name | text | The name of the DNSSEC configuration. |
etag | text | The etag of the DNSSEC configuration. |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
signing_keys | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
type | text | The type of the DNSSEC configuration. |
zoneName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The ID of the DNSSEC configuration. |
name | string | The name of the DNSSEC configuration. |
etag | string | The etag of the DNSSEC configuration. |
properties | object | Represents the DNSSEC properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the DNSSEC configuration. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, subscriptionId, zoneName | Gets the DNSSEC configuration. |
list_by_dns_zone | SELECT | resourceGroupName, subscriptionId, zoneName | Lists the DNSSEC configurations in a DNS zone. |
create_or_update | INSERT | resourceGroupName, subscriptionId, zoneName | Creates or updates the DNSSEC configuration on a DNS zone. |
delete | DELETE | resourceGroupName, subscriptionId, zoneName | Deletes the DNSSEC configuration on a DNS zone. This operation cannot be undone. |
SELECT
examples
Gets the DNSSEC configuration.
- vw_dnssec_configs
- dnssec_configs
SELECT
id,
name,
etag,
provisioning_state,
resourceGroupName,
signing_keys,
subscriptionId,
system_data,
type,
zoneName
FROM azure.dns.vw_dnssec_configs
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND zoneName = '{{ zoneName }}';
SELECT
id,
name,
etag,
properties,
systemData,
type
FROM azure.dns.dnssec_configs
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND zoneName = '{{ zoneName }}';
INSERT
example
Use the following StackQL query and manifest file to create a new dnssec_configs
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.dns.dnssec_configs (
resourceGroupName,
subscriptionId,
zoneName
)
SELECT
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ zoneName }}'
;
- name: your_resource_model_name
props: []
DELETE
example
Deletes the specified dnssec_configs
resource.
/*+ delete */
DELETE FROM azure.dns.dnssec_configs
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND zoneName = '{{ zoneName }}';