google-apis-datastream_v1 0.41.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: 559b868262cf378c958f598f9556f1f31ba4d89147f03af616620dcf7d3d1749
4
- data.tar.gz: '088aabc4b1cb5a0cdd0c7f309b07316a5e208ee821a7e49c1bf3dc58e1da1149'
3
+ metadata.gz: c776c91bf6168a877bc6ff03afbed71c00d93e895edb218170b54c35ff17b309
4
+ data.tar.gz: 380cd469f10524b72d726074ba5f44a9e12f917f9452a68d258ed24856f9d8ea
5
5
  SHA512:
6
- metadata.gz: 525085a3f06ead1aa0cf5f1f3641eebcc80eb122336fe5966b8528745616db6e4f4495bcf6989c8835aac1d2a8b31ed3ec1f5035e8bc57105cf31b7fde470f76
7
- data.tar.gz: a405a817757979ebd3de569f043f2379707c2e247430690578d26a322fd47acf34a913448be33b4536ef1069568367f865f02537449833fc65d24d21d04d098c
6
+ metadata.gz: f570537f331697e5c6c7a97b5e3fecebb085ea2d01af065ff15a8ec2773e307263902c8acad53b905e1e2db2ccc73bcb8d4cf6f5e4a2f6bd1a2a0a9681215291
7
+ data.tar.gz: 18b2fd0d002ca0fe17cc3751d37b239f91e607f6d2df1f2010c24c17169c57d5f553a8a6c85d5148ffa763459d62e6936ab8e109ec7a2cde0eb1a21352a8d01c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.41.0 (2024-10-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20240930
@@ -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
@@ -300,7 +338,7 @@ module Google
300
338
  # @return [Google::Apis::DatastreamV1::OracleProfile]
301
339
  attr_accessor :oracle_profile
302
340
 
303
- # PostgreSQL database profile. Next ID: 7.
341
+ # PostgreSQL database profile.
304
342
  # Corresponds to the JSON property `postgresqlProfile`
305
343
  # @return [Google::Apis::DatastreamV1::PostgresqlProfile]
306
344
  attr_accessor :postgresql_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
@@ -1267,11 +1356,21 @@ module Google
1267
1356
  class MysqlSourceConfig
1268
1357
  include Google::Apis::Core::Hashable
1269
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
+
1270
1364
  # MySQL database structure
1271
1365
  # Corresponds to the JSON property `excludeObjects`
1272
1366
  # @return [Google::Apis::DatastreamV1::MysqlRdbms]
1273
1367
  attr_accessor :exclude_objects
1274
1368
 
1369
+ # Use GTID based replication.
1370
+ # Corresponds to the JSON property `gtid`
1371
+ # @return [Google::Apis::DatastreamV1::Gtid]
1372
+ attr_accessor :gtid
1373
+
1275
1374
  # MySQL database structure
1276
1375
  # Corresponds to the JSON property `includeObjects`
1277
1376
  # @return [Google::Apis::DatastreamV1::MysqlRdbms]
@@ -1295,7 +1394,9 @@ module Google
1295
1394
 
1296
1395
  # Update properties of this object
1297
1396
  def update!(**args)
1397
+ @binary_log_position = args[:binary_log_position] if args.key?(:binary_log_position)
1298
1398
  @exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
1399
+ @gtid = args[:gtid] if args.key?(:gtid)
1299
1400
  @include_objects = args[:include_objects] if args.key?(:include_objects)
1300
1401
  @max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks)
1301
1402
  @max_concurrent_cdc_tasks = args[:max_concurrent_cdc_tasks] if args.key?(:max_concurrent_cdc_tasks)
@@ -1526,6 +1627,74 @@ module Google
1526
1627
  end
1527
1628
  end
1528
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
+
1529
1698
  # Oracle Column.
1530
1699
  class OracleColumn
1531
1700
  include Google::Apis::Core::Hashable
@@ -1639,6 +1808,11 @@ module Google
1639
1808
  # @return [String]
1640
1809
  attr_accessor :hostname
1641
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
+
1642
1816
  # Oracle SSL configuration information.
1643
1817
  # Corresponds to the JSON property `oracleSslConfig`
1644
1818
  # @return [Google::Apis::DatastreamV1::OracleSslConfig]
@@ -1655,6 +1829,12 @@ module Google
1655
1829
  # @return [Fixnum]
1656
1830
  attr_accessor :port
1657
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
+
1658
1838
  # Required. Username for the Oracle connection.
1659
1839
  # Corresponds to the JSON property `username`
1660
1840
  # @return [String]
@@ -1669,9 +1849,11 @@ module Google
1669
1849
  @connection_attributes = args[:connection_attributes] if args.key?(:connection_attributes)
1670
1850
  @database_service = args[:database_service] if args.key?(:database_service)
1671
1851
  @hostname = args[:hostname] if args.key?(:hostname)
1852
+ @oracle_asm_config = args[:oracle_asm_config] if args.key?(:oracle_asm_config)
1672
1853
  @oracle_ssl_config = args[:oracle_ssl_config] if args.key?(:oracle_ssl_config)
1673
1854
  @password = args[:password] if args.key?(:password)
1674
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)
1675
1857
  @username = args[:username] if args.key?(:username)
1676
1858
  end
1677
1859
  end
@@ -1743,6 +1925,11 @@ module Google
1743
1925
  class OracleSourceConfig
1744
1926
  include Google::Apis::Core::Hashable
1745
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
+
1746
1933
  # Configuration to drop large object values.
1747
1934
  # Corresponds to the JSON property `dropLargeObjects`
1748
1935
  # @return [Google::Apis::DatastreamV1::DropLargeObjects]
@@ -1758,6 +1945,11 @@ module Google
1758
1945
  # @return [Google::Apis::DatastreamV1::OracleRdbms]
1759
1946
  attr_accessor :include_objects
1760
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
+
1761
1953
  # Maximum number of concurrent backfill tasks. The number should be non-negative.
1762
1954
  # If not set (or set to 0), the system's default value is used.
1763
1955
  # Corresponds to the JSON property `maxConcurrentBackfillTasks`
@@ -1781,9 +1973,11 @@ module Google
1781
1973
 
1782
1974
  # Update properties of this object
1783
1975
  def update!(**args)
1976
+ @binary_log_parser = args[:binary_log_parser] if args.key?(:binary_log_parser)
1784
1977
  @drop_large_objects = args[:drop_large_objects] if args.key?(:drop_large_objects)
1785
1978
  @exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
1786
1979
  @include_objects = args[:include_objects] if args.key?(:include_objects)
1980
+ @log_miner = args[:log_miner] if args.key?(:log_miner)
1787
1981
  @max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks)
1788
1982
  @max_concurrent_cdc_tasks = args[:max_concurrent_cdc_tasks] if args.key?(:max_concurrent_cdc_tasks)
1789
1983
  @stream_large_objects = args[:stream_large_objects] if args.key?(:stream_large_objects)
@@ -1932,7 +2126,7 @@ module Google
1932
2126
  end
1933
2127
  end
1934
2128
 
1935
- # PostgreSQL database profile. Next ID: 7.
2129
+ # PostgreSQL database profile.
1936
2130
  class PostgresqlProfile
1937
2131
  include Google::Apis::Core::Hashable
1938
2132
 
@@ -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.41.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 = "20240930"
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.41.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-10-27 00:00:00.000000000 Z
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.41.0
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: []