google-apis-connectors_v1 0.12.0 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a75858f16d3c6734402c616897f6b8db326ad95f3e45f60e37b0b105adcb0f2
4
- data.tar.gz: 3e7079eebeac028d83890f980ccda9abc87a4cc51d84ec9aa962295ca8412d3b
3
+ metadata.gz: c5be8e38d07416f158cfb779ead801cace618c81e7d8e28e3c93da31e67c1960
4
+ data.tar.gz: e6d826cda6f6b8e798592a1aaa5bf70dca972eec1555ba3f566ac8ac68922447
5
5
  SHA512:
6
- metadata.gz: 31ce2529dc97d403f083114c0a09a5eafa48d08e920dde48795d89f6d3067b8f3405689f3e09f7487d11c04df595948ca8f62fab5bf87b3f3606ad0cda663138
7
- data.tar.gz: 267a32b0928efb705e4eba8f3b92a5deb405afb187594bcb3e3d62afbe7d31bfadb174fd121270a70887100a96e8cd8a74dc0168056c91f078a7709d1f87e2e1
6
+ metadata.gz: 0652d65788b56c794e825254ea7103052dfaf58ce99ebf8db2ae06f64493129b1848fe927d1d77dfca3cc94442596e7bd582abf9668afb0d4d04810f3dfd120a
7
+ data.tar.gz: eda0b0b19688a5734deed265230174e59af03a0e10f60813190eb704d30dd17c213c44a49bc04c40c3f35c6c6cd214772de1b5e3ed90405ead8d63fc6c9f21a7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.15.0 (2022-07-23)
4
+
5
+ * Regenerated from discovery document revision 20220714
6
+
7
+ ### v0.14.0 (2022-07-13)
8
+
9
+ * Regenerated from discovery document revision 20220707
10
+ * Regenerated using generator version 0.9.0
11
+
12
+ ### v0.13.0 (2022-06-30)
13
+
14
+ * Regenerated using generator version 0.8.0
15
+
3
16
  ### v0.12.0 (2022-06-26)
4
17
 
5
18
  * Regenerated from discovery document revision 20220616
@@ -170,6 +170,33 @@ module Google
170
170
  end
171
171
  end
172
172
 
173
+ # This configuration captures the details required to render an authorization
174
+ # link for the OAuth Authorization Code Flow.
175
+ class AuthorizationCodeLink
176
+ include Google::Apis::Core::Hashable
177
+
178
+ # The scopes for which the user will authorize GCP Connectors on the connector
179
+ # data source.
180
+ # Corresponds to the JSON property `scopes`
181
+ # @return [Array<String>]
182
+ attr_accessor :scopes
183
+
184
+ # The base URI the user must click to trigger the authorization code login flow.
185
+ # Corresponds to the JSON property `uri`
186
+ # @return [String]
187
+ attr_accessor :uri
188
+
189
+ def initialize(**args)
190
+ update!(**args)
191
+ end
192
+
193
+ # Update properties of this object
194
+ def update!(**args)
195
+ @scopes = args[:scopes] if args.key?(:scopes)
196
+ @uri = args[:uri] if args.key?(:uri)
197
+ end
198
+ end
199
+
173
200
  # Associates `members`, or principals, with a `role`.
174
201
  class Binding
175
202
  include Google::Apis::Core::Hashable
@@ -304,6 +331,12 @@ module Google
304
331
  class ConfigVariableTemplate
305
332
  include Google::Apis::Core::Hashable
306
333
 
334
+ # This configuration captures the details required to render an authorization
335
+ # link for the OAuth Authorization Code Flow.
336
+ # Corresponds to the JSON property `authorizationCodeLink`
337
+ # @return [Google::Apis::ConnectorsV1::AuthorizationCodeLink]
338
+ attr_accessor :authorization_code_link
339
+
307
340
  # Description.
308
341
  # Corresponds to the JSON property `description`
309
342
  # @return [String]
@@ -357,6 +390,7 @@ module Google
357
390
 
358
391
  # Update properties of this object
359
392
  def update!(**args)
393
+ @authorization_code_link = args[:authorization_code_link] if args.key?(:authorization_code_link)
360
394
  @description = args[:description] if args.key?(:description)
361
395
  @display_name = args[:display_name] if args.key?(:display_name)
362
396
  @enum_options = args[:enum_options] if args.key?(:enum_options)
@@ -398,11 +432,6 @@ module Google
398
432
  # @return [String]
399
433
  attr_accessor :description
400
434
 
401
- # Output only. Outbound domains/hosts needs to be allowlisted.
402
- # Corresponds to the JSON property `egressBackends`
403
- # @return [Array<String>]
404
- attr_accessor :egress_backends
405
-
406
435
  # Output only. GCR location where the envoy image is stored. formatted like: gcr.
407
436
  # io/`bucketName`/`imageName`
408
437
  # Corresponds to the JSON property `envoyImageLocation`
@@ -474,7 +503,6 @@ module Google
474
503
  @connector_version = args[:connector_version] if args.key?(:connector_version)
475
504
  @create_time = args[:create_time] if args.key?(:create_time)
476
505
  @description = args[:description] if args.key?(:description)
477
- @egress_backends = args[:egress_backends] if args.key?(:egress_backends)
478
506
  @envoy_image_location = args[:envoy_image_location] if args.key?(:envoy_image_location)
479
507
  @image_location = args[:image_location] if args.key?(:image_location)
480
508
  @labels = args[:labels] if args.key?(:labels)
@@ -1848,6 +1876,12 @@ module Google
1848
1876
  # @return [String]
1849
1877
  attr_accessor :location_id
1850
1878
 
1879
+ # Output only. Name of the runtimeConfig resource. Format: projects/`project`/
1880
+ # locations/`location`/runtimeConfig
1881
+ # Corresponds to the JSON property `name`
1882
+ # @return [String]
1883
+ attr_accessor :name
1884
+
1851
1885
  # Output only. The endpoint of the connectors runtime ingress.
1852
1886
  # Corresponds to the JSON property `runtimeEndpoint`
1853
1887
  # @return [String]
@@ -1879,6 +1913,7 @@ module Google
1879
1913
  @control_plane_subscription = args[:control_plane_subscription] if args.key?(:control_plane_subscription)
1880
1914
  @control_plane_topic = args[:control_plane_topic] if args.key?(:control_plane_topic)
1881
1915
  @location_id = args[:location_id] if args.key?(:location_id)
1916
+ @name = args[:name] if args.key?(:name)
1882
1917
  @runtime_endpoint = args[:runtime_endpoint] if args.key?(:runtime_endpoint)
1883
1918
  @schema_gcs_bucket = args[:schema_gcs_bucket] if args.key?(:schema_gcs_bucket)
1884
1919
  @service_directory = args[:service_directory] if args.key?(:service_directory)
@@ -2028,6 +2063,11 @@ module Google
2028
2063
  # @return [Google::Apis::ConnectorsV1::Secret]
2029
2064
  attr_accessor :ssh_client_cert
2030
2065
 
2066
+ # Secret provides a reference to entries in Secret Manager.
2067
+ # Corresponds to the JSON property `sshClientCertPass`
2068
+ # @return [Google::Apis::ConnectorsV1::Secret]
2069
+ attr_accessor :ssh_client_cert_pass
2070
+
2031
2071
  # The user account used to authenticate.
2032
2072
  # Corresponds to the JSON property `username`
2033
2073
  # @return [String]
@@ -2042,6 +2082,7 @@ module Google
2042
2082
  @cert_type = args[:cert_type] if args.key?(:cert_type)
2043
2083
  @password = args[:password] if args.key?(:password)
2044
2084
  @ssh_client_cert = args[:ssh_client_cert] if args.key?(:ssh_client_cert)
2085
+ @ssh_client_cert_pass = args[:ssh_client_cert_pass] if args.key?(:ssh_client_cert_pass)
2045
2086
  @username = args[:username] if args.key?(:username)
2046
2087
  end
2047
2088
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ConnectorsV1
18
18
  # Version of the google-apis-connectors_v1 gem
19
- GEM_VERSION = "0.12.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.7.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220616"
25
+ REVISION = "20220714"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,12 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class AuthorizationCodeLink
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
49
55
  class Binding
50
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
57
 
@@ -383,6 +389,14 @@ module Google
383
389
  end
384
390
  end
385
391
 
392
+ class AuthorizationCodeLink
393
+ # @private
394
+ class Representation < Google::Apis::Core::JsonRepresentation
395
+ collection :scopes, as: 'scopes'
396
+ property :uri, as: 'uri'
397
+ end
398
+ end
399
+
386
400
  class Binding
387
401
  # @private
388
402
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -414,6 +428,8 @@ module Google
414
428
  class ConfigVariableTemplate
415
429
  # @private
416
430
  class Representation < Google::Apis::Core::JsonRepresentation
431
+ property :authorization_code_link, as: 'authorizationCodeLink', class: Google::Apis::ConnectorsV1::AuthorizationCodeLink, decorator: Google::Apis::ConnectorsV1::AuthorizationCodeLink::Representation
432
+
417
433
  property :description, as: 'description'
418
434
  property :display_name, as: 'displayName'
419
435
  collection :enum_options, as: 'enumOptions', class: Google::Apis::ConnectorsV1::EnumOption, decorator: Google::Apis::ConnectorsV1::EnumOption::Representation
@@ -437,7 +453,6 @@ module Google
437
453
  property :connector_version, as: 'connectorVersion'
438
454
  property :create_time, as: 'createTime'
439
455
  property :description, as: 'description'
440
- collection :egress_backends, as: 'egressBackends'
441
456
  property :envoy_image_location, as: 'envoyImageLocation'
442
457
  property :image_location, as: 'imageLocation'
443
458
  hash :labels, as: 'labels'
@@ -809,6 +824,7 @@ module Google
809
824
  property :control_plane_subscription, as: 'controlPlaneSubscription'
810
825
  property :control_plane_topic, as: 'controlPlaneTopic'
811
826
  property :location_id, as: 'locationId'
827
+ property :name, as: 'name'
812
828
  property :runtime_endpoint, as: 'runtimeEndpoint'
813
829
  property :schema_gcs_bucket, as: 'schemaGcsBucket'
814
830
  property :service_directory, as: 'serviceDirectory'
@@ -857,6 +873,8 @@ module Google
857
873
 
858
874
  property :ssh_client_cert, as: 'sshClientCert', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
859
875
 
876
+ property :ssh_client_cert_pass, as: 'sshClientCertPass', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
877
+
860
878
  property :username, as: 'username'
861
879
  end
862
880
  end
@@ -386,10 +386,10 @@ module Google
386
386
  # locations/`location`/connections/`connection`
387
387
  # @param [Google::Apis::ConnectorsV1::Connection] connection_object
388
388
  # @param [String] update_mask
389
- # Field mask is used to specify the fields to be overwritten in the Connection
390
- # resource by the update. The fields specified in the update_mask are relative
391
- # to the resource, not the full request. A field will be overwritten if it is in
392
- # the mask. If the user does not provide a mask then all fields will be
389
+ # Required. Field mask is used to specify the fields to be overwritten in the
390
+ # Connection resource by the update. The fields specified in the update_mask are
391
+ # relative to the resource, not the full request. A field will be overwritten if
392
+ # it is in the mask. If the user does not provide a mask then all fields will be
393
393
  # overwritten.
394
394
  # @param [String] fields
395
395
  # Selector specifying which fields to include in a partial response.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-connectors_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.15.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-06-27 00:00:00.000000000 Z
11
+ date: 2022-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.6'
19
+ version: '0.7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.6'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.15.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
63
63
  post_install_message:
64
64
  rdoc_options: []