google-apis-datafusion_v1 0.42.0 → 0.44.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/datafusion_v1/classes.rb +11 -2
- data/lib/google/apis/datafusion_v1/gem_version.rb +3 -3
- data/lib/google/apis/datafusion_v1/representations.rb +1 -0
- data/lib/google/apis/datafusion_v1/service.rb +6 -5
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd7d27ee094dfbd542f803e32c814b52c54438386dae5126b7e88c9af2a4420c
|
|
4
|
+
data.tar.gz: 1e562f177023655144764953b733611456b9446e7769a79e252ca3d50e455f26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb7e1ee0741922dbfcc486797f9c67c72bb76d00843c70493712015c1bfb0ea5ce1d99e7f3dda7989e2722fb136c65680e08d2b88dfb9cd69e91d0e84f1d84d9
|
|
7
|
+
data.tar.gz: 4a0349a0fee1506dee8775ff709229b4e5a95c99f33260814969621930cf4b2ee41c7ddf41885355ac59d748be2da652780c8f259482de39e258dafa41e9dfb5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-datafusion_v1
|
|
2
2
|
|
|
3
|
+
### v0.44.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated using generator version 0.19.0
|
|
6
|
+
|
|
7
|
+
### v0.43.0 (2026-02-08)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260202
|
|
10
|
+
|
|
3
11
|
### v0.42.0 (2025-12-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251203
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/data-fusion/docs) may provi
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -811,8 +811,9 @@ module Google
|
|
|
811
811
|
attr_accessor :operations
|
|
812
812
|
|
|
813
813
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
814
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
815
|
-
# when attempting to list all resources across all supported
|
|
814
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
815
|
+
# For example, when attempting to list all resources across all supported
|
|
816
|
+
# locations.
|
|
816
817
|
# Corresponds to the JSON property `unreachable`
|
|
817
818
|
# @return [Array<String>]
|
|
818
819
|
attr_accessor :unreachable
|
|
@@ -880,6 +881,13 @@ module Google
|
|
|
880
881
|
class LoggingConfig
|
|
881
882
|
include Google::Apis::Core::Hashable
|
|
882
883
|
|
|
884
|
+
# Optional. Option to enable the InstanceV2 logging for this instance. This
|
|
885
|
+
# field is supported only in CDF patch revision versions 6.11.1.1 and above.
|
|
886
|
+
# Corresponds to the JSON property `enableInstanceV2Logs`
|
|
887
|
+
# @return [Boolean]
|
|
888
|
+
attr_accessor :enable_instance_v2_logs
|
|
889
|
+
alias_method :enable_instance_v2_logs?, :enable_instance_v2_logs
|
|
890
|
+
|
|
883
891
|
# Optional. Option to determine whether instance logs should be written to Cloud
|
|
884
892
|
# Logging. By default, instance logs are written to Cloud Logging.
|
|
885
893
|
# Corresponds to the JSON property `instanceCloudLoggingDisabled`
|
|
@@ -893,6 +901,7 @@ module Google
|
|
|
893
901
|
|
|
894
902
|
# Update properties of this object
|
|
895
903
|
def update!(**args)
|
|
904
|
+
@enable_instance_v2_logs = args[:enable_instance_v2_logs] if args.key?(:enable_instance_v2_logs)
|
|
896
905
|
@instance_cloud_logging_disabled = args[:instance_cloud_logging_disabled] if args.key?(:instance_cloud_logging_disabled)
|
|
897
906
|
end
|
|
898
907
|
end
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.44.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260202"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -433,6 +433,7 @@ module Google
|
|
|
433
433
|
class LoggingConfig
|
|
434
434
|
# @private
|
|
435
435
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
436
|
+
property :enable_instance_v2_logs, as: 'enableInstanceV2Logs'
|
|
436
437
|
property :instance_cloud_logging_disabled, as: 'instanceCloudLoggingDisabled'
|
|
437
438
|
end
|
|
438
439
|
end
|
|
@@ -705,11 +705,12 @@ module Google
|
|
|
705
705
|
# The standard list page token.
|
|
706
706
|
# @param [Boolean] return_partial_success
|
|
707
707
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
708
|
-
# those that are unreachable are returned in the
|
|
709
|
-
# unreachable
|
|
710
|
-
#
|
|
711
|
-
# by default
|
|
712
|
-
# explicitly documented otherwise in service or product specific
|
|
708
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
709
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
710
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
711
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
712
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
713
|
+
# documentation.
|
|
713
714
|
# @param [String] fields
|
|
714
715
|
# Selector specifying which fields to include in a partial response.
|
|
715
716
|
# @param [String] quota_user
|
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.
|
|
4
|
+
version: 0.44.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.44.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:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|