google-apis-dns_v1 0.27.0 → 0.29.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e33f919928108b5a76e43ae84dbec4c370860d1f952541345d05cfcbcf08355
|
4
|
+
data.tar.gz: 6dba12a5a720a1402587a12548d06b742d4532665b6bea195d5c75ba7a4247b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff405511240a0fc3db89a7006309f7bd4d73456da315f464ffcd38ebd92a713e0f940560c68dbc383582c36ff70c8b8f884067aa01010a26f45cc6eaa7906438
|
7
|
+
data.tar.gz: 731de96e1a98b41a6927919247f853197ed64d923556b4aec8aea5390a2590cba34a13ecce58fb34f669c71c04096c131b41f54b351d9c3fa6e488105dd05884
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-dns_v1
|
2
2
|
|
3
|
+
### v0.29.0 (2022-11-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221110
|
6
|
+
* Regenerated using generator version 0.11.0
|
7
|
+
|
8
|
+
### v0.28.0 (2022-09-25)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20220915
|
11
|
+
* Regenerated using generator version 0.10.0
|
12
|
+
|
3
13
|
### v0.27.0 (2022-09-16)
|
4
14
|
|
5
15
|
* Unspecified changes
|
@@ -1019,6 +1019,12 @@ module Google
|
|
1019
1019
|
# @return [String]
|
1020
1020
|
attr_accessor :ipv4_address
|
1021
1021
|
|
1022
|
+
# IPv6 address of a target name server. Does not accept both fields (ipv4 & ipv6)
|
1023
|
+
# being populated. Public preview as of November 2022.
|
1024
|
+
# Corresponds to the JSON property `ipv6Address`
|
1025
|
+
# @return [String]
|
1026
|
+
attr_accessor :ipv6_address
|
1027
|
+
|
1022
1028
|
#
|
1023
1029
|
# Corresponds to the JSON property `kind`
|
1024
1030
|
# @return [String]
|
@@ -1032,6 +1038,7 @@ module Google
|
|
1032
1038
|
def update!(**args)
|
1033
1039
|
@forwarding_path = args[:forwarding_path] if args.key?(:forwarding_path)
|
1034
1040
|
@ipv4_address = args[:ipv4_address] if args.key?(:ipv4_address)
|
1041
|
+
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
|
1035
1042
|
@kind = args[:kind] if args.key?(:kind)
|
1036
1043
|
end
|
1037
1044
|
end
|
@@ -1681,11 +1688,17 @@ module Google
|
|
1681
1688
|
# @return [String]
|
1682
1689
|
attr_accessor :forwarding_path
|
1683
1690
|
|
1684
|
-
# IPv4 address to forward to.
|
1691
|
+
# IPv4 address to forward queries to.
|
1685
1692
|
# Corresponds to the JSON property `ipv4Address`
|
1686
1693
|
# @return [String]
|
1687
1694
|
attr_accessor :ipv4_address
|
1688
1695
|
|
1696
|
+
# IPv6 address to forward to. Does not accept both fields (ipv4 & ipv6) being
|
1697
|
+
# populated. Public preview as of November 2022.
|
1698
|
+
# Corresponds to the JSON property `ipv6Address`
|
1699
|
+
# @return [String]
|
1700
|
+
attr_accessor :ipv6_address
|
1701
|
+
|
1689
1702
|
#
|
1690
1703
|
# Corresponds to the JSON property `kind`
|
1691
1704
|
# @return [String]
|
@@ -1699,6 +1712,7 @@ module Google
|
|
1699
1712
|
def update!(**args)
|
1700
1713
|
@forwarding_path = args[:forwarding_path] if args.key?(:forwarding_path)
|
1701
1714
|
@ipv4_address = args[:ipv4_address] if args.key?(:ipv4_address)
|
1715
|
+
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
|
1702
1716
|
@kind = args[:kind] if args.key?(:kind)
|
1703
1717
|
end
|
1704
1718
|
end
|
@@ -2409,12 +2423,12 @@ module Google
|
|
2409
2423
|
# @return [Google::Apis::DnsV1::ResponseHeader]
|
2410
2424
|
attr_accessor :header
|
2411
2425
|
|
2412
|
-
# The presence of this field indicates that
|
2413
|
-
#
|
2414
|
-
#
|
2415
|
-
# contents of even very large collections one page at a time. However,
|
2416
|
-
# contents of the collection change between the first and last paginated
|
2417
|
-
# request, the set of all elements returned are an inconsistent view of the
|
2426
|
+
# The presence of this field indicates that more results exist following your
|
2427
|
+
# last page of results in pagination order. To fetch them, make another list
|
2428
|
+
# request by using this value as your page token. This lets you view the
|
2429
|
+
# complete contents of even very large collections one page at a time. However,
|
2430
|
+
# if the contents of the collection change between the first and last paginated
|
2431
|
+
# list request, the set of all elements returned are an inconsistent view of the
|
2418
2432
|
# collection. You cannot retrieve a consistent snapshot of a collection larger
|
2419
2433
|
# than the maximum page size.
|
2420
2434
|
# Corresponds to the JSON property `nextPageToken`
|
@@ -2516,6 +2530,11 @@ module Google
|
|
2516
2530
|
# @return [String]
|
2517
2531
|
attr_accessor :kind
|
2518
2532
|
|
2533
|
+
# User labels.
|
2534
|
+
# Corresponds to the JSON property `labels`
|
2535
|
+
# @return [Hash<String,String>]
|
2536
|
+
attr_accessor :labels
|
2537
|
+
|
2519
2538
|
# List of network names specifying networks to which this policy is applied.
|
2520
2539
|
# Corresponds to the JSON property `networks`
|
2521
2540
|
# @return [Array<Google::Apis::DnsV1::ResponsePolicyNetwork>]
|
@@ -2536,6 +2555,7 @@ module Google
|
|
2536
2555
|
@gke_clusters = args[:gke_clusters] if args.key?(:gke_clusters)
|
2537
2556
|
@id = args[:id] if args.key?(:id)
|
2538
2557
|
@kind = args[:kind] if args.key?(:kind)
|
2558
|
+
@labels = args[:labels] if args.key?(:labels)
|
2539
2559
|
@networks = args[:networks] if args.key?(:networks)
|
2540
2560
|
@response_policy_name = args[:response_policy_name] if args.key?(:response_policy_name)
|
2541
2561
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DnsV1
|
18
18
|
# Version of the google-apis-dns_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.29.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221110"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -643,6 +643,7 @@ module Google
|
|
643
643
|
class Representation < Google::Apis::Core::JsonRepresentation
|
644
644
|
property :forwarding_path, as: 'forwardingPath'
|
645
645
|
property :ipv4_address, as: 'ipv4Address'
|
646
|
+
property :ipv6_address, as: 'ipv6Address'
|
646
647
|
property :kind, as: 'kind'
|
647
648
|
end
|
648
649
|
end
|
@@ -839,6 +840,7 @@ module Google
|
|
839
840
|
class Representation < Google::Apis::Core::JsonRepresentation
|
840
841
|
property :forwarding_path, as: 'forwardingPath'
|
841
842
|
property :ipv4_address, as: 'ipv4Address'
|
843
|
+
property :ipv6_address, as: 'ipv6Address'
|
842
844
|
property :kind, as: 'kind'
|
843
845
|
end
|
844
846
|
end
|
@@ -1061,6 +1063,7 @@ module Google
|
|
1061
1063
|
|
1062
1064
|
property :id, :numeric_string => true, as: 'id'
|
1063
1065
|
property :kind, as: 'kind'
|
1066
|
+
hash :labels, as: 'labels'
|
1064
1067
|
collection :networks, as: 'networks', class: Google::Apis::DnsV1::ResponsePolicyNetwork, decorator: Google::Apis::DnsV1::ResponsePolicyNetwork::Representation
|
1065
1068
|
|
1066
1069
|
property :response_policy_name, as: 'responsePolicyName'
|
@@ -624,7 +624,7 @@ module Google
|
|
624
624
|
end
|
625
625
|
|
626
626
|
# Returns permissions that a caller has on the specified resource. If the
|
627
|
-
# resource does not exist, this
|
627
|
+
# resource does not exist, this returns an empty set of permissions, not a `
|
628
628
|
# NOT_FOUND` error. Note: This operation is designed to be used for building
|
629
629
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
630
630
|
# This operation may "fail open" without warning.
|
@@ -1343,7 +1343,7 @@ module Google
|
|
1343
1343
|
# @param [String] project
|
1344
1344
|
# Identifies the project addressed by this request.
|
1345
1345
|
# @param [String] response_policy
|
1346
|
-
# User assigned name of the
|
1346
|
+
# User assigned name of the response policy addressed by this request.
|
1347
1347
|
# @param [Google::Apis::DnsV1::ResponsePolicy] response_policy_object
|
1348
1348
|
# @param [String] client_operation_id
|
1349
1349
|
# For mutating operation requests only. An optional identifier specified by the
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dns_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.29.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: 2022-
|
11
|
+
date: 2022-12-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.9.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.9.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.29.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|