google-apis-dns_v1 0.15.0 → 0.16.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 +4 -0
- data/lib/google/apis/dns_v1/classes.rb +33 -0
- data/lib/google/apis/dns_v1/gem_version.rb +2 -2
- data/lib/google/apis/dns_v1/representations.rb +16 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2d2788dddec84cec57a5bd4c66f9e680e03a4ef8939e5629dc954f0533f37bf2
|
|
4
|
+
data.tar.gz: ad190f8054abda7da2081b45be04ae1b282161fe2b0f5af6b1008813dd6b08f1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77c3cd8e721e937b36b66aee821aca42d1cd237363e0c2ca1b737a2c77c895502eb98240ec2d4d409542f30ab344a68ddc65d941950a5903bd822d48b60b562d
|
|
7
|
+
data.tar.gz: '085c1deb61f09fe14523162edbce44437026e374867aca93dbb3e203b9b484d34f825041f44b53cf7d71d47a71a6ec78714e3f1b5a3fab375bf73f53e9e1ca77'
|
data/CHANGELOG.md
CHANGED
|
@@ -346,6 +346,11 @@ module Google
|
|
|
346
346
|
class ManagedZone
|
|
347
347
|
include Google::Apis::Core::Hashable
|
|
348
348
|
|
|
349
|
+
# Cloud Logging configurations for publicly visible zones.
|
|
350
|
+
# Corresponds to the JSON property `cloudLoggingConfig`
|
|
351
|
+
# @return [Google::Apis::DnsV1::ManagedZoneCloudLoggingConfig]
|
|
352
|
+
attr_accessor :cloud_logging_config
|
|
353
|
+
|
|
349
354
|
# The time that this resource was created on the server. This is in RFC3339 text
|
|
350
355
|
# format. Output only.
|
|
351
356
|
# Corresponds to the JSON property `creationTime`
|
|
@@ -448,6 +453,7 @@ module Google
|
|
|
448
453
|
|
|
449
454
|
# Update properties of this object
|
|
450
455
|
def update!(**args)
|
|
456
|
+
@cloud_logging_config = args[:cloud_logging_config] if args.key?(:cloud_logging_config)
|
|
451
457
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
|
452
458
|
@description = args[:description] if args.key?(:description)
|
|
453
459
|
@dns_name = args[:dns_name] if args.key?(:dns_name)
|
|
@@ -467,6 +473,33 @@ module Google
|
|
|
467
473
|
end
|
|
468
474
|
end
|
|
469
475
|
|
|
476
|
+
# Cloud Logging configurations for publicly visible zones.
|
|
477
|
+
class ManagedZoneCloudLoggingConfig
|
|
478
|
+
include Google::Apis::Core::Hashable
|
|
479
|
+
|
|
480
|
+
# If set, enable query logging for this ManagedZone. False by default, making
|
|
481
|
+
# logging opt-in.
|
|
482
|
+
# Corresponds to the JSON property `enableLogging`
|
|
483
|
+
# @return [Boolean]
|
|
484
|
+
attr_accessor :enable_logging
|
|
485
|
+
alias_method :enable_logging?, :enable_logging
|
|
486
|
+
|
|
487
|
+
#
|
|
488
|
+
# Corresponds to the JSON property `kind`
|
|
489
|
+
# @return [String]
|
|
490
|
+
attr_accessor :kind
|
|
491
|
+
|
|
492
|
+
def initialize(**args)
|
|
493
|
+
update!(**args)
|
|
494
|
+
end
|
|
495
|
+
|
|
496
|
+
# Update properties of this object
|
|
497
|
+
def update!(**args)
|
|
498
|
+
@enable_logging = args[:enable_logging] if args.key?(:enable_logging)
|
|
499
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
500
|
+
end
|
|
501
|
+
end
|
|
502
|
+
|
|
470
503
|
#
|
|
471
504
|
class ManagedZoneDnsSecConfig
|
|
472
505
|
include Google::Apis::Core::Hashable
|
|
@@ -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.16.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20211103"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -64,6 +64,12 @@ module Google
|
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
|
65
65
|
end
|
|
66
66
|
|
|
67
|
+
class ManagedZoneCloudLoggingConfig
|
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
|
+
|
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
71
|
+
end
|
|
72
|
+
|
|
67
73
|
class ManagedZoneDnsSecConfig
|
|
68
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
75
|
|
|
@@ -310,6 +316,8 @@ module Google
|
|
|
310
316
|
class ManagedZone
|
|
311
317
|
# @private
|
|
312
318
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
319
|
+
property :cloud_logging_config, as: 'cloudLoggingConfig', class: Google::Apis::DnsV1::ManagedZoneCloudLoggingConfig, decorator: Google::Apis::DnsV1::ManagedZoneCloudLoggingConfig::Representation
|
|
320
|
+
|
|
313
321
|
property :creation_time, as: 'creationTime'
|
|
314
322
|
property :description, as: 'description'
|
|
315
323
|
property :dns_name, as: 'dnsName'
|
|
@@ -335,6 +343,14 @@ module Google
|
|
|
335
343
|
end
|
|
336
344
|
end
|
|
337
345
|
|
|
346
|
+
class ManagedZoneCloudLoggingConfig
|
|
347
|
+
# @private
|
|
348
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
349
|
+
property :enable_logging, as: 'enableLogging'
|
|
350
|
+
property :kind, as: 'kind'
|
|
351
|
+
end
|
|
352
|
+
end
|
|
353
|
+
|
|
338
354
|
class ManagedZoneDnsSecConfig
|
|
339
355
|
# @private
|
|
340
356
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.16.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-11-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.16.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: []
|