google-apis-datastream_v1 0.41.0 → 0.43.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: 3bbbfcafabfdf5d813d9c08acfe496607adbf4408761e7cfc106736bf9098c35
4
+ data.tar.gz: a69439cb4d20695f23098f4b2037c1ea0bf7ccf6e4447bf4d3ab9b7c712c5e4b
5
5
  SHA512:
6
- metadata.gz: 525085a3f06ead1aa0cf5f1f3641eebcc80eb122336fe5966b8528745616db6e4f4495bcf6989c8835aac1d2a8b31ed3ec1f5035e8bc57105cf31b7fde470f76
7
- data.tar.gz: a405a817757979ebd3de569f043f2379707c2e247430690578d26a322fd47acf34a913448be33b4536ef1069568367f865f02537449833fc65d24d21d04d098c
6
+ metadata.gz: 78b38209bd405075f56d9879ffc19f60f9abde246b1dfcaf4cafa477fc74c29d53e1b4989ade3dffa7c0bfc35af26e7e3662d381c81768c5c4ba3897e3dc3382
7
+ data.tar.gz: ee44cd355eae2351d49793abdb77b32377473edc272956f692eb833d204a99c80ea237bfde8b21ef4696ef1bb6e2ae63c6c60280b5de81710f5bc0a58e47db2b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datastream_v1
2
2
 
3
+ ### v0.43.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241204
6
+
7
+ ### v0.42.0 (2024-11-03)
8
+
9
+ * Regenerated from discovery document revision 20241028
10
+
3
11
  ### v0.41.0 (2024-10-20)
4
12
 
5
13
  * 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
@@ -290,7 +328,7 @@ module Google
290
328
  # @return [Google::Apis::DatastreamV1::MysqlProfile]
291
329
  attr_accessor :mysql_profile
292
330
 
293
- # Output only. The resource's name.
331
+ # Output only. Identifier. The resource's name.
294
332
  # Corresponds to the JSON property `name`
295
333
  # @return [String]
296
334
  attr_accessor :name
@@ -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)
@@ -1481,9 +1582,9 @@ module Google
1481
1582
  attr_accessor :end_time
1482
1583
 
1483
1584
  # Output only. Identifies whether the user has requested cancellation of the
1484
- # operation. Operations that have successfully been cancelled have Operation.
1485
- # error value with a google.rpc.Status.code of 1, corresponding to `Code.
1486
- # CANCELLED`.
1585
+ # operation. Operations that have successfully been cancelled have google.
1586
+ # longrunning.Operation.error value with a google.rpc.Status.code of 1,
1587
+ # corresponding to `Code.CANCELLED`.
1487
1588
  # Corresponds to the JSON property `requestedCancellation`
1488
1589
  # @return [Boolean]
1489
1590
  attr_accessor :requested_cancellation
@@ -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
+ # Optional. 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
 
@@ -2117,7 +2311,7 @@ module Google
2117
2311
  # @return [Hash<String,String>]
2118
2312
  attr_accessor :labels
2119
2313
 
2120
- # Output only. The resource's name.
2314
+ # Output only. Identifier. The resource's name.
2121
2315
  # Corresponds to the JSON property `name`
2122
2316
  # @return [String]
2123
2317
  attr_accessor :name
@@ -2205,7 +2399,7 @@ module Google
2205
2399
  # @return [Hash<String,String>]
2206
2400
  attr_accessor :labels
2207
2401
 
2208
- # Output only. The resource's name.
2402
+ # Output only. Identifier. The resource's name.
2209
2403
  # Corresponds to the JSON property `name`
2210
2404
  # @return [String]
2211
2405
  attr_accessor :name
@@ -2392,6 +2586,11 @@ module Google
2392
2586
  # @return [Google::Apis::DatastreamV1::OracleScnPosition]
2393
2587
  attr_accessor :oracle_scn_position
2394
2588
 
2589
+ # SQL Server LSN position
2590
+ # Corresponds to the JSON property `sqlServerLsnPosition`
2591
+ # @return [Google::Apis::DatastreamV1::SqlServerLsnPosition]
2592
+ attr_accessor :sql_server_lsn_position
2593
+
2395
2594
  def initialize(**args)
2396
2595
  update!(**args)
2397
2596
  end
@@ -2400,6 +2599,7 @@ module Google
2400
2599
  def update!(**args)
2401
2600
  @mysql_log_position = args[:mysql_log_position] if args.key?(:mysql_log_position)
2402
2601
  @oracle_scn_position = args[:oracle_scn_position] if args.key?(:oracle_scn_position)
2602
+ @sql_server_lsn_position = args[:sql_server_lsn_position] if args.key?(:sql_server_lsn_position)
2403
2603
  end
2404
2604
  end
2405
2605
 
@@ -2479,6 +2679,25 @@ module Google
2479
2679
  end
2480
2680
  end
2481
2681
 
2682
+ # SQL Server LSN position
2683
+ class SqlServerLsnPosition
2684
+ include Google::Apis::Core::Hashable
2685
+
2686
+ # Required. Log sequence number (LSN) from where Logs will be read
2687
+ # Corresponds to the JSON property `lsn`
2688
+ # @return [String]
2689
+ attr_accessor :lsn
2690
+
2691
+ def initialize(**args)
2692
+ update!(**args)
2693
+ end
2694
+
2695
+ # Update properties of this object
2696
+ def update!(**args)
2697
+ @lsn = args[:lsn] if args.key?(:lsn)
2698
+ end
2699
+ end
2700
+
2482
2701
  # SQLServer data source object identifier.
2483
2702
  class SqlServerObjectIdentifier
2484
2703
  include Google::Apis::Core::Hashable
@@ -2852,7 +3071,7 @@ module Google
2852
3071
  # @return [String]
2853
3072
  attr_accessor :last_recovery_time
2854
3073
 
2855
- # Output only. The stream's name.
3074
+ # Output only. Identifier. The stream's name.
2856
3075
  # Corresponds to the JSON property `name`
2857
3076
  # @return [String]
2858
3077
  attr_accessor :name
@@ -2931,7 +3150,7 @@ module Google
2931
3150
  # @return [Array<Google::Apis::DatastreamV1::Error>]
2932
3151
  attr_accessor :errors
2933
3152
 
2934
- # Output only. The object resource's name.
3153
+ # Output only. Identifier. The object resource's name.
2935
3154
  # Corresponds to the JSON property `name`
2936
3155
  # @return [String]
2937
3156
  attr_accessor :name
@@ -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.43.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 = "20241204"
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
 
@@ -454,6 +496,12 @@ module Google
454
496
  include Google::Apis::Core::JsonObjectSupport
455
497
  end
456
498
 
499
+ class SqlServerLsnPosition
500
+ class Representation < Google::Apis::Core::JsonRepresentation; end
501
+
502
+ include Google::Apis::Core::JsonObjectSupport
503
+ end
504
+
457
505
  class SqlServerObjectIdentifier
458
506
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
507
 
@@ -639,6 +687,22 @@ module Google
639
687
  end
640
688
  end
641
689
 
690
+ class BinaryLogParser
691
+ # @private
692
+ class Representation < Google::Apis::Core::JsonRepresentation
693
+ property :log_file_directories, as: 'logFileDirectories', class: Google::Apis::DatastreamV1::LogFileDirectories, decorator: Google::Apis::DatastreamV1::LogFileDirectories::Representation
694
+
695
+ property :oracle_asm_log_file_access, as: 'oracleAsmLogFileAccess', class: Google::Apis::DatastreamV1::OracleAsmLogFileAccess, decorator: Google::Apis::DatastreamV1::OracleAsmLogFileAccess::Representation
696
+
697
+ end
698
+ end
699
+
700
+ class BinaryLogPosition
701
+ # @private
702
+ class Representation < Google::Apis::Core::JsonRepresentation
703
+ end
704
+ end
705
+
642
706
  class CancelOperationRequest
643
707
  # @private
644
708
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -802,6 +866,12 @@ module Google
802
866
  end
803
867
  end
804
868
 
869
+ class Gtid
870
+ # @private
871
+ class Representation < Google::Apis::Core::JsonRepresentation
872
+ end
873
+ end
874
+
805
875
  class JsonFileFormat
806
876
  # @private
807
877
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -888,6 +958,20 @@ module Google
888
958
  end
889
959
  end
890
960
 
961
+ class LogFileDirectories
962
+ # @private
963
+ class Representation < Google::Apis::Core::JsonRepresentation
964
+ property :archived_log_directory, as: 'archivedLogDirectory'
965
+ property :online_log_directory, as: 'onlineLogDirectory'
966
+ end
967
+ end
968
+
969
+ class LogMiner
970
+ # @private
971
+ class Representation < Google::Apis::Core::JsonRepresentation
972
+ end
973
+ end
974
+
891
975
  class LookupStreamObjectRequest
892
976
  # @private
893
977
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -971,8 +1055,12 @@ module Google
971
1055
  class MysqlSourceConfig
972
1056
  # @private
973
1057
  class Representation < Google::Apis::Core::JsonRepresentation
1058
+ property :binary_log_position, as: 'binaryLogPosition', class: Google::Apis::DatastreamV1::BinaryLogPosition, decorator: Google::Apis::DatastreamV1::BinaryLogPosition::Representation
1059
+
974
1060
  property :exclude_objects, as: 'excludeObjects', class: Google::Apis::DatastreamV1::MysqlRdbms, decorator: Google::Apis::DatastreamV1::MysqlRdbms::Representation
975
1061
 
1062
+ property :gtid, as: 'gtid', class: Google::Apis::DatastreamV1::Gtid, decorator: Google::Apis::DatastreamV1::Gtid::Representation
1063
+
976
1064
  property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::MysqlRdbms, decorator: Google::Apis::DatastreamV1::MysqlRdbms::Representation
977
1065
 
978
1066
  property :max_concurrent_backfill_tasks, as: 'maxConcurrentBackfillTasks'
@@ -1034,6 +1122,26 @@ module Google
1034
1122
  end
1035
1123
  end
1036
1124
 
1125
+ class OracleAsmConfig
1126
+ # @private
1127
+ class Representation < Google::Apis::Core::JsonRepresentation
1128
+ property :asm_service, as: 'asmService'
1129
+ hash :connection_attributes, as: 'connectionAttributes'
1130
+ property :hostname, as: 'hostname'
1131
+ property :oracle_ssl_config, as: 'oracleSslConfig', class: Google::Apis::DatastreamV1::OracleSslConfig, decorator: Google::Apis::DatastreamV1::OracleSslConfig::Representation
1132
+
1133
+ property :password, as: 'password'
1134
+ property :port, as: 'port'
1135
+ property :username, as: 'username'
1136
+ end
1137
+ end
1138
+
1139
+ class OracleAsmLogFileAccess
1140
+ # @private
1141
+ class Representation < Google::Apis::Core::JsonRepresentation
1142
+ end
1143
+ end
1144
+
1037
1145
  class OracleColumn
1038
1146
  # @private
1039
1147
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1063,10 +1171,13 @@ module Google
1063
1171
  hash :connection_attributes, as: 'connectionAttributes'
1064
1172
  property :database_service, as: 'databaseService'
1065
1173
  property :hostname, as: 'hostname'
1174
+ property :oracle_asm_config, as: 'oracleAsmConfig', class: Google::Apis::DatastreamV1::OracleAsmConfig, decorator: Google::Apis::DatastreamV1::OracleAsmConfig::Representation
1175
+
1066
1176
  property :oracle_ssl_config, as: 'oracleSslConfig', class: Google::Apis::DatastreamV1::OracleSslConfig, decorator: Google::Apis::DatastreamV1::OracleSslConfig::Representation
1067
1177
 
1068
1178
  property :password, as: 'password'
1069
1179
  property :port, as: 'port'
1180
+ property :secret_manager_stored_password, as: 'secretManagerStoredPassword'
1070
1181
  property :username, as: 'username'
1071
1182
  end
1072
1183
  end
@@ -1098,12 +1209,16 @@ module Google
1098
1209
  class OracleSourceConfig
1099
1210
  # @private
1100
1211
  class Representation < Google::Apis::Core::JsonRepresentation
1212
+ property :binary_log_parser, as: 'binaryLogParser', class: Google::Apis::DatastreamV1::BinaryLogParser, decorator: Google::Apis::DatastreamV1::BinaryLogParser::Representation
1213
+
1101
1214
  property :drop_large_objects, as: 'dropLargeObjects', class: Google::Apis::DatastreamV1::DropLargeObjects, decorator: Google::Apis::DatastreamV1::DropLargeObjects::Representation
1102
1215
 
1103
1216
  property :exclude_objects, as: 'excludeObjects', class: Google::Apis::DatastreamV1::OracleRdbms, decorator: Google::Apis::DatastreamV1::OracleRdbms::Representation
1104
1217
 
1105
1218
  property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::OracleRdbms, decorator: Google::Apis::DatastreamV1::OracleRdbms::Representation
1106
1219
 
1220
+ property :log_miner, as: 'logMiner', class: Google::Apis::DatastreamV1::LogMiner, decorator: Google::Apis::DatastreamV1::LogMiner::Representation
1221
+
1107
1222
  property :max_concurrent_backfill_tasks, as: 'maxConcurrentBackfillTasks'
1108
1223
  property :max_concurrent_cdc_tasks, as: 'maxConcurrentCdcTasks'
1109
1224
  property :stream_large_objects, as: 'streamLargeObjects', class: Google::Apis::DatastreamV1::StreamLargeObjects, decorator: Google::Apis::DatastreamV1::StreamLargeObjects::Representation
@@ -1296,6 +1411,8 @@ module Google
1296
1411
 
1297
1412
  property :oracle_scn_position, as: 'oracleScnPosition', class: Google::Apis::DatastreamV1::OracleScnPosition, decorator: Google::Apis::DatastreamV1::OracleScnPosition::Representation
1298
1413
 
1414
+ property :sql_server_lsn_position, as: 'sqlServerLsnPosition', class: Google::Apis::DatastreamV1::SqlServerLsnPosition, decorator: Google::Apis::DatastreamV1::SqlServerLsnPosition::Representation
1415
+
1299
1416
  end
1300
1417
  end
1301
1418
 
@@ -1319,6 +1436,13 @@ module Google
1319
1436
  end
1320
1437
  end
1321
1438
 
1439
+ class SqlServerLsnPosition
1440
+ # @private
1441
+ class Representation < Google::Apis::Core::JsonRepresentation
1442
+ property :lsn, as: 'lsn'
1443
+ end
1444
+ end
1445
+
1322
1446
  class SqlServerObjectIdentifier
1323
1447
  # @private
1324
1448
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -375,7 +375,7 @@ module Google
375
375
 
376
376
  # Use this method to update the parameters of a connection profile.
377
377
  # @param [String] name
378
- # Output only. The resource's name.
378
+ # Output only. Identifier. The resource's name.
379
379
  # @param [Google::Apis::DatastreamV1::ConnectionProfile] connection_profile_object
380
380
  # @param [Boolean] force
381
381
  # Optional. Update the connection profile without validating it.
@@ -438,8 +438,8 @@ module Google
438
438
  # Clients can use Operations.GetOperation or other methods to check whether the
439
439
  # cancellation succeeded or whether the operation completed despite cancellation.
440
440
  # On successful cancellation, the operation is not deleted; instead, it becomes
441
- # an operation with an Operation.error value with a google.rpc.Status.code of 1,
442
- # corresponding to `Code.CANCELLED`.
441
+ # an operation with an Operation.error value with a google.rpc.Status.code of `1`
442
+ # , corresponding to `Code.CANCELLED`.
443
443
  # @param [String] name
444
444
  # The name of the operation resource to be cancelled.
445
445
  # @param [Google::Apis::DatastreamV1::CancelOperationRequest] cancel_operation_request_object
@@ -1095,7 +1095,7 @@ module Google
1095
1095
 
1096
1096
  # Use this method to update the configuration of a stream.
1097
1097
  # @param [String] name
1098
- # Output only. The stream's name.
1098
+ # Output only. Identifier. The stream's name.
1099
1099
  # @param [Google::Apis::DatastreamV1::Stream] stream_object
1100
1100
  # @param [Boolean] force
1101
1101
  # Optional. Update the stream without validating it.
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.43.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-12-15 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.43.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.21
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Datastream API V1