google-apis-datafusion_v1beta1 0.34.0 → 0.36.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 +9 -0
- data/lib/google/apis/datafusion_v1beta1/classes.rb +84 -1
- data/lib/google/apis/datafusion_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/datafusion_v1beta1/representations.rb +34 -0
- data/lib/google/apis/datafusion_v1beta1/service.rb +5 -1
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3b85fddb8ead189b7948ebfc730dab1601ee5a40f6e0c2376c054b0704209b7
|
4
|
+
data.tar.gz: 4cdd5d79996cd66ba7c5f0559758eda5dea76a9c0bf4e6e2caefa89e33b0a183
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fcea1cf1537a737540fc7891aa6dbc78db75e6f3794b803b80f2fd50b799968262c75d5844d7754d94b76e978da760e7de7bcfa375132163c36bbcb62495765
|
7
|
+
data.tar.gz: 7e2b519a8cb7b97b483d101b166aebadada9734001124106e2957cf8fa0756b25ce435fd4b0ceb7129aa33ea61a17fcffc8a124be3fe0289952eedd3fe4d9473
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-datafusion_v1beta1
|
2
2
|
|
3
|
+
### v0.36.0 (2025-04-20)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250414
|
6
|
+
|
7
|
+
### v0.35.0 (2025-03-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250224
|
10
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.34.0 (2024-12-15)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241204
|
@@ -519,7 +519,7 @@ module Google
|
|
519
519
|
attr_accessor :enable_rbac
|
520
520
|
alias_method :enable_rbac?, :enable_rbac
|
521
521
|
|
522
|
-
# Option to enable Stackdriver Logging.
|
522
|
+
# Option to enable Dataproc Stackdriver Logging.
|
523
523
|
# Corresponds to the JSON property `enableStackdriverLogging`
|
524
524
|
# @return [Boolean]
|
525
525
|
attr_accessor :enable_stackdriver_logging
|
@@ -555,6 +555,16 @@ module Google
|
|
555
555
|
# @return [Hash<String,String>]
|
556
556
|
attr_accessor :labels
|
557
557
|
|
558
|
+
# Logging configuration for a Data Fusion instance.
|
559
|
+
# Corresponds to the JSON property `loggingConfig`
|
560
|
+
# @return [Google::Apis::DatafusionV1beta1::LoggingConfig]
|
561
|
+
attr_accessor :logging_config
|
562
|
+
|
563
|
+
# Output only. The maintenance events for this instance.
|
564
|
+
# Corresponds to the JSON property `maintenanceEvents`
|
565
|
+
# @return [Array<Google::Apis::DatafusionV1beta1::MaintenanceEvent>]
|
566
|
+
attr_accessor :maintenance_events
|
567
|
+
|
558
568
|
# Maintenance policy of the instance.
|
559
569
|
# Corresponds to the JSON property `maintenancePolicy`
|
560
570
|
# @return [Google::Apis::DatafusionV1beta1::MaintenancePolicy]
|
@@ -600,6 +610,12 @@ module Google
|
|
600
610
|
attr_accessor :private_instance
|
601
611
|
alias_method :private_instance?, :private_instance
|
602
612
|
|
613
|
+
# Output only. Reserved for future use.
|
614
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
615
|
+
# @return [Boolean]
|
616
|
+
attr_accessor :satisfies_pzi
|
617
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
618
|
+
|
603
619
|
# Output only. Reserved for future use.
|
604
620
|
# Corresponds to the JSON property `satisfiesPzs`
|
605
621
|
# @return [Boolean]
|
@@ -628,6 +644,13 @@ module Google
|
|
628
644
|
# @return [String]
|
629
645
|
attr_accessor :state_message
|
630
646
|
|
647
|
+
# Optional. Input only. Immutable. Tag keys/values directly bound to this
|
648
|
+
# resource. For example: "123/environment": "production", "123/costCenter": "
|
649
|
+
# marketing"
|
650
|
+
# Corresponds to the JSON property `tags`
|
651
|
+
# @return [Hash<String,String>]
|
652
|
+
attr_accessor :tags
|
653
|
+
|
631
654
|
# Output only. The name of the tenant project.
|
632
655
|
# Corresponds to the JSON property `tenantProjectId`
|
633
656
|
# @return [String]
|
@@ -683,6 +706,8 @@ module Google
|
|
683
706
|
@event_publish_config = args[:event_publish_config] if args.key?(:event_publish_config)
|
684
707
|
@gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
|
685
708
|
@labels = args[:labels] if args.key?(:labels)
|
709
|
+
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
710
|
+
@maintenance_events = args[:maintenance_events] if args.key?(:maintenance_events)
|
686
711
|
@maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
|
687
712
|
@name = args[:name] if args.key?(:name)
|
688
713
|
@network_config = args[:network_config] if args.key?(:network_config)
|
@@ -690,11 +715,13 @@ module Google
|
|
690
715
|
@p4_service_account = args[:p4_service_account] if args.key?(:p4_service_account)
|
691
716
|
@patch_revision = args[:patch_revision] if args.key?(:patch_revision)
|
692
717
|
@private_instance = args[:private_instance] if args.key?(:private_instance)
|
718
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
693
719
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
694
720
|
@service_account = args[:service_account] if args.key?(:service_account)
|
695
721
|
@service_endpoint = args[:service_endpoint] if args.key?(:service_endpoint)
|
696
722
|
@state = args[:state] if args.key?(:state)
|
697
723
|
@state_message = args[:state_message] if args.key?(:state_message)
|
724
|
+
@tags = args[:tags] if args.key?(:tags)
|
698
725
|
@tenant_project_id = args[:tenant_project_id] if args.key?(:tenant_project_id)
|
699
726
|
@type = args[:type] if args.key?(:type)
|
700
727
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -918,6 +945,62 @@ module Google
|
|
918
945
|
end
|
919
946
|
end
|
920
947
|
|
948
|
+
# Logging configuration for a Data Fusion instance.
|
949
|
+
class LoggingConfig
|
950
|
+
include Google::Apis::Core::Hashable
|
951
|
+
|
952
|
+
# Optional. Option to determine whether instance logs should be written to Cloud
|
953
|
+
# Logging. By default, instance logs are written to Cloud Logging.
|
954
|
+
# Corresponds to the JSON property `instanceCloudLoggingDisabled`
|
955
|
+
# @return [Boolean]
|
956
|
+
attr_accessor :instance_cloud_logging_disabled
|
957
|
+
alias_method :instance_cloud_logging_disabled?, :instance_cloud_logging_disabled
|
958
|
+
|
959
|
+
def initialize(**args)
|
960
|
+
update!(**args)
|
961
|
+
end
|
962
|
+
|
963
|
+
# Update properties of this object
|
964
|
+
def update!(**args)
|
965
|
+
@instance_cloud_logging_disabled = args[:instance_cloud_logging_disabled] if args.key?(:instance_cloud_logging_disabled)
|
966
|
+
end
|
967
|
+
end
|
968
|
+
|
969
|
+
# Represents a maintenance event.
|
970
|
+
class MaintenanceEvent
|
971
|
+
include Google::Apis::Core::Hashable
|
972
|
+
|
973
|
+
# Output only. The end time of the maintenance event provided in [RFC 3339](
|
974
|
+
# https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-02T12:04:06-06:
|
975
|
+
# 00" This field will be empty if the maintenance event is not yet complete.
|
976
|
+
# Corresponds to the JSON property `endTime`
|
977
|
+
# @return [String]
|
978
|
+
attr_accessor :end_time
|
979
|
+
|
980
|
+
# Output only. The start time of the maintenance event provided in [RFC 3339](
|
981
|
+
# https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-01T12:04:06-04:
|
982
|
+
# 00"
|
983
|
+
# Corresponds to the JSON property `startTime`
|
984
|
+
# @return [String]
|
985
|
+
attr_accessor :start_time
|
986
|
+
|
987
|
+
# Output only. The state of the maintenance event.
|
988
|
+
# Corresponds to the JSON property `state`
|
989
|
+
# @return [String]
|
990
|
+
attr_accessor :state
|
991
|
+
|
992
|
+
def initialize(**args)
|
993
|
+
update!(**args)
|
994
|
+
end
|
995
|
+
|
996
|
+
# Update properties of this object
|
997
|
+
def update!(**args)
|
998
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
999
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
1000
|
+
@state = args[:state] if args.key?(:state)
|
1001
|
+
end
|
1002
|
+
end
|
1003
|
+
|
921
1004
|
# Maintenance policy of the instance.
|
922
1005
|
class MaintenancePolicy
|
923
1006
|
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.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250414"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -136,6 +136,18 @@ module Google
|
|
136
136
|
include Google::Apis::Core::JsonObjectSupport
|
137
137
|
end
|
138
138
|
|
139
|
+
class LoggingConfig
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
|
+
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
143
|
+
end
|
144
|
+
|
145
|
+
class MaintenanceEvent
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
+
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
149
|
+
end
|
150
|
+
|
139
151
|
class MaintenancePolicy
|
140
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
153
|
|
@@ -367,6 +379,10 @@ module Google
|
|
367
379
|
|
368
380
|
property :gcs_bucket, as: 'gcsBucket'
|
369
381
|
hash :labels, as: 'labels'
|
382
|
+
property :logging_config, as: 'loggingConfig', class: Google::Apis::DatafusionV1beta1::LoggingConfig, decorator: Google::Apis::DatafusionV1beta1::LoggingConfig::Representation
|
383
|
+
|
384
|
+
collection :maintenance_events, as: 'maintenanceEvents', class: Google::Apis::DatafusionV1beta1::MaintenanceEvent, decorator: Google::Apis::DatafusionV1beta1::MaintenanceEvent::Representation
|
385
|
+
|
370
386
|
property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::DatafusionV1beta1::MaintenancePolicy, decorator: Google::Apis::DatafusionV1beta1::MaintenancePolicy::Representation
|
371
387
|
|
372
388
|
property :name, as: 'name'
|
@@ -376,11 +392,13 @@ module Google
|
|
376
392
|
property :p4_service_account, as: 'p4ServiceAccount'
|
377
393
|
property :patch_revision, as: 'patchRevision'
|
378
394
|
property :private_instance, as: 'privateInstance'
|
395
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
379
396
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
380
397
|
property :service_account, as: 'serviceAccount'
|
381
398
|
property :service_endpoint, as: 'serviceEndpoint'
|
382
399
|
property :state, as: 'state'
|
383
400
|
property :state_message, as: 'stateMessage'
|
401
|
+
hash :tags, as: 'tags'
|
384
402
|
property :tenant_project_id, as: 'tenantProjectId'
|
385
403
|
property :type, as: 'type'
|
386
404
|
property :update_time, as: 'updateTime'
|
@@ -458,6 +476,22 @@ module Google
|
|
458
476
|
end
|
459
477
|
end
|
460
478
|
|
479
|
+
class LoggingConfig
|
480
|
+
# @private
|
481
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
482
|
+
property :instance_cloud_logging_disabled, as: 'instanceCloudLoggingDisabled'
|
483
|
+
end
|
484
|
+
end
|
485
|
+
|
486
|
+
class MaintenanceEvent
|
487
|
+
# @private
|
488
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
489
|
+
property :end_time, as: 'endTime'
|
490
|
+
property :start_time, as: 'startTime'
|
491
|
+
property :state, as: 'state'
|
492
|
+
end
|
493
|
+
end
|
494
|
+
|
461
495
|
class MaintenancePolicy
|
462
496
|
# @private
|
463
497
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -90,6 +90,9 @@ module Google
|
|
90
90
|
# Lists information about the supported locations for this service.
|
91
91
|
# @param [String] name
|
92
92
|
# The resource that owns the locations collection, if applicable.
|
93
|
+
# @param [Array<String>, String] extra_location_types
|
94
|
+
# Optional. A list of extra location types that should be used as conditions for
|
95
|
+
# controlling the visibility of the locations.
|
93
96
|
# @param [String] filter
|
94
97
|
# A filter to narrow down results to a preferred subset. The filtering language
|
95
98
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
@@ -117,11 +120,12 @@ module Google
|
|
117
120
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
118
121
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
119
122
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
120
|
-
def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
123
|
+
def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
121
124
|
command = make_simple_command(:get, 'v1beta1/{+name}/locations', options)
|
122
125
|
command.response_representation = Google::Apis::DatafusionV1beta1::ListLocationsResponse::Representation
|
123
126
|
command.response_class = Google::Apis::DatafusionV1beta1::ListLocationsResponse
|
124
127
|
command.params['name'] = name unless name.nil?
|
128
|
+
command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
|
125
129
|
command.query['filter'] = filter unless filter.nil?
|
126
130
|
command.query['pageSize'] = page_size unless page_size.nil?
|
127
131
|
command.query['pageToken'] = page_token unless page_token.nil?
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.36.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-04-20 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.36.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1beta1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud Data Fusion API V1beta1
|
82
79
|
test_files: []
|