google-apis-datastream_v1 0.44.0 → 0.45.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: f31b4e93fc310897e3047ad882d791c94b25d4d77fbb9329a6086d6c6258d3c7
|
4
|
+
data.tar.gz: 9123348b22490d246c9969e1c3768b1e37a43248da2fa6953e550e0fcc30979b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa0ce37d47f8f760b161ea3d465d9115bdbdb8b1685f56e662a89252ee1e0cabb431d0ec8a7dd14a31078a939e0bbc08716e212fc19828cf59fb905437706fb1
|
7
|
+
data.tar.gz: b05c3a2c7f90bc198dc6ea4820053c76ab91637342f238c36a821edef417b8c878814c5d9acf511290dcadc2cf0d77ebb254f6c121da1ec112a82d9248b24827
|
data/CHANGELOG.md
CHANGED
@@ -69,6 +69,11 @@ module Google
|
|
69
69
|
# @return [Google::Apis::DatastreamV1::PostgresqlRdbms]
|
70
70
|
attr_accessor :postgresql_excluded_objects
|
71
71
|
|
72
|
+
# Salesforce organization structure.
|
73
|
+
# Corresponds to the JSON property `salesforceExcludedObjects`
|
74
|
+
# @return [Google::Apis::DatastreamV1::SalesforceOrg]
|
75
|
+
attr_accessor :salesforce_excluded_objects
|
76
|
+
|
72
77
|
# SQLServer database structure.
|
73
78
|
# Corresponds to the JSON property `sqlServerExcludedObjects`
|
74
79
|
# @return [Google::Apis::DatastreamV1::SqlServerRdbms]
|
@@ -83,6 +88,7 @@ module Google
|
|
83
88
|
@mysql_excluded_objects = args[:mysql_excluded_objects] if args.key?(:mysql_excluded_objects)
|
84
89
|
@oracle_excluded_objects = args[:oracle_excluded_objects] if args.key?(:oracle_excluded_objects)
|
85
90
|
@postgresql_excluded_objects = args[:postgresql_excluded_objects] if args.key?(:postgresql_excluded_objects)
|
91
|
+
@salesforce_excluded_objects = args[:salesforce_excluded_objects] if args.key?(:salesforce_excluded_objects)
|
86
92
|
@sql_server_excluded_objects = args[:sql_server_excluded_objects] if args.key?(:sql_server_excluded_objects)
|
87
93
|
end
|
88
94
|
end
|
@@ -153,6 +159,11 @@ module Google
|
|
153
159
|
# @return [Google::Apis::DatastreamV1::AppendOnly]
|
154
160
|
attr_accessor :append_only
|
155
161
|
|
162
|
+
# The configuration for BLMT.
|
163
|
+
# Corresponds to the JSON property `blmtConfig`
|
164
|
+
# @return [Google::Apis::DatastreamV1::BlmtConfig]
|
165
|
+
attr_accessor :blmt_config
|
166
|
+
|
156
167
|
# The guaranteed data freshness (in seconds) when querying tables created by the
|
157
168
|
# stream. Editing this field will only affect new tables created in the future,
|
158
169
|
# but existing tables will not be impacted. Lower values mean that queries will
|
@@ -185,6 +196,7 @@ module Google
|
|
185
196
|
# Update properties of this object
|
186
197
|
def update!(**args)
|
187
198
|
@append_only = args[:append_only] if args.key?(:append_only)
|
199
|
+
@blmt_config = args[:blmt_config] if args.key?(:blmt_config)
|
188
200
|
@data_freshness = args[:data_freshness] if args.key?(:data_freshness)
|
189
201
|
@merge = args[:merge] if args.key?(:merge)
|
190
202
|
@single_target_dataset = args[:single_target_dataset] if args.key?(:single_target_dataset)
|
@@ -243,6 +255,49 @@ module Google
|
|
243
255
|
end
|
244
256
|
end
|
245
257
|
|
258
|
+
# The configuration for BLMT.
|
259
|
+
class BlmtConfig
|
260
|
+
include Google::Apis::Core::Hashable
|
261
|
+
|
262
|
+
# Required. The Cloud Storage bucket name.
|
263
|
+
# Corresponds to the JSON property `bucket`
|
264
|
+
# @return [String]
|
265
|
+
attr_accessor :bucket
|
266
|
+
|
267
|
+
# Required. The bigquery connection. Format: ``project`.`location`.`name``
|
268
|
+
# Corresponds to the JSON property `connectionName`
|
269
|
+
# @return [String]
|
270
|
+
attr_accessor :connection_name
|
271
|
+
|
272
|
+
# Required. The file format.
|
273
|
+
# Corresponds to the JSON property `fileFormat`
|
274
|
+
# @return [String]
|
275
|
+
attr_accessor :file_format
|
276
|
+
|
277
|
+
# The root path inside the Cloud Storage bucket.
|
278
|
+
# Corresponds to the JSON property `rootPath`
|
279
|
+
# @return [String]
|
280
|
+
attr_accessor :root_path
|
281
|
+
|
282
|
+
# Required. The table format.
|
283
|
+
# Corresponds to the JSON property `tableFormat`
|
284
|
+
# @return [String]
|
285
|
+
attr_accessor :table_format
|
286
|
+
|
287
|
+
def initialize(**args)
|
288
|
+
update!(**args)
|
289
|
+
end
|
290
|
+
|
291
|
+
# Update properties of this object
|
292
|
+
def update!(**args)
|
293
|
+
@bucket = args[:bucket] if args.key?(:bucket)
|
294
|
+
@connection_name = args[:connection_name] if args.key?(:connection_name)
|
295
|
+
@file_format = args[:file_format] if args.key?(:file_format)
|
296
|
+
@root_path = args[:root_path] if args.key?(:root_path)
|
297
|
+
@table_format = args[:table_format] if args.key?(:table_format)
|
298
|
+
end
|
299
|
+
end
|
300
|
+
|
246
301
|
# The request message for Operations.CancelOperation.
|
247
302
|
class CancelOperationRequest
|
248
303
|
include Google::Apis::Core::Hashable
|
@@ -323,7 +378,7 @@ module Google
|
|
323
378
|
# @return [Hash<String,String>]
|
324
379
|
attr_accessor :labels
|
325
380
|
|
326
|
-
# MySQL database profile.
|
381
|
+
# MySQL database profile.
|
327
382
|
# Corresponds to the JSON property `mysqlProfile`
|
328
383
|
# @return [Google::Apis::DatastreamV1::MysqlProfile]
|
329
384
|
attr_accessor :mysql_profile
|
@@ -333,7 +388,7 @@ module Google
|
|
333
388
|
# @return [String]
|
334
389
|
attr_accessor :name
|
335
390
|
|
336
|
-
# Oracle database profile.
|
391
|
+
# Oracle database profile.
|
337
392
|
# Corresponds to the JSON property `oracleProfile`
|
338
393
|
# @return [Google::Apis::DatastreamV1::OracleProfile]
|
339
394
|
attr_accessor :oracle_profile
|
@@ -348,7 +403,24 @@ module Google
|
|
348
403
|
# @return [Google::Apis::DatastreamV1::PrivateConnectivity]
|
349
404
|
attr_accessor :private_connectivity
|
350
405
|
|
351
|
-
#
|
406
|
+
# Salesforce profile
|
407
|
+
# Corresponds to the JSON property `salesforceProfile`
|
408
|
+
# @return [Google::Apis::DatastreamV1::SalesforceProfile]
|
409
|
+
attr_accessor :salesforce_profile
|
410
|
+
|
411
|
+
# Output only. Reserved for future use.
|
412
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
413
|
+
# @return [Boolean]
|
414
|
+
attr_accessor :satisfies_pzi
|
415
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
416
|
+
|
417
|
+
# Output only. Reserved for future use.
|
418
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
419
|
+
# @return [Boolean]
|
420
|
+
attr_accessor :satisfies_pzs
|
421
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
422
|
+
|
423
|
+
# SQLServer database profile.
|
352
424
|
# Corresponds to the JSON property `sqlServerProfile`
|
353
425
|
# @return [Google::Apis::DatastreamV1::SqlServerProfile]
|
354
426
|
attr_accessor :sql_server_profile
|
@@ -382,6 +454,9 @@ module Google
|
|
382
454
|
@oracle_profile = args[:oracle_profile] if args.key?(:oracle_profile)
|
383
455
|
@postgresql_profile = args[:postgresql_profile] if args.key?(:postgresql_profile)
|
384
456
|
@private_connectivity = args[:private_connectivity] if args.key?(:private_connectivity)
|
457
|
+
@salesforce_profile = args[:salesforce_profile] if args.key?(:salesforce_profile)
|
458
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
459
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
385
460
|
@sql_server_profile = args[:sql_server_profile] if args.key?(:sql_server_profile)
|
386
461
|
@static_service_ip_connectivity = args[:static_service_ip_connectivity] if args.key?(:static_service_ip_connectivity)
|
387
462
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -1239,6 +1314,25 @@ module Google
|
|
1239
1314
|
end
|
1240
1315
|
end
|
1241
1316
|
|
1317
|
+
# MySQL GTID position
|
1318
|
+
class MysqlGtidPosition
|
1319
|
+
include Google::Apis::Core::Hashable
|
1320
|
+
|
1321
|
+
# Required. The gtid set to start replication from.
|
1322
|
+
# Corresponds to the JSON property `gtidSet`
|
1323
|
+
# @return [String]
|
1324
|
+
attr_accessor :gtid_set
|
1325
|
+
|
1326
|
+
def initialize(**args)
|
1327
|
+
update!(**args)
|
1328
|
+
end
|
1329
|
+
|
1330
|
+
# Update properties of this object
|
1331
|
+
def update!(**args)
|
1332
|
+
@gtid_set = args[:gtid_set] if args.key?(:gtid_set)
|
1333
|
+
end
|
1334
|
+
end
|
1335
|
+
|
1242
1336
|
# MySQL log position
|
1243
1337
|
class MysqlLogPosition
|
1244
1338
|
include Google::Apis::Core::Hashable
|
@@ -1289,7 +1383,7 @@ module Google
|
|
1289
1383
|
end
|
1290
1384
|
end
|
1291
1385
|
|
1292
|
-
# MySQL database profile.
|
1386
|
+
# MySQL database profile.
|
1293
1387
|
class MysqlProfile
|
1294
1388
|
include Google::Apis::Core::Hashable
|
1295
1389
|
|
@@ -1419,8 +1513,8 @@ module Google
|
|
1419
1513
|
attr_accessor :ca_certificate_set
|
1420
1514
|
alias_method :ca_certificate_set?, :ca_certificate_set
|
1421
1515
|
|
1422
|
-
# Input only. PEM-encoded certificate that will be used by the replica
|
1423
|
-
# authenticate against the source database server. If this field is used then
|
1516
|
+
# Optional. Input only. PEM-encoded certificate that will be used by the replica
|
1517
|
+
# to authenticate against the source database server. If this field is used then
|
1424
1518
|
# the 'client_key' and the 'ca_certificate' fields are mandatory.
|
1425
1519
|
# Corresponds to the JSON property `clientCertificate`
|
1426
1520
|
# @return [String]
|
@@ -1432,9 +1526,10 @@ module Google
|
|
1432
1526
|
attr_accessor :client_certificate_set
|
1433
1527
|
alias_method :client_certificate_set?, :client_certificate_set
|
1434
1528
|
|
1435
|
-
# Input only. PEM-encoded private key associated with the Client
|
1436
|
-
# this field is used then the 'client_certificate' and the '
|
1437
|
-
# fields are mandatory.
|
1529
|
+
# Optional. Input only. PEM-encoded private key associated with the Client
|
1530
|
+
# Certificate. If this field is used then the 'client_certificate' and the '
|
1531
|
+
# ca_certificate' fields are mandatory. Mutually exclusive with the `
|
1532
|
+
# secret_manager_stored_client_key` field.
|
1438
1533
|
# Corresponds to the JSON property `clientKey`
|
1439
1534
|
# @return [String]
|
1440
1535
|
attr_accessor :client_key
|
@@ -1500,6 +1595,39 @@ module Google
|
|
1500
1595
|
end
|
1501
1596
|
end
|
1502
1597
|
|
1598
|
+
# OAuth2 Client Credentials.
|
1599
|
+
class Oauth2ClientCredentials
|
1600
|
+
include Google::Apis::Core::Hashable
|
1601
|
+
|
1602
|
+
# Required. Client ID for Salesforce OAuth2 Client Credentials.
|
1603
|
+
# Corresponds to the JSON property `clientId`
|
1604
|
+
# @return [String]
|
1605
|
+
attr_accessor :client_id
|
1606
|
+
|
1607
|
+
# Optional. Client secret for Salesforce OAuth2 Client Credentials. Mutually
|
1608
|
+
# exclusive with the `secret_manager_stored_client_secret` field.
|
1609
|
+
# Corresponds to the JSON property `clientSecret`
|
1610
|
+
# @return [String]
|
1611
|
+
attr_accessor :client_secret
|
1612
|
+
|
1613
|
+
# Optional. A reference to a Secret Manager resource name storing the Salesforce
|
1614
|
+
# OAuth2 client_secret. Mutually exclusive with the `client_secret` field.
|
1615
|
+
# Corresponds to the JSON property `secretManagerStoredClientSecret`
|
1616
|
+
# @return [String]
|
1617
|
+
attr_accessor :secret_manager_stored_client_secret
|
1618
|
+
|
1619
|
+
def initialize(**args)
|
1620
|
+
update!(**args)
|
1621
|
+
end
|
1622
|
+
|
1623
|
+
# Update properties of this object
|
1624
|
+
def update!(**args)
|
1625
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
1626
|
+
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
1627
|
+
@secret_manager_stored_client_secret = args[:secret_manager_stored_client_secret] if args.key?(:secret_manager_stored_client_secret)
|
1628
|
+
end
|
1629
|
+
end
|
1630
|
+
|
1503
1631
|
# This resource represents a long-running operation that is the result of a
|
1504
1632
|
# network API call.
|
1505
1633
|
class Operation
|
@@ -1627,7 +1755,7 @@ module Google
|
|
1627
1755
|
end
|
1628
1756
|
end
|
1629
1757
|
|
1630
|
-
# Configuration for Oracle Automatic Storage Management (ASM) connection.
|
1758
|
+
# Configuration for Oracle Automatic Storage Management (ASM) connection.
|
1631
1759
|
class OracleAsmConfig
|
1632
1760
|
include Google::Apis::Core::Hashable
|
1633
1761
|
|
@@ -1789,7 +1917,7 @@ module Google
|
|
1789
1917
|
end
|
1790
1918
|
end
|
1791
1919
|
|
1792
|
-
# Oracle database profile.
|
1920
|
+
# Oracle database profile.
|
1793
1921
|
class OracleProfile
|
1794
1922
|
include Google::Apis::Core::Hashable
|
1795
1923
|
|
@@ -1808,7 +1936,7 @@ module Google
|
|
1808
1936
|
# @return [String]
|
1809
1937
|
attr_accessor :hostname
|
1810
1938
|
|
1811
|
-
# Configuration for Oracle Automatic Storage Management (ASM) connection.
|
1939
|
+
# Configuration for Oracle Automatic Storage Management (ASM) connection.
|
1812
1940
|
# Corresponds to the JSON property `oracleAsmConfig`
|
1813
1941
|
# @return [Google::Apis::DatastreamV1::OracleAsmConfig]
|
1814
1942
|
attr_accessor :oracle_asm_config
|
@@ -2352,6 +2480,18 @@ module Google
|
|
2352
2480
|
# @return [String]
|
2353
2481
|
attr_accessor :name
|
2354
2482
|
|
2483
|
+
# Output only. Reserved for future use.
|
2484
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
2485
|
+
# @return [Boolean]
|
2486
|
+
attr_accessor :satisfies_pzi
|
2487
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
2488
|
+
|
2489
|
+
# Output only. Reserved for future use.
|
2490
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
2491
|
+
# @return [Boolean]
|
2492
|
+
attr_accessor :satisfies_pzs
|
2493
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
2494
|
+
|
2355
2495
|
# Output only. The state of the Private Connection.
|
2356
2496
|
# Corresponds to the JSON property `state`
|
2357
2497
|
# @return [String]
|
@@ -2379,6 +2519,8 @@ module Google
|
|
2379
2519
|
@error = args[:error] if args.key?(:error)
|
2380
2520
|
@labels = args[:labels] if args.key?(:labels)
|
2381
2521
|
@name = args[:name] if args.key?(:name)
|
2522
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
2523
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
2382
2524
|
@state = args[:state] if args.key?(:state)
|
2383
2525
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2384
2526
|
@vpc_peering_config = args[:vpc_peering_config] if args.key?(:vpc_peering_config)
|
@@ -2487,6 +2629,166 @@ module Google
|
|
2487
2629
|
end
|
2488
2630
|
end
|
2489
2631
|
|
2632
|
+
# Salesforce field.
|
2633
|
+
class SalesforceField
|
2634
|
+
include Google::Apis::Core::Hashable
|
2635
|
+
|
2636
|
+
# The data type.
|
2637
|
+
# Corresponds to the JSON property `dataType`
|
2638
|
+
# @return [String]
|
2639
|
+
attr_accessor :data_type
|
2640
|
+
|
2641
|
+
# Field name.
|
2642
|
+
# Corresponds to the JSON property `name`
|
2643
|
+
# @return [String]
|
2644
|
+
attr_accessor :name
|
2645
|
+
|
2646
|
+
# Indicates whether the field can accept nil values.
|
2647
|
+
# Corresponds to the JSON property `nillable`
|
2648
|
+
# @return [Boolean]
|
2649
|
+
attr_accessor :nillable
|
2650
|
+
alias_method :nillable?, :nillable
|
2651
|
+
|
2652
|
+
def initialize(**args)
|
2653
|
+
update!(**args)
|
2654
|
+
end
|
2655
|
+
|
2656
|
+
# Update properties of this object
|
2657
|
+
def update!(**args)
|
2658
|
+
@data_type = args[:data_type] if args.key?(:data_type)
|
2659
|
+
@name = args[:name] if args.key?(:name)
|
2660
|
+
@nillable = args[:nillable] if args.key?(:nillable)
|
2661
|
+
end
|
2662
|
+
end
|
2663
|
+
|
2664
|
+
# Salesforce object.
|
2665
|
+
class SalesforceObject
|
2666
|
+
include Google::Apis::Core::Hashable
|
2667
|
+
|
2668
|
+
# Salesforce fields. When unspecified as part of include objects, includes
|
2669
|
+
# everything, when unspecified as part of exclude objects, excludes nothing.
|
2670
|
+
# Corresponds to the JSON property `fields`
|
2671
|
+
# @return [Array<Google::Apis::DatastreamV1::SalesforceField>]
|
2672
|
+
attr_accessor :fields
|
2673
|
+
|
2674
|
+
# Object name.
|
2675
|
+
# Corresponds to the JSON property `objectName`
|
2676
|
+
# @return [String]
|
2677
|
+
attr_accessor :object_name
|
2678
|
+
|
2679
|
+
def initialize(**args)
|
2680
|
+
update!(**args)
|
2681
|
+
end
|
2682
|
+
|
2683
|
+
# Update properties of this object
|
2684
|
+
def update!(**args)
|
2685
|
+
@fields = args[:fields] if args.key?(:fields)
|
2686
|
+
@object_name = args[:object_name] if args.key?(:object_name)
|
2687
|
+
end
|
2688
|
+
end
|
2689
|
+
|
2690
|
+
# Salesforce data source object identifier.
|
2691
|
+
class SalesforceObjectIdentifier
|
2692
|
+
include Google::Apis::Core::Hashable
|
2693
|
+
|
2694
|
+
# Required. The object name.
|
2695
|
+
# Corresponds to the JSON property `objectName`
|
2696
|
+
# @return [String]
|
2697
|
+
attr_accessor :object_name
|
2698
|
+
|
2699
|
+
def initialize(**args)
|
2700
|
+
update!(**args)
|
2701
|
+
end
|
2702
|
+
|
2703
|
+
# Update properties of this object
|
2704
|
+
def update!(**args)
|
2705
|
+
@object_name = args[:object_name] if args.key?(:object_name)
|
2706
|
+
end
|
2707
|
+
end
|
2708
|
+
|
2709
|
+
# Salesforce organization structure.
|
2710
|
+
class SalesforceOrg
|
2711
|
+
include Google::Apis::Core::Hashable
|
2712
|
+
|
2713
|
+
# Salesforce objects in the database server.
|
2714
|
+
# Corresponds to the JSON property `objects`
|
2715
|
+
# @return [Array<Google::Apis::DatastreamV1::SalesforceObject>]
|
2716
|
+
attr_accessor :objects
|
2717
|
+
|
2718
|
+
def initialize(**args)
|
2719
|
+
update!(**args)
|
2720
|
+
end
|
2721
|
+
|
2722
|
+
# Update properties of this object
|
2723
|
+
def update!(**args)
|
2724
|
+
@objects = args[:objects] if args.key?(:objects)
|
2725
|
+
end
|
2726
|
+
end
|
2727
|
+
|
2728
|
+
# Salesforce profile
|
2729
|
+
class SalesforceProfile
|
2730
|
+
include Google::Apis::Core::Hashable
|
2731
|
+
|
2732
|
+
# Required. Domain endpoint for the Salesforce connection.
|
2733
|
+
# Corresponds to the JSON property `domain`
|
2734
|
+
# @return [String]
|
2735
|
+
attr_accessor :domain
|
2736
|
+
|
2737
|
+
# OAuth2 Client Credentials.
|
2738
|
+
# Corresponds to the JSON property `oauth2ClientCredentials`
|
2739
|
+
# @return [Google::Apis::DatastreamV1::Oauth2ClientCredentials]
|
2740
|
+
attr_accessor :oauth2_client_credentials
|
2741
|
+
|
2742
|
+
# Username-password credentials.
|
2743
|
+
# Corresponds to the JSON property `userCredentials`
|
2744
|
+
# @return [Google::Apis::DatastreamV1::UserCredentials]
|
2745
|
+
attr_accessor :user_credentials
|
2746
|
+
|
2747
|
+
def initialize(**args)
|
2748
|
+
update!(**args)
|
2749
|
+
end
|
2750
|
+
|
2751
|
+
# Update properties of this object
|
2752
|
+
def update!(**args)
|
2753
|
+
@domain = args[:domain] if args.key?(:domain)
|
2754
|
+
@oauth2_client_credentials = args[:oauth2_client_credentials] if args.key?(:oauth2_client_credentials)
|
2755
|
+
@user_credentials = args[:user_credentials] if args.key?(:user_credentials)
|
2756
|
+
end
|
2757
|
+
end
|
2758
|
+
|
2759
|
+
# Salesforce source configuration
|
2760
|
+
class SalesforceSourceConfig
|
2761
|
+
include Google::Apis::Core::Hashable
|
2762
|
+
|
2763
|
+
# Salesforce organization structure.
|
2764
|
+
# Corresponds to the JSON property `excludeObjects`
|
2765
|
+
# @return [Google::Apis::DatastreamV1::SalesforceOrg]
|
2766
|
+
attr_accessor :exclude_objects
|
2767
|
+
|
2768
|
+
# Salesforce organization structure.
|
2769
|
+
# Corresponds to the JSON property `includeObjects`
|
2770
|
+
# @return [Google::Apis::DatastreamV1::SalesforceOrg]
|
2771
|
+
attr_accessor :include_objects
|
2772
|
+
|
2773
|
+
# Required. Salesforce objects polling interval. The interval at which new
|
2774
|
+
# changes will be polled for each object. The duration must be between 5 minutes
|
2775
|
+
# and 24 hours.
|
2776
|
+
# Corresponds to the JSON property `pollingInterval`
|
2777
|
+
# @return [String]
|
2778
|
+
attr_accessor :polling_interval
|
2779
|
+
|
2780
|
+
def initialize(**args)
|
2781
|
+
update!(**args)
|
2782
|
+
end
|
2783
|
+
|
2784
|
+
# Update properties of this object
|
2785
|
+
def update!(**args)
|
2786
|
+
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
|
2787
|
+
@include_objects = args[:include_objects] if args.key?(:include_objects)
|
2788
|
+
@polling_interval = args[:polling_interval] if args.key?(:polling_interval)
|
2789
|
+
end
|
2790
|
+
end
|
2791
|
+
|
2490
2792
|
# Message represents the option where Datastream will enforce the encryption and
|
2491
2793
|
# authenticate the server identity as well as the client identity.
|
2492
2794
|
# ca_certificate, client_certificate and client_key must be set if user selects
|
@@ -2508,10 +2810,11 @@ module Google
|
|
2508
2810
|
# @return [String]
|
2509
2811
|
attr_accessor :client_certificate
|
2510
2812
|
|
2511
|
-
#
|
2813
|
+
# Optional. Input only. PEM-encoded private key associated with the client
|
2512
2814
|
# certificate. This value will be used during the SSL/TLS handshake, allowing
|
2513
2815
|
# the PostgreSQL server to authenticate the client's identity, i.e. identity of
|
2514
|
-
# the Datastream.
|
2816
|
+
# the Datastream. Mutually exclusive with the `secret_manager_stored_client_key`
|
2817
|
+
# field.
|
2515
2818
|
# Corresponds to the JSON property `clientKey`
|
2516
2819
|
# @return [String]
|
2517
2820
|
attr_accessor :client_key
|
@@ -2588,7 +2891,12 @@ module Google
|
|
2588
2891
|
# @return [Google::Apis::DatastreamV1::PostgresqlSourceConfig]
|
2589
2892
|
attr_accessor :postgresql_source_config
|
2590
2893
|
|
2591
|
-
#
|
2894
|
+
# Salesforce source configuration
|
2895
|
+
# Corresponds to the JSON property `salesforceSourceConfig`
|
2896
|
+
# @return [Google::Apis::DatastreamV1::SalesforceSourceConfig]
|
2897
|
+
attr_accessor :salesforce_source_config
|
2898
|
+
|
2899
|
+
# Required. Source connection profile resource. Format: `projects/`project`/
|
2592
2900
|
# locations/`location`/connectionProfiles/`name``
|
2593
2901
|
# Corresponds to the JSON property `sourceConnectionProfile`
|
2594
2902
|
# @return [String]
|
@@ -2608,6 +2916,7 @@ module Google
|
|
2608
2916
|
@mysql_source_config = args[:mysql_source_config] if args.key?(:mysql_source_config)
|
2609
2917
|
@oracle_source_config = args[:oracle_source_config] if args.key?(:oracle_source_config)
|
2610
2918
|
@postgresql_source_config = args[:postgresql_source_config] if args.key?(:postgresql_source_config)
|
2919
|
+
@salesforce_source_config = args[:salesforce_source_config] if args.key?(:salesforce_source_config)
|
2611
2920
|
@source_connection_profile = args[:source_connection_profile] if args.key?(:source_connection_profile)
|
2612
2921
|
@sql_server_source_config = args[:sql_server_source_config] if args.key?(:sql_server_source_config)
|
2613
2922
|
end
|
@@ -2652,6 +2961,11 @@ module Google
|
|
2652
2961
|
# @return [Google::Apis::DatastreamV1::PostgresqlObjectIdentifier]
|
2653
2962
|
attr_accessor :postgresql_identifier
|
2654
2963
|
|
2964
|
+
# Salesforce data source object identifier.
|
2965
|
+
# Corresponds to the JSON property `salesforceIdentifier`
|
2966
|
+
# @return [Google::Apis::DatastreamV1::SalesforceObjectIdentifier]
|
2967
|
+
attr_accessor :salesforce_identifier
|
2968
|
+
|
2655
2969
|
# SQLServer data source object identifier.
|
2656
2970
|
# Corresponds to the JSON property `sqlServerIdentifier`
|
2657
2971
|
# @return [Google::Apis::DatastreamV1::SqlServerObjectIdentifier]
|
@@ -2666,6 +2980,7 @@ module Google
|
|
2666
2980
|
@mysql_identifier = args[:mysql_identifier] if args.key?(:mysql_identifier)
|
2667
2981
|
@oracle_identifier = args[:oracle_identifier] if args.key?(:oracle_identifier)
|
2668
2982
|
@postgresql_identifier = args[:postgresql_identifier] if args.key?(:postgresql_identifier)
|
2983
|
+
@salesforce_identifier = args[:salesforce_identifier] if args.key?(:salesforce_identifier)
|
2669
2984
|
@sql_server_identifier = args[:sql_server_identifier] if args.key?(:sql_server_identifier)
|
2670
2985
|
end
|
2671
2986
|
end
|
@@ -2674,6 +2989,11 @@ module Google
|
|
2674
2989
|
class SpecificStartPosition
|
2675
2990
|
include Google::Apis::Core::Hashable
|
2676
2991
|
|
2992
|
+
# MySQL GTID position
|
2993
|
+
# Corresponds to the JSON property `mysqlGtidPosition`
|
2994
|
+
# @return [Google::Apis::DatastreamV1::MysqlGtidPosition]
|
2995
|
+
attr_accessor :mysql_gtid_position
|
2996
|
+
|
2677
2997
|
# MySQL log position
|
2678
2998
|
# Corresponds to the JSON property `mysqlLogPosition`
|
2679
2999
|
# @return [Google::Apis::DatastreamV1::MysqlLogPosition]
|
@@ -2695,6 +3015,7 @@ module Google
|
|
2695
3015
|
|
2696
3016
|
# Update properties of this object
|
2697
3017
|
def update!(**args)
|
3018
|
+
@mysql_gtid_position = args[:mysql_gtid_position] if args.key?(:mysql_gtid_position)
|
2698
3019
|
@mysql_log_position = args[:mysql_log_position] if args.key?(:mysql_log_position)
|
2699
3020
|
@oracle_scn_position = args[:oracle_scn_position] if args.key?(:oracle_scn_position)
|
2700
3021
|
@sql_server_lsn_position = args[:sql_server_lsn_position] if args.key?(:sql_server_lsn_position)
|
@@ -2821,7 +3142,7 @@ module Google
|
|
2821
3142
|
end
|
2822
3143
|
end
|
2823
3144
|
|
2824
|
-
# SQLServer database profile.
|
3145
|
+
# SQLServer database profile.
|
2825
3146
|
class SqlServerProfile
|
2826
3147
|
include Google::Apis::Core::Hashable
|
2827
3148
|
|
@@ -3174,6 +3495,18 @@ module Google
|
|
3174
3495
|
# @return [String]
|
3175
3496
|
attr_accessor :name
|
3176
3497
|
|
3498
|
+
# Output only. Reserved for future use.
|
3499
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
3500
|
+
# @return [Boolean]
|
3501
|
+
attr_accessor :satisfies_pzi
|
3502
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
3503
|
+
|
3504
|
+
# Output only. Reserved for future use.
|
3505
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
3506
|
+
# @return [Boolean]
|
3507
|
+
attr_accessor :satisfies_pzs
|
3508
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
3509
|
+
|
3177
3510
|
# The configuration of the stream source.
|
3178
3511
|
# Corresponds to the JSON property `sourceConfig`
|
3179
3512
|
# @return [Google::Apis::DatastreamV1::SourceConfig]
|
@@ -3205,6 +3538,8 @@ module Google
|
|
3205
3538
|
@labels = args[:labels] if args.key?(:labels)
|
3206
3539
|
@last_recovery_time = args[:last_recovery_time] if args.key?(:last_recovery_time)
|
3207
3540
|
@name = args[:name] if args.key?(:name)
|
3541
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
3542
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
3208
3543
|
@source_config = args[:source_config] if args.key?(:source_config)
|
3209
3544
|
@state = args[:state] if args.key?(:state)
|
3210
3545
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -3279,6 +3614,54 @@ module Google
|
|
3279
3614
|
end
|
3280
3615
|
end
|
3281
3616
|
|
3617
|
+
# Username-password credentials.
|
3618
|
+
class UserCredentials
|
3619
|
+
include Google::Apis::Core::Hashable
|
3620
|
+
|
3621
|
+
# Optional. Password for the Salesforce connection. Mutually exclusive with the `
|
3622
|
+
# secret_manager_stored_password` field.
|
3623
|
+
# Corresponds to the JSON property `password`
|
3624
|
+
# @return [String]
|
3625
|
+
attr_accessor :password
|
3626
|
+
|
3627
|
+
# Optional. A reference to a Secret Manager resource name storing the Salesforce
|
3628
|
+
# connection's password. Mutually exclusive with the `password` field.
|
3629
|
+
# Corresponds to the JSON property `secretManagerStoredPassword`
|
3630
|
+
# @return [String]
|
3631
|
+
attr_accessor :secret_manager_stored_password
|
3632
|
+
|
3633
|
+
# Optional. A reference to a Secret Manager resource name storing the Salesforce
|
3634
|
+
# connection's security token. Mutually exclusive with the `security_token`
|
3635
|
+
# field.
|
3636
|
+
# Corresponds to the JSON property `secretManagerStoredSecurityToken`
|
3637
|
+
# @return [String]
|
3638
|
+
attr_accessor :secret_manager_stored_security_token
|
3639
|
+
|
3640
|
+
# Optional. Security token for the Salesforce connection. Mutually exclusive
|
3641
|
+
# with the `secret_manager_stored_security_token` field.
|
3642
|
+
# Corresponds to the JSON property `securityToken`
|
3643
|
+
# @return [String]
|
3644
|
+
attr_accessor :security_token
|
3645
|
+
|
3646
|
+
# Required. Username for the Salesforce connection.
|
3647
|
+
# Corresponds to the JSON property `username`
|
3648
|
+
# @return [String]
|
3649
|
+
attr_accessor :username
|
3650
|
+
|
3651
|
+
def initialize(**args)
|
3652
|
+
update!(**args)
|
3653
|
+
end
|
3654
|
+
|
3655
|
+
# Update properties of this object
|
3656
|
+
def update!(**args)
|
3657
|
+
@password = args[:password] if args.key?(:password)
|
3658
|
+
@secret_manager_stored_password = args[:secret_manager_stored_password] if args.key?(:secret_manager_stored_password)
|
3659
|
+
@secret_manager_stored_security_token = args[:secret_manager_stored_security_token] if args.key?(:secret_manager_stored_security_token)
|
3660
|
+
@security_token = args[:security_token] if args.key?(:security_token)
|
3661
|
+
@username = args[:username] if args.key?(:username)
|
3662
|
+
end
|
3663
|
+
end
|
3664
|
+
|
3282
3665
|
# A validation to perform on a stream.
|
3283
3666
|
class Validation
|
3284
3667
|
include Google::Apis::Core::Hashable
|
@@ -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.45.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250219"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -76,6 +76,12 @@ module Google
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
77
77
|
end
|
78
78
|
|
79
|
+
class BlmtConfig
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
79
85
|
class CancelOperationRequest
|
80
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
87
|
|
@@ -262,6 +268,12 @@ module Google
|
|
262
268
|
include Google::Apis::Core::JsonObjectSupport
|
263
269
|
end
|
264
270
|
|
271
|
+
class MysqlGtidPosition
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
265
277
|
class MysqlLogPosition
|
266
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
279
|
|
@@ -310,6 +322,12 @@ module Google
|
|
310
322
|
include Google::Apis::Core::JsonObjectSupport
|
311
323
|
end
|
312
324
|
|
325
|
+
class Oauth2ClientCredentials
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
313
331
|
class Operation
|
314
332
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
333
|
|
@@ -460,6 +478,42 @@ module Google
|
|
460
478
|
include Google::Apis::Core::JsonObjectSupport
|
461
479
|
end
|
462
480
|
|
481
|
+
class SalesforceField
|
482
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
|
+
|
484
|
+
include Google::Apis::Core::JsonObjectSupport
|
485
|
+
end
|
486
|
+
|
487
|
+
class SalesforceObject
|
488
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
|
+
|
490
|
+
include Google::Apis::Core::JsonObjectSupport
|
491
|
+
end
|
492
|
+
|
493
|
+
class SalesforceObjectIdentifier
|
494
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
495
|
+
|
496
|
+
include Google::Apis::Core::JsonObjectSupport
|
497
|
+
end
|
498
|
+
|
499
|
+
class SalesforceOrg
|
500
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
501
|
+
|
502
|
+
include Google::Apis::Core::JsonObjectSupport
|
503
|
+
end
|
504
|
+
|
505
|
+
class SalesforceProfile
|
506
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
507
|
+
|
508
|
+
include Google::Apis::Core::JsonObjectSupport
|
509
|
+
end
|
510
|
+
|
511
|
+
class SalesforceSourceConfig
|
512
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
513
|
+
|
514
|
+
include Google::Apis::Core::JsonObjectSupport
|
515
|
+
end
|
516
|
+
|
463
517
|
class ServerAndClientVerification
|
464
518
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
519
|
|
@@ -616,6 +670,12 @@ module Google
|
|
616
670
|
include Google::Apis::Core::JsonObjectSupport
|
617
671
|
end
|
618
672
|
|
673
|
+
class UserCredentials
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
675
|
+
|
676
|
+
include Google::Apis::Core::JsonObjectSupport
|
677
|
+
end
|
678
|
+
|
619
679
|
class Validation
|
620
680
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
621
681
|
|
@@ -661,6 +721,8 @@ module Google
|
|
661
721
|
|
662
722
|
property :postgresql_excluded_objects, as: 'postgresqlExcludedObjects', class: Google::Apis::DatastreamV1::PostgresqlRdbms, decorator: Google::Apis::DatastreamV1::PostgresqlRdbms::Representation
|
663
723
|
|
724
|
+
property :salesforce_excluded_objects, as: 'salesforceExcludedObjects', class: Google::Apis::DatastreamV1::SalesforceOrg, decorator: Google::Apis::DatastreamV1::SalesforceOrg::Representation
|
725
|
+
|
664
726
|
property :sql_server_excluded_objects, as: 'sqlServerExcludedObjects', class: Google::Apis::DatastreamV1::SqlServerRdbms, decorator: Google::Apis::DatastreamV1::SqlServerRdbms::Representation
|
665
727
|
|
666
728
|
end
|
@@ -689,6 +751,8 @@ module Google
|
|
689
751
|
class Representation < Google::Apis::Core::JsonRepresentation
|
690
752
|
property :append_only, as: 'appendOnly', class: Google::Apis::DatastreamV1::AppendOnly, decorator: Google::Apis::DatastreamV1::AppendOnly::Representation
|
691
753
|
|
754
|
+
property :blmt_config, as: 'blmtConfig', class: Google::Apis::DatastreamV1::BlmtConfig, decorator: Google::Apis::DatastreamV1::BlmtConfig::Representation
|
755
|
+
|
692
756
|
property :data_freshness, as: 'dataFreshness'
|
693
757
|
property :merge, as: 'merge', class: Google::Apis::DatastreamV1::Merge, decorator: Google::Apis::DatastreamV1::Merge::Representation
|
694
758
|
|
@@ -721,6 +785,17 @@ module Google
|
|
721
785
|
end
|
722
786
|
end
|
723
787
|
|
788
|
+
class BlmtConfig
|
789
|
+
# @private
|
790
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
791
|
+
property :bucket, as: 'bucket'
|
792
|
+
property :connection_name, as: 'connectionName'
|
793
|
+
property :file_format, as: 'fileFormat'
|
794
|
+
property :root_path, as: 'rootPath'
|
795
|
+
property :table_format, as: 'tableFormat'
|
796
|
+
end
|
797
|
+
end
|
798
|
+
|
724
799
|
class CancelOperationRequest
|
725
800
|
# @private
|
726
801
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -760,6 +835,10 @@ module Google
|
|
760
835
|
|
761
836
|
property :private_connectivity, as: 'privateConnectivity', class: Google::Apis::DatastreamV1::PrivateConnectivity, decorator: Google::Apis::DatastreamV1::PrivateConnectivity::Representation
|
762
837
|
|
838
|
+
property :salesforce_profile, as: 'salesforceProfile', class: Google::Apis::DatastreamV1::SalesforceProfile, decorator: Google::Apis::DatastreamV1::SalesforceProfile::Representation
|
839
|
+
|
840
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
841
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
763
842
|
property :sql_server_profile, as: 'sqlServerProfile', class: Google::Apis::DatastreamV1::SqlServerProfile, decorator: Google::Apis::DatastreamV1::SqlServerProfile::Representation
|
764
843
|
|
765
844
|
property :static_service_ip_connectivity, as: 'staticServiceIpConnectivity', class: Google::Apis::DatastreamV1::StaticServiceIpConnectivity, decorator: Google::Apis::DatastreamV1::StaticServiceIpConnectivity::Representation
|
@@ -1034,6 +1113,13 @@ module Google
|
|
1034
1113
|
end
|
1035
1114
|
end
|
1036
1115
|
|
1116
|
+
class MysqlGtidPosition
|
1117
|
+
# @private
|
1118
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1119
|
+
property :gtid_set, as: 'gtidSet'
|
1120
|
+
end
|
1121
|
+
end
|
1122
|
+
|
1037
1123
|
class MysqlLogPosition
|
1038
1124
|
# @private
|
1039
1125
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1113,6 +1199,15 @@ module Google
|
|
1113
1199
|
end
|
1114
1200
|
end
|
1115
1201
|
|
1202
|
+
class Oauth2ClientCredentials
|
1203
|
+
# @private
|
1204
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1205
|
+
property :client_id, as: 'clientId'
|
1206
|
+
property :client_secret, as: 'clientSecret'
|
1207
|
+
property :secret_manager_stored_client_secret, as: 'secretManagerStoredClientSecret'
|
1208
|
+
end
|
1209
|
+
end
|
1210
|
+
|
1116
1211
|
class Operation
|
1117
1212
|
# @private
|
1118
1213
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1354,6 +1449,8 @@ module Google
|
|
1354
1449
|
|
1355
1450
|
hash :labels, as: 'labels'
|
1356
1451
|
property :name, as: 'name'
|
1452
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
1453
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
1357
1454
|
property :state, as: 'state'
|
1358
1455
|
property :update_time, as: 'updateTime'
|
1359
1456
|
property :vpc_peering_config, as: 'vpcPeeringConfig', class: Google::Apis::DatastreamV1::VpcPeeringConfig, decorator: Google::Apis::DatastreamV1::VpcPeeringConfig::Representation
|
@@ -1390,6 +1487,61 @@ module Google
|
|
1390
1487
|
end
|
1391
1488
|
end
|
1392
1489
|
|
1490
|
+
class SalesforceField
|
1491
|
+
# @private
|
1492
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1493
|
+
property :data_type, as: 'dataType'
|
1494
|
+
property :name, as: 'name'
|
1495
|
+
property :nillable, as: 'nillable'
|
1496
|
+
end
|
1497
|
+
end
|
1498
|
+
|
1499
|
+
class SalesforceObject
|
1500
|
+
# @private
|
1501
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1502
|
+
collection :fields, as: 'fields', class: Google::Apis::DatastreamV1::SalesforceField, decorator: Google::Apis::DatastreamV1::SalesforceField::Representation
|
1503
|
+
|
1504
|
+
property :object_name, as: 'objectName'
|
1505
|
+
end
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
class SalesforceObjectIdentifier
|
1509
|
+
# @private
|
1510
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1511
|
+
property :object_name, as: 'objectName'
|
1512
|
+
end
|
1513
|
+
end
|
1514
|
+
|
1515
|
+
class SalesforceOrg
|
1516
|
+
# @private
|
1517
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1518
|
+
collection :objects, as: 'objects', class: Google::Apis::DatastreamV1::SalesforceObject, decorator: Google::Apis::DatastreamV1::SalesforceObject::Representation
|
1519
|
+
|
1520
|
+
end
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
class SalesforceProfile
|
1524
|
+
# @private
|
1525
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1526
|
+
property :domain, as: 'domain'
|
1527
|
+
property :oauth2_client_credentials, as: 'oauth2ClientCredentials', class: Google::Apis::DatastreamV1::Oauth2ClientCredentials, decorator: Google::Apis::DatastreamV1::Oauth2ClientCredentials::Representation
|
1528
|
+
|
1529
|
+
property :user_credentials, as: 'userCredentials', class: Google::Apis::DatastreamV1::UserCredentials, decorator: Google::Apis::DatastreamV1::UserCredentials::Representation
|
1530
|
+
|
1531
|
+
end
|
1532
|
+
end
|
1533
|
+
|
1534
|
+
class SalesforceSourceConfig
|
1535
|
+
# @private
|
1536
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1537
|
+
property :exclude_objects, as: 'excludeObjects', class: Google::Apis::DatastreamV1::SalesforceOrg, decorator: Google::Apis::DatastreamV1::SalesforceOrg::Representation
|
1538
|
+
|
1539
|
+
property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::SalesforceOrg, decorator: Google::Apis::DatastreamV1::SalesforceOrg::Representation
|
1540
|
+
|
1541
|
+
property :polling_interval, as: 'pollingInterval'
|
1542
|
+
end
|
1543
|
+
end
|
1544
|
+
|
1393
1545
|
class ServerAndClientVerification
|
1394
1546
|
# @private
|
1395
1547
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1422,6 +1574,8 @@ module Google
|
|
1422
1574
|
|
1423
1575
|
property :postgresql_source_config, as: 'postgresqlSourceConfig', class: Google::Apis::DatastreamV1::PostgresqlSourceConfig, decorator: Google::Apis::DatastreamV1::PostgresqlSourceConfig::Representation
|
1424
1576
|
|
1577
|
+
property :salesforce_source_config, as: 'salesforceSourceConfig', class: Google::Apis::DatastreamV1::SalesforceSourceConfig, decorator: Google::Apis::DatastreamV1::SalesforceSourceConfig::Representation
|
1578
|
+
|
1425
1579
|
property :source_connection_profile, as: 'sourceConnectionProfile'
|
1426
1580
|
property :sql_server_source_config, as: 'sqlServerSourceConfig', class: Google::Apis::DatastreamV1::SqlServerSourceConfig, decorator: Google::Apis::DatastreamV1::SqlServerSourceConfig::Representation
|
1427
1581
|
|
@@ -1445,6 +1599,8 @@ module Google
|
|
1445
1599
|
|
1446
1600
|
property :postgresql_identifier, as: 'postgresqlIdentifier', class: Google::Apis::DatastreamV1::PostgresqlObjectIdentifier, decorator: Google::Apis::DatastreamV1::PostgresqlObjectIdentifier::Representation
|
1447
1601
|
|
1602
|
+
property :salesforce_identifier, as: 'salesforceIdentifier', class: Google::Apis::DatastreamV1::SalesforceObjectIdentifier, decorator: Google::Apis::DatastreamV1::SalesforceObjectIdentifier::Representation
|
1603
|
+
|
1448
1604
|
property :sql_server_identifier, as: 'sqlServerIdentifier', class: Google::Apis::DatastreamV1::SqlServerObjectIdentifier, decorator: Google::Apis::DatastreamV1::SqlServerObjectIdentifier::Representation
|
1449
1605
|
|
1450
1606
|
end
|
@@ -1453,6 +1609,8 @@ module Google
|
|
1453
1609
|
class SpecificStartPosition
|
1454
1610
|
# @private
|
1455
1611
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1612
|
+
property :mysql_gtid_position, as: 'mysqlGtidPosition', class: Google::Apis::DatastreamV1::MysqlGtidPosition, decorator: Google::Apis::DatastreamV1::MysqlGtidPosition::Representation
|
1613
|
+
|
1456
1614
|
property :mysql_log_position, as: 'mysqlLogPosition', class: Google::Apis::DatastreamV1::MysqlLogPosition, decorator: Google::Apis::DatastreamV1::MysqlLogPosition::Representation
|
1457
1615
|
|
1458
1616
|
property :oracle_scn_position, as: 'oracleScnPosition', class: Google::Apis::DatastreamV1::OracleScnPosition, decorator: Google::Apis::DatastreamV1::OracleScnPosition::Representation
|
@@ -1616,6 +1774,8 @@ module Google
|
|
1616
1774
|
hash :labels, as: 'labels'
|
1617
1775
|
property :last_recovery_time, as: 'lastRecoveryTime'
|
1618
1776
|
property :name, as: 'name'
|
1777
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
1778
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
1619
1779
|
property :source_config, as: 'sourceConfig', class: Google::Apis::DatastreamV1::SourceConfig, decorator: Google::Apis::DatastreamV1::SourceConfig::Representation
|
1620
1780
|
|
1621
1781
|
property :state, as: 'state'
|
@@ -1645,6 +1805,17 @@ module Google
|
|
1645
1805
|
end
|
1646
1806
|
end
|
1647
1807
|
|
1808
|
+
class UserCredentials
|
1809
|
+
# @private
|
1810
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1811
|
+
property :password, as: 'password'
|
1812
|
+
property :secret_manager_stored_password, as: 'secretManagerStoredPassword'
|
1813
|
+
property :secret_manager_stored_security_token, as: 'secretManagerStoredSecurityToken'
|
1814
|
+
property :security_token, as: 'securityToken'
|
1815
|
+
property :username, as: 'username'
|
1816
|
+
end
|
1817
|
+
end
|
1818
|
+
|
1648
1819
|
class Validation
|
1649
1820
|
# @private
|
1650
1821
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.45.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.45.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.5
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Datastream API V1
|
79
79
|
test_files: []
|