google-apis-bigqueryconnection_v1 0.10.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: 3f2c0f2482255bf2192c048b07b7dafeed3979961ea111f1edd1b91d65dd21af
4
- data.tar.gz: b0793899adab7e9209ff5783f1a71f509767cf0ef222488dcf93de4fff861f17
3
+ metadata.gz: 51cff55d37dca08fdd1ce835049d41ff6ca8af9da921d1908175f166bbac480d
4
+ data.tar.gz: b1eebb78e9ddf3e302f0d60e68ce2632d5fb58089ae6a250da092bbec171093c
5
5
  SHA512:
6
- metadata.gz: f65146156652addd570e7d29b6fc2c94129d72956bc885b4c1bad5cf3c876e8dfbeb25ee2d1ae8962ff490d11c468c440384a869db07267a5064f56e0f96844e
7
- data.tar.gz: b9ded41eafcc4393ab508a2d2abc5399c9fbe0da80f3d6c97b4750d23cec6b36a85d514adbec7bc335e837a7bdcad7a1808b2d0257be87fa3f559305bdc26cc4
6
+ metadata.gz: 669336735f46567705c636d6b0d7d8dd18190048d2143b08da021abf0055b14a73a4bfeff5ba32425570e544611736d7e5721d29b14535cfd597ee34a83e2b2b
7
+ data.tar.gz: d2d390a724d588331589bdc95c8070fbb246b0af9dd54edd8873f39c1eb1b222063ec9b82ad8e4a24644296683eb37c21e26fb207a924117f311643cf189f01b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.10.0 (2026-06-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20260601
@@ -601,16 +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. Extra
605
- # configuration parameters, that are not standardized in configuration sections.
606
- # To update a single parameter value call ConnectionService.UpdateConnection
607
- # with `update_mask` set to `configuration.parameters.parameter_id`. If
608
- # parameter id does not fit `[a-zA-Z0-9_]+` pattern, it should be escaped with
609
- # backticks - for example ``configuration.parameters.`parameter id` ``.
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` ``.
610
611
  # Corresponds to the JSON property `parameters`
611
612
  # @return [Hash<String,Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue>]
612
613
  attr_accessor :parameters
613
614
 
615
+ # TLS configuration options.
616
+ # Corresponds to the JSON property `tls`
617
+ # @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationTls]
618
+ attr_accessor :tls
619
+
614
620
  def initialize(**args)
615
621
  update!(**args)
616
622
  end
@@ -623,6 +629,7 @@ module Google
623
629
  @endpoint = args[:endpoint] if args.key?(:endpoint)
624
630
  @network = args[:network] if args.key?(:network)
625
631
  @parameters = args[:parameters] if args.key?(:parameters)
632
+ @tls = args[:tls] if args.key?(:tls)
626
633
  end
627
634
  end
628
635
 
@@ -658,12 +665,12 @@ module Google
658
665
  class ConnectorConfigurationAuthentication
659
666
  include Google::Apis::Core::Hashable
660
667
 
661
- # Optional. A map of name-value pairs for authentication-specific parameters.
662
- # Extra configuration parameters, that are not standardized in authentication.
663
- # To update a single parameter value call ConnectionService.UpdateConnection
664
- # with `update_mask` set to `configuration.authentication.parameters.
665
- # parameter_id`. If parameter id does not fit `[a-zA-Z0-9_]+` pattern, it should
666
- # be escaped with backticks - for example ``configuration.authentication.
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 backticksfor example, ``configuration.
667
674
  # parameters.`parameter id` ``.
668
675
  # Corresponds to the JSON property `parameters`
669
676
  # @return [Hash<String,Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue>]
@@ -824,6 +831,69 @@ module Google
824
831
  end
825
832
  end
826
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
+
827
897
  # Username and Password authentication.
828
898
  class ConnectorConfigurationUsernamePassword
829
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.10.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260601"
25
+ REVISION = "20260804"
26
26
  end
27
27
  end
28
28
  end
@@ -136,6 +136,24 @@ module Google
136
136
  include Google::Apis::Core::JsonObjectSupport
137
137
  end
138
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
+
139
157
  class ConnectorConfigurationUsernamePassword
140
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
159
 
@@ -358,6 +376,8 @@ module Google
358
376
 
359
377
  hash :parameters, as: 'parameters', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue::Representation
360
378
 
379
+ property :tls, as: 'tls', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationTls, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationTls::Representation
380
+
361
381
  end
362
382
  end
363
383
 
@@ -422,6 +442,30 @@ module Google
422
442
  end
423
443
  end
424
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
+
425
469
  class ConnectorConfigurationUsernamePassword
426
470
  # @private
427
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.10.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.10.0
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: