google-apis-datafusion_v1 0.41.0 → 0.42.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: 92d9e1e27dca653cf5713e7eddf8f0ac80bc5142608c93f976ec3671b3218d40
4
- data.tar.gz: 77c57659dd88f0d644a51c15c2ace76db4e2a2d4659d5cb31fca6189c3900f2d
3
+ metadata.gz: ed22c6537a2476d5b62990e5fe2196268c8f9b7917e4c04167e6a53592595826
4
+ data.tar.gz: 2b896a33844d9cb0dca169d4a990e2a019af6a3d10785d535730a1d44ec32631
5
5
  SHA512:
6
- metadata.gz: ec3cedb5db10c73a5dbb0bcf4756dfd4ad1d83b6bb5f1c4fb6b9ba015ace569b8d41040f27318431e42ab4d28dce1499dc895b8751cf54e7f2ab970d8171c36d
7
- data.tar.gz: 7c0564192a3d1d8106ca492d559e31ef6df18a14f6d56c35b63177d674d0852806d71c517d9692604c3a696941573d8e12696cc1522581f508795874a105f87e
6
+ metadata.gz: e8da41c9ced0940d0fb9d5e081467e792e00f5c056e97f2d0f65532697de7805ed611f03e208d7bf77d6f8b17bd063036b532360da80efa98cf50c57fd7a1c9e
7
+ data.tar.gz: e8b40e3e27669ff0ceb9412fd02b118bd3ab00cdb510808bae6b96d584ec02eb6b388b9e2e7f73737025277156e439262bed118f65ea77bfb4948d245c5b22a4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datafusion_v1
2
2
 
3
+ ### v0.42.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251203
6
+
3
7
  ### v0.41.0 (2025-11-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20251106
@@ -513,6 +513,11 @@ module Google
513
513
  # @return [Google::Apis::DatafusionV1::MaintenancePolicy]
514
514
  attr_accessor :maintenance_policy
515
515
 
516
+ # Monitoring configuration for a Data Fusion instance.
517
+ # Corresponds to the JSON property `monitoringConfig`
518
+ # @return [Google::Apis::DatafusionV1::MonitoringConfig]
519
+ attr_accessor :monitoring_config
520
+
516
521
  # Output only. The name of this instance is in the form of projects/`project`/
517
522
  # locations/`location`/instances/`instance`.
518
523
  # Corresponds to the JSON property `name`
@@ -652,6 +657,7 @@ module Google
652
657
  @logging_config = args[:logging_config] if args.key?(:logging_config)
653
658
  @maintenance_events = args[:maintenance_events] if args.key?(:maintenance_events)
654
659
  @maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
660
+ @monitoring_config = args[:monitoring_config] if args.key?(:monitoring_config)
655
661
  @name = args[:name] if args.key?(:name)
656
662
  @network_config = args[:network_config] if args.key?(:network_config)
657
663
  @options = args[:options] if args.key?(:options)
@@ -970,6 +976,27 @@ module Google
970
976
  end
971
977
  end
972
978
 
979
+ # Monitoring configuration for a Data Fusion instance.
980
+ class MonitoringConfig
981
+ include Google::Apis::Core::Hashable
982
+
983
+ # Optional. Option to enable the instance v2 metrics for this instance. This
984
+ # field is supported only in CDF versions 6.11.1.1 and above.
985
+ # Corresponds to the JSON property `enableInstanceV2Metrics`
986
+ # @return [Boolean]
987
+ attr_accessor :enable_instance_v2_metrics
988
+ alias_method :enable_instance_v2_metrics?, :enable_instance_v2_metrics
989
+
990
+ def initialize(**args)
991
+ update!(**args)
992
+ end
993
+
994
+ # Update properties of this object
995
+ def update!(**args)
996
+ @enable_instance_v2_metrics = args[:enable_instance_v2_metrics] if args.key?(:enable_instance_v2_metrics)
997
+ end
998
+ end
999
+
973
1000
  # Network configuration for a Data Fusion instance. These configurations are
974
1001
  # used for peering with the customer network. Configurations are optional when a
975
1002
  # public Data Fusion instance is to be created. However, providing these
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatafusionV1
18
18
  # Version of the google-apis-datafusion_v1 gem
19
- GEM_VERSION = "0.41.0"
19
+ GEM_VERSION = "0.42.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251106"
25
+ REVISION = "20251203"
26
26
  end
27
27
  end
28
28
  end
@@ -148,6 +148,12 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
+ class MonitoringConfig
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
151
157
  class NetworkConfig
152
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
159
 
@@ -339,6 +345,8 @@ module Google
339
345
 
340
346
  property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::DatafusionV1::MaintenancePolicy, decorator: Google::Apis::DatafusionV1::MaintenancePolicy::Representation
341
347
 
348
+ property :monitoring_config, as: 'monitoringConfig', class: Google::Apis::DatafusionV1::MonitoringConfig, decorator: Google::Apis::DatafusionV1::MonitoringConfig::Representation
349
+
342
350
  property :name, as: 'name'
343
351
  property :network_config, as: 'networkConfig', class: Google::Apis::DatafusionV1::NetworkConfig, decorator: Google::Apis::DatafusionV1::NetworkConfig::Representation
344
352
 
@@ -456,6 +464,13 @@ module Google
456
464
  end
457
465
  end
458
466
 
467
+ class MonitoringConfig
468
+ # @private
469
+ class Representation < Google::Apis::Core::JsonRepresentation
470
+ property :enable_instance_v2_metrics, as: 'enableInstanceV2Metrics'
471
+ end
472
+ end
473
+
459
474
  class NetworkConfig
460
475
  # @private
461
476
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datafusion_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.41.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.42.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1
62
62
  rdoc_options: []
63
63
  require_paths: