google-apis-datafusion_v1beta1 0.41.0 → 0.43.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: fca71507d61ea7b273f354edd617e4e9b0f662432c6d8ceeddca9b4d36fd5d0a
4
+ data.tar.gz: ab70a11cfb11e8ecd82c28d4404218a53443d611d430a59fef2b923d927a8f55
5
5
  SHA512:
6
- metadata.gz: 1a6abd172834611a2feef40f23f3501774a10c835bfe26fe5cfa4b0ee1b664da43c4d5e10e24ceda82c5e8779dc47aaefd5c8e8d377fd11bfc4e89d2b2f15993
7
- data.tar.gz: ea9e94f1d61ee07dc3055d08c721ccae25700aeccd5e3f4a7495eb8a1c7011efafe0c7e4638eab048e59da0b082c504654c6e4f0f90a4ec8345459b057619143
6
+ metadata.gz: b9955e25e429dfc0687e5f8101840a3e089afd85123d0a69aa39253ac9544e386d15bca60ea9f0d8fc9e7f728f800d7c6ac762fb24c15788d915318202d76121
7
+ data.tar.gz: e3933e849e16feac417e4e43fcb8f472fd73830c9882d05bca61e159fe016dbda940b704449a0557ac364265c0399dd812f8a34526ba56e672735073d7a95a16
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datafusion_v1beta1
2
2
 
3
+ ### v0.43.0 (2026-02-08)
4
+
5
+ * Regenerated from discovery document revision 20260202
6
+
7
+ ### v0.42.0 (2025-12-14)
8
+
9
+ * Regenerated from discovery document revision 20251203
10
+
3
11
  ### v0.41.0 (2025-11-16)
4
12
 
5
13
  * 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)
@@ -888,8 +894,9 @@ module Google
888
894
  attr_accessor :operations
889
895
 
890
896
  # Unordered list. Unreachable resources. Populated when the request sets `
891
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
892
- # when attempting to list all resources across all supported locations.
897
+ # ListOperationsRequest.return_partial_success` and reads across collections.
898
+ # For example, when attempting to list all resources across all supported
899
+ # locations.
893
900
  # Corresponds to the JSON property `unreachable`
894
901
  # @return [Array<String>]
895
902
  attr_accessor :unreachable
@@ -957,6 +964,13 @@ module Google
957
964
  class LoggingConfig
958
965
  include Google::Apis::Core::Hashable
959
966
 
967
+ # Optional. Option to enable the InstanceV2 logging for this instance. This
968
+ # field is supported only in CDF patch revision versions 6.11.1.1 and above.
969
+ # Corresponds to the JSON property `enableInstanceV2Logs`
970
+ # @return [Boolean]
971
+ attr_accessor :enable_instance_v2_logs
972
+ alias_method :enable_instance_v2_logs?, :enable_instance_v2_logs
973
+
960
974
  # Optional. Option to determine whether instance logs should be written to Cloud
961
975
  # Logging. By default, instance logs are written to Cloud Logging.
962
976
  # Corresponds to the JSON property `instanceCloudLoggingDisabled`
@@ -970,6 +984,7 @@ module Google
970
984
 
971
985
  # Update properties of this object
972
986
  def update!(**args)
987
+ @enable_instance_v2_logs = args[:enable_instance_v2_logs] if args.key?(:enable_instance_v2_logs)
973
988
  @instance_cloud_logging_disabled = args[:instance_cloud_logging_disabled] if args.key?(:instance_cloud_logging_disabled)
974
989
  end
975
990
  end
@@ -1053,6 +1068,27 @@ module Google
1053
1068
  end
1054
1069
  end
1055
1070
 
1071
+ # Monitoring configuration for a Data Fusion instance.
1072
+ class MonitoringConfig
1073
+ include Google::Apis::Core::Hashable
1074
+
1075
+ # Optional. Option to enable the instance v2 metrics for this instance. This
1076
+ # field is supported only in CDF versions 6.11.1.1 and above.
1077
+ # Corresponds to the JSON property `enableInstanceV2Metrics`
1078
+ # @return [Boolean]
1079
+ attr_accessor :enable_instance_v2_metrics
1080
+ alias_method :enable_instance_v2_metrics?, :enable_instance_v2_metrics
1081
+
1082
+ def initialize(**args)
1083
+ update!(**args)
1084
+ end
1085
+
1086
+ # Update properties of this object
1087
+ def update!(**args)
1088
+ @enable_instance_v2_metrics = args[:enable_instance_v2_metrics] if args.key?(:enable_instance_v2_metrics)
1089
+ end
1090
+ end
1091
+
1056
1092
  # Represents the information of a namespace
1057
1093
  class Namespace
1058
1094
  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.43.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 = "20260202"
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
 
@@ -480,6 +488,7 @@ module Google
480
488
  class LoggingConfig
481
489
  # @private
482
490
  class Representation < Google::Apis::Core::JsonRepresentation
491
+ property :enable_instance_v2_logs, as: 'enableInstanceV2Logs'
483
492
  property :instance_cloud_logging_disabled, as: 'instanceCloudLoggingDisabled'
484
493
  end
485
494
  end
@@ -511,6 +520,13 @@ module Google
511
520
  end
512
521
  end
513
522
 
523
+ class MonitoringConfig
524
+ # @private
525
+ class Representation < Google::Apis::Core::JsonRepresentation
526
+ property :enable_instance_v2_metrics, as: 'enableInstanceV2Metrics'
527
+ end
528
+ end
529
+
514
530
  class Namespace
515
531
  # @private
516
532
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -938,11 +938,12 @@ module Google
938
938
  # The standard list page token.
939
939
  # @param [Boolean] return_partial_success
940
940
  # When set to `true`, operations that are reachable are returned as normal, and
941
- # those that are unreachable are returned in the [ListOperationsResponse.
942
- # unreachable] field. This can only be `true` when reading across collections e.
943
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
944
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
945
- # explicitly documented otherwise in service or product specific documentation.
941
+ # those that are unreachable are returned in the ListOperationsResponse.
942
+ # unreachable field. This can only be `true` when reading across collections.
943
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
944
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
945
+ # if set unless explicitly documented otherwise in service or product specific
946
+ # documentation.
946
947
  # @param [String] fields
947
948
  # Selector specifying which fields to include in a partial response.
948
949
  # @param [String] quota_user
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.43.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.43.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: