google-apis-datastream_v1 0.40.0 → 0.42.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c776c91bf6168a877bc6ff03afbed71c00d93e895edb218170b54c35ff17b309
|
4
|
+
data.tar.gz: 380cd469f10524b72d726074ba5f44a9e12f917f9452a68d258ed24856f9d8ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f570537f331697e5c6c7a97b5e3fecebb085ea2d01af065ff15a8ec2773e307263902c8acad53b905e1e2db2ccc73bcb8d4cf6f5e4a2f6bd1a2a0a9681215291
|
7
|
+
data.tar.gz: 18b2fd0d002ca0fe17cc3751d37b239f91e607f6d2df1f2010c24c17169c57d5f553a8a6c85d5148ffa763459d62e6936ab8e109ec7a2cde0eb1a21352a8d01c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-datastream_v1
|
2
2
|
|
3
|
+
### v0.42.0 (2024-11-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241028
|
6
|
+
|
7
|
+
### v0.41.0 (2024-10-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240930
|
10
|
+
|
3
11
|
### v0.40.0 (2024-09-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240904
|
@@ -205,6 +205,44 @@ module Google
|
|
205
205
|
end
|
206
206
|
end
|
207
207
|
|
208
|
+
# Configuration to use Binary Log Parser CDC technique.
|
209
|
+
class BinaryLogParser
|
210
|
+
include Google::Apis::Core::Hashable
|
211
|
+
|
212
|
+
# Configuration to specify the Oracle directories to access the log files.
|
213
|
+
# Corresponds to the JSON property `logFileDirectories`
|
214
|
+
# @return [Google::Apis::DatastreamV1::LogFileDirectories]
|
215
|
+
attr_accessor :log_file_directories
|
216
|
+
|
217
|
+
# Configuration to use Oracle ASM to access the log files.
|
218
|
+
# Corresponds to the JSON property `oracleAsmLogFileAccess`
|
219
|
+
# @return [Google::Apis::DatastreamV1::OracleAsmLogFileAccess]
|
220
|
+
attr_accessor :oracle_asm_log_file_access
|
221
|
+
|
222
|
+
def initialize(**args)
|
223
|
+
update!(**args)
|
224
|
+
end
|
225
|
+
|
226
|
+
# Update properties of this object
|
227
|
+
def update!(**args)
|
228
|
+
@log_file_directories = args[:log_file_directories] if args.key?(:log_file_directories)
|
229
|
+
@oracle_asm_log_file_access = args[:oracle_asm_log_file_access] if args.key?(:oracle_asm_log_file_access)
|
230
|
+
end
|
231
|
+
end
|
232
|
+
|
233
|
+
# Use Binary log position based replication.
|
234
|
+
class BinaryLogPosition
|
235
|
+
include Google::Apis::Core::Hashable
|
236
|
+
|
237
|
+
def initialize(**args)
|
238
|
+
update!(**args)
|
239
|
+
end
|
240
|
+
|
241
|
+
# Update properties of this object
|
242
|
+
def update!(**args)
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
208
246
|
# The request message for Operations.CancelOperation.
|
209
247
|
class CancelOperationRequest
|
210
248
|
include Google::Apis::Core::Hashable
|
@@ -285,7 +323,7 @@ module Google
|
|
285
323
|
# @return [Hash<String,String>]
|
286
324
|
attr_accessor :labels
|
287
325
|
|
288
|
-
# MySQL database profile.
|
326
|
+
# MySQL database profile. Next ID: 7.
|
289
327
|
# Corresponds to the JSON property `mysqlProfile`
|
290
328
|
# @return [Google::Apis::DatastreamV1::MysqlProfile]
|
291
329
|
attr_accessor :mysql_profile
|
@@ -295,7 +333,7 @@ module Google
|
|
295
333
|
# @return [String]
|
296
334
|
attr_accessor :name
|
297
335
|
|
298
|
-
# Oracle database profile.
|
336
|
+
# Oracle database profile. Next ID: 10.
|
299
337
|
# Corresponds to the JSON property `oracleProfile`
|
300
338
|
# @return [Google::Apis::DatastreamV1::OracleProfile]
|
301
339
|
attr_accessor :oracle_profile
|
@@ -310,7 +348,7 @@ module Google
|
|
310
348
|
# @return [Google::Apis::DatastreamV1::PrivateConnectivity]
|
311
349
|
attr_accessor :private_connectivity
|
312
350
|
|
313
|
-
# SQLServer database profile
|
351
|
+
# SQLServer database profile. Next ID: 8.
|
314
352
|
# Corresponds to the JSON property `sqlServerProfile`
|
315
353
|
# @return [Google::Apis::DatastreamV1::SqlServerProfile]
|
316
354
|
attr_accessor :sql_server_profile
|
@@ -733,6 +771,19 @@ module Google
|
|
733
771
|
end
|
734
772
|
end
|
735
773
|
|
774
|
+
# Use GTID based replication.
|
775
|
+
class Gtid
|
776
|
+
include Google::Apis::Core::Hashable
|
777
|
+
|
778
|
+
def initialize(**args)
|
779
|
+
update!(**args)
|
780
|
+
end
|
781
|
+
|
782
|
+
# Update properties of this object
|
783
|
+
def update!(**args)
|
784
|
+
end
|
785
|
+
end
|
786
|
+
|
736
787
|
# JSON file format configuration.
|
737
788
|
class JsonFileFormat
|
738
789
|
include Google::Apis::Core::Hashable
|
@@ -1008,6 +1059,44 @@ module Google
|
|
1008
1059
|
end
|
1009
1060
|
end
|
1010
1061
|
|
1062
|
+
# Configuration to specify the Oracle directories to access the log files.
|
1063
|
+
class LogFileDirectories
|
1064
|
+
include Google::Apis::Core::Hashable
|
1065
|
+
|
1066
|
+
# Required. Oracle directory for archived logs.
|
1067
|
+
# Corresponds to the JSON property `archivedLogDirectory`
|
1068
|
+
# @return [String]
|
1069
|
+
attr_accessor :archived_log_directory
|
1070
|
+
|
1071
|
+
# Required. Oracle directory for online logs.
|
1072
|
+
# Corresponds to the JSON property `onlineLogDirectory`
|
1073
|
+
# @return [String]
|
1074
|
+
attr_accessor :online_log_directory
|
1075
|
+
|
1076
|
+
def initialize(**args)
|
1077
|
+
update!(**args)
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
# Update properties of this object
|
1081
|
+
def update!(**args)
|
1082
|
+
@archived_log_directory = args[:archived_log_directory] if args.key?(:archived_log_directory)
|
1083
|
+
@online_log_directory = args[:online_log_directory] if args.key?(:online_log_directory)
|
1084
|
+
end
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
# Configuration to use LogMiner CDC method.
|
1088
|
+
class LogMiner
|
1089
|
+
include Google::Apis::Core::Hashable
|
1090
|
+
|
1091
|
+
def initialize(**args)
|
1092
|
+
update!(**args)
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
# Update properties of this object
|
1096
|
+
def update!(**args)
|
1097
|
+
end
|
1098
|
+
end
|
1099
|
+
|
1011
1100
|
# Request for looking up a specific stream object by its source object
|
1012
1101
|
# identifier.
|
1013
1102
|
class LookupStreamObjectRequest
|
@@ -1200,7 +1289,7 @@ module Google
|
|
1200
1289
|
end
|
1201
1290
|
end
|
1202
1291
|
|
1203
|
-
# MySQL database profile.
|
1292
|
+
# MySQL database profile. Next ID: 7.
|
1204
1293
|
class MysqlProfile
|
1205
1294
|
include Google::Apis::Core::Hashable
|
1206
1295
|
|
@@ -1209,7 +1298,8 @@ module Google
|
|
1209
1298
|
# @return [String]
|
1210
1299
|
attr_accessor :hostname
|
1211
1300
|
|
1212
|
-
#
|
1301
|
+
# Optional. Input only. Password for the MySQL connection. Mutually exclusive
|
1302
|
+
# with the `secret_manager_stored_password` field.
|
1213
1303
|
# Corresponds to the JSON property `password`
|
1214
1304
|
# @return [String]
|
1215
1305
|
attr_accessor :password
|
@@ -1266,11 +1356,21 @@ module Google
|
|
1266
1356
|
class MysqlSourceConfig
|
1267
1357
|
include Google::Apis::Core::Hashable
|
1268
1358
|
|
1359
|
+
# Use Binary log position based replication.
|
1360
|
+
# Corresponds to the JSON property `binaryLogPosition`
|
1361
|
+
# @return [Google::Apis::DatastreamV1::BinaryLogPosition]
|
1362
|
+
attr_accessor :binary_log_position
|
1363
|
+
|
1269
1364
|
# MySQL database structure
|
1270
1365
|
# Corresponds to the JSON property `excludeObjects`
|
1271
1366
|
# @return [Google::Apis::DatastreamV1::MysqlRdbms]
|
1272
1367
|
attr_accessor :exclude_objects
|
1273
1368
|
|
1369
|
+
# Use GTID based replication.
|
1370
|
+
# Corresponds to the JSON property `gtid`
|
1371
|
+
# @return [Google::Apis::DatastreamV1::Gtid]
|
1372
|
+
attr_accessor :gtid
|
1373
|
+
|
1274
1374
|
# MySQL database structure
|
1275
1375
|
# Corresponds to the JSON property `includeObjects`
|
1276
1376
|
# @return [Google::Apis::DatastreamV1::MysqlRdbms]
|
@@ -1294,7 +1394,9 @@ module Google
|
|
1294
1394
|
|
1295
1395
|
# Update properties of this object
|
1296
1396
|
def update!(**args)
|
1397
|
+
@binary_log_position = args[:binary_log_position] if args.key?(:binary_log_position)
|
1297
1398
|
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
|
1399
|
+
@gtid = args[:gtid] if args.key?(:gtid)
|
1298
1400
|
@include_objects = args[:include_objects] if args.key?(:include_objects)
|
1299
1401
|
@max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks)
|
1300
1402
|
@max_concurrent_cdc_tasks = args[:max_concurrent_cdc_tasks] if args.key?(:max_concurrent_cdc_tasks)
|
@@ -1525,6 +1627,74 @@ module Google
|
|
1525
1627
|
end
|
1526
1628
|
end
|
1527
1629
|
|
1630
|
+
# Configuration for Oracle Automatic Storage Management (ASM) connection.
|
1631
|
+
class OracleAsmConfig
|
1632
|
+
include Google::Apis::Core::Hashable
|
1633
|
+
|
1634
|
+
# Required. ASM service name for the Oracle ASM connection.
|
1635
|
+
# Corresponds to the JSON property `asmService`
|
1636
|
+
# @return [String]
|
1637
|
+
attr_accessor :asm_service
|
1638
|
+
|
1639
|
+
# Optional. Connection string attributes
|
1640
|
+
# Corresponds to the JSON property `connectionAttributes`
|
1641
|
+
# @return [Hash<String,String>]
|
1642
|
+
attr_accessor :connection_attributes
|
1643
|
+
|
1644
|
+
# Required. Hostname for the Oracle ASM connection.
|
1645
|
+
# Corresponds to the JSON property `hostname`
|
1646
|
+
# @return [String]
|
1647
|
+
attr_accessor :hostname
|
1648
|
+
|
1649
|
+
# Oracle SSL configuration information.
|
1650
|
+
# Corresponds to the JSON property `oracleSslConfig`
|
1651
|
+
# @return [Google::Apis::DatastreamV1::OracleSslConfig]
|
1652
|
+
attr_accessor :oracle_ssl_config
|
1653
|
+
|
1654
|
+
# Required. Password for the Oracle ASM connection.
|
1655
|
+
# Corresponds to the JSON property `password`
|
1656
|
+
# @return [String]
|
1657
|
+
attr_accessor :password
|
1658
|
+
|
1659
|
+
# Required. Port for the Oracle ASM connection.
|
1660
|
+
# Corresponds to the JSON property `port`
|
1661
|
+
# @return [Fixnum]
|
1662
|
+
attr_accessor :port
|
1663
|
+
|
1664
|
+
# Required. Username for the Oracle ASM connection.
|
1665
|
+
# Corresponds to the JSON property `username`
|
1666
|
+
# @return [String]
|
1667
|
+
attr_accessor :username
|
1668
|
+
|
1669
|
+
def initialize(**args)
|
1670
|
+
update!(**args)
|
1671
|
+
end
|
1672
|
+
|
1673
|
+
# Update properties of this object
|
1674
|
+
def update!(**args)
|
1675
|
+
@asm_service = args[:asm_service] if args.key?(:asm_service)
|
1676
|
+
@connection_attributes = args[:connection_attributes] if args.key?(:connection_attributes)
|
1677
|
+
@hostname = args[:hostname] if args.key?(:hostname)
|
1678
|
+
@oracle_ssl_config = args[:oracle_ssl_config] if args.key?(:oracle_ssl_config)
|
1679
|
+
@password = args[:password] if args.key?(:password)
|
1680
|
+
@port = args[:port] if args.key?(:port)
|
1681
|
+
@username = args[:username] if args.key?(:username)
|
1682
|
+
end
|
1683
|
+
end
|
1684
|
+
|
1685
|
+
# Configuration to use Oracle ASM to access the log files.
|
1686
|
+
class OracleAsmLogFileAccess
|
1687
|
+
include Google::Apis::Core::Hashable
|
1688
|
+
|
1689
|
+
def initialize(**args)
|
1690
|
+
update!(**args)
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
# Update properties of this object
|
1694
|
+
def update!(**args)
|
1695
|
+
end
|
1696
|
+
end
|
1697
|
+
|
1528
1698
|
# Oracle Column.
|
1529
1699
|
class OracleColumn
|
1530
1700
|
include Google::Apis::Core::Hashable
|
@@ -1619,7 +1789,7 @@ module Google
|
|
1619
1789
|
end
|
1620
1790
|
end
|
1621
1791
|
|
1622
|
-
# Oracle database profile.
|
1792
|
+
# Oracle database profile. Next ID: 10.
|
1623
1793
|
class OracleProfile
|
1624
1794
|
include Google::Apis::Core::Hashable
|
1625
1795
|
|
@@ -1638,12 +1808,18 @@ module Google
|
|
1638
1808
|
# @return [String]
|
1639
1809
|
attr_accessor :hostname
|
1640
1810
|
|
1811
|
+
# Configuration for Oracle Automatic Storage Management (ASM) connection.
|
1812
|
+
# Corresponds to the JSON property `oracleAsmConfig`
|
1813
|
+
# @return [Google::Apis::DatastreamV1::OracleAsmConfig]
|
1814
|
+
attr_accessor :oracle_asm_config
|
1815
|
+
|
1641
1816
|
# Oracle SSL configuration information.
|
1642
1817
|
# Corresponds to the JSON property `oracleSslConfig`
|
1643
1818
|
# @return [Google::Apis::DatastreamV1::OracleSslConfig]
|
1644
1819
|
attr_accessor :oracle_ssl_config
|
1645
1820
|
|
1646
|
-
#
|
1821
|
+
# Optional. Password for the Oracle connection. Mutually exclusive with the `
|
1822
|
+
# secret_manager_stored_password` field.
|
1647
1823
|
# Corresponds to the JSON property `password`
|
1648
1824
|
# @return [String]
|
1649
1825
|
attr_accessor :password
|
@@ -1653,6 +1829,12 @@ module Google
|
|
1653
1829
|
# @return [Fixnum]
|
1654
1830
|
attr_accessor :port
|
1655
1831
|
|
1832
|
+
# Optional. A reference to a Secret Manager resource name storing the Oracle
|
1833
|
+
# connection password. Mutually exclusive with the `password` field.
|
1834
|
+
# Corresponds to the JSON property `secretManagerStoredPassword`
|
1835
|
+
# @return [String]
|
1836
|
+
attr_accessor :secret_manager_stored_password
|
1837
|
+
|
1656
1838
|
# Required. Username for the Oracle connection.
|
1657
1839
|
# Corresponds to the JSON property `username`
|
1658
1840
|
# @return [String]
|
@@ -1667,9 +1849,11 @@ module Google
|
|
1667
1849
|
@connection_attributes = args[:connection_attributes] if args.key?(:connection_attributes)
|
1668
1850
|
@database_service = args[:database_service] if args.key?(:database_service)
|
1669
1851
|
@hostname = args[:hostname] if args.key?(:hostname)
|
1852
|
+
@oracle_asm_config = args[:oracle_asm_config] if args.key?(:oracle_asm_config)
|
1670
1853
|
@oracle_ssl_config = args[:oracle_ssl_config] if args.key?(:oracle_ssl_config)
|
1671
1854
|
@password = args[:password] if args.key?(:password)
|
1672
1855
|
@port = args[:port] if args.key?(:port)
|
1856
|
+
@secret_manager_stored_password = args[:secret_manager_stored_password] if args.key?(:secret_manager_stored_password)
|
1673
1857
|
@username = args[:username] if args.key?(:username)
|
1674
1858
|
end
|
1675
1859
|
end
|
@@ -1741,6 +1925,11 @@ module Google
|
|
1741
1925
|
class OracleSourceConfig
|
1742
1926
|
include Google::Apis::Core::Hashable
|
1743
1927
|
|
1928
|
+
# Configuration to use Binary Log Parser CDC technique.
|
1929
|
+
# Corresponds to the JSON property `binaryLogParser`
|
1930
|
+
# @return [Google::Apis::DatastreamV1::BinaryLogParser]
|
1931
|
+
attr_accessor :binary_log_parser
|
1932
|
+
|
1744
1933
|
# Configuration to drop large object values.
|
1745
1934
|
# Corresponds to the JSON property `dropLargeObjects`
|
1746
1935
|
# @return [Google::Apis::DatastreamV1::DropLargeObjects]
|
@@ -1756,6 +1945,11 @@ module Google
|
|
1756
1945
|
# @return [Google::Apis::DatastreamV1::OracleRdbms]
|
1757
1946
|
attr_accessor :include_objects
|
1758
1947
|
|
1948
|
+
# Configuration to use LogMiner CDC method.
|
1949
|
+
# Corresponds to the JSON property `logMiner`
|
1950
|
+
# @return [Google::Apis::DatastreamV1::LogMiner]
|
1951
|
+
attr_accessor :log_miner
|
1952
|
+
|
1759
1953
|
# Maximum number of concurrent backfill tasks. The number should be non-negative.
|
1760
1954
|
# If not set (or set to 0), the system's default value is used.
|
1761
1955
|
# Corresponds to the JSON property `maxConcurrentBackfillTasks`
|
@@ -1779,9 +1973,11 @@ module Google
|
|
1779
1973
|
|
1780
1974
|
# Update properties of this object
|
1781
1975
|
def update!(**args)
|
1976
|
+
@binary_log_parser = args[:binary_log_parser] if args.key?(:binary_log_parser)
|
1782
1977
|
@drop_large_objects = args[:drop_large_objects] if args.key?(:drop_large_objects)
|
1783
1978
|
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
|
1784
1979
|
@include_objects = args[:include_objects] if args.key?(:include_objects)
|
1980
|
+
@log_miner = args[:log_miner] if args.key?(:log_miner)
|
1785
1981
|
@max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks)
|
1786
1982
|
@max_concurrent_cdc_tasks = args[:max_concurrent_cdc_tasks] if args.key?(:max_concurrent_cdc_tasks)
|
1787
1983
|
@stream_large_objects = args[:stream_large_objects] if args.key?(:stream_large_objects)
|
@@ -1944,7 +2140,8 @@ module Google
|
|
1944
2140
|
# @return [String]
|
1945
2141
|
attr_accessor :hostname
|
1946
2142
|
|
1947
|
-
#
|
2143
|
+
# Optional. Password for the PostgreSQL connection. Mutually exclusive with the `
|
2144
|
+
# secret_manager_stored_password` field.
|
1948
2145
|
# Corresponds to the JSON property `password`
|
1949
2146
|
# @return [String]
|
1950
2147
|
attr_accessor :password
|
@@ -2501,7 +2698,7 @@ module Google
|
|
2501
2698
|
end
|
2502
2699
|
end
|
2503
2700
|
|
2504
|
-
# SQLServer database profile
|
2701
|
+
# SQLServer database profile. Next ID: 8.
|
2505
2702
|
class SqlServerProfile
|
2506
2703
|
include Google::Apis::Core::Hashable
|
2507
2704
|
|
@@ -2515,7 +2712,8 @@ module Google
|
|
2515
2712
|
# @return [String]
|
2516
2713
|
attr_accessor :hostname
|
2517
2714
|
|
2518
|
-
#
|
2715
|
+
# Optional. Password for the SQLServer connection. Mutually exclusive with the `
|
2716
|
+
# secret_manager_stored_password` field.
|
2519
2717
|
# Corresponds to the JSON property `password`
|
2520
2718
|
# @return [String]
|
2521
2719
|
attr_accessor :password
|
@@ -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.42.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241028"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,18 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class BinaryLogParser
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
73
|
+
class BinaryLogPosition
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
67
79
|
class CancelOperationRequest
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
81
|
|
@@ -148,6 +160,12 @@ module Google
|
|
148
160
|
include Google::Apis::Core::JsonObjectSupport
|
149
161
|
end
|
150
162
|
|
163
|
+
class Gtid
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
151
169
|
class JsonFileFormat
|
152
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
171
|
|
@@ -202,6 +220,18 @@ module Google
|
|
202
220
|
include Google::Apis::Core::JsonObjectSupport
|
203
221
|
end
|
204
222
|
|
223
|
+
class LogFileDirectories
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
|
+
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
227
|
+
end
|
228
|
+
|
229
|
+
class LogMiner
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
205
235
|
class LookupStreamObjectRequest
|
206
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
237
|
|
@@ -292,6 +322,18 @@ module Google
|
|
292
322
|
include Google::Apis::Core::JsonObjectSupport
|
293
323
|
end
|
294
324
|
|
325
|
+
class OracleAsmConfig
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
331
|
+
class OracleAsmLogFileAccess
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
295
337
|
class OracleColumn
|
296
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
339
|
|
@@ -639,6 +681,22 @@ module Google
|
|
639
681
|
end
|
640
682
|
end
|
641
683
|
|
684
|
+
class BinaryLogParser
|
685
|
+
# @private
|
686
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
687
|
+
property :log_file_directories, as: 'logFileDirectories', class: Google::Apis::DatastreamV1::LogFileDirectories, decorator: Google::Apis::DatastreamV1::LogFileDirectories::Representation
|
688
|
+
|
689
|
+
property :oracle_asm_log_file_access, as: 'oracleAsmLogFileAccess', class: Google::Apis::DatastreamV1::OracleAsmLogFileAccess, decorator: Google::Apis::DatastreamV1::OracleAsmLogFileAccess::Representation
|
690
|
+
|
691
|
+
end
|
692
|
+
end
|
693
|
+
|
694
|
+
class BinaryLogPosition
|
695
|
+
# @private
|
696
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
697
|
+
end
|
698
|
+
end
|
699
|
+
|
642
700
|
class CancelOperationRequest
|
643
701
|
# @private
|
644
702
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -802,6 +860,12 @@ module Google
|
|
802
860
|
end
|
803
861
|
end
|
804
862
|
|
863
|
+
class Gtid
|
864
|
+
# @private
|
865
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
866
|
+
end
|
867
|
+
end
|
868
|
+
|
805
869
|
class JsonFileFormat
|
806
870
|
# @private
|
807
871
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -888,6 +952,20 @@ module Google
|
|
888
952
|
end
|
889
953
|
end
|
890
954
|
|
955
|
+
class LogFileDirectories
|
956
|
+
# @private
|
957
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
958
|
+
property :archived_log_directory, as: 'archivedLogDirectory'
|
959
|
+
property :online_log_directory, as: 'onlineLogDirectory'
|
960
|
+
end
|
961
|
+
end
|
962
|
+
|
963
|
+
class LogMiner
|
964
|
+
# @private
|
965
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
966
|
+
end
|
967
|
+
end
|
968
|
+
|
891
969
|
class LookupStreamObjectRequest
|
892
970
|
# @private
|
893
971
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -971,8 +1049,12 @@ module Google
|
|
971
1049
|
class MysqlSourceConfig
|
972
1050
|
# @private
|
973
1051
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1052
|
+
property :binary_log_position, as: 'binaryLogPosition', class: Google::Apis::DatastreamV1::BinaryLogPosition, decorator: Google::Apis::DatastreamV1::BinaryLogPosition::Representation
|
1053
|
+
|
974
1054
|
property :exclude_objects, as: 'excludeObjects', class: Google::Apis::DatastreamV1::MysqlRdbms, decorator: Google::Apis::DatastreamV1::MysqlRdbms::Representation
|
975
1055
|
|
1056
|
+
property :gtid, as: 'gtid', class: Google::Apis::DatastreamV1::Gtid, decorator: Google::Apis::DatastreamV1::Gtid::Representation
|
1057
|
+
|
976
1058
|
property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::MysqlRdbms, decorator: Google::Apis::DatastreamV1::MysqlRdbms::Representation
|
977
1059
|
|
978
1060
|
property :max_concurrent_backfill_tasks, as: 'maxConcurrentBackfillTasks'
|
@@ -1034,6 +1116,26 @@ module Google
|
|
1034
1116
|
end
|
1035
1117
|
end
|
1036
1118
|
|
1119
|
+
class OracleAsmConfig
|
1120
|
+
# @private
|
1121
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1122
|
+
property :asm_service, as: 'asmService'
|
1123
|
+
hash :connection_attributes, as: 'connectionAttributes'
|
1124
|
+
property :hostname, as: 'hostname'
|
1125
|
+
property :oracle_ssl_config, as: 'oracleSslConfig', class: Google::Apis::DatastreamV1::OracleSslConfig, decorator: Google::Apis::DatastreamV1::OracleSslConfig::Representation
|
1126
|
+
|
1127
|
+
property :password, as: 'password'
|
1128
|
+
property :port, as: 'port'
|
1129
|
+
property :username, as: 'username'
|
1130
|
+
end
|
1131
|
+
end
|
1132
|
+
|
1133
|
+
class OracleAsmLogFileAccess
|
1134
|
+
# @private
|
1135
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1136
|
+
end
|
1137
|
+
end
|
1138
|
+
|
1037
1139
|
class OracleColumn
|
1038
1140
|
# @private
|
1039
1141
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1063,10 +1165,13 @@ module Google
|
|
1063
1165
|
hash :connection_attributes, as: 'connectionAttributes'
|
1064
1166
|
property :database_service, as: 'databaseService'
|
1065
1167
|
property :hostname, as: 'hostname'
|
1168
|
+
property :oracle_asm_config, as: 'oracleAsmConfig', class: Google::Apis::DatastreamV1::OracleAsmConfig, decorator: Google::Apis::DatastreamV1::OracleAsmConfig::Representation
|
1169
|
+
|
1066
1170
|
property :oracle_ssl_config, as: 'oracleSslConfig', class: Google::Apis::DatastreamV1::OracleSslConfig, decorator: Google::Apis::DatastreamV1::OracleSslConfig::Representation
|
1067
1171
|
|
1068
1172
|
property :password, as: 'password'
|
1069
1173
|
property :port, as: 'port'
|
1174
|
+
property :secret_manager_stored_password, as: 'secretManagerStoredPassword'
|
1070
1175
|
property :username, as: 'username'
|
1071
1176
|
end
|
1072
1177
|
end
|
@@ -1098,12 +1203,16 @@ module Google
|
|
1098
1203
|
class OracleSourceConfig
|
1099
1204
|
# @private
|
1100
1205
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1206
|
+
property :binary_log_parser, as: 'binaryLogParser', class: Google::Apis::DatastreamV1::BinaryLogParser, decorator: Google::Apis::DatastreamV1::BinaryLogParser::Representation
|
1207
|
+
|
1101
1208
|
property :drop_large_objects, as: 'dropLargeObjects', class: Google::Apis::DatastreamV1::DropLargeObjects, decorator: Google::Apis::DatastreamV1::DropLargeObjects::Representation
|
1102
1209
|
|
1103
1210
|
property :exclude_objects, as: 'excludeObjects', class: Google::Apis::DatastreamV1::OracleRdbms, decorator: Google::Apis::DatastreamV1::OracleRdbms::Representation
|
1104
1211
|
|
1105
1212
|
property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::OracleRdbms, decorator: Google::Apis::DatastreamV1::OracleRdbms::Representation
|
1106
1213
|
|
1214
|
+
property :log_miner, as: 'logMiner', class: Google::Apis::DatastreamV1::LogMiner, decorator: Google::Apis::DatastreamV1::LogMiner::Representation
|
1215
|
+
|
1107
1216
|
property :max_concurrent_backfill_tasks, as: 'maxConcurrentBackfillTasks'
|
1108
1217
|
property :max_concurrent_cdc_tasks, as: 'maxConcurrentCdcTasks'
|
1109
1218
|
property :stream_large_objects, as: 'streamLargeObjects', class: Google::Apis::DatastreamV1::StreamLargeObjects, decorator: Google::Apis::DatastreamV1::StreamLargeObjects::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.42.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: 2024-
|
11
|
+
date: 2024-11-03 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-datastream_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.42.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.21
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Datastream API V1
|