google-apis-datafusion_v1beta1 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: 5e67aa9f727b016ba8aa296f58b4b4ba3ee27d0ce3d0c8e79979a54ad319d09d
4
- data.tar.gz: dda2fd80c67a207bb6d3c54e8a36cb2535fd77897f92faa0c5ebbc76ee411a09
3
+ metadata.gz: 9fe9b14ac685bda208213f2108aa9dfda9ea6e973e370b060154976cb764185b
4
+ data.tar.gz: ad9932d79c838186dfdc8a9e452e8a9d480198166acf830378066391b961c789
5
5
  SHA512:
6
- metadata.gz: 1a6abd172834611a2feef40f23f3501774a10c835bfe26fe5cfa4b0ee1b664da43c4d5e10e24ceda82c5e8779dc47aaefd5c8e8d377fd11bfc4e89d2b2f15993
7
- data.tar.gz: ea9e94f1d61ee07dc3055d08c721ccae25700aeccd5e3f4a7495eb8a1c7011efafe0c7e4638eab048e59da0b082c504654c6e4f0f90a4ec8345459b057619143
6
+ metadata.gz: a19dd9e3b23a7db415a5cdd73b162a0a66c56ad3114dec6cc2a60a52e77f91332d4c69be1322e872ac54fb48e93a1617cf1871ac53c6bc7cfaa3ef53c61c99dd
7
+ data.tar.gz: 809c1176a599bb1d3c9370a12747a7fe0e73ae7538e5efe56692bbc4975fcf55d3af45970cdeccc7cec55b3113011a9555459e9986859b933169c904bce39b5d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datafusion_v1beta1
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
@@ -570,6 +570,11 @@ module Google
570
570
  # @return [Google::Apis::DatafusionV1beta1::MaintenancePolicy]
571
571
  attr_accessor :maintenance_policy
572
572
 
573
+ # Monitoring configuration for a Data Fusion instance.
574
+ # Corresponds to the JSON property `monitoringConfig`
575
+ # @return [Google::Apis::DatafusionV1beta1::MonitoringConfig]
576
+ attr_accessor :monitoring_config
577
+
573
578
  # Output only. The name of this instance is in the form of projects/`project`/
574
579
  # locations/`location`/instances/`instance`.
575
580
  # Corresponds to the JSON property `name`
@@ -709,6 +714,7 @@ module Google
709
714
  @logging_config = args[:logging_config] if args.key?(:logging_config)
710
715
  @maintenance_events = args[:maintenance_events] if args.key?(:maintenance_events)
711
716
  @maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
717
+ @monitoring_config = args[:monitoring_config] if args.key?(:monitoring_config)
712
718
  @name = args[:name] if args.key?(:name)
713
719
  @network_config = args[:network_config] if args.key?(:network_config)
714
720
  @options = args[:options] if args.key?(:options)
@@ -1053,6 +1059,27 @@ module Google
1053
1059
  end
1054
1060
  end
1055
1061
 
1062
+ # Monitoring configuration for a Data Fusion instance.
1063
+ class MonitoringConfig
1064
+ include Google::Apis::Core::Hashable
1065
+
1066
+ # Optional. Option to enable the instance v2 metrics for this instance. This
1067
+ # field is supported only in CDF versions 6.11.1.1 and above.
1068
+ # Corresponds to the JSON property `enableInstanceV2Metrics`
1069
+ # @return [Boolean]
1070
+ attr_accessor :enable_instance_v2_metrics
1071
+ alias_method :enable_instance_v2_metrics?, :enable_instance_v2_metrics
1072
+
1073
+ def initialize(**args)
1074
+ update!(**args)
1075
+ end
1076
+
1077
+ # Update properties of this object
1078
+ def update!(**args)
1079
+ @enable_instance_v2_metrics = args[:enable_instance_v2_metrics] if args.key?(:enable_instance_v2_metrics)
1080
+ end
1081
+ end
1082
+
1056
1083
  # Represents the information of a namespace
1057
1084
  class Namespace
1058
1085
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatafusionV1beta1
18
18
  # Version of the google-apis-datafusion_v1beta1 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
@@ -160,6 +160,12 @@ module Google
160
160
  include Google::Apis::Core::JsonObjectSupport
161
161
  end
162
162
 
163
+ class MonitoringConfig
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
163
169
  class Namespace
164
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
171
 
@@ -385,6 +391,8 @@ module Google
385
391
 
386
392
  property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::DatafusionV1beta1::MaintenancePolicy, decorator: Google::Apis::DatafusionV1beta1::MaintenancePolicy::Representation
387
393
 
394
+ property :monitoring_config, as: 'monitoringConfig', class: Google::Apis::DatafusionV1beta1::MonitoringConfig, decorator: Google::Apis::DatafusionV1beta1::MonitoringConfig::Representation
395
+
388
396
  property :name, as: 'name'
389
397
  property :network_config, as: 'networkConfig', class: Google::Apis::DatafusionV1beta1::NetworkConfig, decorator: Google::Apis::DatafusionV1beta1::NetworkConfig::Representation
390
398
 
@@ -511,6 +519,13 @@ module Google
511
519
  end
512
520
  end
513
521
 
522
+ class MonitoringConfig
523
+ # @private
524
+ class Representation < Google::Apis::Core::JsonRepresentation
525
+ property :enable_instance_v2_metrics, as: 'enableInstanceV2Metrics'
526
+ end
527
+ end
528
+
514
529
  class Namespace
515
530
  # @private
516
531
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datafusion_v1beta1
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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.41.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.42.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: