google-apis-datastream_v1 0.50.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c73adc8014a314890641cd4de18e5615b0431d6f2e7f5f187d3b3a6165ad6c90
|
4
|
+
data.tar.gz: 57e3faef33f252e1a37d36e34201e05e65a7463ee42f16ad5e2e3d8c468cf688
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5b806593498658cb01505ea6d16cb5ef45e633f66853616b11b5b9e804882ee542aa8e53790a850fe4e11e279eef098ab8875f13721c1f58d39809d6cc66312
|
7
|
+
data.tar.gz: 86dbe2dd04e37c1d34f6179f8144aba3779dca6aa402bce0df432c6ce97ea72cc7b22944613ac6cb1fb4072e99d56ff3fe025676f208755645486e27c518060f
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -1476,6 +1482,72 @@ module Google
|
|
1476
1482
|
end
|
1477
1483
|
end
|
1478
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)
|
1548
|
+
end
|
1549
|
+
end
|
1550
|
+
|
1479
1551
|
# CDC strategy to start replicating from the most recent position in the source.
|
1480
1552
|
class MostRecentStartPosition
|
1481
1553
|
include Google::Apis::Core::Hashable
|
@@ -2851,8 +2923,8 @@ module Google
|
|
2851
2923
|
include Google::Apis::Core::Hashable
|
2852
2924
|
|
2853
2925
|
# Required. Fully qualified name of the Network Attachment that Datastream will
|
2854
|
-
# connect to. Format: `projects
|
2855
|
-
#
|
2926
|
+
# connect to. Format: `projects/`project`/regions/`region`/networkAttachments/`
|
2927
|
+
# name``
|
2856
2928
|
# Corresponds to the JSON property `networkAttachment`
|
2857
2929
|
# @return [String]
|
2858
2930
|
attr_accessor :network_attachment
|
@@ -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.
|
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 = "
|
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'
|
@@ -1237,6 +1245,19 @@ module Google
|
|
1237
1245
|
end
|
1238
1246
|
end
|
1239
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'
|
1258
|
+
end
|
1259
|
+
end
|
1260
|
+
|
1240
1261
|
class MostRecentStartPosition
|
1241
1262
|
# @private
|
1242
1263
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.
|
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.
|
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.
|
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: []
|