google-apis-bigqueryconnection_v1 0.9.0 → 0.10.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: 54b2767d4fb3a27c2cf1dd2d8e9471f72f7e229f8d4fcf12eb1a4c97369205f4
4
- data.tar.gz: 2f43ec3f9ee116be22379ba071d024bb2c7347759cdd6b45675af3fdbf8e59ec
3
+ metadata.gz: 3f2c0f2482255bf2192c048b07b7dafeed3979961ea111f1edd1b91d65dd21af
4
+ data.tar.gz: b0793899adab7e9209ff5783f1a71f509767cf0ef222488dcf93de4fff861f17
5
5
  SHA512:
6
- metadata.gz: 87aaf69cb5df9fac6087ec1609fbbd0091edc9e7dc731da73c9f747d3c2c815135e7aad9845e39edd019a5cd940d931e45b85e12dce06902a39cf5d1217c93de
7
- data.tar.gz: 9f2b7b82fd25314098aa66e78b5f00d67c8cf963d04a665bb895e3984bb088f7f2d45623a1a6b1acaae53468ce5b43c40f10c634fd9cf38b09cc2768822d5d3c
6
+ metadata.gz: f65146156652addd570e7d29b6fc2c94129d72956bc885b4c1bad5cf3c876e8dfbeb25ee2d1ae8962ff490d11c468c440384a869db07267a5064f56e0f96844e
7
+ data.tar.gz: b9ded41eafcc4393ab508a2d2abc5399c9fbe0da80f3d6c97b4750d23cec6b36a85d514adbec7bc335e837a7bdcad7a1808b2d0257be87fa3f559305bdc26cc4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-bigqueryconnection_v1
2
2
 
3
+ ### v0.10.0 (2026-06-21)
4
+
5
+ * Regenerated from discovery document revision 20260601
6
+ * Regenerated using generator version 0.19.0
7
+
3
8
  ### v0.9.0 (2025-05-04)
4
9
 
5
10
  * 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.1+.
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,16 @@ 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` ``.
610
+ # Corresponds to the JSON property `parameters`
611
+ # @return [Hash<String,Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue>]
612
+ attr_accessor :parameters
613
+
604
614
  def initialize(**args)
605
615
  update!(**args)
606
616
  end
@@ -612,6 +622,7 @@ module Google
612
622
  @connector_id = args[:connector_id] if args.key?(:connector_id)
613
623
  @endpoint = args[:endpoint] if args.key?(:endpoint)
614
624
  @network = args[:network] if args.key?(:network)
625
+ @parameters = args[:parameters] if args.key?(:parameters)
615
626
  end
616
627
  end
617
628
 
@@ -647,6 +658,17 @@ module Google
647
658
  class ConnectorConfigurationAuthentication
648
659
  include Google::Apis::Core::Hashable
649
660
 
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.
667
+ # parameters.`parameter id` ``.
668
+ # Corresponds to the JSON property `parameters`
669
+ # @return [Hash<String,Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue>]
670
+ attr_accessor :parameters
671
+
650
672
  # Output only. Google-managed service account associated with this connection, e.
651
673
  # g., `service-`project_number`@gcp-sa-bigqueryconnection.iam.gserviceaccount.
652
674
  # com`. BigQuery jobs using this connection will act as `service_account`
@@ -666,6 +688,7 @@ module Google
666
688
 
667
689
  # Update properties of this object
668
690
  def update!(**args)
691
+ @parameters = args[:parameters] if args.key?(:parameters)
669
692
  @service_account = args[:service_account] if args.key?(:service_account)
670
693
  @username_password = args[:username_password] if args.key?(:username_password)
671
694
  end
@@ -711,6 +734,50 @@ module Google
711
734
  end
712
735
  end
713
736
 
737
+ # Represents a value for a connector parameter.
738
+ class ConnectorConfigurationParameterValue
739
+ include Google::Apis::Core::Hashable
740
+
741
+ # A boolean parameter value.
742
+ # Corresponds to the JSON property `boolValue`
743
+ # @return [Boolean]
744
+ attr_accessor :bool_value
745
+ alias_method :bool_value?, :bool_value
746
+
747
+ # A double parameter value.
748
+ # Corresponds to the JSON property `doubleValue`
749
+ # @return [Float]
750
+ attr_accessor :double_value
751
+
752
+ # An int32 parameter value.
753
+ # Corresponds to the JSON property `int32Value`
754
+ # @return [Fixnum]
755
+ attr_accessor :int32_value
756
+
757
+ # Secret value parameter.
758
+ # Corresponds to the JSON property `secretValue`
759
+ # @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationSecret]
760
+ attr_accessor :secret_value
761
+
762
+ # A string parameter value.
763
+ # Corresponds to the JSON property `stringValue`
764
+ # @return [String]
765
+ attr_accessor :string_value
766
+
767
+ def initialize(**args)
768
+ update!(**args)
769
+ end
770
+
771
+ # Update properties of this object
772
+ def update!(**args)
773
+ @bool_value = args[:bool_value] if args.key?(:bool_value)
774
+ @double_value = args[:double_value] if args.key?(:double_value)
775
+ @int32_value = args[:int32_value] if args.key?(:int32_value)
776
+ @secret_value = args[:secret_value] if args.key?(:secret_value)
777
+ @string_value = args[:string_value] if args.key?(:string_value)
778
+ end
779
+ end
780
+
714
781
  # Private Service Connect configuration.
715
782
  class ConnectorConfigurationPrivateServiceConnect
716
783
  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.9.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240727"
25
+ REVISION = "20260601"
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
 
@@ -350,6 +356,8 @@ module Google
350
356
 
351
357
  property :network, as: 'network', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork::Representation
352
358
 
359
+ hash :parameters, as: 'parameters', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue::Representation
360
+
353
361
  end
354
362
  end
355
363
 
@@ -364,6 +372,8 @@ module Google
364
372
  class ConnectorConfigurationAuthentication
365
373
  # @private
366
374
  class Representation < Google::Apis::Core::JsonRepresentation
375
+ hash :parameters, as: 'parameters', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationParameterValue::Representation
376
+
367
377
  property :service_account, as: 'serviceAccount'
368
378
  property :username_password, as: 'usernamePassword', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationUsernamePassword, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationUsernamePassword::Representation
369
379
 
@@ -385,6 +395,18 @@ module Google
385
395
  end
386
396
  end
387
397
 
398
+ class ConnectorConfigurationParameterValue
399
+ # @private
400
+ class Representation < Google::Apis::Core::JsonRepresentation
401
+ property :bool_value, as: 'boolValue'
402
+ property :double_value, as: 'doubleValue'
403
+ property :int32_value, as: 'int32Value'
404
+ property :secret_value, as: 'secretValue', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationSecret, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationSecret::Representation
405
+
406
+ property :string_value, as: 'stringValue'
407
+ end
408
+ end
409
+
388
410
  class ConnectorConfigurationPrivateServiceConnect
389
411
  # @private
390
412
  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.9.0
4
+ version: 0.10.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.9.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryconnection_v1/v0.10.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.1'
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.8
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: []