google-apis-dns_v1 0.15.0 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 225319d9e46e5f17f7aa84be721fa50048530187739a2205821bffc3ad95e46a
4
- data.tar.gz: 2a58c41fc645c32280b9b863b0210d8dfde68637c36f5edc285cf2e77664fcc4
3
+ metadata.gz: 2d2788dddec84cec57a5bd4c66f9e680e03a4ef8939e5629dc954f0533f37bf2
4
+ data.tar.gz: ad190f8054abda7da2081b45be04ae1b282161fe2b0f5af6b1008813dd6b08f1
5
5
  SHA512:
6
- metadata.gz: e1f7f69192f97d53f6757132de4bee81c318a4c203768ed3b4abbb3a7ed2e4f94c9b00ace91a1d1f3098cebe0b7f9888d5a23c1350f2d97710ddb8e334d8206c
7
- data.tar.gz: a81c09191f0ec79d95959748fd1ee940c5165675cfc294727e10ee8db7c942dfdef02541c1b6367721a5b253c4306da023c48ad9e7bdcb630ae1d2cb3cda7069
6
+ metadata.gz: 77c3cd8e721e937b36b66aee821aca42d1cd237363e0c2ca1b737a2c77c895502eb98240ec2d4d409542f30ab344a68ddc65d941950a5903bd822d48b60b562d
7
+ data.tar.gz: '085c1deb61f09fe14523162edbce44437026e374867aca93dbb3e203b9b484d34f825041f44b53cf7d71d47a71a6ec78714e3f1b5a3fab375bf73f53e9e1ca77'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dns_v1
2
2
 
3
+ ### v0.16.0 (2021-11-09)
4
+
5
+ * Regenerated from discovery document revision 20211103
6
+
3
7
  ### v0.15.0 (2021-10-21)
4
8
 
5
9
  * Unspecified changes
@@ -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.15.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 = "20210809"
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.15.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-10-27 00:00:00.000000000 Z
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.15.0
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: []