google-apis-dns_v1beta2 0.6.0 → 0.11.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 +20 -0
- data/lib/google/apis/dns_v1beta2.rb +1 -1
- data/lib/google/apis/dns_v1beta2/classes.rb +129 -41
- data/lib/google/apis/dns_v1beta2/gem_version.rb +3 -3
- data/lib/google/apis/dns_v1beta2/representations.rb +35 -0
- data/lib/google/apis/dns_v1beta2/service.rb +1 -1
- metadata +14 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 259e8238af91c6c18f9771ad18dcb17dfe37e2c8fc3c5f960b092fc2603f8ea1
|
4
|
+
data.tar.gz: 2c524e6c155e84df3f20804bbd6a091fd59907fe914e052680f84315c7931955
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e151dea18e99dd5dc4b7ddff2a1cb814d7e1e1bd0c4872cacc6e3c4448d03351a8d52f85e1fdafc9911743f42786d09d4d122be1ec54fedcd90d758e192d5bb8
|
7
|
+
data.tar.gz: e5b567635b0549fd4b6b6a7fe7d1015d4a7e5d26120f9460aa3c8044c8cbc389516759e1474f3297193786fa43da9809182194e2c4ed63c2f57dc9a37fcca896
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
# Release history for google-apis-dns_v1beta2
|
2
2
|
|
3
|
+
### v0.11.0 (2021-06-24)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.3.0
|
6
|
+
|
7
|
+
### v0.10.0 (2021-05-19)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.9.0 (2021-05-08)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210430
|
14
|
+
|
15
|
+
### v0.8.0 (2021-03-29)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210319
|
18
|
+
|
19
|
+
### v0.7.0 (2021-03-22)
|
20
|
+
|
21
|
+
* Regenerated from discovery document revision 20210314
|
22
|
+
|
3
23
|
### v0.6.0 (2021-03-17)
|
4
24
|
|
5
25
|
* Regenerated from discovery document revision 20210309
|
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1beta2'
|
31
31
|
|
32
|
-
#
|
32
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
|
35
35
|
# View your data across Google Cloud Platform services
|
@@ -109,12 +109,12 @@ module Google
|
|
109
109
|
|
110
110
|
# The presence of this field indicates that there exist more results following
|
111
111
|
# your last page of results in pagination order. To fetch them, make another
|
112
|
-
# list request using this value as your pagination token.
|
113
|
-
#
|
114
|
-
#
|
115
|
-
#
|
116
|
-
#
|
117
|
-
#
|
112
|
+
# list request using this value as your pagination token. This lets you retrieve
|
113
|
+
# the complete contents of even very large collections one page at a time.
|
114
|
+
# However, if the contents of the collection change between the first and last
|
115
|
+
# paginated list request, the set of all elements returned are an inconsistent
|
116
|
+
# view of the collection. You cannot retrieve a "snapshot" of collections larger
|
117
|
+
# than the maximum page size.
|
118
118
|
# Corresponds to the JSON property `nextPageToken`
|
119
119
|
# @return [String]
|
120
120
|
attr_accessor :next_page_token
|
@@ -583,19 +583,19 @@ module Google
|
|
583
583
|
# @return [Google::Apis::DnsV1beta2::ResponseHeader]
|
584
584
|
attr_accessor :header
|
585
585
|
|
586
|
-
#
|
586
|
+
# Type of resource.
|
587
587
|
# Corresponds to the JSON property `kind`
|
588
588
|
# @return [String]
|
589
589
|
attr_accessor :kind
|
590
590
|
|
591
591
|
# The presence of this field indicates that there exist more results following
|
592
592
|
# your last page of results in pagination order. To fetch them, make another
|
593
|
-
# list request using this value as your page token.
|
594
|
-
#
|
595
|
-
#
|
596
|
-
#
|
597
|
-
#
|
598
|
-
#
|
593
|
+
# list request using this value as your page token. This lets you retrieve the
|
594
|
+
# complete contents of even very large collections one page at a time. However,
|
595
|
+
# if the contents of the collection change between the first and last paginated
|
596
|
+
# list request, the set of all elements returned are an inconsistent view of the
|
597
|
+
# collection. You cannot retrieve a consistent snapshot of a collection larger
|
598
|
+
# than the maximum page size.
|
599
599
|
# Corresponds to the JSON property `nextPageToken`
|
600
600
|
# @return [String]
|
601
601
|
attr_accessor :next_page_token
|
@@ -683,6 +683,11 @@ module Google
|
|
683
683
|
class ManagedZonePrivateVisibilityConfig
|
684
684
|
include Google::Apis::Core::Hashable
|
685
685
|
|
686
|
+
# The list of Google Kubernetes Engine clusters that can see this zone.
|
687
|
+
# Corresponds to the JSON property `gkeClusters`
|
688
|
+
# @return [Array<Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfigGkeCluster>]
|
689
|
+
attr_accessor :gke_clusters
|
690
|
+
|
686
691
|
#
|
687
692
|
# Corresponds to the JSON property `kind`
|
688
693
|
# @return [String]
|
@@ -699,11 +704,40 @@ module Google
|
|
699
704
|
|
700
705
|
# Update properties of this object
|
701
706
|
def update!(**args)
|
707
|
+
@gke_clusters = args[:gke_clusters] if args.key?(:gke_clusters)
|
702
708
|
@kind = args[:kind] if args.key?(:kind)
|
703
709
|
@networks = args[:networks] if args.key?(:networks)
|
704
710
|
end
|
705
711
|
end
|
706
712
|
|
713
|
+
#
|
714
|
+
class ManagedZonePrivateVisibilityConfigGkeCluster
|
715
|
+
include Google::Apis::Core::Hashable
|
716
|
+
|
717
|
+
# The resource name of the cluster to bind this ManagedZone to. This should be
|
718
|
+
# specified in the format like: projects/*/locations/*/clusters/*. This is
|
719
|
+
# referenced from GKE projects.locations.clusters.get API: https://cloud.google.
|
720
|
+
# com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
|
721
|
+
# Corresponds to the JSON property `gkeClusterName`
|
722
|
+
# @return [String]
|
723
|
+
attr_accessor :gke_cluster_name
|
724
|
+
|
725
|
+
#
|
726
|
+
# Corresponds to the JSON property `kind`
|
727
|
+
# @return [String]
|
728
|
+
attr_accessor :kind
|
729
|
+
|
730
|
+
def initialize(**args)
|
731
|
+
update!(**args)
|
732
|
+
end
|
733
|
+
|
734
|
+
# Update properties of this object
|
735
|
+
def update!(**args)
|
736
|
+
@gke_cluster_name = args[:gke_cluster_name] if args.key?(:gke_cluster_name)
|
737
|
+
@kind = args[:kind] if args.key?(:kind)
|
738
|
+
end
|
739
|
+
end
|
740
|
+
|
707
741
|
#
|
708
742
|
class ManagedZonePrivateVisibilityConfigNetwork
|
709
743
|
include Google::Apis::Core::Hashable
|
@@ -790,9 +824,9 @@ module Google
|
|
790
824
|
# @return [String]
|
791
825
|
attr_accessor :kind
|
792
826
|
|
793
|
-
# The fully qualified URL of the namespace associated with the zone.
|
794
|
-
# be
|
795
|
-
#
|
827
|
+
# The fully qualified URL of the namespace associated with the zone. Format must
|
828
|
+
# be https://servicedirectory.googleapis.com/v1/projects/`project`/locations/`
|
829
|
+
# location`/namespaces/`namespace`
|
796
830
|
# Corresponds to the JSON property `namespaceUrl`
|
797
831
|
# @return [String]
|
798
832
|
attr_accessor :namespace_url
|
@@ -830,12 +864,12 @@ module Google
|
|
830
864
|
|
831
865
|
# The presence of this field indicates that there exist more results following
|
832
866
|
# your last page of results in pagination order. To fetch them, make another
|
833
|
-
# list request using this value as your page token.
|
834
|
-
#
|
835
|
-
#
|
836
|
-
#
|
837
|
-
#
|
838
|
-
#
|
867
|
+
# list request using this value as your page token. This lets you the complete
|
868
|
+
# contents of even very large collections one page at a time. However, if the
|
869
|
+
# contents of the collection change between the first and last paginated list
|
870
|
+
# request, the set of all elements returned are an inconsistent view of the
|
871
|
+
# collection. You cannot retrieve a consistent snapshot of a collection larger
|
872
|
+
# than the maximum page size.
|
839
873
|
# Corresponds to the JSON property `nextPageToken`
|
840
874
|
# @return [String]
|
841
875
|
attr_accessor :next_page_token
|
@@ -995,12 +1029,12 @@ module Google
|
|
995
1029
|
|
996
1030
|
# The presence of this field indicates that there exist more results following
|
997
1031
|
# your last page of results in pagination order. To fetch them, make another
|
998
|
-
# list request using this value as your page token.
|
999
|
-
#
|
1000
|
-
#
|
1001
|
-
#
|
1002
|
-
#
|
1003
|
-
#
|
1032
|
+
# list request using this value as your page token. This lets you the complete
|
1033
|
+
# contents of even very large collections one page at a time. However, if the
|
1034
|
+
# contents of the collection change between the first and last paginated list
|
1035
|
+
# request, the set of all elements returned are an inconsistent view of the
|
1036
|
+
# collection. You cannot retrieve a consistent snapshot of a collection larger
|
1037
|
+
# than the maximum page size.
|
1004
1038
|
# Corresponds to the JSON property `nextPageToken`
|
1005
1039
|
# @return [String]
|
1006
1040
|
attr_accessor :next_page_token
|
@@ -1243,7 +1277,7 @@ module Google
|
|
1243
1277
|
|
1244
1278
|
# A project resource. The project is a top level container for resources
|
1245
1279
|
# including Cloud DNS ManagedZones. Projects can be created only in the APIs
|
1246
|
-
# console.
|
1280
|
+
# console. Next tag: 7.
|
1247
1281
|
class Project
|
1248
1282
|
include Google::Apis::Core::Hashable
|
1249
1283
|
|
@@ -1290,6 +1324,17 @@ module Google
|
|
1290
1324
|
# @return [Fixnum]
|
1291
1325
|
attr_accessor :dns_keys_per_managed_zone
|
1292
1326
|
|
1327
|
+
# Maximum allowed number of GKE clusters to which a privately scoped zone can be
|
1328
|
+
# attached.
|
1329
|
+
# Corresponds to the JSON property `gkeClustersPerManagedZone`
|
1330
|
+
# @return [Fixnum]
|
1331
|
+
attr_accessor :gke_clusters_per_managed_zone
|
1332
|
+
|
1333
|
+
# Maximum allowed number of GKE clusters per response policy.
|
1334
|
+
# Corresponds to the JSON property `gkeClustersPerResponsePolicy`
|
1335
|
+
# @return [Fixnum]
|
1336
|
+
attr_accessor :gke_clusters_per_response_policy
|
1337
|
+
|
1293
1338
|
#
|
1294
1339
|
# Corresponds to the JSON property `kind`
|
1295
1340
|
# @return [String]
|
@@ -1300,6 +1345,11 @@ module Google
|
|
1300
1345
|
# @return [Fixnum]
|
1301
1346
|
attr_accessor :managed_zones
|
1302
1347
|
|
1348
|
+
# Maximum allowed number of managed zones which can be attached to a GKE cluster.
|
1349
|
+
# Corresponds to the JSON property `managedZonesPerGkeCluster`
|
1350
|
+
# @return [Fixnum]
|
1351
|
+
attr_accessor :managed_zones_per_gke_cluster
|
1352
|
+
|
1303
1353
|
# Maximum allowed number of managed zones which can be attached to a network.
|
1304
1354
|
# Corresponds to the JSON property `managedZonesPerNetwork`
|
1305
1355
|
# @return [Fixnum]
|
@@ -1374,8 +1424,11 @@ module Google
|
|
1374
1424
|
# Update properties of this object
|
1375
1425
|
def update!(**args)
|
1376
1426
|
@dns_keys_per_managed_zone = args[:dns_keys_per_managed_zone] if args.key?(:dns_keys_per_managed_zone)
|
1427
|
+
@gke_clusters_per_managed_zone = args[:gke_clusters_per_managed_zone] if args.key?(:gke_clusters_per_managed_zone)
|
1428
|
+
@gke_clusters_per_response_policy = args[:gke_clusters_per_response_policy] if args.key?(:gke_clusters_per_response_policy)
|
1377
1429
|
@kind = args[:kind] if args.key?(:kind)
|
1378
1430
|
@managed_zones = args[:managed_zones] if args.key?(:managed_zones)
|
1431
|
+
@managed_zones_per_gke_cluster = args[:managed_zones_per_gke_cluster] if args.key?(:managed_zones_per_gke_cluster)
|
1379
1432
|
@managed_zones_per_network = args[:managed_zones_per_network] if args.key?(:managed_zones_per_network)
|
1380
1433
|
@networks_per_managed_zone = args[:networks_per_managed_zone] if args.key?(:networks_per_managed_zone)
|
1381
1434
|
@networks_per_policy = args[:networks_per_policy] if args.key?(:networks_per_policy)
|
@@ -1519,12 +1572,12 @@ module Google
|
|
1519
1572
|
|
1520
1573
|
# The presence of this field indicates that there exist more results following
|
1521
1574
|
# your last page of results in pagination order. To fetch them, make another
|
1522
|
-
# list request using this value as your page token.
|
1523
|
-
#
|
1524
|
-
#
|
1525
|
-
#
|
1526
|
-
#
|
1527
|
-
#
|
1575
|
+
# list request using this value as your page token. This lets you the complete
|
1576
|
+
# contents of even very large collections one page at a time. However, if the
|
1577
|
+
# contents of the collection change between the first and last paginated list
|
1578
|
+
# request, the set of all elements returned are an inconsistent view of the
|
1579
|
+
# collection. You cannot retrieve a consistent snapshot of a collection larger
|
1580
|
+
# than the maximum page size.
|
1528
1581
|
# Corresponds to the JSON property `nextPageToken`
|
1529
1582
|
# @return [String]
|
1530
1583
|
attr_accessor :next_page_token
|
@@ -1608,6 +1661,12 @@ module Google
|
|
1608
1661
|
# @return [String]
|
1609
1662
|
attr_accessor :description
|
1610
1663
|
|
1664
|
+
# The list of Google Kubernetes Engine clusters to which this response policy is
|
1665
|
+
# applied.
|
1666
|
+
# Corresponds to the JSON property `gkeClusters`
|
1667
|
+
# @return [Array<Google::Apis::DnsV1beta2::ResponsePolicyGkeCluster>]
|
1668
|
+
attr_accessor :gke_clusters
|
1669
|
+
|
1611
1670
|
# Unique identifier for the resource; defined by the server (output only).
|
1612
1671
|
# Corresponds to the JSON property `id`
|
1613
1672
|
# @return [Fixnum]
|
@@ -1635,6 +1694,7 @@ module Google
|
|
1635
1694
|
# Update properties of this object
|
1636
1695
|
def update!(**args)
|
1637
1696
|
@description = args[:description] if args.key?(:description)
|
1697
|
+
@gke_clusters = args[:gke_clusters] if args.key?(:gke_clusters)
|
1638
1698
|
@id = args[:id] if args.key?(:id)
|
1639
1699
|
@kind = args[:kind] if args.key?(:kind)
|
1640
1700
|
@networks = args[:networks] if args.key?(:networks)
|
@@ -1642,6 +1702,34 @@ module Google
|
|
1642
1702
|
end
|
1643
1703
|
end
|
1644
1704
|
|
1705
|
+
#
|
1706
|
+
class ResponsePolicyGkeCluster
|
1707
|
+
include Google::Apis::Core::Hashable
|
1708
|
+
|
1709
|
+
# The resource name of the cluster to bind this response policy to. This should
|
1710
|
+
# be specified in the format like: projects/*/locations/*/clusters/*. This is
|
1711
|
+
# referenced from GKE projects.locations.clusters.get API: https://cloud.google.
|
1712
|
+
# com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
|
1713
|
+
# Corresponds to the JSON property `gkeClusterName`
|
1714
|
+
# @return [String]
|
1715
|
+
attr_accessor :gke_cluster_name
|
1716
|
+
|
1717
|
+
#
|
1718
|
+
# Corresponds to the JSON property `kind`
|
1719
|
+
# @return [String]
|
1720
|
+
attr_accessor :kind
|
1721
|
+
|
1722
|
+
def initialize(**args)
|
1723
|
+
update!(**args)
|
1724
|
+
end
|
1725
|
+
|
1726
|
+
# Update properties of this object
|
1727
|
+
def update!(**args)
|
1728
|
+
@gke_cluster_name = args[:gke_cluster_name] if args.key?(:gke_cluster_name)
|
1729
|
+
@kind = args[:kind] if args.key?(:kind)
|
1730
|
+
end
|
1731
|
+
end
|
1732
|
+
|
1645
1733
|
#
|
1646
1734
|
class ResponsePolicyNetwork
|
1647
1735
|
include Google::Apis::Core::Hashable
|
@@ -1751,12 +1839,12 @@ module Google
|
|
1751
1839
|
|
1752
1840
|
# The presence of this field indicates that there exist more results following
|
1753
1841
|
# your last page of results in pagination order. To fetch them, make another
|
1754
|
-
# list request using this value as your page token.
|
1755
|
-
#
|
1756
|
-
#
|
1757
|
-
#
|
1758
|
-
#
|
1759
|
-
#
|
1842
|
+
# list request using this value as your page token. This lets you the complete
|
1843
|
+
# contents of even very large collections one page at a time. However, if the
|
1844
|
+
# contents of the collection change between the first and last paginated list
|
1845
|
+
# request, the set of all elements returned are an inconsistent view of the
|
1846
|
+
# collection. You cannot retrieve a consistent snapshot of a collection larger
|
1847
|
+
# than the maximum page size.
|
1760
1848
|
# Corresponds to the JSON property `nextPageToken`
|
1761
1849
|
# @return [String]
|
1762
1850
|
attr_accessor :next_page_token
|
@@ -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.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210430"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -106,6 +106,12 @@ module Google
|
|
106
106
|
include Google::Apis::Core::JsonObjectSupport
|
107
107
|
end
|
108
108
|
|
109
|
+
class ManagedZonePrivateVisibilityConfigGkeCluster
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
109
115
|
class ManagedZonePrivateVisibilityConfigNetwork
|
110
116
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
117
|
|
@@ -250,6 +256,12 @@ module Google
|
|
250
256
|
include Google::Apis::Core::JsonObjectSupport
|
251
257
|
end
|
252
258
|
|
259
|
+
class ResponsePolicyGkeCluster
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
253
265
|
class ResponsePolicyNetwork
|
254
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
267
|
|
@@ -452,12 +464,22 @@ module Google
|
|
452
464
|
class ManagedZonePrivateVisibilityConfig
|
453
465
|
# @private
|
454
466
|
class Representation < Google::Apis::Core::JsonRepresentation
|
467
|
+
collection :gke_clusters, as: 'gkeClusters', class: Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfigGkeCluster, decorator: Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfigGkeCluster::Representation
|
468
|
+
|
455
469
|
property :kind, as: 'kind'
|
456
470
|
collection :networks, as: 'networks', class: Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfigNetwork, decorator: Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfigNetwork::Representation
|
457
471
|
|
458
472
|
end
|
459
473
|
end
|
460
474
|
|
475
|
+
class ManagedZonePrivateVisibilityConfigGkeCluster
|
476
|
+
# @private
|
477
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
478
|
+
property :gke_cluster_name, as: 'gkeClusterName'
|
479
|
+
property :kind, as: 'kind'
|
480
|
+
end
|
481
|
+
end
|
482
|
+
|
461
483
|
class ManagedZonePrivateVisibilityConfigNetwork
|
462
484
|
# @private
|
463
485
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -629,8 +651,11 @@ module Google
|
|
629
651
|
# @private
|
630
652
|
class Representation < Google::Apis::Core::JsonRepresentation
|
631
653
|
property :dns_keys_per_managed_zone, as: 'dnsKeysPerManagedZone'
|
654
|
+
property :gke_clusters_per_managed_zone, as: 'gkeClustersPerManagedZone'
|
655
|
+
property :gke_clusters_per_response_policy, as: 'gkeClustersPerResponsePolicy'
|
632
656
|
property :kind, as: 'kind'
|
633
657
|
property :managed_zones, as: 'managedZones'
|
658
|
+
property :managed_zones_per_gke_cluster, as: 'managedZonesPerGkeCluster'
|
634
659
|
property :managed_zones_per_network, as: 'managedZonesPerNetwork'
|
635
660
|
property :networks_per_managed_zone, as: 'networksPerManagedZone'
|
636
661
|
property :networks_per_policy, as: 'networksPerPolicy'
|
@@ -714,6 +739,8 @@ module Google
|
|
714
739
|
# @private
|
715
740
|
class Representation < Google::Apis::Core::JsonRepresentation
|
716
741
|
property :description, as: 'description'
|
742
|
+
collection :gke_clusters, as: 'gkeClusters', class: Google::Apis::DnsV1beta2::ResponsePolicyGkeCluster, decorator: Google::Apis::DnsV1beta2::ResponsePolicyGkeCluster::Representation
|
743
|
+
|
717
744
|
property :id, :numeric_string => true, as: 'id'
|
718
745
|
property :kind, as: 'kind'
|
719
746
|
collection :networks, as: 'networks', class: Google::Apis::DnsV1beta2::ResponsePolicyNetwork, decorator: Google::Apis::DnsV1beta2::ResponsePolicyNetwork::Representation
|
@@ -722,6 +749,14 @@ module Google
|
|
722
749
|
end
|
723
750
|
end
|
724
751
|
|
752
|
+
class ResponsePolicyGkeCluster
|
753
|
+
# @private
|
754
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
755
|
+
property :gke_cluster_name, as: 'gkeClusterName'
|
756
|
+
property :kind, as: 'kind'
|
757
|
+
end
|
758
|
+
end
|
759
|
+
|
725
760
|
class ResponsePolicyNetwork
|
726
761
|
# @private
|
727
762
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -819,7 +819,7 @@ module Google
|
|
819
819
|
execute_or_queue_command(command, &block)
|
820
820
|
end
|
821
821
|
|
822
|
-
#
|
822
|
+
# Fetches the representation of an existing Project.
|
823
823
|
# @param [String] project
|
824
824
|
# Identifies the project addressed by this request.
|
825
825
|
# @param [String] client_operation_id
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.11.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: 2021-
|
11
|
+
date: 2021-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud DNS API V1beta2. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dns_v1beta2/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1beta2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1beta2/v0.11.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dns_v1beta2
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Cloud DNS API V1beta2
|