google-apis-bigqueryconnection_v1 0.9.0 → 0.11.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: 51cff55d37dca08fdd1ce835049d41ff6ca8af9da921d1908175f166bbac480d
|
|
4
|
+
data.tar.gz: b1eebb78e9ddf3e302f0d60e68ce2632d5fb58089ae6a250da092bbec171093c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 669336735f46567705c636d6b0d7d8dd18190048d2143b08da021abf0055b14a73a4bfeff5ba32425570e544611736d7e5721d29b14535cfd597ee34a83e2b2b
|
|
7
|
+
data.tar.gz: d2d390a724d588331589bdc95c8070fbb246b0af9dd54edd8873f39c1eb1b222063ec9b82ad8e4a24644296683eb37c21e26fb207a924117f311643cf189f01b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-bigqueryconnection_v1
|
|
2
2
|
|
|
3
|
+
### v0.11.0 (2026-08-16)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260804
|
|
6
|
+
|
|
7
|
+
### v0.10.0 (2026-06-21)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260601
|
|
10
|
+
* Regenerated using generator version 0.19.0
|
|
11
|
+
|
|
3
12
|
### v0.9.0 (2025-05-04)
|
|
4
13
|
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/bigquery/docs/connections-a
|
|
|
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
|
|
|
@@ -601,6 +601,22 @@ module Google
|
|
|
601
601
|
# @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork]
|
|
602
602
|
attr_accessor :network
|
|
603
603
|
|
|
604
|
+
# Optional. A map of name-value pairs for connector-specific parameters. These
|
|
605
|
+
# extra configuration parameters aren't standardized in the configuration
|
|
606
|
+
# sections. To update a single parameter value, call ConnectionService.
|
|
607
|
+
# UpdateConnection with `update_mask` set to `configuration.parameters.
|
|
608
|
+
# parameter_id`. If ``parameter_id`` doesn't fit the `[a-zA-Z0-9_]+` pattern, ``
|
|
609
|
+
# parameter_id`` should be escaped with backticks—for example, ``configuration.
|
|
610
|
+
# parameters.`parameter id` ``.
|
|
611
|
+
# Corresponds to the JSON property `parameters`
|
|
612
|
+
# @return [Hash<String,Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue>]
|
|
613
|
+
attr_accessor :parameters
|
|
614
|
+
|
|
615
|
+
# TLS configuration options.
|
|
616
|
+
# Corresponds to the JSON property `tls`
|
|
617
|
+
# @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationTls]
|
|
618
|
+
attr_accessor :tls
|
|
619
|
+
|
|
604
620
|
def initialize(**args)
|
|
605
621
|
update!(**args)
|
|
606
622
|
end
|
|
@@ -612,6 +628,8 @@ module Google
|
|
|
612
628
|
@connector_id = args[:connector_id] if args.key?(:connector_id)
|
|
613
629
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
|
614
630
|
@network = args[:network] if args.key?(:network)
|
|
631
|
+
@parameters = args[:parameters] if args.key?(:parameters)
|
|
632
|
+
@tls = args[:tls] if args.key?(:tls)
|
|
615
633
|
end
|
|
616
634
|
end
|
|
617
635
|
|
|
@@ -647,6 +665,17 @@ module Google
|
|
|
647
665
|
class ConnectorConfigurationAuthentication
|
|
648
666
|
include Google::Apis::Core::Hashable
|
|
649
667
|
|
|
668
|
+
# Optional. A map of name-value pairs for connector-specific parameters. These
|
|
669
|
+
# extra configuration parameters aren't standardized in the configuration
|
|
670
|
+
# sections. To update a single parameter value, call ConnectionService.
|
|
671
|
+
# UpdateConnection with `update_mask` set to `configuration.parameters.
|
|
672
|
+
# parameter_id`. If ``parameter_id`` doesn't fit the `[a-zA-Z0-9_]+` pattern, ``
|
|
673
|
+
# parameter_id`` should be escaped with backticks—for example, ``configuration.
|
|
674
|
+
# parameters.`parameter id` ``.
|
|
675
|
+
# Corresponds to the JSON property `parameters`
|
|
676
|
+
# @return [Hash<String,Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue>]
|
|
677
|
+
attr_accessor :parameters
|
|
678
|
+
|
|
650
679
|
# Output only. Google-managed service account associated with this connection, e.
|
|
651
680
|
# g., `service-`project_number`@gcp-sa-bigqueryconnection.iam.gserviceaccount.
|
|
652
681
|
# com`. BigQuery jobs using this connection will act as `service_account`
|
|
@@ -666,6 +695,7 @@ module Google
|
|
|
666
695
|
|
|
667
696
|
# Update properties of this object
|
|
668
697
|
def update!(**args)
|
|
698
|
+
@parameters = args[:parameters] if args.key?(:parameters)
|
|
669
699
|
@service_account = args[:service_account] if args.key?(:service_account)
|
|
670
700
|
@username_password = args[:username_password] if args.key?(:username_password)
|
|
671
701
|
end
|
|
@@ -711,6 +741,50 @@ module Google
|
|
|
711
741
|
end
|
|
712
742
|
end
|
|
713
743
|
|
|
744
|
+
# Represents a value for a connector parameter.
|
|
745
|
+
class ConnectorConfigurationParameterValue
|
|
746
|
+
include Google::Apis::Core::Hashable
|
|
747
|
+
|
|
748
|
+
# A boolean parameter value.
|
|
749
|
+
# Corresponds to the JSON property `boolValue`
|
|
750
|
+
# @return [Boolean]
|
|
751
|
+
attr_accessor :bool_value
|
|
752
|
+
alias_method :bool_value?, :bool_value
|
|
753
|
+
|
|
754
|
+
# A double parameter value.
|
|
755
|
+
# Corresponds to the JSON property `doubleValue`
|
|
756
|
+
# @return [Float]
|
|
757
|
+
attr_accessor :double_value
|
|
758
|
+
|
|
759
|
+
# An int32 parameter value.
|
|
760
|
+
# Corresponds to the JSON property `int32Value`
|
|
761
|
+
# @return [Fixnum]
|
|
762
|
+
attr_accessor :int32_value
|
|
763
|
+
|
|
764
|
+
# Secret value parameter.
|
|
765
|
+
# Corresponds to the JSON property `secretValue`
|
|
766
|
+
# @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationSecret]
|
|
767
|
+
attr_accessor :secret_value
|
|
768
|
+
|
|
769
|
+
# A string parameter value.
|
|
770
|
+
# Corresponds to the JSON property `stringValue`
|
|
771
|
+
# @return [String]
|
|
772
|
+
attr_accessor :string_value
|
|
773
|
+
|
|
774
|
+
def initialize(**args)
|
|
775
|
+
update!(**args)
|
|
776
|
+
end
|
|
777
|
+
|
|
778
|
+
# Update properties of this object
|
|
779
|
+
def update!(**args)
|
|
780
|
+
@bool_value = args[:bool_value] if args.key?(:bool_value)
|
|
781
|
+
@double_value = args[:double_value] if args.key?(:double_value)
|
|
782
|
+
@int32_value = args[:int32_value] if args.key?(:int32_value)
|
|
783
|
+
@secret_value = args[:secret_value] if args.key?(:secret_value)
|
|
784
|
+
@string_value = args[:string_value] if args.key?(:string_value)
|
|
785
|
+
end
|
|
786
|
+
end
|
|
787
|
+
|
|
714
788
|
# Private Service Connect configuration.
|
|
715
789
|
class ConnectorConfigurationPrivateServiceConnect
|
|
716
790
|
include Google::Apis::Core::Hashable
|
|
@@ -757,6 +831,69 @@ module Google
|
|
|
757
831
|
end
|
|
758
832
|
end
|
|
759
833
|
|
|
834
|
+
# TLS configuration options.
|
|
835
|
+
class ConnectorConfigurationTls
|
|
836
|
+
include Google::Apis::Core::Hashable
|
|
837
|
+
|
|
838
|
+
# Optional. The mode of TLS configuration.
|
|
839
|
+
# Corresponds to the JSON property `mode`
|
|
840
|
+
# @return [String]
|
|
841
|
+
attr_accessor :mode
|
|
842
|
+
|
|
843
|
+
# Private PKI.
|
|
844
|
+
# Corresponds to the JSON property `privatePki`
|
|
845
|
+
# @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationTlsPrivatePki]
|
|
846
|
+
attr_accessor :private_pki
|
|
847
|
+
|
|
848
|
+
# Web PKI.
|
|
849
|
+
# Corresponds to the JSON property `webPki`
|
|
850
|
+
# @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationTlsWebPki]
|
|
851
|
+
attr_accessor :web_pki
|
|
852
|
+
|
|
853
|
+
def initialize(**args)
|
|
854
|
+
update!(**args)
|
|
855
|
+
end
|
|
856
|
+
|
|
857
|
+
# Update properties of this object
|
|
858
|
+
def update!(**args)
|
|
859
|
+
@mode = args[:mode] if args.key?(:mode)
|
|
860
|
+
@private_pki = args[:private_pki] if args.key?(:private_pki)
|
|
861
|
+
@web_pki = args[:web_pki] if args.key?(:web_pki)
|
|
862
|
+
end
|
|
863
|
+
end
|
|
864
|
+
|
|
865
|
+
# Private PKI.
|
|
866
|
+
class ConnectorConfigurationTlsPrivatePki
|
|
867
|
+
include Google::Apis::Core::Hashable
|
|
868
|
+
|
|
869
|
+
# Optional. a PEM-encoded list of certificates to trust
|
|
870
|
+
# Corresponds to the JSON property `trustedCertificatesPem`
|
|
871
|
+
# @return [String]
|
|
872
|
+
attr_accessor :trusted_certificates_pem
|
|
873
|
+
|
|
874
|
+
def initialize(**args)
|
|
875
|
+
update!(**args)
|
|
876
|
+
end
|
|
877
|
+
|
|
878
|
+
# Update properties of this object
|
|
879
|
+
def update!(**args)
|
|
880
|
+
@trusted_certificates_pem = args[:trusted_certificates_pem] if args.key?(:trusted_certificates_pem)
|
|
881
|
+
end
|
|
882
|
+
end
|
|
883
|
+
|
|
884
|
+
# Web PKI.
|
|
885
|
+
class ConnectorConfigurationTlsWebPki
|
|
886
|
+
include Google::Apis::Core::Hashable
|
|
887
|
+
|
|
888
|
+
def initialize(**args)
|
|
889
|
+
update!(**args)
|
|
890
|
+
end
|
|
891
|
+
|
|
892
|
+
# Update properties of this object
|
|
893
|
+
def update!(**args)
|
|
894
|
+
end
|
|
895
|
+
end
|
|
896
|
+
|
|
760
897
|
# Username and Password authentication.
|
|
761
898
|
class ConnectorConfigurationUsernamePassword
|
|
762
899
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module BigqueryconnectionV1
|
|
18
18
|
# Version of the google-apis-bigqueryconnection_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.11.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 = "20260804"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -118,6 +118,12 @@ module Google
|
|
|
118
118
|
include Google::Apis::Core::JsonObjectSupport
|
|
119
119
|
end
|
|
120
120
|
|
|
121
|
+
class ConnectorConfigurationParameterValue
|
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
123
|
+
|
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
125
|
+
end
|
|
126
|
+
|
|
121
127
|
class ConnectorConfigurationPrivateServiceConnect
|
|
122
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
123
129
|
|
|
@@ -130,6 +136,24 @@ module Google
|
|
|
130
136
|
include Google::Apis::Core::JsonObjectSupport
|
|
131
137
|
end
|
|
132
138
|
|
|
139
|
+
class ConnectorConfigurationTls
|
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
141
|
+
|
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
class ConnectorConfigurationTlsPrivatePki
|
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
147
|
+
|
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
class ConnectorConfigurationTlsWebPki
|
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
153
|
+
|
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
155
|
+
end
|
|
156
|
+
|
|
133
157
|
class ConnectorConfigurationUsernamePassword
|
|
134
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
135
159
|
|
|
@@ -350,6 +374,10 @@ module Google
|
|
|
350
374
|
|
|
351
375
|
property :network, as: 'network', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork::Representation
|
|
352
376
|
|
|
377
|
+
hash :parameters, as: 'parameters', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue::Representation
|
|
378
|
+
|
|
379
|
+
property :tls, as: 'tls', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationTls, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationTls::Representation
|
|
380
|
+
|
|
353
381
|
end
|
|
354
382
|
end
|
|
355
383
|
|
|
@@ -364,6 +392,8 @@ module Google
|
|
|
364
392
|
class ConnectorConfigurationAuthentication
|
|
365
393
|
# @private
|
|
366
394
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
395
|
+
hash :parameters, as: 'parameters', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue::Representation
|
|
396
|
+
|
|
367
397
|
property :service_account, as: 'serviceAccount'
|
|
368
398
|
property :username_password, as: 'usernamePassword', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationUsernamePassword, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationUsernamePassword::Representation
|
|
369
399
|
|
|
@@ -385,6 +415,18 @@ module Google
|
|
|
385
415
|
end
|
|
386
416
|
end
|
|
387
417
|
|
|
418
|
+
class ConnectorConfigurationParameterValue
|
|
419
|
+
# @private
|
|
420
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
421
|
+
property :bool_value, as: 'boolValue'
|
|
422
|
+
property :double_value, as: 'doubleValue'
|
|
423
|
+
property :int32_value, as: 'int32Value'
|
|
424
|
+
property :secret_value, as: 'secretValue', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationSecret, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationSecret::Representation
|
|
425
|
+
|
|
426
|
+
property :string_value, as: 'stringValue'
|
|
427
|
+
end
|
|
428
|
+
end
|
|
429
|
+
|
|
388
430
|
class ConnectorConfigurationPrivateServiceConnect
|
|
389
431
|
# @private
|
|
390
432
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -400,6 +442,30 @@ module Google
|
|
|
400
442
|
end
|
|
401
443
|
end
|
|
402
444
|
|
|
445
|
+
class ConnectorConfigurationTls
|
|
446
|
+
# @private
|
|
447
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
448
|
+
property :mode, as: 'mode'
|
|
449
|
+
property :private_pki, as: 'privatePki', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationTlsPrivatePki, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationTlsPrivatePki::Representation
|
|
450
|
+
|
|
451
|
+
property :web_pki, as: 'webPki', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationTlsWebPki, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationTlsWebPki::Representation
|
|
452
|
+
|
|
453
|
+
end
|
|
454
|
+
end
|
|
455
|
+
|
|
456
|
+
class ConnectorConfigurationTlsPrivatePki
|
|
457
|
+
# @private
|
|
458
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
459
|
+
property :trusted_certificates_pem, as: 'trustedCertificatesPem'
|
|
460
|
+
end
|
|
461
|
+
end
|
|
462
|
+
|
|
463
|
+
class ConnectorConfigurationTlsWebPki
|
|
464
|
+
# @private
|
|
465
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
466
|
+
end
|
|
467
|
+
end
|
|
468
|
+
|
|
403
469
|
class ConnectorConfigurationUsernamePassword
|
|
404
470
|
# @private
|
|
405
471
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-bigqueryconnection_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.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-bigqueryconnection_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryconnection_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryconnection_v1/v0.11.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigqueryconnection_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,14 +66,14 @@ 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
|
- - ">="
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: '0'
|
|
75
75
|
requirements: []
|
|
76
|
-
rubygems_version: 3.6.
|
|
76
|
+
rubygems_version: 3.6.9
|
|
77
77
|
specification_version: 4
|
|
78
78
|
summary: Simple REST client for BigQuery Connection API V1
|
|
79
79
|
test_files: []
|