google-apis-datastream_v1 0.49.0 → 0.51.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: 153e721992c74c3f507347a9ff6573bc46548eea391d7fa075e26bef991851d7
4
- data.tar.gz: 9db94fc91e24c27d04deb1069bc6cd074cbf112c3ca2f25027845dc90a99342b
3
+ metadata.gz: c73adc8014a314890641cd4de18e5615b0431d6f2e7f5f187d3b3a6165ad6c90
4
+ data.tar.gz: 57e3faef33f252e1a37d36e34201e05e65a7463ee42f16ad5e2e3d8c468cf688
5
5
  SHA512:
6
- metadata.gz: 5e758bacb3e75e69df9f10a91405259d8412a66c213531063967967af284ee231f292da1c2ccf09930a921c2878993d973194a3f51411f32b04a0e94c406c316
7
- data.tar.gz: ed8f9ce5511661f181ab581e34864ac67837f181c538771471528b2aaa60cdfe3e1eeae6ca65fcde23e9a4d8d8fd549b3f6c34ce7492e53aeb26ca4a025ce63c
6
+ metadata.gz: f5b806593498658cb01505ea6d16cb5ef45e633f66853616b11b5b9e804882ee542aa8e53790a850fe4e11e279eef098ab8875f13721c1f58d39809d6cc66312
7
+ data.tar.gz: 86dbe2dd04e37c1d34f6179f8144aba3779dca6aa402bce0df432c6ce97ea72cc7b22944613ac6cb1fb4072e99d56ff3fe025676f208755645486e27c518060f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datastream_v1
2
2
 
3
+ ### v0.51.0 (2025-05-21)
4
+
5
+ * Regenerated from discovery document revision 20250518
6
+
7
+ ### v0.50.0 (2025-05-18)
8
+
9
+ * Regenerated from discovery document revision 20250511
10
+
3
11
  ### v0.49.0 (2025-05-11)
4
12
 
5
13
  * Regenerated from discovery document revision 20250505
@@ -1417,6 +1417,11 @@ module Google
1417
1417
  # @return [Google::Apis::DatastreamV1::SrvConnectionFormat]
1418
1418
  attr_accessor :srv_connection_format
1419
1419
 
1420
+ # MongoDB SSL configuration information.
1421
+ # Corresponds to the JSON property `sslConfig`
1422
+ # @return [Google::Apis::DatastreamV1::MongodbSslConfig]
1423
+ attr_accessor :ssl_config
1424
+
1420
1425
  # Standard connection format.
1421
1426
  # Corresponds to the JSON property `standardConnectionFormat`
1422
1427
  # @return [Google::Apis::DatastreamV1::StandardConnectionFormat]
@@ -1438,6 +1443,7 @@ module Google
1438
1443
  @replica_set = args[:replica_set] if args.key?(:replica_set)
1439
1444
  @secret_manager_stored_password = args[:secret_manager_stored_password] if args.key?(:secret_manager_stored_password)
1440
1445
  @srv_connection_format = args[:srv_connection_format] if args.key?(:srv_connection_format)
1446
+ @ssl_config = args[:ssl_config] if args.key?(:ssl_config)
1441
1447
  @standard_connection_format = args[:standard_connection_format] if args.key?(:standard_connection_format)
1442
1448
  @username = args[:username] if args.key?(:username)
1443
1449
  end
@@ -1457,6 +1463,13 @@ module Google
1457
1463
  # @return [Google::Apis::DatastreamV1::MongodbCluster]
1458
1464
  attr_accessor :include_objects
1459
1465
 
1466
+ # Optional. Maximum number of concurrent backfill tasks. The number should be
1467
+ # non-negative and less than or equal to 50. If not set (or set to 0), the
1468
+ # system's default value is used
1469
+ # Corresponds to the JSON property `maxConcurrentBackfillTasks`
1470
+ # @return [Fixnum]
1471
+ attr_accessor :max_concurrent_backfill_tasks
1472
+
1460
1473
  def initialize(**args)
1461
1474
  update!(**args)
1462
1475
  end
