google-cloud-bigquery-connection-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: b46d2d3adeb461c905e0ce3fc1cc281a91ef46351e19eef63da16f9032c0c6f1
4
- data.tar.gz: e4b5aff23709b9c5553d749e7fd226bd2e39d98ec6661c855b4ad81aaca3ddde
3
+ metadata.gz: 7ef22af8ed90b56231671cb1f8c331218bc63e98534cb0614b5392114cd39885
4
+ data.tar.gz: 0077e96d7ae6005a384350444d10ec6cb044d129d4c31d94c3ae3ed8cad0902f
5
5
  SHA512:
6
- metadata.gz: b81c3cbd7937abec76d6456c8f8cfcb521e0130103019274c002d94164e48ccf71996d8782184ea9619f3dbbac29d8a4b8ac3ccfa4a2be0ae3b5412fbee4494d
7
- data.tar.gz: edd8d1c51aca20333d9712711c5043a99987add6283ef6cabb87ebe33a1b82f79db65d3012ddc13470d814b5e746ebb55e3ee07f5820564e97bd4edde5eff32e
6
+ metadata.gz: f718bf907e77181793af4e01844e597f497fdddf01341589e170d4912418c2191554016c94cd7acc4a08562abeb03b9e0476b1d5199de7ed52312db41da1c6d2
7
+ data.tar.gz: 1315143ad81baed1e1b92ca8e5b758eff174e8a837ce9edcbd2f17717680b24430d3dbd5b7b5783c505ee3b09ad15ea5475a7e008ca89c53d22ce485962bec78
@@ -49,6 +49,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
49
49
  oneof :properties do
50
50
  optional :cloud_sql, :message, 4, "google.cloud.bigquery.connection.v1.CloudSqlProperties"
51
51
  optional :aws, :message, 8, "google.cloud.bigquery.connection.v1.AwsProperties"
52
+ optional :azure, :message, 11, "google.cloud.bigquery.connection.v1.AzureProperties"
52
53
  optional :cloud_spanner, :message, 21, "google.cloud.bigquery.connection.v1.CloudSpannerProperties"
53
54
  optional :cloud_resource, :message, 22, "google.cloud.bigquery.connection.v1.CloudResourceProperties"
54
55
  end
@@ -88,6 +89,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
88
89
  optional :iam_role_id, :string, 1
89
90
  optional :identity, :string, 2
90
91
  end
92
+ add_message "google.cloud.bigquery.connection.v1.AzureProperties" do
93
+ optional :application, :string, 1
94
+ optional :client_id, :string, 2
95
+ optional :object_id, :string, 3
96
+ optional :customer_tenant_id, :string, 4
97
+ optional :redirect_uri, :string, 5
98
+ optional :federated_application_client_id, :string, 6
99
+ optional :identity, :string, 7
100
+ end
91
101
  add_message "google.cloud.bigquery.connection.v1.CloudResourceProperties" do
92
102
  optional :service_account_id, :string, 1
93
103
  end
@@ -113,6 +123,7 @@ module Google
113
123
  AwsProperties = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.connection.v1.AwsProperties").msgclass
114
124
  AwsCrossAccountRole = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.connection.v1.AwsCrossAccountRole").msgclass
115
125
  AwsAccessRole = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.connection.v1.AwsAccessRole").msgclass
126
+ AzureProperties = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.connection.v1.AzureProperties").msgclass
116
127
  CloudResourceProperties = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.connection.v1.CloudResourceProperties").msgclass
117
128
  end
118
129
  end
@@ -22,7 +22,7 @@ module Google
22
22
  module Bigquery
23
23
  module Connection
24
24
  module V1
25
- VERSION = "0.9.0"
25
+ VERSION = "0.10.0"
26
26
  end
27
27
  end
28
28
  end
@@ -120,6 +120,9 @@ module Google
120
120
  # @!attribute [rw] aws
121
121
  # @return [::Google::Cloud::Bigquery::Connection::V1::AwsProperties]
122
122
  # Amazon Web Services (AWS) properties.
123
+ # @!attribute [rw] azure
124
+ # @return [::Google::Cloud::Bigquery::Connection::V1::AzureProperties]
125
+ # Azure properties.
123
126
  # @!attribute [rw] cloud_spanner
124
127
  # @return [::Google::Cloud::Bigquery::Connection::V1::CloudSpannerProperties]
125
128
  # Cloud Spanner properties.
@@ -206,6 +209,7 @@ module Google
206
209
  # @return [::Google::Cloud::Bigquery::Connection::V1::AwsCrossAccountRole]
207
210
  # Authentication using Google owned AWS IAM user's access key to assume
208
211
  # into customer's AWS IAM Role.
212
+ # Deprecated, do not use.
209
213
  # @!attribute [rw] access_role
210
214
  # @return [::Google::Cloud::Bigquery::Connection::V1::AwsAccessRole]
211
215
  # Authentication using Google owned service account to assume into
@@ -249,6 +253,37 @@ module Google
249
253
  extend ::Google::Protobuf::MessageExts::ClassMethods
250
254
  end
251
255
 
256
+ # Container for connection properties specific to Azure.
257
+ # @!attribute [r] application
258
+ # @return [::String]
259
+ # Output only. The name of the Azure Active Directory Application.
260
+ # @!attribute [r] client_id
261
+ # @return [::String]
262
+ # Output only. The client id of the Azure Active Directory Application.
263
+ # @!attribute [r] object_id
264
+ # @return [::String]
265
+ # Output only. The object id of the Azure Active Directory Application.
266
+ # @!attribute [rw] customer_tenant_id
267
+ # @return [::String]
268
+ # The id of customer's directory that host the data.
269
+ # @!attribute [rw] redirect_uri
270
+ # @return [::String]
271
+ # The URL user will be redirected to after granting consent during connection
272
+ # setup.
273
+ # @!attribute [rw] federated_application_client_id
274
+ # @return [::String]
275
+ # The client id of the user's Azure Active Directory Application used for a
276
+ # federated connection.
277
+ # @!attribute [r] identity
278
+ # @return [::String]
279
+ # Output only. A unique Google-owned and Google-generated identity for the Connection.
280
+ # This identity will be used to access the user's Azure Active Directory
281
+ # Application.
282
+ class AzureProperties
283
+ include ::Google::Protobuf::MessageExts
284
+ extend ::Google::Protobuf::MessageExts::ClassMethods
285
+ end
286
+
252
287
  # Container for connection properties for delegation of access to GCP
253
288
  # resources.
254
289
  # @!attribute [r] service_account_id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-bigquery-connection-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
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-28 00:00:00.000000000 Z
11
+ date: 2022-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common