google-apis-datafusion_v1 0.40.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed22c6537a2476d5b62990e5fe2196268c8f9b7917e4c04167e6a53592595826
|
|
4
|
+
data.tar.gz: 2b896a33844d9cb0dca169d4a990e2a019af6a3d10785d535730a1d44ec32631
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8da41c9ced0940d0fb9d5e081467e792e00f5c056e97f2d0f65532697de7805ed611f03e208d7bf77d6f8b17bd063036b532360da80efa98cf50c57fd7a1c9e
|
|
7
|
+
data.tar.gz: e8b40e3e27669ff0ceb9412fd02b118bd3ab00cdb510808bae6b96d584ec02eb6b388b9e2e7f73737025277156e439262bed118f65ea77bfb4948d245c5b22a4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-datafusion_v1
|
|
2
2
|
|
|
3
|
+
### v0.42.0 (2025-12-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251203
|
|
6
|
+
|
|
7
|
+
### v0.41.0 (2025-11-16)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251106
|
|
10
|
+
|
|
3
11
|
### v0.40.0 (2025-10-12)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251006
|
|
@@ -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)
|
|
@@ -804,6 +810,13 @@ module Google
|
|
|
804
810
|
# @return [Array<Google::Apis::DatafusionV1::Operation>]
|
|
805
811
|
attr_accessor :operations
|
|
806
812
|
|
|
813
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
814
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
815
|
+
# when attempting to list all resources across all supported locations.
|
|
816
|
+
# Corresponds to the JSON property `unreachable`
|
|
817
|
+
# @return [Array<String>]
|
|
818
|
+
attr_accessor :unreachable
|
|
819
|
+
|
|
807
820
|
def initialize(**args)
|
|
808
821
|
update!(**args)
|
|
809
822
|
end
|
|
@@ -812,6 +825,7 @@ module Google
|
|
|
812
825
|
def update!(**args)
|
|
813
826
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
814
827
|
@operations = args[:operations] if args.key?(:operations)
|
|
828
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
815
829
|
end
|
|
816
830
|
end
|
|
817
831
|
|
|
@@ -962,6 +976,27 @@ module Google
|
|
|
962
976
|
end
|
|
963
977
|
end
|
|
964
978
|
|
|
979
|
+
# Monitoring configuration for a Data Fusion instance.
|
|
980
|
+
class MonitoringConfig
|
|
981
|
+
include Google::Apis::Core::Hashable
|
|
982
|
+
|
|
983
|
+
# Optional. Option to enable the instance v2 metrics for this instance. This
|
|
984
|
+
# field is supported only in CDF versions 6.11.1.1 and above.
|
|
985
|
+
# Corresponds to the JSON property `enableInstanceV2Metrics`
|
|
986
|
+
# @return [Boolean]
|
|
987
|
+
attr_accessor :enable_instance_v2_metrics
|
|
988
|
+
alias_method :enable_instance_v2_metrics?, :enable_instance_v2_metrics
|
|
989
|
+
|
|
990
|
+
def initialize(**args)
|
|
991
|
+
update!(**args)
|
|
992
|
+
end
|
|
993
|
+
|
|
994
|
+
# Update properties of this object
|
|
995
|
+
def update!(**args)
|
|
996
|
+
@enable_instance_v2_metrics = args[:enable_instance_v2_metrics] if args.key?(:enable_instance_v2_metrics)
|
|
997
|
+
end
|
|
998
|
+
end
|
|
999
|
+
|
|
965
1000
|
# Network configuration for a Data Fusion instance. These configurations are
|
|
966
1001
|
# used for peering with the customer network. Configurations are optional when a
|
|
967
1002
|
# 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.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 = "
|
|
25
|
+
REVISION = "20251203"
|
|
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
|
|
|
@@ -407,6 +415,7 @@ module Google
|
|
|
407
415
|
property :next_page_token, as: 'nextPageToken'
|
|
408
416
|
collection :operations, as: 'operations', class: Google::Apis::DatafusionV1::Operation, decorator: Google::Apis::DatafusionV1::Operation::Representation
|
|
409
417
|
|
|
418
|
+
collection :unreachable, as: 'unreachable'
|
|
410
419
|
end
|
|
411
420
|
end
|
|
412
421
|
|
|
@@ -455,6 +464,13 @@ module Google
|
|
|
455
464
|
end
|
|
456
465
|
end
|
|
457
466
|
|
|
467
|
+
class MonitoringConfig
|
|
468
|
+
# @private
|
|
469
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
470
|
+
property :enable_instance_v2_metrics, as: 'enableInstanceV2Metrics'
|
|
471
|
+
end
|
|
472
|
+
end
|
|
473
|
+
|
|
458
474
|
class NetworkConfig
|
|
459
475
|
# @private
|
|
460
476
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -91,8 +91,8 @@ module Google
|
|
|
91
91
|
# @param [String] name
|
|
92
92
|
# The resource that owns the locations collection, if applicable.
|
|
93
93
|
# @param [Array<String>, String] extra_location_types
|
|
94
|
-
# Optional.
|
|
95
|
-
#
|
|
94
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
|
95
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
|
96
96
|
# @param [String] filter
|
|
97
97
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
98
98
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
|
@@ -703,6 +703,13 @@ module Google
|
|
|
703
703
|
# The standard list page size.
|
|
704
704
|
# @param [String] page_token
|
|
705
705
|
# The standard list page token.
|
|
706
|
+
# @param [Boolean] return_partial_success
|
|
707
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
708
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
709
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
710
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
711
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
712
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
706
713
|
# @param [String] fields
|
|
707
714
|
# Selector specifying which fields to include in a partial response.
|
|
708
715
|
# @param [String] quota_user
|
|
@@ -720,7 +727,7 @@ module Google
|
|
|
720
727
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
721
728
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
722
729
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
723
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
730
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
724
731
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
725
732
|
command.response_representation = Google::Apis::DatafusionV1::ListOperationsResponse::Representation
|
|
726
733
|
command.response_class = Google::Apis::DatafusionV1::ListOperationsResponse
|
|
@@ -728,6 +735,7 @@ module Google
|
|
|
728
735
|
command.query['filter'] = filter unless filter.nil?
|
|
729
736
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
730
737
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
738
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
731
739
|
command.query['fields'] = fields unless fields.nil?
|
|
732
740
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
733
741
|
execute_or_queue_command(command, &block)
|
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.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_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.42.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:
|