google-apis-connectors_v1 0.9.0 → 0.10.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: 794ec9328fe65f7c0aa8f64eb791178a1a99f816f84f7ed5f0ef2ea7a6b3c57c
4
- data.tar.gz: 6d0300ead5b361d703ee1eaa2bf3d1f2e8661236b70b7ea1cf47306738330ee4
3
+ metadata.gz: 8e501ce01f6f8186aa62749075dd4af6e9a2f5f6cbcaa6c380e390ff93d30434
4
+ data.tar.gz: 5f2d83d45b6a22b87d8faff02eebe1c0d519947d9c99d18b7e98d7fce7cc762e
5
5
  SHA512:
6
- metadata.gz: 3f449bfe979f08c378c7ba1f2d75f9850a6e07b0f1cd4f0451a5038e99a187bbbe301433c14ea2bbfcd8966f58d2d8ee6deb9b74bce792cfbb3aa1a17e52f891
7
- data.tar.gz: 52ed5d39e9d3dd46d7e71a70bbb8831afadb9ccbd30fe357b37a211f65f69f7b8091fe5f403147816d39691403691a43c0031454d6e4e7c4eb1ed8df6f604ed7
6
+ metadata.gz: f02ab6859155f9d5cc082ea1def5f592e4eee34c6959b83f89896b1960fb91f8c48d593d718ab39de77da89d7fb889ca2f72fe0af908ebae2aaf66d93cef9508
7
+ data.tar.gz: 281f0a3d5401c551198410c72aa015d21c43b5ba9fec5fcd1c76b7a03724ffcd25a52f13e3d5a856eeeefad8d67256c64ed7a2aefce44646ef6ebd39999d62b0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.10.0 (2022-06-10)
4
+
5
+ * Regenerated from discovery document revision 20220603
6
+ * Regenerated using generator version 0.5.0
7
+ * Unspecified changes
8
+
3
9
  ### v0.9.0 (2022-05-28)
4
10
 
5
11
  * Regenerated from discovery document revision 20220523
@@ -120,6 +120,11 @@ module Google
120
120
  # @return [Google::Apis::ConnectorsV1::Oauth2JwtBearer]
121
121
  attr_accessor :oauth2_jwt_bearer
122
122
 
123
+ # SSH Public Key.
124
+ # Corresponds to the JSON property `sshPublicKey`
125
+ # @return [Google::Apis::ConnectorsV1::SshPublicKey]
126
+ attr_accessor :ssh_public_key
127
+
123
128
  # Parameters to support Username and Password Authentication.
124
129
  # Corresponds to the JSON property `userPassword`
125
130
  # @return [Google::Apis::ConnectorsV1::UserPassword]
@@ -135,6 +140,7 @@ module Google
135
140
  @auth_type = args[:auth_type] if args.key?(:auth_type)
136
141
  @oauth2_client_credentials = args[:oauth2_client_credentials] if args.key?(:oauth2_client_credentials)
137
142
  @oauth2_jwt_bearer = args[:oauth2_jwt_bearer] if args.key?(:oauth2_jwt_bearer)
143
+ @ssh_public_key = args[:ssh_public_key] if args.key?(:ssh_public_key)
138
144
  @user_password = args[:user_password] if args.key?(:user_password)
139
145
  end
140
146
  end
@@ -392,11 +398,6 @@ module Google
392
398
  # @return [String]
393
399
  attr_accessor :description
394
400
 
395
- # Output only. Outbound domains/hosts needs to be allowlisted.
396
- # Corresponds to the JSON property `egressBackends`
397
- # @return [Array<String>]
398
- attr_accessor :egress_backends
399
-
400
401
  # Output only. GCR location where the envoy image is stored. formatted like: gcr.
401
402
  # io/`bucketName`/`imageName`
402
403
  # Corresponds to the JSON property `envoyImageLocation`
@@ -468,7 +469,6 @@ module Google
468
469
  @connector_version = args[:connector_version] if args.key?(:connector_version)
469
470
  @create_time = args[:create_time] if args.key?(:create_time)
470
471
  @description = args[:description] if args.key?(:description)
471
- @egress_backends = args[:egress_backends] if args.key?(:egress_backends)
472
472
  @envoy_image_location = args[:envoy_image_location] if args.key?(:envoy_image_location)
473
473
  @image_location = args[:image_location] if args.key?(:image_location)
474
474
  @labels = args[:labels] if args.key?(:labels)
@@ -1842,6 +1842,11 @@ module Google
1842
1842
  # @return [String]
1843
1843
  attr_accessor :location_id
1844
1844
 
1845
+ # Output only. Resource name of the form: `projects/*/locations/*/runtimeConfig`
1846
+ # Corresponds to the JSON property `name`
1847
+ # @return [String]
1848
+ attr_accessor :name
1849
+
1845
1850
  # Output only. The endpoint of the connectors runtime ingress.
1846
1851
  # Corresponds to the JSON property `runtimeEndpoint`
1847
1852
  # @return [String]
@@ -1873,6 +1878,7 @@ module Google
1873
1878
  @control_plane_subscription = args[:control_plane_subscription] if args.key?(:control_plane_subscription)
1874
1879
  @control_plane_topic = args[:control_plane_topic] if args.key?(:control_plane_topic)
1875
1880
  @location_id = args[:location_id] if args.key?(:location_id)
1881
+ @name = args[:name] if args.key?(:name)
1876
1882
  @runtime_endpoint = args[:runtime_endpoint] if args.key?(:runtime_endpoint)
1877
1883
  @schema_gcs_bucket = args[:schema_gcs_bucket] if args.key?(:schema_gcs_bucket)
1878
1884
  @service_directory = args[:service_directory] if args.key?(:service_directory)
@@ -2003,6 +2009,43 @@ module Google
2003
2009
  end
2004
2010
  end
2005
2011
 
2012
+ #
2013
+ class SshPublicKey
2014
+ include Google::Apis::Core::Hashable
2015
+
2016
+ # Format of SSH Client cert.
2017
+ # Corresponds to the JSON property `certType`
2018
+ # @return [String]
2019
+ attr_accessor :cert_type
2020
+
2021
+ # Secret provides a reference to entries in Secret Manager.
2022
+ # Corresponds to the JSON property `password`
2023
+ # @return [Google::Apis::ConnectorsV1::Secret]
2024
+ attr_accessor :password
2025
+
2026
+ # Secret provides a reference to entries in Secret Manager.
2027
+ # Corresponds to the JSON property `sshClientCert`
2028
+ # @return [Google::Apis::ConnectorsV1::Secret]
2029
+ attr_accessor :ssh_client_cert
2030
+
2031
+ # The user account used to authenticate.
2032
+ # Corresponds to the JSON property `username`
2033
+ # @return [String]
2034
+ attr_accessor :username
2035
+
2036
+ def initialize(**args)
2037
+ update!(**args)
2038
+ end
2039
+
2040
+ # Update properties of this object
2041
+ def update!(**args)
2042
+ @cert_type = args[:cert_type] if args.key?(:cert_type)
2043
+ @password = args[:password] if args.key?(:password)
2044
+ @ssh_client_cert = args[:ssh_client_cert] if args.key?(:ssh_client_cert)
2045
+ @username = args[:username] if args.key?(:username)
2046
+ end
2047
+ end
2048
+
2006
2049
  # The `Status` type defines a logical error model that is suitable for different
2007
2050
  # programming environments, including REST APIs and RPC APIs. It is used by [
2008
2051
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -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.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.4.1"
22
+ GENERATOR_VERSION = "0.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220523"
25
+ REVISION = "20220603"
26
26
  end
27
27
  end
28
28
  end
@@ -304,6 +304,12 @@ module Google
304
304
  include Google::Apis::Core::JsonObjectSupport
305
305
  end
306
306
 
307
+ class SshPublicKey
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
307
313
  class Status
308
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
315
 
@@ -361,6 +367,8 @@ module Google
361
367
 
362
368
  property :oauth2_jwt_bearer, as: 'oauth2JwtBearer', class: Google::Apis::ConnectorsV1::Oauth2JwtBearer, decorator: Google::Apis::ConnectorsV1::Oauth2JwtBearer::Representation
363
369
 
370
+ property :ssh_public_key, as: 'sshPublicKey', class: Google::Apis::ConnectorsV1::SshPublicKey, decorator: Google::Apis::ConnectorsV1::SshPublicKey::Representation
371
+
364
372
  property :user_password, as: 'userPassword', class: Google::Apis::ConnectorsV1::UserPassword, decorator: Google::Apis::ConnectorsV1::UserPassword::Representation
365
373
 
366
374
  end
@@ -429,7 +437,6 @@ module Google
429
437
  property :connector_version, as: 'connectorVersion'
430
438
  property :create_time, as: 'createTime'
431
439
  property :description, as: 'description'
432
- collection :egress_backends, as: 'egressBackends'
433
440
  property :envoy_image_location, as: 'envoyImageLocation'
434
441
  property :image_location, as: 'imageLocation'
435
442
  hash :labels, as: 'labels'
@@ -801,6 +808,7 @@ module Google
801
808
  property :control_plane_subscription, as: 'controlPlaneSubscription'
802
809
  property :control_plane_topic, as: 'controlPlaneTopic'
803
810
  property :location_id, as: 'locationId'
811
+ property :name, as: 'name'
804
812
  property :runtime_endpoint, as: 'runtimeEndpoint'
805
813
  property :schema_gcs_bucket, as: 'schemaGcsBucket'
806
814
  property :service_directory, as: 'serviceDirectory'
@@ -841,6 +849,18 @@ module Google
841
849
  end
842
850
  end
843
851
 
852
+ class SshPublicKey
853
+ # @private
854
+ class Representation < Google::Apis::Core::JsonRepresentation
855
+ property :cert_type, as: 'certType'
856
+ property :password, as: 'password', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
857
+
858
+ property :ssh_client_cert, as: 'sshClientCert', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
859
+
860
+ property :username, as: 'username'
861
+ end
862
+ end
863
+
844
864
  class Status
845
865
  # @private
846
866
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -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.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-05-30 00:00:00.000000000 Z
11
+ date: 2022-06-13 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.4'
19
+ version: '0.5'
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.4'
29
+ version: '0.5'
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.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.10.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: []