Skip to content

Commit b5b4429

Browse files
feat(dns): update the API
#### dns:v1beta2 The following keys were added: - schemas.ManagedZoneForwardingConfigNameServerTarget.properties.domainName.description - schemas.ManagedZoneForwardingConfigNameServerTarget.properties.domainName.type #### dns:v1 The following keys were added: - schemas.ManagedZoneForwardingConfigNameServerTarget.properties.domainName.description - schemas.ManagedZoneForwardingConfigNameServerTarget.properties.domainName.type
1 parent 47e275e commit b5b4429

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

‎discovery/dns-v1.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1824,7 +1824,7 @@
18241824
}
18251825
}
18261826
},
1827-
"revision": "20250227",
1827+
"revision": "20250411",
18281828
"rootUrl": "https://dns.googleapis.com/",
18291829
"schemas": {
18301830
"Change": {
@@ -2428,6 +2428,10 @@
24282428
"ManagedZoneForwardingConfigNameServerTarget": {
24292429
"id": "ManagedZoneForwardingConfigNameServerTarget",
24302430
"properties": {
2431+
"domainName": {
2432+
"description": "Fully qualified domain name for the forwarding target.",
2433+
"type": "string"
2434+
},
24312435
"forwardingPath": {
24322436
"description": "Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.",
24332437
"enum": [

‎discovery/dns-v1beta2.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1821,7 +1821,7 @@
18211821
}
18221822
}
18231823
},
1824-
"revision": "20250227",
1824+
"revision": "20250411",
18251825
"rootUrl": "https://dns.googleapis.com/",
18261826
"schemas": {
18271827
"Change": {
@@ -2425,6 +2425,10 @@
24252425
"ManagedZoneForwardingConfigNameServerTarget": {
24262426
"id": "ManagedZoneForwardingConfigNameServerTarget",
24272427
"properties": {
2428+
"domainName": {
2429+
"description": "Fully qualified domain name for the forwarding target.",
2430+
"type": "string"
2431+
},
24282432
"forwardingPath": {
24292433
"description": "Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.",
24302434
"enum": [

‎src/apis/dns/v1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,10 @@ export namespace dns_v1 {
514514
targetNameServers?: Schema$ManagedZoneForwardingConfigNameServerTarget[];
515515
}
516516
export interface Schema$ManagedZoneForwardingConfigNameServerTarget {
517+
/**
518+
* Fully qualified domain name for the forwarding target.
519+
*/
520+
domainName?: string | null;
517521
/**
518522
* Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
519523
*/

‎src/apis/dns/v1beta2.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,10 @@ export namespace dns_v1beta2 {
514514
targetNameServers?: Schema$ManagedZoneForwardingConfigNameServerTarget[];
515515
}
516516
export interface Schema$ManagedZoneForwardingConfigNameServerTarget {
517+
/**
518+
* Fully qualified domain name for the forwarding target.
519+
*/
520+
domainName?: string | null;
517521
/**
518522
* Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
519523
*/

0 commit comments

Comments
 (0)