google-apis-datafusion_v1beta1 0.42.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: 9fe9b14ac685bda208213f2108aa9dfda9ea6e973e370b060154976cb764185b
4
- data.tar.gz: ad9932d79c838186dfdc8a9e452e8a9d480198166acf830378066391b961c789
3
+ metadata.gz: fca71507d61ea7b273f354edd617e4e9b0f662432c6d8ceeddca9b4d36fd5d0a
4
+ data.tar.gz: ab70a11cfb11e8ecd82c28d4404218a53443d611d430a59fef2b923d927a8f55
5
5
  SHA512:
6
- metadata.gz: a19dd9e3b23a7db415a5cdd73b162a0a66c56ad3114dec6cc2a60a52e77f91332d4c69be1322e872ac54fb48e93a1617cf1871ac53c6bc7cfaa3ef53c61c99dd
7
- data.tar.gz: 809c1176a599bb1d3c9370a12747a7fe0e73ae7538e5efe56692bbc4975fcf55d3af45970cdeccc7cec55b3113011a9555459e9986859b933169c904bce39b5d
6
+ metadata.gz: b9955e25e429dfc0687e5f8101840a3e089afd85123d0a69aa39253ac9544e386d15bca60ea9f0d8fc9e7f728f800d7c6ac762fb24c15788d915318202d76121
7
+ data.tar.gz: e3933e849e16feac417e4e43fcb8f472fd73830c9882d05bca61e159fe016dbda940b704449a0557ac364265c0399dd812f8a34526ba56e672735073d7a95a16
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.42.0 (2025-12-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20251203
@@ -894,8 +894,9 @@ module Google
894
894
  attr_accessor :operations
895
895
 
896
896
  # Unordered list. Unreachable resources. Populated when the request sets `
897
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
898
- # 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.
899
900
  # Corresponds to the JSON property `unreachable`
900
901
  # @return [Array<String>]
901
902
  attr_accessor :unreachable
@@ -963,6 +964,13 @@ module Google
963
964
  class LoggingConfig
964
965
  include Google::Apis::Core::Hashable
965
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
+
966
974
  # Optional. Option to determine whether instance logs should be written to Cloud
967
975
  # Logging. By default, instance logs are written to Cloud Logging.
968
976
  # Corresponds to the JSON property `instanceCloudLoggingDisabled`
@@ -976,6 +984,7 @@ module Google
976
984
 
977
985
  # Update properties of this object
978
986
  def update!(**args)
987
+ @enable_instance_v2_logs = args[:enable_instance_v2_logs] if args.key?(:enable_instance_v2_logs)
979
988
  @instance_cloud_logging_disabled = args[:instance_cloud_logging_disabled] if args.key?(:instance_cloud_logging_disabled)
980
989
  end
981
990
  end
@@ -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.42.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 = "20251203"
25
+ REVISION = "20260202"
26
26
  end
27
27
  end
28
28
  end
@@ -488,6 +488,7 @@ module Google
488
488
  class LoggingConfig
489
489
  # @private
490
490
  class Representation < Google::Apis::Core::JsonRepresentation
491
+ property :enable_instance_v2_logs, as: 'enableInstanceV2Logs'
491
492
  property :instance_cloud_logging_disabled, as: 'instanceCloudLoggingDisabled'
492
493
  end
493
494
  end
@@ -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.42.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.42.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: