google-apis-connectors_v1 0.42.0 → 0.43.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: a2abdf8eedac03c217f204c8334ab1c752ffb5d93f9f6eb18b7e612b9a7e0c04
4
- data.tar.gz: db44be0c0196f083457e4436ca492a35648bcb5fed578fe8d8ed19e5e3c53986
3
+ metadata.gz: d5c8333b7b279b017efb52f5bcebcf034b091025d70ceb18e747487ffc58d929
4
+ data.tar.gz: f9d221e4b7340f8b479e6fa9ff85cb4645c480766c13df92343db3917f850f1f
5
5
  SHA512:
6
- metadata.gz: d69bd9414ce8aa0658a6ce299792c3e48147b349cbb99d1ef2013e338b3d50015867ba600baefb85e7114039ea3a268e675ccee84b197973482f54995cf9aab8
7
- data.tar.gz: 895202a7c4ff00856e370199a83f01913b5de5eadd7e399732b7f9f7b55e0251fc5678980f74703c7c3a500608781c2f43fdf0176e440ed77f0816a5304bba8c
6
+ metadata.gz: 5cff721f45e0610932bc6110cc78146e74cacb05b120d4e872e5fffad05f9d9da39509e44e1a308cc09bfc9831110ea5d8a8decfa654424eaa13f3c3a38a3018
7
+ data.tar.gz: c032459a3ff98d610132f8cc991a509b7c30db0ea971390044cb2be3c69cef6b82310a02b6614a14a0f038f38bd9447f6595fdcb447cf1ccceb05c3ac826164d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.43.0 (2023-11-05)
4
+
5
+ * Regenerated from discovery document revision 20231031
6
+
3
7
  ### v0.42.0 (2023-10-29)
4
8
 
5
9
  * Regenerated from discovery document revision 20231024
@@ -1276,6 +1276,32 @@ module Google
1276
1276
  end
1277
1277
  end
1278
1278
 
1279
+ # Regional encryption config for CMEK details.
1280
+ class EncryptionConfig
1281
+ include Google::Apis::Core::Hashable
1282
+
1283
+ # Optional. Encryption type for the region.
1284
+ # Corresponds to the JSON property `encryptionType`
1285
+ # @return [String]
1286
+ attr_accessor :encryption_type
1287
+
1288
+ # Optional. KMS crypto key. This field accepts identifiers of the form `projects/
1289
+ # `project`/locations/`location`/keyRings/`key_ring`/cryptoKeys/ `crypto_key``
1290
+ # Corresponds to the JSON property `kmsKeyName`
1291
+ # @return [String]
1292
+ attr_accessor :kms_key_name
1293
+
1294
+ def initialize(**args)
1295
+ update!(**args)
1296
+ end
1297
+
1298
+ # Update properties of this object
1299
+ def update!(**args)
1300
+ @encryption_type = args[:encryption_type] if args.key?(:encryption_type)
1301
+ @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
1302
+ end
1303
+ end
1304
+
1279
1305
  # Encryption Key value.
1280
1306
  class EncryptionKey
1281
1307
  include Google::Apis::Core::Hashable
@@ -1774,6 +1800,11 @@ module Google
1774
1800
  # @return [Array<String>]
1775
1801
  attr_accessor :search_tags
1776
1802
 
1803
+ # Output only. The type of the event listener for a specific connector.
1804
+ # Corresponds to the JSON property `type`
1805
+ # @return [String]
1806
+ attr_accessor :type
1807
+
1777
1808
  def initialize(**args)
1778
1809
  update!(**args)
1779
1810
  end
@@ -1787,6 +1818,7 @@ module Google
1787
1818
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
1788
1819
  @name = args[:name] if args.key?(:name)
1789
1820
  @search_tags = args[:search_tags] if args.key?(:search_tags)
1821
+ @type = args[:type] if args.key?(:type)
1790
1822
  end
1791
1823
  end
1792
1824
 
@@ -3276,6 +3308,11 @@ module Google
3276
3308
  class RegionalSettings
3277
3309
  include Google::Apis::Core::Hashable
3278
3310
 
3311
+ # Regional encryption config for CMEK details.
3312
+ # Corresponds to the JSON property `encryptionConfig`
3313
+ # @return [Google::Apis::ConnectorsV1::EncryptionConfig]
3314
+ attr_accessor :encryption_config
3315
+
3279
3316
  # Output only. Resource name of the Connection. Format: projects/`project`/
3280
3317
  # locations/`location`/regionalSettings
3281
3318
  # Corresponds to the JSON property `name`
@@ -3293,6 +3330,7 @@ module Google
3293
3330
 
3294
3331
  # Update properties of this object
3295
3332
  def update!(**args)
3333
+ @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
3296
3334
  @name = args[:name] if args.key?(:name)
3297
3335
  @network_config = args[:network_config] if args.key?(:network_config)
3298
3336
  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.42.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231024"
25
+ REVISION = "20231031"
26
26
  end
27
27
  end
28
28
  end
@@ -154,6 +154,12 @@ module Google
154
154
  include Google::Apis::Core::JsonObjectSupport
155
155
  end
156
156
 
157
+ class EncryptionConfig
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
157
163
  class EncryptionKey
158
164
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
165
 
@@ -907,6 +913,14 @@ module Google
907
913
  end
908
914
  end
909
915
 
916
+ class EncryptionConfig
917
+ # @private
918
+ class Representation < Google::Apis::Core::JsonRepresentation
919
+ property :encryption_type, as: 'encryptionType'
920
+ property :kms_key_name, as: 'kmsKeyName'
921
+ end
922
+ end
923
+
910
924
  class EncryptionKey
911
925
  # @private
912
926
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1041,6 +1055,7 @@ module Google
1041
1055
  property :launch_stage, as: 'launchStage'
1042
1056
  property :name, as: 'name'
1043
1057
  collection :search_tags, as: 'searchTags'
1058
+ property :type, as: 'type'
1044
1059
  end
1045
1060
  end
1046
1061
 
@@ -1449,6 +1464,8 @@ module Google
1449
1464
  class RegionalSettings
1450
1465
  # @private
1451
1466
  class Representation < Google::Apis::Core::JsonRepresentation
1467
+ property :encryption_config, as: 'encryptionConfig', class: Google::Apis::ConnectorsV1::EncryptionConfig, decorator: Google::Apis::ConnectorsV1::EncryptionConfig::Representation
1468
+
1452
1469
  property :name, as: 'name'
1453
1470
  property :network_config, as: 'networkConfig', class: Google::Apis::ConnectorsV1::NetworkConfig, decorator: Google::Apis::ConnectorsV1::NetworkConfig::Representation
1454
1471
 
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.42.0
4
+ version: 0.43.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: 2023-10-29 00:00:00.000000000 Z
11
+ date: 2023-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.43.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: []