google-apis-datafusion_v1beta1 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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/datafusion_v1beta1/classes.rb +35 -0
- data/lib/google/apis/datafusion_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/datafusion_v1beta1/representations.rb +16 -0
- data/lib/google/apis/datafusion_v1beta1/service.rb +11 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9fe9b14ac685bda208213f2108aa9dfda9ea6e973e370b060154976cb764185b
|
|
4
|
+
data.tar.gz: ad9932d79c838186dfdc8a9e452e8a9d480198166acf830378066391b961c789
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a19dd9e3b23a7db415a5cdd73b162a0a66c56ad3114dec6cc2a60a52e77f91332d4c69be1322e872ac54fb48e93a1617cf1871ac53c6bc7cfaa3ef53c61c99dd
|
|
7
|
+
data.tar.gz: 809c1176a599bb1d3c9370a12747a7fe0e73ae7538e5efe56692bbc4975fcf55d3af45970cdeccc7cec55b3113011a9555459e9986859b933169c904bce39b5d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-datafusion_v1beta1
|
|
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
|
|
@@ -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)
|
|
@@ -887,6 +893,13 @@ module Google
|
|
|
887
893
|
# @return [Array<Google::Apis::DatafusionV1beta1::Operation>]
|
|
888
894
|
attr_accessor :operations
|
|
889
895
|
|
|
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.
|
|
899
|
+
# Corresponds to the JSON property `unreachable`
|
|
900
|
+
# @return [Array<String>]
|
|
901
|
+
attr_accessor :unreachable
|
|
902
|
+
|
|
890
903
|
def initialize(**args)
|
|
891
904
|
update!(**args)
|
|
892
905
|
end
|
|
@@ -895,6 +908,7 @@ module Google
|
|
|
895
908
|
def update!(**args)
|
|
896
909
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
897
910
|
@operations = args[:operations] if args.key?(:operations)
|
|
911
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
898
912
|
end
|
|
899
913
|
end
|
|
900
914
|
|
|
@@ -1045,6 +1059,27 @@ module Google
|
|
|
1045
1059
|
end
|
|
1046
1060
|
end
|
|
1047
1061
|
|
|
1062
|
+
# Monitoring configuration for a Data Fusion instance.
|
|
1063
|
+
class MonitoringConfig
|
|
1064
|
+
include Google::Apis::Core::Hashable
|
|
1065
|
+
|
|
1066
|
+
# Optional. Option to enable the instance v2 metrics for this instance. This
|
|
1067
|
+
# field is supported only in CDF versions 6.11.1.1 and above.
|
|
1068
|
+
# Corresponds to the JSON property `enableInstanceV2Metrics`
|
|
1069
|
+
# @return [Boolean]
|
|
1070
|
+
attr_accessor :enable_instance_v2_metrics
|
|
1071
|
+
alias_method :enable_instance_v2_metrics?, :enable_instance_v2_metrics
|
|
1072
|
+
|
|
1073
|
+
def initialize(**args)
|
|
1074
|
+
update!(**args)
|
|
1075
|
+
end
|
|
1076
|
+
|
|
1077
|
+
# Update properties of this object
|
|
1078
|
+
def update!(**args)
|
|
1079
|
+
@enable_instance_v2_metrics = args[:enable_instance_v2_metrics] if args.key?(:enable_instance_v2_metrics)
|
|
1080
|
+
end
|
|
1081
|
+
end
|
|
1082
|
+
|
|
1048
1083
|
# Represents the information of a namespace
|
|
1049
1084
|
class Namespace
|
|
1050
1085
|
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.
|
|
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
|
|
@@ -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
|
|
|
@@ -462,6 +470,7 @@ module Google
|
|
|
462
470
|
property :next_page_token, as: 'nextPageToken'
|
|
463
471
|
collection :operations, as: 'operations', class: Google::Apis::DatafusionV1beta1::Operation, decorator: Google::Apis::DatafusionV1beta1::Operation::Representation
|
|
464
472
|
|
|
473
|
+
collection :unreachable, as: 'unreachable'
|
|
465
474
|
end
|
|
466
475
|
end
|
|
467
476
|
|
|
@@ -510,6 +519,13 @@ module Google
|
|
|
510
519
|
end
|
|
511
520
|
end
|
|
512
521
|
|
|
522
|
+
class MonitoringConfig
|
|
523
|
+
# @private
|
|
524
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
525
|
+
property :enable_instance_v2_metrics, as: 'enableInstanceV2Metrics'
|
|
526
|
+
end
|
|
527
|
+
end
|
|
528
|
+
|
|
513
529
|
class Namespace
|
|
514
530
|
# @private
|
|
515
531
|
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
|
|
@@ -936,6 +936,13 @@ module Google
|
|
|
936
936
|
# The standard list page size.
|
|
937
937
|
# @param [String] page_token
|
|
938
938
|
# The standard list page token.
|
|
939
|
+
# @param [Boolean] return_partial_success
|
|
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.
|
|
939
946
|
# @param [String] fields
|
|
940
947
|
# Selector specifying which fields to include in a partial response.
|
|
941
948
|
# @param [String] quota_user
|
|
@@ -953,7 +960,7 @@ module Google
|
|
|
953
960
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
954
961
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
955
962
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
956
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
963
|
+
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)
|
|
957
964
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
|
958
965
|
command.response_representation = Google::Apis::DatafusionV1beta1::ListOperationsResponse::Representation
|
|
959
966
|
command.response_class = Google::Apis::DatafusionV1beta1::ListOperationsResponse
|
|
@@ -961,6 +968,7 @@ module Google
|
|
|
961
968
|
command.query['filter'] = filter unless filter.nil?
|
|
962
969
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
963
970
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
971
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
964
972
|
command.query['fields'] = fields unless fields.nil?
|
|
965
973
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
966
974
|
execute_or_queue_command(command, &block)
|
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.
|
|
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_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.42.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:
|