Private Dns Zone Groups - Get
Gets the private dns zone group resource by specified private dns zone group name.
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}?api-version=2024-03-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
private
|
path | True |
string |
The name of the private dns zone group. |
private
|
path | True |
string |
The name of the private endpoint. |
resource
|
path | True |
string |
The name of the resource group. |
subscription
|
path | True |
string |
The subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
api-version
|
query | True |
string |
Client API version. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Request successful. The operation returns the resulting privateDnsZoneGroup resource. |
|
Other Status Codes |
Error response describing why the operation failed. |
Security
azure_auth
Azure Active Directory OAuth2 Flow.
Type:
oauth2
Flow:
implicit
Authorization URL:
https://login.microsoftonline.com/common/oauth2/authorize
Scopes
Name | Description |
---|---|
user_impersonation | impersonate your user account |
Examples
Get private dns zone group
Sample request
Sample response
{
"name": "testPdnsgroup",
"id": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateLinkServices/testPe/privateDnsZoneGroups/testPdnsgroup",
"properties": {
"provisioningState": "Succeeded",
"privateDnsZoneConfigs": [
{
"properties": {
"privateDnsZoneId": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateDnsZones/zone1.com",
"recordSets": [
{
"recordType": "A",
"recordSetName": "abc",
"fqdn": "abc.zone1.com",
"ipAddresses": [
"10.0.0.4"
]
},
{
"recordType": "A",
"recordSetName": "abc2",
"fqdn": "abc2.zone1.com",
"ipAddresses": [
"10.0.0.5"
]
}
]
}
},
{
"properties": {
"privateDnsZoneId": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateDnsZones/zone2.com",
"recordSets": [
{
"recordType": "A",
"recordSetName": "abc",
"fqdn": "abc.zone2.com",
"ipAddresses": [
"10.0.0.6"
]
},
{
"recordType": "A",
"recordSetName": "abc2",
"fqdn": "abc2.zone2.com",
"ipAddresses": [
"10.0.0.7"
]
}
]
}
}
]
}
}
Definitions
Name | Description |
---|---|
Cloud |
An error response from the service. |
Cloud |
An error response from the service. |
Private |
PrivateDnsZoneConfig resource. |
Private |
Private dns zone group resource. |
Provisioning |
The current provisioning state. |
Record |
A collective group of information about the record set information. |
CloudError
An error response from the service.
Name | Type | Description |
---|---|---|
error |
Cloud error body. |
CloudErrorBody
An error response from the service.
Name | Type | Description |
---|---|---|
code |
string |
An identifier for the error. Codes are invariant and are intended to be consumed programmatically. |
details |
A list of additional details about the error. |
|
message |
string |
A message describing the error, intended to be suitable for display in a user interface. |
target |
string |
The target of the particular error. For example, the name of the property in error. |
PrivateDnsZoneConfig
PrivateDnsZoneConfig resource.
Name | Type | Description |
---|---|---|
name |
string |
Name of the resource that is unique within a resource group. This name can be used to access the resource. |
properties.privateDnsZoneId |
string |
The resource id of the private dns zone. |
properties.recordSets |
A collection of information regarding a recordSet, holding information to identify private resources. |
PrivateDnsZoneGroup
Private dns zone group resource.
Name | Type | Description |
---|---|---|
etag |
string |
A unique read-only string that changes whenever the resource is updated. |
id |
string |
Resource ID. |
name |
string |
Name of the resource that is unique within a resource group. This name can be used to access the resource. |
properties.privateDnsZoneConfigs |
A collection of private dns zone configurations of the private dns zone group. |
|
properties.provisioningState |
The provisioning state of the private dns zone group resource. |
ProvisioningState
The current provisioning state.
Name | Type | Description |
---|---|---|
Deleting |
string |
|
Failed |
string |
|
Succeeded |
string |
|
Updating |
string |
RecordSet
A collective group of information about the record set information.
Name | Type | Description |
---|---|---|
fqdn |
string |
Fqdn that resolves to private endpoint ip address. |
ipAddresses |
string[] |
The private ip address of the private endpoint. |
provisioningState |
The provisioning state of the recordset. |
|
recordSetName |
string |
Recordset name. |
recordType |
string |
Resource record type. |
ttl |
integer |
Recordset time to live. |