google-apis-dns_v1beta2 0.5.0 → 0.10.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 +21 -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 +25 -25
- 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: 97f6739246dd8f2b8356b5ab742ea7016054c35aeb1e43a6ef29756d992a57f2
|
4
|
+
data.tar.gz: 762640e1453d4d9332d49c49edbd7fc5fb35d71f9d6c715766041ab5c42a596b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50560acdb44c8e0f9244305dbdc002be993850a03f86f9fff0b9c6130005b6a63460951889ba61880b5008e4781ed2c635eb48cebd4bffd2dfce5067ae399da3
|
7
|
+
data.tar.gz: 634deb7e6e196e0a5c80f5c083e08794e63f4a9df6ddbd6469fb9c38c34b042cc49a8e877175141acaf01367d32e0a688b3d96e40a5ad0b179f264e86735deb0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-dns_v1beta2
|
2
2
|
|
3
|
+
### v0.10.0 (2021-05-19)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.9.0 (2021-05-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210430
|
10
|
+
|
11
|
+
### v0.8.0 (2021-03-29)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210319
|
14
|
+
|
15
|
+
### v0.7.0 (2021-03-22)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210314
|
18
|
+
|
19
|
+
### v0.6.0 (2021-03-17)
|
20
|
+
|
21
|
+
* Regenerated from discovery document revision 20210309
|
22
|
+
* Regenerated using generator version 0.2.0
|
23
|
+
|
3
24
|
### v0.5.0 (2021-03-04)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210227
|
@@ -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.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.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
|
@@ -180,7 +180,7 @@ module Google
|
|
180
180
|
execute_or_queue_command(command, &block)
|
181
181
|
end
|
182
182
|
|
183
|
-
#
|
183
|
+
# Fetches the representation of an existing DnsKey.
|
184
184
|
# @param [String] project
|
185
185
|
# Identifies the project addressed by this request.
|
186
186
|
# @param [String] managed_zone
|
@@ -226,7 +226,7 @@ module Google
|
|
226
226
|
execute_or_queue_command(command, &block)
|
227
227
|
end
|
228
228
|
|
229
|
-
#
|
229
|
+
# Enumerates DnsKeys to a ResourceRecordSet collection.
|
230
230
|
# @param [String] project
|
231
231
|
# Identifies the project addressed by this request.
|
232
232
|
# @param [String] managed_zone
|
@@ -357,7 +357,7 @@ module Google
|
|
357
357
|
execute_or_queue_command(command, &block)
|
358
358
|
end
|
359
359
|
|
360
|
-
#
|
360
|
+
# Creates a new ManagedZone.
|
361
361
|
# @param [String] project
|
362
362
|
# Identifies the project addressed by this request.
|
363
363
|
# @param [Google::Apis::DnsV1beta2::ManagedZone] managed_zone_object
|
@@ -394,7 +394,7 @@ module Google
|
|
394
394
|
execute_or_queue_command(command, &block)
|
395
395
|
end
|
396
396
|
|
397
|
-
#
|
397
|
+
# Deletes a previously created ManagedZone.
|
398
398
|
# @param [String] project
|
399
399
|
# Identifies the project addressed by this request.
|
400
400
|
# @param [String] managed_zone
|
@@ -430,7 +430,7 @@ module Google
|
|
430
430
|
execute_or_queue_command(command, &block)
|
431
431
|
end
|
432
432
|
|
433
|
-
#
|
433
|
+
# Fetches the representation of an existing ManagedZone.
|
434
434
|
# @param [String] project
|
435
435
|
# Identifies the project addressed by this request.
|
436
436
|
# @param [String] managed_zone
|
@@ -468,7 +468,7 @@ module Google
|
|
468
468
|
execute_or_queue_command(command, &block)
|
469
469
|
end
|
470
470
|
|
471
|
-
#
|
471
|
+
# Enumerates ManagedZones that have been created but not yet deleted.
|
472
472
|
# @param [String] project
|
473
473
|
# Identifies the project addressed by this request.
|
474
474
|
# @param [String] dns_name
|
@@ -509,7 +509,7 @@ module Google
|
|
509
509
|
execute_or_queue_command(command, &block)
|
510
510
|
end
|
511
511
|
|
512
|
-
#
|
512
|
+
# Applies a partial update to an existing ManagedZone.
|
513
513
|
# @param [String] project
|
514
514
|
# Identifies the project addressed by this request.
|
515
515
|
# @param [String] managed_zone
|
@@ -550,7 +550,7 @@ module Google
|
|
550
550
|
execute_or_queue_command(command, &block)
|
551
551
|
end
|
552
552
|
|
553
|
-
#
|
553
|
+
# Updates an existing ManagedZone.
|
554
554
|
# @param [String] project
|
555
555
|
# Identifies the project addressed by this request.
|
556
556
|
# @param [String] managed_zone
|
@@ -739,7 +739,7 @@ module Google
|
|
739
739
|
execute_or_queue_command(command, &block)
|
740
740
|
end
|
741
741
|
|
742
|
-
#
|
742
|
+
# Applies a partial update to an existing Policy.
|
743
743
|
# @param [String] project
|
744
744
|
# Identifies the project addressed by this request.
|
745
745
|
# @param [String] policy
|
@@ -779,7 +779,7 @@ module Google
|
|
779
779
|
execute_or_queue_command(command, &block)
|
780
780
|
end
|
781
781
|
|
782
|
-
#
|
782
|
+
# Updates an existing Policy.
|
783
783
|
# @param [String] project
|
784
784
|
# Identifies the project addressed by this request.
|
785
785
|
# @param [String] policy
|
@@ -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
|
@@ -853,7 +853,7 @@ module Google
|
|
853
853
|
execute_or_queue_command(command, &block)
|
854
854
|
end
|
855
855
|
|
856
|
-
#
|
856
|
+
# Creates a new ResourceRecordSet.
|
857
857
|
# @param [String] project
|
858
858
|
# Identifies the project addressed by this request.
|
859
859
|
# @param [String] managed_zone
|
@@ -894,7 +894,7 @@ module Google
|
|
894
894
|
execute_or_queue_command(command, &block)
|
895
895
|
end
|
896
896
|
|
897
|
-
#
|
897
|
+
# Deletes a previously created ResourceRecordSet.
|
898
898
|
# @param [String] project
|
899
899
|
# Identifies the project addressed by this request.
|
900
900
|
# @param [String] managed_zone
|
@@ -936,7 +936,7 @@ module Google
|
|
936
936
|
execute_or_queue_command(command, &block)
|
937
937
|
end
|
938
938
|
|
939
|
-
#
|
939
|
+
# Fetches the representation of an existing ResourceRecordSet.
|
940
940
|
# @param [String] project
|
941
941
|
# Identifies the project addressed by this request.
|
942
942
|
# @param [String] managed_zone
|
@@ -980,7 +980,7 @@ module Google
|
|
980
980
|
execute_or_queue_command(command, &block)
|
981
981
|
end
|
982
982
|
|
983
|
-
#
|
983
|
+
# Applies a partial update to an existing ResourceRecordSet.
|
984
984
|
# @param [String] project
|
985
985
|
# Identifies the project addressed by this request.
|
986
986
|
# @param [String] managed_zone
|
@@ -1114,7 +1114,7 @@ module Google
|
|
1114
1114
|
execute_or_queue_command(command, &block)
|
1115
1115
|
end
|
1116
1116
|
|
1117
|
-
#
|
1117
|
+
# Deletes a previously created Response Policy. Fails if the response policy is
|
1118
1118
|
# non-empty or still being referenced by a network.
|
1119
1119
|
# @param [String] project
|
1120
1120
|
# Identifies the project addressed by this request.
|
@@ -1150,7 +1150,7 @@ module Google
|
|
1150
1150
|
execute_or_queue_command(command, &block)
|
1151
1151
|
end
|
1152
1152
|
|
1153
|
-
#
|
1153
|
+
# Fetches the representation of an existing Response Policy.
|
1154
1154
|
# @param [String] project
|
1155
1155
|
# Identifies the project addressed by this request.
|
1156
1156
|
# @param [String] response_policy
|
@@ -1187,7 +1187,7 @@ module Google
|
|
1187
1187
|
execute_or_queue_command(command, &block)
|
1188
1188
|
end
|
1189
1189
|
|
1190
|
-
#
|
1190
|
+
# Enumerates all Response Policies associated with a project.
|
1191
1191
|
# @param [String] project
|
1192
1192
|
# Identifies the project addressed by this request.
|
1193
1193
|
# @param [Fixnum] max_results
|
@@ -1225,7 +1225,7 @@ module Google
|
|
1225
1225
|
execute_or_queue_command(command, &block)
|
1226
1226
|
end
|
1227
1227
|
|
1228
|
-
#
|
1228
|
+
# Applies a partial update to an existing Response Policy.
|
1229
1229
|
# @param [String] project
|
1230
1230
|
# Identifies the project addressed by this request.
|
1231
1231
|
# @param [String] response_policy
|
@@ -1265,7 +1265,7 @@ module Google
|
|
1265
1265
|
execute_or_queue_command(command, &block)
|
1266
1266
|
end
|
1267
1267
|
|
1268
|
-
#
|
1268
|
+
# Updates an existing Response Policy.
|
1269
1269
|
# @param [String] project
|
1270
1270
|
# Identifies the project addressed by this request.
|
1271
1271
|
# @param [String] response_policy
|
@@ -1345,7 +1345,7 @@ module Google
|
|
1345
1345
|
execute_or_queue_command(command, &block)
|
1346
1346
|
end
|
1347
1347
|
|
1348
|
-
#
|
1348
|
+
# Deletes a previously created Response Policy Rule.
|
1349
1349
|
# @param [String] project
|
1350
1350
|
# Identifies the project addressed by this request.
|
1351
1351
|
# @param [String] response_policy
|
@@ -1383,7 +1383,7 @@ module Google
|
|
1383
1383
|
execute_or_queue_command(command, &block)
|
1384
1384
|
end
|
1385
1385
|
|
1386
|
-
#
|
1386
|
+
# Fetches the representation of an existing Response Policy Rule.
|
1387
1387
|
# @param [String] project
|
1388
1388
|
# Identifies the project addressed by this request.
|
1389
1389
|
# @param [String] response_policy
|
@@ -1423,7 +1423,7 @@ module Google
|
|
1423
1423
|
execute_or_queue_command(command, &block)
|
1424
1424
|
end
|
1425
1425
|
|
1426
|
-
#
|
1426
|
+
# Enumerates all Response Policy Rules associated with a project.
|
1427
1427
|
# @param [String] project
|
1428
1428
|
# Identifies the project addressed by this request.
|
1429
1429
|
# @param [String] response_policy
|
@@ -1464,7 +1464,7 @@ module Google
|
|
1464
1464
|
execute_or_queue_command(command, &block)
|
1465
1465
|
end
|
1466
1466
|
|
1467
|
-
#
|
1467
|
+
# Applies a partial update to an existing Response Policy Rule.
|
1468
1468
|
# @param [String] project
|
1469
1469
|
# Identifies the project addressed by this request.
|
1470
1470
|
# @param [String] response_policy
|
@@ -1507,7 +1507,7 @@ module Google
|
|
1507
1507
|
execute_or_queue_command(command, &block)
|
1508
1508
|
end
|
1509
1509
|
|
1510
|
-
#
|
1510
|
+
# Updates an existing Response Policy Rule.
|
1511
1511
|
# @param [String] project
|
1512
1512
|
# Identifies the project addressed by this request.
|
1513
1513
|
# @param [String] response_policy
|
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.10.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-05-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
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.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1beta2/v0.10.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dns_v1beta2
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Cloud DNS API V1beta2
|