google-apis-dns_v1 0.42.0 → 0.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/dns_v1/classes.rb +119 -205
- data/lib/google/apis/dns_v1/gem_version.rb +2 -2
- data/lib/google/apis/dns_v1/representations.rb +3 -41
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c573ae0a2419e05e4043c63a283692c32002af84fbaefe469c6a70519374408
|
4
|
+
data.tar.gz: d97b09761e2ad32dc8e22ec0e161980ccd9259942395dfcd750af6fde6399abc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8311455ea2226a07aaa2314600dff4d1d3ec0d9c82129770bd4753691e0586e330d1ca59963b1471f68c0b3305a79e2d5b9bc973194948ffe03ec5cf9d1bcf87
|
7
|
+
data.tar.gz: c05b78e4e6d29bb70b381815198d134cc969d0da68eee3ea2b7d7e4d3cc804f386b1d1baa8d54569aecddcc357fc36bc606447684297a9933f3a9bb8af3b0da8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dns_v1
|
2
2
|
|
3
|
+
### v0.44.0 (2024-07-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240719
|
6
|
+
|
7
|
+
### v0.43.0 (2024-06-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240531
|
10
|
+
|
3
11
|
### v0.42.0 (2024-05-19)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.15.0
|
@@ -22,13 +22,13 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DnsV1
|
24
24
|
|
25
|
-
# A Change represents a set of ResourceRecordSet additions and deletions
|
26
|
-
# atomically to a ManagedZone. ResourceRecordSets within a ManagedZone
|
27
|
-
# modified by creating a new Change element in the Changes collection. In
|
28
|
-
# the Changes collection also records the past modifications to the
|
29
|
-
# ResourceRecordSets in a ManagedZone
|
30
|
-
# the sum effect of applying all Change elements in the Changes
|
31
|
-
# sequence.
|
25
|
+
# A Change represents a set of `ResourceRecordSet` additions and deletions
|
26
|
+
# applied atomically to a ManagedZone. ResourceRecordSets within a ManagedZone
|
27
|
+
# are modified by creating a new Change element in the Changes collection. In
|
28
|
+
# turn the Changes collection also records the past modifications to the `
|
29
|
+
# ResourceRecordSets` in a `ManagedZone`. The current state of the `ManagedZone`
|
30
|
+
# is the sum effect of applying all `Change` elements in the `Changes`
|
31
|
+
# collection in sequence.
|
32
32
|
class Change
|
33
33
|
include Google::Apis::Core::Hashable
|
34
34
|
|
@@ -97,24 +97,19 @@ module Google
|
|
97
97
|
# @return [Array<Google::Apis::DnsV1::Change>]
|
98
98
|
attr_accessor :changes
|
99
99
|
|
100
|
-
# Elements common to every response.
|
101
|
-
# Corresponds to the JSON property `header`
|
102
|
-
# @return [Google::Apis::DnsV1::ResponseHeader]
|
103
|
-
attr_accessor :header
|
104
|
-
|
105
100
|
# Type of resource.
|
106
101
|
# Corresponds to the JSON property `kind`
|
107
102
|
# @return [String]
|
108
103
|
attr_accessor :kind
|
109
104
|
|
110
|
-
#
|
111
|
-
#
|
112
|
-
#
|
113
|
-
#
|
114
|
-
#
|
115
|
-
#
|
116
|
-
#
|
117
|
-
#
|
105
|
+
# This field indicates that more results are available beyond the last page
|
106
|
+
# displayed. To fetch the results, make another list request and use this value
|
107
|
+
# as your page token. This lets you retrieve the complete contents of a very
|
108
|
+
# large collection one page at a time. However, if the contents of the
|
109
|
+
# collection change between the first and last paginated list request, the set
|
110
|
+
# of all elements returned are an inconsistent view of the collection. You can't
|
111
|
+
# retrieve a consistent snapshot of a collection larger than the maximum page
|
112
|
+
# size.
|
118
113
|
# Corresponds to the JSON property `nextPageToken`
|
119
114
|
# @return [String]
|
120
115
|
attr_accessor :next_page_token
|
@@ -126,7 +121,6 @@ module Google
|
|
126
121
|
# Update properties of this object
|
127
122
|
def update!(**args)
|
128
123
|
@changes = args[:changes] if args.key?(:changes)
|
129
|
-
@header = args[:header] if args.key?(:header)
|
130
124
|
@kind = args[:kind] if args.key?(:kind)
|
131
125
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
132
126
|
end
|
@@ -305,24 +299,19 @@ module Google
|
|
305
299
|
# @return [Array<Google::Apis::DnsV1::DnsKey>]
|
306
300
|
attr_accessor :dns_keys
|
307
301
|
|
308
|
-
# Elements common to every response.
|
309
|
-
# Corresponds to the JSON property `header`
|
310
|
-
# @return [Google::Apis::DnsV1::ResponseHeader]
|
311
|
-
attr_accessor :header
|
312
|
-
|
313
302
|
# Type of resource.
|
314
303
|
# Corresponds to the JSON property `kind`
|
315
304
|
# @return [String]
|
316
305
|
attr_accessor :kind
|
317
306
|
|
318
|
-
#
|
319
|
-
#
|
320
|
-
#
|
321
|
-
#
|
322
|
-
#
|
323
|
-
#
|
324
|
-
#
|
325
|
-
#
|
307
|
+
# This field indicates that more results are available beyond the last page
|
308
|
+
# displayed. To fetch the results, make another list request and use this value
|
309
|
+
# as your page token. This lets you retrieve the complete contents of a very
|
310
|
+
# large collection one page at a time. However, if the contents of the
|
311
|
+
# collection change between the first and last paginated list request, the set
|
312
|
+
# of all elements returned are an inconsistent view of the collection. You can't
|
313
|
+
# retrieve a consistent snapshot of a collection larger than the maximum page
|
314
|
+
# size.
|
326
315
|
# Corresponds to the JSON property `nextPageToken`
|
327
316
|
# @return [String]
|
328
317
|
attr_accessor :next_page_token
|
@@ -334,7 +323,6 @@ module Google
|
|
334
323
|
# Update properties of this object
|
335
324
|
def update!(**args)
|
336
325
|
@dns_keys = args[:dns_keys] if args.key?(:dns_keys)
|
337
|
-
@header = args[:header] if args.key?(:header)
|
338
326
|
@kind = args[:kind] if args.key?(:kind)
|
339
327
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
340
328
|
end
|
@@ -1072,24 +1060,19 @@ module Google
|
|
1072
1060
|
class ManagedZoneOperationsListResponse
|
1073
1061
|
include Google::Apis::Core::Hashable
|
1074
1062
|
|
1075
|
-
# Elements common to every response.
|
1076
|
-
# Corresponds to the JSON property `header`
|
1077
|
-
# @return [Google::Apis::DnsV1::ResponseHeader]
|
1078
|
-
attr_accessor :header
|
1079
|
-
|
1080
1063
|
# Type of resource.
|
1081
1064
|
# Corresponds to the JSON property `kind`
|
1082
1065
|
# @return [String]
|
1083
1066
|
attr_accessor :kind
|
1084
1067
|
|
1085
|
-
#
|
1086
|
-
#
|
1087
|
-
#
|
1088
|
-
#
|
1089
|
-
#
|
1090
|
-
#
|
1091
|
-
#
|
1092
|
-
#
|
1068
|
+
# This field indicates that more results are available beyond the last page
|
1069
|
+
# displayed. To fetch the results, make another list request and use this value
|
1070
|
+
# as your page token. This lets you retrieve the complete contents of a very
|
1071
|
+
# large collection one page at a time. However, if the contents of the
|
1072
|
+
# collection change between the first and last paginated list request, the set
|
1073
|
+
# of all elements returned are an inconsistent view of the collection. You can't
|
1074
|
+
# retrieve a consistent snapshot of a collection larger than the maximum page
|
1075
|
+
# size.
|
1093
1076
|
# Corresponds to the JSON property `nextPageToken`
|
1094
1077
|
# @return [String]
|
1095
1078
|
attr_accessor :next_page_token
|
@@ -1105,7 +1088,6 @@ module Google
|
|
1105
1088
|
|
1106
1089
|
# Update properties of this object
|
1107
1090
|
def update!(**args)
|
1108
|
-
@header = args[:header] if args.key?(:header)
|
1109
1091
|
@kind = args[:kind] if args.key?(:kind)
|
1110
1092
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1111
1093
|
@operations = args[:operations] if args.key?(:operations)
|
@@ -1155,8 +1137,8 @@ module Google
|
|
1155
1137
|
attr_accessor :kind
|
1156
1138
|
|
1157
1139
|
# The fully qualified URL of the VPC network to forward queries to. This should
|
1158
|
-
# be formatted like https://www.googleapis.com/compute/v1/projects/`project`/
|
1159
|
-
# global/networks/`network
|
1140
|
+
# be formatted like `https://www.googleapis.com/compute/v1/projects/`project`/
|
1141
|
+
# global/networks/`network``
|
1160
1142
|
# Corresponds to the JSON property `networkUrl`
|
1161
1143
|
# @return [String]
|
1162
1144
|
attr_accessor :network_url
|
@@ -1241,9 +1223,9 @@ module Google
|
|
1241
1223
|
# @return [String]
|
1242
1224
|
attr_accessor :kind
|
1243
1225
|
|
1244
|
-
# The fully qualified URL of the VPC network to bind to. Format this URL like
|
1226
|
+
# The fully qualified URL of the VPC network to bind to. Format this URL like `
|
1245
1227
|
# https://www.googleapis.com/compute/v1/projects/`project`/global/networks/`
|
1246
|
-
# network
|
1228
|
+
# network``
|
1247
1229
|
# Corresponds to the JSON property `networkUrl`
|
1248
1230
|
# @return [String]
|
1249
1231
|
attr_accessor :network_url
|
@@ -1319,8 +1301,8 @@ module Google
|
|
1319
1301
|
attr_accessor :kind
|
1320
1302
|
|
1321
1303
|
# The fully qualified URL of the namespace associated with the zone. Format must
|
1322
|
-
# be https://servicedirectory.googleapis.com/v1/projects/`project`/locations/`
|
1323
|
-
# location`/namespaces/`namespace
|
1304
|
+
# be `https://servicedirectory.googleapis.com/v1/projects/`project`/locations/`
|
1305
|
+
# location`/namespaces/`namespace``
|
1324
1306
|
# Corresponds to the JSON property `namespaceUrl`
|
1325
1307
|
# @return [String]
|
1326
1308
|
attr_accessor :namespace_url
|
@@ -1341,11 +1323,6 @@ module Google
|
|
1341
1323
|
class ListManagedZonesResponse
|
1342
1324
|
include Google::Apis::Core::Hashable
|
1343
1325
|
|
1344
|
-
# Elements common to every response.
|
1345
|
-
# Corresponds to the JSON property `header`
|
1346
|
-
# @return [Google::Apis::DnsV1::ResponseHeader]
|
1347
|
-
attr_accessor :header
|
1348
|
-
|
1349
1326
|
# Type of resource.
|
1350
1327
|
# Corresponds to the JSON property `kind`
|
1351
1328
|
# @return [String]
|
@@ -1356,14 +1333,14 @@ module Google
|
|
1356
1333
|
# @return [Array<Google::Apis::DnsV1::ManagedZone>]
|
1357
1334
|
attr_accessor :managed_zones
|
1358
1335
|
|
1359
|
-
#
|
1360
|
-
#
|
1361
|
-
#
|
1362
|
-
#
|
1363
|
-
#
|
1364
|
-
#
|
1365
|
-
#
|
1366
|
-
#
|
1336
|
+
# This field indicates that more results are available beyond the last page
|
1337
|
+
# displayed. To fetch the results, make another list request and use this value
|
1338
|
+
# as your page token. This lets you retrieve the complete contents of a very
|
1339
|
+
# large collection one page at a time. However, if the contents of the
|
1340
|
+
# collection change between the first and last paginated list request, the set
|
1341
|
+
# of all elements returned are an inconsistent view of the collection. You can't
|
1342
|
+
# retrieve a consistent snapshot of a collection larger than the maximum page
|
1343
|
+
# size.
|
1367
1344
|
# Corresponds to the JSON property `nextPageToken`
|
1368
1345
|
# @return [String]
|
1369
1346
|
attr_accessor :next_page_token
|
@@ -1374,7 +1351,6 @@ module Google
|
|
1374
1351
|
|
1375
1352
|
# Update properties of this object
|
1376
1353
|
def update!(**args)
|
1377
|
-
@header = args[:header] if args.key?(:header)
|
1378
1354
|
@kind = args[:kind] if args.key?(:kind)
|
1379
1355
|
@managed_zones = args[:managed_zones] if args.key?(:managed_zones)
|
1380
1356
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
@@ -1511,24 +1487,19 @@ module Google
|
|
1511
1487
|
class PoliciesListResponse
|
1512
1488
|
include Google::Apis::Core::Hashable
|
1513
1489
|
|
1514
|
-
# Elements common to every response.
|
1515
|
-
# Corresponds to the JSON property `header`
|
1516
|
-
# @return [Google::Apis::DnsV1::ResponseHeader]
|
1517
|
-
attr_accessor :header
|
1518
|
-
|
1519
1490
|
# Type of resource.
|
1520
1491
|
# Corresponds to the JSON property `kind`
|
1521
1492
|
# @return [String]
|
1522
1493
|
attr_accessor :kind
|
1523
1494
|
|
1524
|
-
#
|
1525
|
-
#
|
1526
|
-
#
|
1527
|
-
#
|
1528
|
-
#
|
1529
|
-
#
|
1530
|
-
#
|
1531
|
-
#
|
1495
|
+
# This field indicates that more results are available beyond the last page
|
1496
|
+
# displayed. To fetch the results, make another list request and use this value
|
1497
|
+
# as your page token. This lets you retrieve the complete contents of a very
|
1498
|
+
# large collection one page at a time. However, if the contents of the
|
1499
|
+
# collection change between the first and last paginated list request, the set
|
1500
|
+
# of all elements returned are an inconsistent view of the collection. You can't
|
1501
|
+
# retrieve a consistent snapshot of a collection larger than the maximum page
|
1502
|
+
# size.
|
1532
1503
|
# Corresponds to the JSON property `nextPageToken`
|
1533
1504
|
# @return [String]
|
1534
1505
|
attr_accessor :next_page_token
|
@@ -1544,7 +1515,6 @@ module Google
|
|
1544
1515
|
|
1545
1516
|
# Update properties of this object
|
1546
1517
|
def update!(**args)
|
1547
|
-
@header = args[:header] if args.key?(:header)
|
1548
1518
|
@kind = args[:kind] if args.key?(:kind)
|
1549
1519
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1550
1520
|
@policies = args[:policies] if args.key?(:policies)
|
@@ -1555,11 +1525,6 @@ module Google
|
|
1555
1525
|
class PoliciesPatchResponse
|
1556
1526
|
include Google::Apis::Core::Hashable
|
1557
1527
|
|
1558
|
-
# Elements common to every response.
|
1559
|
-
# Corresponds to the JSON property `header`
|
1560
|
-
# @return [Google::Apis::DnsV1::ResponseHeader]
|
1561
|
-
attr_accessor :header
|
1562
|
-
|
1563
1528
|
# A policy is a collection of DNS rules applied to one or more Virtual Private
|
1564
1529
|
# Cloud resources.
|
1565
1530
|
# Corresponds to the JSON property `policy`
|
@@ -1572,7 +1537,6 @@ module Google
|
|
1572
1537
|
|
1573
1538
|
# Update properties of this object
|
1574
1539
|
def update!(**args)
|
1575
|
-
@header = args[:header] if args.key?(:header)
|
1576
1540
|
@policy = args[:policy] if args.key?(:policy)
|
1577
1541
|
end
|
1578
1542
|
end
|
@@ -1581,11 +1545,6 @@ module Google
|
|
1581
1545
|
class PoliciesUpdateResponse
|
1582
1546
|
include Google::Apis::Core::Hashable
|
1583
1547
|
|
1584
|
-
# Elements common to every response.
|
1585
|
-
# Corresponds to the JSON property `header`
|
1586
|
-
# @return [Google::Apis::DnsV1::ResponseHeader]
|
1587
|
-
attr_accessor :header
|
1588
|
-
|
1589
1548
|
# A policy is a collection of DNS rules applied to one or more Virtual Private
|
1590
1549
|
# Cloud resources.
|
1591
1550
|
# Corresponds to the JSON property `policy`
|
@@ -1598,7 +1557,6 @@ module Google
|
|
1598
1557
|
|
1599
1558
|
# Update properties of this object
|
1600
1559
|
def update!(**args)
|
1601
|
-
@header = args[:header] if args.key?(:header)
|
1602
1560
|
@policy = args[:policy] if args.key?(:policy)
|
1603
1561
|
end
|
1604
1562
|
end
|
@@ -1771,7 +1729,7 @@ module Google
|
|
1771
1729
|
|
1772
1730
|
# A project resource. The project is a top level container for resources
|
1773
1731
|
# including Cloud DNS ManagedZones. Projects can be created only in the APIs
|
1774
|
-
# console.
|
1732
|
+
# console.
|
1775
1733
|
class Project
|
1776
1734
|
include Google::Apis::Core::Hashable
|
1777
1735
|
|
@@ -1834,6 +1792,11 @@ module Google
|
|
1834
1792
|
# @return [Fixnum]
|
1835
1793
|
attr_accessor :gke_clusters_per_response_policy
|
1836
1794
|
|
1795
|
+
#
|
1796
|
+
# Corresponds to the JSON property `internetHealthChecksPerManagedZone`
|
1797
|
+
# @return [Fixnum]
|
1798
|
+
attr_accessor :internet_health_checks_per_managed_zone
|
1799
|
+
|
1837
1800
|
# Maximum allowed number of items per routing policy.
|
1838
1801
|
# Corresponds to the JSON property `itemsPerRoutingPolicy`
|
1839
1802
|
# @return [Fixnum]
|
@@ -1952,6 +1915,7 @@ module Google
|
|
1952
1915
|
@gke_clusters_per_managed_zone = args[:gke_clusters_per_managed_zone] if args.key?(:gke_clusters_per_managed_zone)
|
1953
1916
|
@gke_clusters_per_policy = args[:gke_clusters_per_policy] if args.key?(:gke_clusters_per_policy)
|
1954
1917
|
@gke_clusters_per_response_policy = args[:gke_clusters_per_response_policy] if args.key?(:gke_clusters_per_response_policy)
|
1918
|
+
@internet_health_checks_per_managed_zone = args[:internet_health_checks_per_managed_zone] if args.key?(:internet_health_checks_per_managed_zone)
|
1955
1919
|
@items_per_routing_policy = args[:items_per_routing_policy] if args.key?(:items_per_routing_policy)
|
1956
1920
|
@kind = args[:kind] if args.key?(:kind)
|
1957
1921
|
@managed_zones = args[:managed_zones] if args.key?(:managed_zones)
|
@@ -1982,12 +1946,19 @@ module Google
|
|
1982
1946
|
class RrSetRoutingPolicy
|
1983
1947
|
include Google::Apis::Core::Hashable
|
1984
1948
|
|
1985
|
-
# Configures a RRSetRoutingPolicy that routes based on the geo location of the
|
1949
|
+
# Configures a `RRSetRoutingPolicy` that routes based on the geo location of the
|
1986
1950
|
# querying user.
|
1987
1951
|
# Corresponds to the JSON property `geo`
|
1988
1952
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy]
|
1989
1953
|
attr_accessor :geo
|
1990
1954
|
|
1955
|
+
# The selfLink attribute of the HealthCheck resource to use for this
|
1956
|
+
# RRSetRoutingPolicy. https://cloud.google.com/compute/docs/reference/rest/v1/
|
1957
|
+
# healthChecks
|
1958
|
+
# Corresponds to the JSON property `healthCheck`
|
1959
|
+
# @return [String]
|
1960
|
+
attr_accessor :health_check
|
1961
|
+
|
1991
1962
|
#
|
1992
1963
|
# Corresponds to the JSON property `kind`
|
1993
1964
|
# @return [String]
|
@@ -2012,13 +1983,14 @@ module Google
|
|
2012
1983
|
# Update properties of this object
|
2013
1984
|
def update!(**args)
|
2014
1985
|
@geo = args[:geo] if args.key?(:geo)
|
1986
|
+
@health_check = args[:health_check] if args.key?(:health_check)
|
2015
1987
|
@kind = args[:kind] if args.key?(:kind)
|
2016
1988
|
@primary_backup = args[:primary_backup] if args.key?(:primary_backup)
|
2017
1989
|
@wrr = args[:wrr] if args.key?(:wrr)
|
2018
1990
|
end
|
2019
1991
|
end
|
2020
1992
|
|
2021
|
-
# Configures a RRSetRoutingPolicy that routes based on the geo location of the
|
1993
|
+
# Configures a `RRSetRoutingPolicy` that routes based on the geo location of the
|
2022
1994
|
# querying user.
|
2023
1995
|
class RrSetRoutingPolicyGeoPolicy
|
2024
1996
|
include Google::Apis::Core::Hashable
|
@@ -2063,8 +2035,7 @@ module Google
|
|
2063
2035
|
|
2064
2036
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2065
2037
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2066
|
-
# response.
|
2067
|
-
# set.
|
2038
|
+
# response.
|
2068
2039
|
# Corresponds to the JSON property `healthCheckedTargets`
|
2069
2040
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyHealthCheckTargets]
|
2070
2041
|
attr_accessor :health_checked_targets
|
@@ -2086,7 +2057,7 @@ module Google
|
|
2086
2057
|
# @return [Array<String>]
|
2087
2058
|
attr_accessor :rrdatas
|
2088
2059
|
|
2089
|
-
# DNSSEC generated signatures for all the rrdata within this item. If health
|
2060
|
+
# DNSSEC generated signatures for all the `rrdata` within this item. If health
|
2090
2061
|
# checked targets are provided for DNSSEC enabled zones, there's a restriction
|
2091
2062
|
# of 1 IP address per item.
|
2092
2063
|
# Corresponds to the JSON property `signatureRrdatas`
|
@@ -2109,11 +2080,17 @@ module Google
|
|
2109
2080
|
|
2110
2081
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2111
2082
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2112
|
-
# response.
|
2113
|
-
# set.
|
2083
|
+
# response.
|
2114
2084
|
class RrSetRoutingPolicyHealthCheckTargets
|
2115
2085
|
include Google::Apis::Core::Hashable
|
2116
2086
|
|
2087
|
+
# The Internet IP addresses to be health checked. The format matches the format
|
2088
|
+
# of ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (
|
2089
|
+
# section 3.6.1)
|
2090
|
+
# Corresponds to the JSON property `externalEndpoints`
|
2091
|
+
# @return [Array<String>]
|
2092
|
+
attr_accessor :external_endpoints
|
2093
|
+
|
2117
2094
|
# Configuration for internal load balancers to be health checked.
|
2118
2095
|
# Corresponds to the JSON property `internalLoadBalancers`
|
2119
2096
|
# @return [Array<Google::Apis::DnsV1::RrSetRoutingPolicyLoadBalancerTarget>]
|
@@ -2125,6 +2102,7 @@ module Google
|
|
2125
2102
|
|
2126
2103
|
# Update properties of this object
|
2127
2104
|
def update!(**args)
|
2105
|
+
@external_endpoints = args[:external_endpoints] if args.key?(:external_endpoints)
|
2128
2106
|
@internal_load_balancers = args[:internal_load_balancers] if args.key?(:internal_load_balancers)
|
2129
2107
|
end
|
2130
2108
|
end
|
@@ -2159,8 +2137,8 @@ module Google
|
|
2159
2137
|
attr_accessor :load_balancer_type
|
2160
2138
|
|
2161
2139
|
# The fully qualified URL of the network that the load balancer is attached to.
|
2162
|
-
# This should be formatted like https://www.googleapis.com/compute/v1/projects/`
|
2163
|
-
# project`/global/networks/`network
|
2140
|
+
# This should be formatted like `https://www.googleapis.com/compute/v1/projects/`
|
2141
|
+
# project`/global/networks/`network``.
|
2164
2142
|
# Corresponds to the JSON property `networkUrl`
|
2165
2143
|
# @return [String]
|
2166
2144
|
attr_accessor :network_url
|
@@ -2203,7 +2181,7 @@ module Google
|
|
2203
2181
|
class RrSetRoutingPolicyPrimaryBackupPolicy
|
2204
2182
|
include Google::Apis::Core::Hashable
|
2205
2183
|
|
2206
|
-
# Configures a RRSetRoutingPolicy that routes based on the geo location of the
|
2184
|
+
# Configures a `RRSetRoutingPolicy` that routes based on the geo location of the
|
2207
2185
|
# querying user.
|
2208
2186
|
# Corresponds to the JSON property `backupGeoTargets`
|
2209
2187
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy]
|
@@ -2216,13 +2194,12 @@ module Google
|
|
2216
2194
|
|
2217
2195
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2218
2196
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2219
|
-
# response.
|
2220
|
-
# set.
|
2197
|
+
# response.
|
2221
2198
|
# Corresponds to the JSON property `primaryTargets`
|
2222
2199
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyHealthCheckTargets]
|
2223
2200
|
attr_accessor :primary_targets
|
2224
2201
|
|
2225
|
-
# When serving state is PRIMARY
|
2202
|
+
# When serving state is `PRIMARY`, this field provides the option of sending a
|
2226
2203
|
# small percentage of the traffic to the backup targets.
|
2227
2204
|
# Corresponds to the JSON property `trickleTraffic`
|
2228
2205
|
# @return [Float]
|
@@ -2272,8 +2249,7 @@ module Google
|
|
2272
2249
|
|
2273
2250
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2274
2251
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2275
|
-
# response.
|
2276
|
-
# set.
|
2252
|
+
# response.
|
2277
2253
|
# Corresponds to the JSON property `healthCheckedTargets`
|
2278
2254
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyHealthCheckTargets]
|
2279
2255
|
attr_accessor :health_checked_targets
|
@@ -2288,16 +2264,16 @@ module Google
|
|
2288
2264
|
# @return [Array<String>]
|
2289
2265
|
attr_accessor :rrdatas
|
2290
2266
|
|
2291
|
-
# DNSSEC generated signatures for all the rrdata within this item. Note that
|
2292
|
-
# health checked targets are provided for DNSSEC enabled zones, there's a
|
2267
|
+
# DNSSEC generated signatures for all the `rrdata` within this item. Note that
|
2268
|
+
# if health checked targets are provided for DNSSEC enabled zones, there's a
|
2293
2269
|
# restriction of 1 IP address per item.
|
2294
2270
|
# Corresponds to the JSON property `signatureRrdatas`
|
2295
2271
|
# @return [Array<String>]
|
2296
2272
|
attr_accessor :signature_rrdatas
|
2297
2273
|
|
2298
|
-
# The weight corresponding to this WrrPolicyItem object. When multiple
|
2299
|
-
# WrrPolicyItem objects are configured, the probability of returning an
|
2300
|
-
# WrrPolicyItem object's data is proportional to its weight relative to the sum
|
2274
|
+
# The weight corresponding to this `WrrPolicyItem` object. When multiple `
|
2275
|
+
# WrrPolicyItem` objects are configured, the probability of returning an `
|
2276
|
+
# WrrPolicyItem` object's data is proportional to its weight relative to the sum
|
2301
2277
|
# of weights configured for all items. This weight must be non-negative.
|
2302
2278
|
# Corresponds to the JSON property `weight`
|
2303
2279
|
# @return [Float]
|
@@ -2349,7 +2325,7 @@ module Google
|
|
2349
2325
|
# @return [Array<String>]
|
2350
2326
|
attr_accessor :signature_rrdatas
|
2351
2327
|
|
2352
|
-
# Number of seconds that this ResourceRecordSet can be cached by resolvers.
|
2328
|
+
# Number of seconds that this `ResourceRecordSet` can be cached by resolvers.
|
2353
2329
|
# Corresponds to the JSON property `ttl`
|
2354
2330
|
# @return [Fixnum]
|
2355
2331
|
attr_accessor :ttl
|
@@ -2393,23 +2369,19 @@ module Google
|
|
2393
2369
|
class ListResourceRecordSetsResponse
|
2394
2370
|
include Google::Apis::Core::Hashable
|
2395
2371
|
|
2396
|
-
# Elements common to every response.
|
2397
|
-
# Corresponds to the JSON property `header`
|
2398
|
-
# @return [Google::Apis::DnsV1::ResponseHeader]
|
2399
|
-
attr_accessor :header
|
2400
|
-
|
2401
2372
|
# Type of resource.
|
2402
2373
|
# Corresponds to the JSON property `kind`
|
2403
2374
|
# @return [String]
|
2404
2375
|
attr_accessor :kind
|
2405
2376
|
|
2406
|
-
#
|
2407
|
-
#
|
2408
|
-
#
|
2409
|
-
#
|
2410
|
-
#
|
2411
|
-
# returned
|
2412
|
-
# consistent snapshot of a collection larger than the maximum page
|
2377
|
+
# This field indicates that more results are available beyond the last page
|
2378
|
+
# displayed. To fetch the results, make another list request and use this value
|
2379
|
+
# as your page token. This lets you retrieve the complete contents of a very
|
2380
|
+
# large collection one page at a time. However, if the contents of the
|
2381
|
+
# collection change between the first and last paginated list request, the set
|
2382
|
+
# of all elements returned are an inconsistent view of the collection. You can't
|
2383
|
+
# retrieve a consistent snapshot of a collection larger than the maximum page
|
2384
|
+
# size.
|
2413
2385
|
# Corresponds to the JSON property `nextPageToken`
|
2414
2386
|
# @return [String]
|
2415
2387
|
attr_accessor :next_page_token
|
@@ -2425,51 +2397,24 @@ module Google
|
|
2425
2397
|
|
2426
2398
|
# Update properties of this object
|
2427
2399
|
def update!(**args)
|
2428
|
-
@header = args[:header] if args.key?(:header)
|
2429
2400
|
@kind = args[:kind] if args.key?(:kind)
|
2430
2401
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2431
2402
|
@rrsets = args[:rrsets] if args.key?(:rrsets)
|
2432
2403
|
end
|
2433
2404
|
end
|
2434
2405
|
|
2435
|
-
# Elements common to every response.
|
2436
|
-
class ResponseHeader
|
2437
|
-
include Google::Apis::Core::Hashable
|
2438
|
-
|
2439
|
-
# For mutating operation requests that completed successfully. This is the
|
2440
|
-
# client_operation_id if the client specified it, otherwise it is generated by
|
2441
|
-
# the server (output only).
|
2442
|
-
# Corresponds to the JSON property `operationId`
|
2443
|
-
# @return [String]
|
2444
|
-
attr_accessor :operation_id
|
2445
|
-
|
2446
|
-
def initialize(**args)
|
2447
|
-
update!(**args)
|
2448
|
-
end
|
2449
|
-
|
2450
|
-
# Update properties of this object
|
2451
|
-
def update!(**args)
|
2452
|
-
@operation_id = args[:operation_id] if args.key?(:operation_id)
|
2453
|
-
end
|
2454
|
-
end
|
2455
|
-
|
2456
2406
|
#
|
2457
2407
|
class ResponsePoliciesListResponse
|
2458
2408
|
include Google::Apis::Core::Hashable
|
2459
2409
|
|
2460
|
-
#
|
2461
|
-
#
|
2462
|
-
#
|
2463
|
-
|
2464
|
-
|
2465
|
-
#
|
2466
|
-
#
|
2467
|
-
#
|
2468
|
-
# complete contents of even very large collections one page at a time. However,
|
2469
|
-
# if the contents of the collection change between the first and last paginated
|
2470
|
-
# list request, the set of all elements returned are an inconsistent view of the
|
2471
|
-
# collection. You cannot retrieve a consistent snapshot of a collection larger
|
2472
|
-
# than the maximum page size.
|
2410
|
+
# This field indicates that more results are available beyond the last page
|
2411
|
+
# displayed. To fetch the results, make another list request and use this value
|
2412
|
+
# as your page token. This lets you retrieve the complete contents of a very
|
2413
|
+
# large collection one page at a time. However, if the contents of the
|
2414
|
+
# collection change between the first and last paginated list request, the set
|
2415
|
+
# of all elements returned are an inconsistent view of the collection. You can't
|
2416
|
+
# retrieve a consistent snapshot of a collection larger than the maximum page
|
2417
|
+
# size.
|
2473
2418
|
# Corresponds to the JSON property `nextPageToken`
|
2474
2419
|
# @return [String]
|
2475
2420
|
attr_accessor :next_page_token
|
@@ -2485,7 +2430,6 @@ module Google
|
|
2485
2430
|
|
2486
2431
|
# Update properties of this object
|
2487
2432
|
def update!(**args)
|
2488
|
-
@header = args[:header] if args.key?(:header)
|
2489
2433
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2490
2434
|
@response_policies = args[:response_policies] if args.key?(:response_policies)
|
2491
2435
|
end
|
@@ -2495,11 +2439,6 @@ module Google
|
|
2495
2439
|
class ResponsePoliciesPatchResponse
|
2496
2440
|
include Google::Apis::Core::Hashable
|
2497
2441
|
|
2498
|
-
# Elements common to every response.
|
2499
|
-
# Corresponds to the JSON property `header`
|
2500
|
-
# @return [Google::Apis::DnsV1::ResponseHeader]
|
2501
|
-
attr_accessor :header
|
2502
|
-
|
2503
2442
|
# A Response Policy is a collection of selectors that apply to queries made
|
2504
2443
|
# against one or more Virtual Private Cloud networks.
|
2505
2444
|
# Corresponds to the JSON property `responsePolicy`
|
@@ -2512,7 +2451,6 @@ module Google
|
|
2512
2451
|
|
2513
2452
|
# Update properties of this object
|
2514
2453
|
def update!(**args)
|
2515
|
-
@header = args[:header] if args.key?(:header)
|
2516
2454
|
@response_policy = args[:response_policy] if args.key?(:response_policy)
|
2517
2455
|
end
|
2518
2456
|
end
|
@@ -2521,11 +2459,6 @@ module Google
|
|
2521
2459
|
class ResponsePoliciesUpdateResponse
|
2522
2460
|
include Google::Apis::Core::Hashable
|
2523
2461
|
|
2524
|
-
# Elements common to every response.
|
2525
|
-
# Corresponds to the JSON property `header`
|
2526
|
-
# @return [Google::Apis::DnsV1::ResponseHeader]
|
2527
|
-
attr_accessor :header
|
2528
|
-
|
2529
2462
|
# A Response Policy is a collection of selectors that apply to queries made
|
2530
2463
|
# against one or more Virtual Private Cloud networks.
|
2531
2464
|
# Corresponds to the JSON property `responsePolicy`
|
@@ -2538,7 +2471,6 @@ module Google
|
|
2538
2471
|
|
2539
2472
|
# Update properties of this object
|
2540
2473
|
def update!(**args)
|
2541
|
-
@header = args[:header] if args.key?(:header)
|
2542
2474
|
@response_policy = args[:response_policy] if args.key?(:response_policy)
|
2543
2475
|
end
|
2544
2476
|
end
|
@@ -2638,8 +2570,8 @@ module Google
|
|
2638
2570
|
attr_accessor :kind
|
2639
2571
|
|
2640
2572
|
# The fully qualified URL of the VPC network to bind to. This should be
|
2641
|
-
# formatted like https://www.googleapis.com/compute/v1/projects/`project`/
|
2642
|
-
# networks/`network
|
2573
|
+
# formatted like `https://www.googleapis.com/compute/v1/projects/`project`/
|
2574
|
+
# global/networks/`network``
|
2643
2575
|
# Corresponds to the JSON property `networkUrl`
|
2644
2576
|
# @return [String]
|
2645
2577
|
attr_accessor :network_url
|
@@ -2730,19 +2662,14 @@ module Google
|
|
2730
2662
|
class ResponsePolicyRulesListResponse
|
2731
2663
|
include Google::Apis::Core::Hashable
|
2732
2664
|
|
2733
|
-
#
|
2734
|
-
#
|
2735
|
-
#
|
2736
|
-
|
2737
|
-
|
2738
|
-
#
|
2739
|
-
#
|
2740
|
-
#
|
2741
|
-
# contents of even very large collections one page at a time. However, if the
|
2742
|
-
# contents of the collection change between the first and last paginated list
|
2743
|
-
# request, the set of all elements returned are an inconsistent view of the
|
2744
|
-
# collection. You cannot retrieve a consistent snapshot of a collection larger
|
2745
|
-
# than the maximum page size.
|
2665
|
+
# This field indicates that more results are available beyond the last page
|
2666
|
+
# displayed. To fetch the results, make another list request and use this value
|
2667
|
+
# as your page token. This lets you retrieve the complete contents of a very
|
2668
|
+
# large collection one page at a time. However, if the contents of the
|
2669
|
+
# collection change between the first and last paginated list request, the set
|
2670
|
+
# of all elements returned are an inconsistent view of the collection. You can't
|
2671
|
+
# retrieve a consistent snapshot of a collection larger than the maximum page
|
2672
|
+
# size.
|
2746
2673
|
# Corresponds to the JSON property `nextPageToken`
|
2747
2674
|
# @return [String]
|
2748
2675
|
attr_accessor :next_page_token
|
@@ -2758,7 +2685,6 @@ module Google
|
|
2758
2685
|
|
2759
2686
|
# Update properties of this object
|
2760
2687
|
def update!(**args)
|
2761
|
-
@header = args[:header] if args.key?(:header)
|
2762
2688
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2763
2689
|
@response_policy_rules = args[:response_policy_rules] if args.key?(:response_policy_rules)
|
2764
2690
|
end
|
@@ -2768,11 +2694,6 @@ module Google
|
|
2768
2694
|
class ResponsePolicyRulesPatchResponse
|
2769
2695
|
include Google::Apis::Core::Hashable
|
2770
2696
|
|
2771
|
-
# Elements common to every response.
|
2772
|
-
# Corresponds to the JSON property `header`
|
2773
|
-
# @return [Google::Apis::DnsV1::ResponseHeader]
|
2774
|
-
attr_accessor :header
|
2775
|
-
|
2776
2697
|
# A Response Policy Rule is a selector that applies its behavior to queries that
|
2777
2698
|
# match the selector. Selectors are DNS names, which may be wildcards or exact
|
2778
2699
|
# matches. Each DNS query subject to a Response Policy matches at most one
|
@@ -2788,7 +2709,6 @@ module Google
|
|
2788
2709
|
|
2789
2710
|
# Update properties of this object
|
2790
2711
|
def update!(**args)
|
2791
|
-
@header = args[:header] if args.key?(:header)
|
2792
2712
|
@response_policy_rule = args[:response_policy_rule] if args.key?(:response_policy_rule)
|
2793
2713
|
end
|
2794
2714
|
end
|
@@ -2797,11 +2717,6 @@ module Google
|
|
2797
2717
|
class ResponsePolicyRulesUpdateResponse
|
2798
2718
|
include Google::Apis::Core::Hashable
|
2799
2719
|
|
2800
|
-
# Elements common to every response.
|
2801
|
-
# Corresponds to the JSON property `header`
|
2802
|
-
# @return [Google::Apis::DnsV1::ResponseHeader]
|
2803
|
-
attr_accessor :header
|
2804
|
-
|
2805
2720
|
# A Response Policy Rule is a selector that applies its behavior to queries that
|
2806
2721
|
# match the selector. Selectors are DNS names, which may be wildcards or exact
|
2807
2722
|
# matches. Each DNS query subject to a Response Policy matches at most one
|
@@ -2817,7 +2732,6 @@ module Google
|
|
2817
2732
|
|
2818
2733
|
# Update properties of this object
|
2819
2734
|
def update!(**args)
|
2820
|
-
@header = args[:header] if args.key?(:header)
|
2821
2735
|
@response_policy_rule = args[:response_policy_rule] if args.key?(:response_policy_rule)
|
2822
2736
|
end
|
2823
2737
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DnsV1
|
18
18
|
# Version of the google-apis-dns_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240719"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -346,12 +346,6 @@ module Google
|
|
346
346
|
include Google::Apis::Core::JsonObjectSupport
|
347
347
|
end
|
348
348
|
|
349
|
-
class ResponseHeader
|
350
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
-
|
352
|
-
include Google::Apis::Core::JsonObjectSupport
|
353
|
-
end
|
354
|
-
|
355
349
|
class ResponsePoliciesListResponse
|
356
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
351
|
|
@@ -438,8 +432,6 @@ module Google
|
|
438
432
|
class Representation < Google::Apis::Core::JsonRepresentation
|
439
433
|
collection :changes, as: 'changes', class: Google::Apis::DnsV1::Change, decorator: Google::Apis::DnsV1::Change::Representation
|
440
434
|
|
441
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
442
|
-
|
443
435
|
property :kind, as: 'kind'
|
444
436
|
property :next_page_token, as: 'nextPageToken'
|
445
437
|
end
|
@@ -486,8 +478,6 @@ module Google
|
|
486
478
|
class Representation < Google::Apis::Core::JsonRepresentation
|
487
479
|
collection :dns_keys, as: 'dnsKeys', class: Google::Apis::DnsV1::DnsKey, decorator: Google::Apis::DnsV1::DnsKey::Representation
|
488
480
|
|
489
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
490
|
-
|
491
481
|
property :kind, as: 'kind'
|
492
482
|
property :next_page_token, as: 'nextPageToken'
|
493
483
|
end
|
@@ -651,8 +641,6 @@ module Google
|
|
651
641
|
class ManagedZoneOperationsListResponse
|
652
642
|
# @private
|
653
643
|
class Representation < Google::Apis::Core::JsonRepresentation
|
654
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
655
|
-
|
656
644
|
property :kind, as: 'kind'
|
657
645
|
property :next_page_token, as: 'nextPageToken'
|
658
646
|
collection :operations, as: 'operations', class: Google::Apis::DnsV1::Operation, decorator: Google::Apis::DnsV1::Operation::Representation
|
@@ -733,8 +721,6 @@ module Google
|
|
733
721
|
class ListManagedZonesResponse
|
734
722
|
# @private
|
735
723
|
class Representation < Google::Apis::Core::JsonRepresentation
|
736
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
737
|
-
|
738
724
|
property :kind, as: 'kind'
|
739
725
|
collection :managed_zones, as: 'managedZones', class: Google::Apis::DnsV1::ManagedZone, decorator: Google::Apis::DnsV1::ManagedZone::Representation
|
740
726
|
|
@@ -781,8 +767,6 @@ module Google
|
|
781
767
|
class PoliciesListResponse
|
782
768
|
# @private
|
783
769
|
class Representation < Google::Apis::Core::JsonRepresentation
|
784
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
785
|
-
|
786
770
|
property :kind, as: 'kind'
|
787
771
|
property :next_page_token, as: 'nextPageToken'
|
788
772
|
collection :policies, as: 'policies', class: Google::Apis::DnsV1::Policy, decorator: Google::Apis::DnsV1::Policy::Representation
|
@@ -793,8 +777,6 @@ module Google
|
|
793
777
|
class PoliciesPatchResponse
|
794
778
|
# @private
|
795
779
|
class Representation < Google::Apis::Core::JsonRepresentation
|
796
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
797
|
-
|
798
780
|
property :policy, as: 'policy', class: Google::Apis::DnsV1::Policy, decorator: Google::Apis::DnsV1::Policy::Representation
|
799
781
|
|
800
782
|
end
|
@@ -803,8 +785,6 @@ module Google
|
|
803
785
|
class PoliciesUpdateResponse
|
804
786
|
# @private
|
805
787
|
class Representation < Google::Apis::Core::JsonRepresentation
|
806
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
807
|
-
|
808
788
|
property :policy, as: 'policy', class: Google::Apis::DnsV1::Policy, decorator: Google::Apis::DnsV1::Policy::Representation
|
809
789
|
|
810
790
|
end
|
@@ -871,6 +851,7 @@ module Google
|
|
871
851
|
property :gke_clusters_per_managed_zone, as: 'gkeClustersPerManagedZone'
|
872
852
|
property :gke_clusters_per_policy, as: 'gkeClustersPerPolicy'
|
873
853
|
property :gke_clusters_per_response_policy, as: 'gkeClustersPerResponsePolicy'
|
854
|
+
property :internet_health_checks_per_managed_zone, as: 'internetHealthChecksPerManagedZone'
|
874
855
|
property :items_per_routing_policy, as: 'itemsPerRoutingPolicy'
|
875
856
|
property :kind, as: 'kind'
|
876
857
|
property :managed_zones, as: 'managedZones'
|
@@ -901,6 +882,7 @@ module Google
|
|
901
882
|
class Representation < Google::Apis::Core::JsonRepresentation
|
902
883
|
property :geo, as: 'geo', class: Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy, decorator: Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy::Representation
|
903
884
|
|
885
|
+
property :health_check, as: 'healthCheck'
|
904
886
|
property :kind, as: 'kind'
|
905
887
|
property :primary_backup, as: 'primaryBackup', class: Google::Apis::DnsV1::RrSetRoutingPolicyPrimaryBackupPolicy, decorator: Google::Apis::DnsV1::RrSetRoutingPolicyPrimaryBackupPolicy::Representation
|
906
888
|
|
@@ -934,6 +916,7 @@ module Google
|
|
934
916
|
class RrSetRoutingPolicyHealthCheckTargets
|
935
917
|
# @private
|
936
918
|
class Representation < Google::Apis::Core::JsonRepresentation
|
919
|
+
collection :external_endpoints, as: 'externalEndpoints'
|
937
920
|
collection :internal_load_balancers, as: 'internalLoadBalancers', class: Google::Apis::DnsV1::RrSetRoutingPolicyLoadBalancerTarget, decorator: Google::Apis::DnsV1::RrSetRoutingPolicyLoadBalancerTarget::Representation
|
938
921
|
|
939
922
|
end
|
@@ -1009,8 +992,6 @@ module Google
|
|
1009
992
|
class ListResourceRecordSetsResponse
|
1010
993
|
# @private
|
1011
994
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1012
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
1013
|
-
|
1014
995
|
property :kind, as: 'kind'
|
1015
996
|
property :next_page_token, as: 'nextPageToken'
|
1016
997
|
collection :rrsets, as: 'rrsets', class: Google::Apis::DnsV1::ResourceRecordSet, decorator: Google::Apis::DnsV1::ResourceRecordSet::Representation
|
@@ -1018,18 +999,9 @@ module Google
|
|
1018
999
|
end
|
1019
1000
|
end
|
1020
1001
|
|
1021
|
-
class ResponseHeader
|
1022
|
-
# @private
|
1023
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1024
|
-
property :operation_id, as: 'operationId'
|
1025
|
-
end
|
1026
|
-
end
|
1027
|
-
|
1028
1002
|
class ResponsePoliciesListResponse
|
1029
1003
|
# @private
|
1030
1004
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1031
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
1032
|
-
|
1033
1005
|
property :next_page_token, as: 'nextPageToken'
|
1034
1006
|
collection :response_policies, as: 'responsePolicies', class: Google::Apis::DnsV1::ResponsePolicy, decorator: Google::Apis::DnsV1::ResponsePolicy::Representation
|
1035
1007
|
|
@@ -1039,8 +1011,6 @@ module Google
|
|
1039
1011
|
class ResponsePoliciesPatchResponse
|
1040
1012
|
# @private
|
1041
1013
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1042
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
1043
|
-
|
1044
1014
|
property :response_policy, as: 'responsePolicy', class: Google::Apis::DnsV1::ResponsePolicy, decorator: Google::Apis::DnsV1::ResponsePolicy::Representation
|
1045
1015
|
|
1046
1016
|
end
|
@@ -1049,8 +1019,6 @@ module Google
|
|
1049
1019
|
class ResponsePoliciesUpdateResponse
|
1050
1020
|
# @private
|
1051
1021
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1052
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
1053
|
-
|
1054
1022
|
property :response_policy, as: 'responsePolicy', class: Google::Apis::DnsV1::ResponsePolicy, decorator: Google::Apis::DnsV1::ResponsePolicy::Representation
|
1055
1023
|
|
1056
1024
|
end
|
@@ -1110,8 +1078,6 @@ module Google
|
|
1110
1078
|
class ResponsePolicyRulesListResponse
|
1111
1079
|
# @private
|
1112
1080
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1113
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
1114
|
-
|
1115
1081
|
property :next_page_token, as: 'nextPageToken'
|
1116
1082
|
collection :response_policy_rules, as: 'responsePolicyRules', class: Google::Apis::DnsV1::ResponsePolicyRule, decorator: Google::Apis::DnsV1::ResponsePolicyRule::Representation
|
1117
1083
|
|
@@ -1121,8 +1087,6 @@ module Google
|
|
1121
1087
|
class ResponsePolicyRulesPatchResponse
|
1122
1088
|
# @private
|
1123
1089
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1124
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
1125
|
-
|
1126
1090
|
property :response_policy_rule, as: 'responsePolicyRule', class: Google::Apis::DnsV1::ResponsePolicyRule, decorator: Google::Apis::DnsV1::ResponsePolicyRule::Representation
|
1127
1091
|
|
1128
1092
|
end
|
@@ -1131,8 +1095,6 @@ module Google
|
|
1131
1095
|
class ResponsePolicyRulesUpdateResponse
|
1132
1096
|
# @private
|
1133
1097
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1134
|
-
property :header, as: 'header', class: Google::Apis::DnsV1::ResponseHeader, decorator: Google::Apis::DnsV1::ResponseHeader::Representation
|
1135
|
-
|
1136
1098
|
property :response_policy_rule, as: 'responsePolicyRule', class: Google::Apis::DnsV1::ResponsePolicyRule, decorator: Google::Apis::DnsV1::ResponsePolicyRule::Representation
|
1137
1099
|
|
1138
1100
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dns_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.44.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.44.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|