google-apis-datafusion_v1 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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62d1c3b150719b0df573964c32dd04d21ef1525f5a313cad3df94e92d8e5ec54
|
|
4
|
+
data.tar.gz: aba10b2135862b1f7326f92a05e3e5d199e641ae57623f871b1ab72683cdbe0d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78ff1150d2e0ed8f9eb4cc3230dd16d87009a9927af86dd8d1764ff47b6c0ed8faa08ec5c180b2ac0349b767275a4be7c64456035594014a85717e1f88886bd7
|
|
7
|
+
data.tar.gz: bcddce205a909605467030c103decd5c47269278554038d1964c6d4a0bd6bff2ecd7be9c6988608da47e39784c1ee5278c699e2a2345a63a33602b0ae9c491b7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-datafusion_v1
|
|
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
|
|
@@ -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)
|
|
@@ -805,8 +811,9 @@ module Google
|
|
|
805
811
|
attr_accessor :operations
|
|
806
812
|
|
|
807
813
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
808
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
809
|
-
# 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.
|
|
810
817
|
# Corresponds to the JSON property `unreachable`
|
|
811
818
|
# @return [Array<String>]
|
|
812
819
|
attr_accessor :unreachable
|
|
@@ -874,6 +881,13 @@ module Google
|
|
|
874
881
|
class LoggingConfig
|
|
875
882
|
include Google::Apis::Core::Hashable
|
|
876
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
|
+
|
|
877
891
|
# Optional. Option to determine whether instance logs should be written to Cloud
|
|
878
892
|
# Logging. By default, instance logs are written to Cloud Logging.
|
|
879
893
|
# Corresponds to the JSON property `instanceCloudLoggingDisabled`
|
|
@@ -887,6 +901,7 @@ module Google
|
|
|
887
901
|
|
|
888
902
|
# Update properties of this object
|
|
889
903
|
def update!(**args)
|
|
904
|
+
@enable_instance_v2_logs = args[:enable_instance_v2_logs] if args.key?(:enable_instance_v2_logs)
|
|
890
905
|
@instance_cloud_logging_disabled = args[:instance_cloud_logging_disabled] if args.key?(:instance_cloud_logging_disabled)
|
|
891
906
|
end
|
|
892
907
|
end
|
|
@@ -970,6 +985,27 @@ module Google
|
|
|
970
985
|
end
|
|
971
986
|
end
|
|
972
987
|
|
|
988
|
+
# Monitoring configuration for a Data Fusion instance.
|
|
989
|
+
class MonitoringConfig
|
|
990
|
+
include Google::Apis::Core::Hashable
|
|
991
|
+
|
|
992
|
+
# Optional. Option to enable the instance v2 metrics for this instance. This
|
|
993
|
+
# field is supported only in CDF versions 6.11.1.1 and above.
|
|
994
|
+
# Corresponds to the JSON property `enableInstanceV2Metrics`
|
|
995
|
+
# @return [Boolean]
|
|
996
|
+
attr_accessor :enable_instance_v2_metrics
|
|
997
|
+
alias_method :enable_instance_v2_metrics?, :enable_instance_v2_metrics
|
|
998
|
+
|
|
999
|
+
def initialize(**args)
|
|
1000
|
+
update!(**args)
|
|
1001
|
+
end
|
|
1002
|
+
|
|
1003
|
+
# Update properties of this object
|
|
1004
|
+
def update!(**args)
|
|
1005
|
+
@enable_instance_v2_metrics = args[:enable_instance_v2_metrics] if args.key?(:enable_instance_v2_metrics)
|
|
1006
|
+
end
|
|
1007
|
+
end
|
|
1008
|
+
|
|
973
1009
|
# Network configuration for a Data Fusion instance. These configurations are
|
|
974
1010
|
# used for peering with the customer network. Configurations are optional when a
|
|
975
1011
|
# 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.
|
|
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 = "
|
|
25
|
+
REVISION = "20260202"
|
|
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
|
|
|
@@ -425,6 +433,7 @@ module Google
|
|
|
425
433
|
class LoggingConfig
|
|
426
434
|
# @private
|
|
427
435
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
436
|
+
property :enable_instance_v2_logs, as: 'enableInstanceV2Logs'
|
|
428
437
|
property :instance_cloud_logging_disabled, as: 'instanceCloudLoggingDisabled'
|
|
429
438
|
end
|
|
430
439
|
end
|
|
@@ -456,6 +465,13 @@ module Google
|
|
|
456
465
|
end
|
|
457
466
|
end
|
|
458
467
|
|
|
468
|
+
class MonitoringConfig
|
|
469
|
+
# @private
|
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
471
|
+
property :enable_instance_v2_metrics, as: 'enableInstanceV2Metrics'
|
|
472
|
+
end
|
|
473
|
+
end
|
|
474
|
+
|
|
459
475
|
class NetworkConfig
|
|
460
476
|
# @private
|
|
461
477
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -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.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_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.43.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:
|