google-apis-dns_v1beta2 0.46.0 → 0.48.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 +9 -0
- data/lib/google/apis/dns_v1beta2/classes.rb +120 -206
- data/lib/google/apis/dns_v1beta2/gem_version.rb +3 -3
- data/lib/google/apis/dns_v1beta2/representations.rb +3 -41
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e194d9d23c20499b908781bee67f7846b6f0e1b481e5e292c01360fbbe13d8d
|
4
|
+
data.tar.gz: bbbf0dc639e44680715d35340122e66f654045b6705b311d01e8a7f95298239e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49050055c3e1556c7226a71d9b76d91da4c06a793ab7bcf9a2f6c8767b0daf2bbf7fce2334f59336d34a43bcf0c74eab3cd55d0d804ee8f0a690d67a8fed3a11
|
7
|
+
data.tar.gz: b566dadbc32bd9c7a9f0c124fbb6cfad3447a7e1863de48d84a53cacddc7ec6b43d5f4abf2e90b1a0da878ebb179d8c5e1a8c53c56c6a450cbf404105efe573b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dns_v1beta2
|
2
2
|
|
3
|
+
### v0.48.0 (2024-12-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240719
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.47.0 (2024-06-16)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240531
|
11
|
+
|
3
12
|
### v0.46.0 (2024-05-19)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.15.0
|
@@ -22,13 +22,13 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DnsV1beta2
|
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::DnsV1beta2::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::DnsV1beta2::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::DnsV1beta2::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::DnsV1beta2::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::DnsV1beta2::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 ManagedZonesListResponse
|
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::DnsV1beta2::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::DnsV1beta2::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::DnsV1beta2::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::DnsV1beta2::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::DnsV1beta2::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,18 +1946,25 @@ 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::DnsV1beta2::RrSetRoutingPolicyGeoPolicy]
|
1989
1953
|
attr_accessor :geo
|
1990
1954
|
|
1991
|
-
# Configures a RRSetRoutingPolicy that routes based on the geo location of the
|
1955
|
+
# Configures a `RRSetRoutingPolicy` that routes based on the geo location of the
|
1992
1956
|
# querying user.
|
1993
1957
|
# Corresponds to the JSON property `geoPolicy`
|
1994
1958
|
# @return [Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy]
|
1995
1959
|
attr_accessor :geo_policy
|
1996
1960
|
|
1961
|
+
# The selfLink attribute of the HealthCheck resource to use for this
|
1962
|
+
# RRSetRoutingPolicy. https://cloud.google.com/compute/docs/reference/rest/v1/
|
1963
|
+
# healthChecks
|
1964
|
+
# Corresponds to the JSON property `healthCheck`
|
1965
|
+
# @return [String]
|
1966
|
+
attr_accessor :health_check
|
1967
|
+
|
1997
1968
|
#
|
1998
1969
|
# Corresponds to the JSON property `kind`
|
1999
1970
|
# @return [String]
|
@@ -2024,6 +1995,7 @@ module Google
|
|
2024
1995
|
def update!(**args)
|
2025
1996
|
@geo = args[:geo] if args.key?(:geo)
|
2026
1997
|
@geo_policy = args[:geo_policy] if args.key?(:geo_policy)
|
1998
|
+
@health_check = args[:health_check] if args.key?(:health_check)
|
2027
1999
|
@kind = args[:kind] if args.key?(:kind)
|
2028
2000
|
@primary_backup = args[:primary_backup] if args.key?(:primary_backup)
|
2029
2001
|
@wrr = args[:wrr] if args.key?(:wrr)
|
@@ -2031,7 +2003,7 @@ module Google
|
|
2031
2003
|
end
|
2032
2004
|
end
|
2033
2005
|
|
2034
|
-
# Configures a RRSetRoutingPolicy that routes based on the geo location of the
|
2006
|
+
# Configures a `RRSetRoutingPolicy` that routes based on the geo location of the
|
2035
2007
|
# querying user.
|
2036
2008
|
class RrSetRoutingPolicyGeoPolicy
|
2037
2009
|
include Google::Apis::Core::Hashable
|
@@ -2076,8 +2048,7 @@ module Google
|
|
2076
2048
|
|
2077
2049
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2078
2050
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2079
|
-
# response.
|
2080
|
-
# set.
|
2051
|
+
# response.
|
2081
2052
|
# Corresponds to the JSON property `healthCheckedTargets`
|
2082
2053
|
# @return [Google::Apis::DnsV1beta2::RrSetRoutingPolicyHealthCheckTargets]
|
2083
2054
|
attr_accessor :health_checked_targets
|
@@ -2099,7 +2070,7 @@ module Google
|
|
2099
2070
|
# @return [Array<String>]
|
2100
2071
|
attr_accessor :rrdatas
|
2101
2072
|
|
2102
|
-
# DNSSEC generated signatures for all the rrdata within this item. If health
|
2073
|
+
# DNSSEC generated signatures for all the `rrdata` within this item. If health
|
2103
2074
|
# checked targets are provided for DNSSEC enabled zones, there's a restriction
|
2104
2075
|
# of 1 IP address per item.
|
2105
2076
|
# Corresponds to the JSON property `signatureRrdatas`
|
@@ -2122,11 +2093,17 @@ module Google
|
|
2122
2093
|
|
2123
2094
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2124
2095
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2125
|
-
# response.
|
2126
|
-
# set.
|
2096
|
+
# response.
|
2127
2097
|
class RrSetRoutingPolicyHealthCheckTargets
|
2128
2098
|
include Google::Apis::Core::Hashable
|
2129
2099
|
|
2100
|
+
# The Internet IP addresses to be health checked. The format matches the format
|
2101
|
+
# of ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (
|
2102
|
+
# section 3.6.1)
|
2103
|
+
# Corresponds to the JSON property `externalEndpoints`
|
2104
|
+
# @return [Array<String>]
|
2105
|
+
attr_accessor :external_endpoints
|
2106
|
+
|
2130
2107
|
# Configuration for internal load balancers to be health checked.
|
2131
2108
|
# Corresponds to the JSON property `internalLoadBalancers`
|
2132
2109
|
# @return [Array<Google::Apis::DnsV1beta2::RrSetRoutingPolicyLoadBalancerTarget>]
|
@@ -2138,6 +2115,7 @@ module Google
|
|
2138
2115
|
|
2139
2116
|
# Update properties of this object
|
2140
2117
|
def update!(**args)
|
2118
|
+
@external_endpoints = args[:external_endpoints] if args.key?(:external_endpoints)
|
2141
2119
|
@internal_load_balancers = args[:internal_load_balancers] if args.key?(:internal_load_balancers)
|
2142
2120
|
end
|
2143
2121
|
end
|
@@ -2172,8 +2150,8 @@ module Google
|
|
2172
2150
|
attr_accessor :load_balancer_type
|
2173
2151
|
|
2174
2152
|
# The fully qualified URL of the network that the load balancer is attached to.
|
2175
|
-
# This should be formatted like https://www.googleapis.com/compute/v1/projects/`
|
2176
|
-
# project`/global/networks/`network
|
2153
|
+
# This should be formatted like `https://www.googleapis.com/compute/v1/projects/`
|
2154
|
+
# project`/global/networks/`network``.
|
2177
2155
|
# Corresponds to the JSON property `networkUrl`
|
2178
2156
|
# @return [String]
|
2179
2157
|
attr_accessor :network_url
|
@@ -2216,7 +2194,7 @@ module Google
|
|
2216
2194
|
class RrSetRoutingPolicyPrimaryBackupPolicy
|
2217
2195
|
include Google::Apis::Core::Hashable
|
2218
2196
|
|
2219
|
-
# Configures a RRSetRoutingPolicy that routes based on the geo location of the
|
2197
|
+
# Configures a `RRSetRoutingPolicy` that routes based on the geo location of the
|
2220
2198
|
# querying user.
|
2221
2199
|
# Corresponds to the JSON property `backupGeoTargets`
|
2222
2200
|
# @return [Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy]
|
@@ -2229,13 +2207,12 @@ module Google
|
|
2229
2207
|
|
2230
2208
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2231
2209
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2232
|
-
# response.
|
2233
|
-
# set.
|
2210
|
+
# response.
|
2234
2211
|
# Corresponds to the JSON property `primaryTargets`
|
2235
2212
|
# @return [Google::Apis::DnsV1beta2::RrSetRoutingPolicyHealthCheckTargets]
|
2236
2213
|
attr_accessor :primary_targets
|
2237
2214
|
|
2238
|
-
# When serving state is PRIMARY
|
2215
|
+
# When serving state is `PRIMARY`, this field provides the option of sending a
|
2239
2216
|
# small percentage of the traffic to the backup targets.
|
2240
2217
|
# Corresponds to the JSON property `trickleTraffic`
|
2241
2218
|
# @return [Float]
|
@@ -2285,8 +2262,7 @@ module Google
|
|
2285
2262
|
|
2286
2263
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2287
2264
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2288
|
-
# response.
|
2289
|
-
# set.
|
2265
|
+
# response.
|
2290
2266
|
# Corresponds to the JSON property `healthCheckedTargets`
|
2291
2267
|
# @return [Google::Apis::DnsV1beta2::RrSetRoutingPolicyHealthCheckTargets]
|
2292
2268
|
attr_accessor :health_checked_targets
|
@@ -2301,16 +2277,16 @@ module Google
|
|
2301
2277
|
# @return [Array<String>]
|
2302
2278
|
attr_accessor :rrdatas
|
2303
2279
|
|
2304
|
-
# DNSSEC generated signatures for all the rrdata within this item. Note that
|
2305
|
-
# health checked targets are provided for DNSSEC enabled zones, there's a
|
2280
|
+
# DNSSEC generated signatures for all the `rrdata` within this item. Note that
|
2281
|
+
# if health checked targets are provided for DNSSEC enabled zones, there's a
|
2306
2282
|
# restriction of 1 IP address per item.
|
2307
2283
|
# Corresponds to the JSON property `signatureRrdatas`
|
2308
2284
|
# @return [Array<String>]
|
2309
2285
|
attr_accessor :signature_rrdatas
|
2310
2286
|
|
2311
|
-
# The weight corresponding to this WrrPolicyItem object. When multiple
|
2312
|
-
# WrrPolicyItem objects are configured, the probability of returning an
|
2313
|
-
# WrrPolicyItem object's data is proportional to its weight relative to the sum
|
2287
|
+
# The weight corresponding to this `WrrPolicyItem` object. When multiple `
|
2288
|
+
# WrrPolicyItem` objects are configured, the probability of returning an `
|
2289
|
+
# WrrPolicyItem` object's data is proportional to its weight relative to the sum
|
2314
2290
|
# of weights configured for all items. This weight must be non-negative.
|
2315
2291
|
# Corresponds to the JSON property `weight`
|
2316
2292
|
# @return [Float]
|
@@ -2362,7 +2338,7 @@ module Google
|
|
2362
2338
|
# @return [Array<String>]
|
2363
2339
|
attr_accessor :signature_rrdatas
|
2364
2340
|
|
2365
|
-
# Number of seconds that this ResourceRecordSet can be cached by resolvers.
|
2341
|
+
# Number of seconds that this `ResourceRecordSet` can be cached by resolvers.
|
2366
2342
|
# Corresponds to the JSON property `ttl`
|
2367
2343
|
# @return [Fixnum]
|
2368
2344
|
attr_accessor :ttl
|
@@ -2393,23 +2369,19 @@ module Google
|
|
2393
2369
|
class ResourceRecordSetsListResponse
|
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::DnsV1beta2::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::DnsV1beta2::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::DnsV1beta2::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::DnsV1beta2::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::DnsV1beta2::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 DnsV1beta2
|
18
18
|
# Version of the google-apis-dns_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.48.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
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
|
@@ -340,12 +340,6 @@ module Google
|
|
340
340
|
include Google::Apis::Core::JsonObjectSupport
|
341
341
|
end
|
342
342
|
|
343
|
-
class ResponseHeader
|
344
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
-
|
346
|
-
include Google::Apis::Core::JsonObjectSupport
|
347
|
-
end
|
348
|
-
|
349
343
|
class ResponsePoliciesListResponse
|
350
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
345
|
|
@@ -432,8 +426,6 @@ module Google
|
|
432
426
|
class Representation < Google::Apis::Core::JsonRepresentation
|
433
427
|
collection :changes, as: 'changes', class: Google::Apis::DnsV1beta2::Change, decorator: Google::Apis::DnsV1beta2::Change::Representation
|
434
428
|
|
435
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
436
|
-
|
437
429
|
property :kind, as: 'kind'
|
438
430
|
property :next_page_token, as: 'nextPageToken'
|
439
431
|
end
|
@@ -480,8 +472,6 @@ module Google
|
|
480
472
|
class Representation < Google::Apis::Core::JsonRepresentation
|
481
473
|
collection :dns_keys, as: 'dnsKeys', class: Google::Apis::DnsV1beta2::DnsKey, decorator: Google::Apis::DnsV1beta2::DnsKey::Representation
|
482
474
|
|
483
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
484
|
-
|
485
475
|
property :kind, as: 'kind'
|
486
476
|
property :next_page_token, as: 'nextPageToken'
|
487
477
|
end
|
@@ -645,8 +635,6 @@ module Google
|
|
645
635
|
class ManagedZoneOperationsListResponse
|
646
636
|
# @private
|
647
637
|
class Representation < Google::Apis::Core::JsonRepresentation
|
648
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
649
|
-
|
650
638
|
property :kind, as: 'kind'
|
651
639
|
property :next_page_token, as: 'nextPageToken'
|
652
640
|
collection :operations, as: 'operations', class: Google::Apis::DnsV1beta2::Operation, decorator: Google::Apis::DnsV1beta2::Operation::Representation
|
@@ -727,8 +715,6 @@ module Google
|
|
727
715
|
class ManagedZonesListResponse
|
728
716
|
# @private
|
729
717
|
class Representation < Google::Apis::Core::JsonRepresentation
|
730
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
731
|
-
|
732
718
|
property :kind, as: 'kind'
|
733
719
|
collection :managed_zones, as: 'managedZones', class: Google::Apis::DnsV1beta2::ManagedZone, decorator: Google::Apis::DnsV1beta2::ManagedZone::Representation
|
734
720
|
|
@@ -775,8 +761,6 @@ module Google
|
|
775
761
|
class PoliciesListResponse
|
776
762
|
# @private
|
777
763
|
class Representation < Google::Apis::Core::JsonRepresentation
|
778
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
779
|
-
|
780
764
|
property :kind, as: 'kind'
|
781
765
|
property :next_page_token, as: 'nextPageToken'
|
782
766
|
collection :policies, as: 'policies', class: Google::Apis::DnsV1beta2::Policy, decorator: Google::Apis::DnsV1beta2::Policy::Representation
|
@@ -787,8 +771,6 @@ module Google
|
|
787
771
|
class PoliciesPatchResponse
|
788
772
|
# @private
|
789
773
|
class Representation < Google::Apis::Core::JsonRepresentation
|
790
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
791
|
-
|
792
774
|
property :policy, as: 'policy', class: Google::Apis::DnsV1beta2::Policy, decorator: Google::Apis::DnsV1beta2::Policy::Representation
|
793
775
|
|
794
776
|
end
|
@@ -797,8 +779,6 @@ module Google
|
|
797
779
|
class PoliciesUpdateResponse
|
798
780
|
# @private
|
799
781
|
class Representation < Google::Apis::Core::JsonRepresentation
|
800
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
801
|
-
|
802
782
|
property :policy, as: 'policy', class: Google::Apis::DnsV1beta2::Policy, decorator: Google::Apis::DnsV1beta2::Policy::Representation
|
803
783
|
|
804
784
|
end
|
@@ -865,6 +845,7 @@ module Google
|
|
865
845
|
property :gke_clusters_per_managed_zone, as: 'gkeClustersPerManagedZone'
|
866
846
|
property :gke_clusters_per_policy, as: 'gkeClustersPerPolicy'
|
867
847
|
property :gke_clusters_per_response_policy, as: 'gkeClustersPerResponsePolicy'
|
848
|
+
property :internet_health_checks_per_managed_zone, as: 'internetHealthChecksPerManagedZone'
|
868
849
|
property :items_per_routing_policy, as: 'itemsPerRoutingPolicy'
|
869
850
|
property :kind, as: 'kind'
|
870
851
|
property :managed_zones, as: 'managedZones'
|
@@ -897,6 +878,7 @@ module Google
|
|
897
878
|
|
898
879
|
property :geo_policy, as: 'geoPolicy', class: Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy, decorator: Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy::Representation
|
899
880
|
|
881
|
+
property :health_check, as: 'healthCheck'
|
900
882
|
property :kind, as: 'kind'
|
901
883
|
property :primary_backup, as: 'primaryBackup', class: Google::Apis::DnsV1beta2::RrSetRoutingPolicyPrimaryBackupPolicy, decorator: Google::Apis::DnsV1beta2::RrSetRoutingPolicyPrimaryBackupPolicy::Representation
|
902
884
|
|
@@ -932,6 +914,7 @@ module Google
|
|
932
914
|
class RrSetRoutingPolicyHealthCheckTargets
|
933
915
|
# @private
|
934
916
|
class Representation < Google::Apis::Core::JsonRepresentation
|
917
|
+
collection :external_endpoints, as: 'externalEndpoints'
|
935
918
|
collection :internal_load_balancers, as: 'internalLoadBalancers', class: Google::Apis::DnsV1beta2::RrSetRoutingPolicyLoadBalancerTarget, decorator: Google::Apis::DnsV1beta2::RrSetRoutingPolicyLoadBalancerTarget::Representation
|
936
919
|
|
937
920
|
end
|
@@ -1001,8 +984,6 @@ module Google
|
|
1001
984
|
class ResourceRecordSetsListResponse
|
1002
985
|
# @private
|
1003
986
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1004
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
1005
|
-
|
1006
987
|
property :kind, as: 'kind'
|
1007
988
|
property :next_page_token, as: 'nextPageToken'
|
1008
989
|
collection :rrsets, as: 'rrsets', class: Google::Apis::DnsV1beta2::ResourceRecordSet, decorator: Google::Apis::DnsV1beta2::ResourceRecordSet::Representation
|
@@ -1010,18 +991,9 @@ module Google
|
|
1010
991
|
end
|
1011
992
|
end
|
1012
993
|
|
1013
|
-
class ResponseHeader
|
1014
|
-
# @private
|
1015
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1016
|
-
property :operation_id, as: 'operationId'
|
1017
|
-
end
|
1018
|
-
end
|
1019
|
-
|
1020
994
|
class ResponsePoliciesListResponse
|
1021
995
|
# @private
|
1022
996
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1023
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
1024
|
-
|
1025
997
|
property :next_page_token, as: 'nextPageToken'
|
1026
998
|
collection :response_policies, as: 'responsePolicies', class: Google::Apis::DnsV1beta2::ResponsePolicy, decorator: Google::Apis::DnsV1beta2::ResponsePolicy::Representation
|
1027
999
|
|
@@ -1031,8 +1003,6 @@ module Google
|
|
1031
1003
|
class ResponsePoliciesPatchResponse
|
1032
1004
|
# @private
|
1033
1005
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1034
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
1035
|
-
|
1036
1006
|
property :response_policy, as: 'responsePolicy', class: Google::Apis::DnsV1beta2::ResponsePolicy, decorator: Google::Apis::DnsV1beta2::ResponsePolicy::Representation
|
1037
1007
|
|
1038
1008
|
end
|
@@ -1041,8 +1011,6 @@ module Google
|
|
1041
1011
|
class ResponsePoliciesUpdateResponse
|
1042
1012
|
# @private
|
1043
1013
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1044
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
1045
|
-
|
1046
1014
|
property :response_policy, as: 'responsePolicy', class: Google::Apis::DnsV1beta2::ResponsePolicy, decorator: Google::Apis::DnsV1beta2::ResponsePolicy::Representation
|
1047
1015
|
|
1048
1016
|
end
|
@@ -1102,8 +1070,6 @@ module Google
|
|
1102
1070
|
class ResponsePolicyRulesListResponse
|
1103
1071
|
# @private
|
1104
1072
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1105
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
1106
|
-
|
1107
1073
|
property :next_page_token, as: 'nextPageToken'
|
1108
1074
|
collection :response_policy_rules, as: 'responsePolicyRules', class: Google::Apis::DnsV1beta2::ResponsePolicyRule, decorator: Google::Apis::DnsV1beta2::ResponsePolicyRule::Representation
|
1109
1075
|
|
@@ -1113,8 +1079,6 @@ module Google
|
|
1113
1079
|
class ResponsePolicyRulesPatchResponse
|
1114
1080
|
# @private
|
1115
1081
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1116
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
1117
|
-
|
1118
1082
|
property :response_policy_rule, as: 'responsePolicyRule', class: Google::Apis::DnsV1beta2::ResponsePolicyRule, decorator: Google::Apis::DnsV1beta2::ResponsePolicyRule::Representation
|
1119
1083
|
|
1120
1084
|
end
|
@@ -1123,8 +1087,6 @@ module Google
|
|
1123
1087
|
class ResponsePolicyRulesUpdateResponse
|
1124
1088
|
# @private
|
1125
1089
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1126
|
-
property :header, as: 'header', class: Google::Apis::DnsV1beta2::ResponseHeader, decorator: Google::Apis::DnsV1beta2::ResponseHeader::Representation
|
1127
|
-
|
1128
1090
|
property :response_policy_rule, as: 'responsePolicyRule', class: Google::Apis::DnsV1beta2::ResponsePolicyRule, decorator: Google::Apis::DnsV1beta2::ResponsePolicyRule::Representation
|
1129
1091
|
|
1130
1092
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dns_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.48.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-12-04 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_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1beta2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1beta2/v0.48.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1beta2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud DNS API V1beta2
|