@@ -1465,6 +1478,73 @@ module Google
1465
1478
  def update!(**args)
1466
1479
  @exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
1467
1480
  @include_objects = args[:include_objects] if args.key?(:include_objects)
1481
+ @max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks)
1482
+ end
1483
+ end
1484
+
1485
+ # MongoDB SSL configuration information.
1486
+ class MongodbSslConfig
1487
+ include Google::Apis::Core::Hashable
1488
+
1489
+ # Optional. Input only. PEM-encoded certificate of the CA that signed the source
1490
+ # database server's certificate.
1491
+ # Corresponds to the JSON property `caCertificate`
1492
+ # @return [String]
1493
+ attr_accessor :ca_certificate
1494
+
1495
+ # Output only. Indicates whether the ca_certificate field is set.
1496
+ # Corresponds to the JSON property `caCertificateSet`
1497
+ # @return [Boolean]
1498
+ attr_accessor :ca_certificate_set
1499
+ alias_method :ca_certificate_set?, :ca_certificate_set
1500
+
1501
+ # Optional. Input only. PEM-encoded certificate that will be used by the replica
1502
+ # to authenticate against the source database server. If this field is used then
1503
+ # the 'client_key' and the 'ca_certificate' fields are mandatory.
1504
+ # Corresponds to the JSON property `clientCertificate`
1505
+ # @return [String]
1506
+ attr_accessor :client_certificate
1507
+
1508
+ # Output only. Indicates whether the client_certificate field is set.
1509
+ # Corresponds to the JSON property `clientCertificateSet`
1510
+ # @return [Boolean]
1511
+ attr_accessor :client_certificate_set
1512
+ alias_method :client_certificate_set?, :client_certificate_set
1513
+
1514
+ # Optional. Input only. PEM-encoded private key associated with the Client
1515
+ # Certificate. If this field is used then the 'client_certificate' and the '
1516
+ # ca_certificate' fields are mandatory.
1517
+ # Corresponds to the JSON property `clientKey`
1518
+ # @return [String]
1519
+ attr_accessor :client_key
1520
+
1521
+ # Output only. Indicates whether the client_key field is set.
1522
+ # Corresponds to the JSON property `clientKeySet`
1523
+ # @return [Boolean]
1524
+ attr_accessor :client_key_set
1525
+ alias_method :client_key_set?, :client_key_set
1526
+
1527
+ # Optional. Input only. A reference to a Secret Manager resource name storing
1528
+ # the PEM-encoded private key associated with the Client Certificate. If this
1529
+ # field is used then the 'client_certificate' and the 'ca_certificate' fields
1530
+ # are mandatory. Mutually exclusive with the `client_key` field.
1531
+ # Corresponds to the JSON property `secretManagerStoredClientKey`
1532
+ # @return [String]
1533
+ attr_accessor :secret_manager_stored_client_key
1534
+
1535
+ def initialize(**args)
1536
+ update!(**args)
1537
+ end
1538
+
1539
+ # Update properties of this object
1540
+ def update!(**args)
1541
+ @ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
1542
+ @ca_certificate_set = args[:ca_certificate_set] if args.key?(:ca_certificate_set)
1543
+ @client_certificate = args[:client_certificate] if args.key?(:client_certificate)
1544
+ @client_certificate_set = args[:client_certificate_set] if args.key?(:client_certificate_set)
1545
+ @client_key = args[:client_key] if args.key?(:client_key)
1546
+ @client_key_set = args[:client_key_set] if args.key?(:client_key_set)
1547
+ @secret_manager_stored_client_key = args[:secret_manager_stored_client_key] if args.key?(:secret_manager_stored_client_key)
1468
1548
  end
1469
1549
  end
1470
1550
 
@@ -2843,8 +2923,8 @@ module Google
2843
2923
  include Google::Apis::Core::Hashable
2844
2924
 
2845
2925
  # Required. Fully qualified name of the Network Attachment that Datastream will
2846
- # connect to. Format: `projects/``project``/regions/``region``/
2847
- # networkAttachments/``name```
2926
+ # connect to. Format: `projects/`project`/regions/`region`/networkAttachments/`
2927
+ # name``
2848
2928
  # Corresponds to the JSON property `networkAttachment`
2849
2929
  # @return [String]
2850
2930
  attr_accessor :network_attachment
@@ -3665,12 +3745,20 @@ module Google
3665
3745
  class StandardConnectionFormat
3666
3746
  include Google::Apis::Core::Hashable
3667
3747
 
3748
+ # Optional. Specifies whether the client connects directly to the host[:port] in
3749
+ # the connection URI.
3750
+ # Corresponds to the JSON property `directConnection`
3751
+ # @return [Boolean]
3752
+ attr_accessor :direct_connection
3753
+ alias_method :direct_connection?, :direct_connection
3754
+
3668
3755
  def initialize(**args)
3669
3756
  update!(**args)
3670
3757
  end
3671
3758
 
3672
3759
  # Update properties of this object
3673
3760
  def update!(**args)
3761
+ @direct_connection = args[:direct_connection] if args.key?(:direct_connection)
3674
3762
  end
3675
3763
  end
3676
3764
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatastreamV1
18
18
  # Version of the google-apis-datastream_v1 gem
19
- GEM_VERSION = "0.49.0"
19
+ GEM_VERSION = "0.51.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250505"
25
+ REVISION = "20250518"
26
26
  end
27
27
  end
28
28
  end
@@ -298,6 +298,12 @@ module Google
298
298
  include Google::Apis::Core::JsonObjectSupport
299
299
  end
300
300
 
301
+ class MongodbSslConfig
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
301
307
  class MostRecentStartPosition
302
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
303
309
 
@@ -1220,6 +1226,8 @@ module Google
1220
1226
  property :secret_manager_stored_password, as: 'secretManagerStoredPassword'
1221
1227
  property :srv_connection_format, as: 'srvConnectionFormat', class: Google::Apis::DatastreamV1::SrvConnectionFormat, decorator: Google::Apis::DatastreamV1::SrvConnectionFormat::Representation
1222
1228
 
1229
+ property :ssl_config, as: 'sslConfig', class: Google::Apis::DatastreamV1::MongodbSslConfig, decorator: Google::Apis::DatastreamV1::MongodbSslConfig::Representation
1230
+
1223
1231
  property :standard_connection_format, as: 'standardConnectionFormat', class: Google::Apis::DatastreamV1::StandardConnectionFormat, decorator: Google::Apis::DatastreamV1::StandardConnectionFormat::Representation
1224
1232
 
1225
1233
  property :username, as: 'username'
@@ -1233,6 +1241,20 @@ module Google
1233
1241
 
1234
1242
  property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::MongodbCluster, decorator: Google::Apis::DatastreamV1::MongodbCluster::Representation
1235
1243
 
1244
+ property :max_concurrent_backfill_tasks, as: 'maxConcurrentBackfillTasks'
1245
+ end
1246
+ end
1247
+
1248
+ class MongodbSslConfig
1249
+ # @private
1250
+ class Representation < Google::Apis::Core::JsonRepresentation
1251
+ property :ca_certificate, as: 'caCertificate'
1252
+ property :ca_certificate_set, as: 'caCertificateSet'
1253
+ property :client_certificate, as: 'clientCertificate'
1254
+ property :client_certificate_set, as: 'clientCertificateSet'
1255
+ property :client_key, as: 'clientKey'
1256
+ property :client_key_set, as: 'clientKeySet'
1257
+ property :secret_manager_stored_client_key, as: 'secretManagerStoredClientKey'
1236
1258
  end
1237
1259
  end
1238
1260
 
@@ -1893,6 +1915,7 @@ module Google
1893
1915
  class StandardConnectionFormat
1894
1916
  # @private
1895
1917
  class Representation < Google::Apis::Core::JsonRepresentation
1918
+ property :direct_connection, as: 'directConnection'
1896
1919
  end
1897
1920
  end
1898
1921
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datastream_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.51.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-datastream_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.49.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.51.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
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 Datastream API V1
79
79
  test_files: []