google-apis-dns_v1beta2 0.16.0 → 0.17.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: 0cb5a64d1ebd17ba27fa32e9a4f708b89e4829bee73593a0c30854f247b3c8bb
|
|
4
|
+
data.tar.gz: a7db24ebdebdbc67e9f8be118b36c183a9b7e60e650a2b879e90f9a525c76837
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ffe0f36d455ac738292288e1a77984174ef51dabd9a0b30b4a7656ca6ee02950637390f9eb6dbff05d88900296b50b5fabbd0a7dac6e581754345ae8039c912
|
|
7
|
+
data.tar.gz: 0011db8a92f6ea150be6d30cb85bd73bfdf844ee205bfee622279645448fd3c6d2d197cbafab6308c53a326d5443b4414306a050818051c6dcff22b8908d5538
|
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::DnsV1beta2::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 DnsV1beta2
|
|
18
18
|
# Version of the google-apis-dns_v1beta2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.17.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
|
|
|
@@ -406,6 +412,8 @@ module Google
|
|
|
406
412
|
class ManagedZone
|
|
407
413
|
# @private
|
|
408
414
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
415
|
+
property :cloud_logging_config, as: 'cloudLoggingConfig', class: Google::Apis::DnsV1beta2::ManagedZoneCloudLoggingConfig, decorator: Google::Apis::DnsV1beta2::ManagedZoneCloudLoggingConfig::Representation
|
|
416
|
+
|
|
409
417
|
property :creation_time, as: 'creationTime'
|
|
410
418
|
property :description, as: 'description'
|
|
411
419
|
property :dns_name, as: 'dnsName'
|
|
@@ -431,6 +439,14 @@ module Google
|
|
|
431
439
|
end
|
|
432
440
|
end
|
|
433
441
|
|
|
442
|
+
class ManagedZoneCloudLoggingConfig
|
|
443
|
+
# @private
|
|
444
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
445
|
+
property :enable_logging, as: 'enableLogging'
|
|
446
|
+
property :kind, as: 'kind'
|
|
447
|
+
end
|
|
448
|
+
end
|
|
449
|
+
|
|
434
450
|
class ManagedZoneDnsSecConfig
|
|
435
451
|
# @private
|
|
436
452
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.17.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_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.17.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: []
|