google-apis-datastream_v1 0.36.0 → 0.38.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: a5660eeb9585ae19768d5f0b083bd690160fe20af15c8f0791bc4256c4d20dac
4
- data.tar.gz: 85a57868667a9f6aa0ff45221730a10b253b8b6fe7000db98dc87b6ac2adac2c
3
+ metadata.gz: 716586b9c33af4e1e45868d22ff326eb0e4ae5d196d27fbf50698c0f7c500fbd
4
+ data.tar.gz: 6db3a1169f40d58605c48a2ced56a146e73c384ed81d9a9481cd4ab5aec9a218
5
5
  SHA512:
6
- metadata.gz: 8e5f8a0f50032892042b5f2fb45fde08b97858b8f217a1a893b41f2d82a5e739f453855a91a0df59df6c5ce2164b1032153329fa6685a925af60db2a47cb5f49
7
- data.tar.gz: 9a9ea386979e6b3128db3152e3e463079f095e495db5e484feca3f63a4150c6093de21f538ed9574f5b1c3b759ae06ee969ce3bee4971d9f163b429e866ce2f7
6
+ metadata.gz: b50a76b21c44687f79fdbe5bb235f2a76bf08c941b166bf590359b3ec7b2af6cffa08f512d660a39f845647851ec7f13706e0101a2a2f74870d5fc1e267f8c22
7
+ data.tar.gz: 8014eb69ac7615647ea4cdd43b672870ee18ca101c736f5b00afdd8823a95fe9031f39d0688ae6da5524b0f1ce6946aee618912c7bb4e28b741f12269f8b3f17
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datastream_v1
2
2
 
3
+ ### v0.38.0 (2024-06-09)
4
+
5
+ * Regenerated from discovery document revision 20240529
6
+
7
+ ### v0.37.0 (2024-06-02)
8
+
9
+ * Regenerated from discovery document revision 20240515
10
+
3
11
  ### v0.36.0 (2024-05-19)
4
12
 
5
13
  * Regenerated using generator version 0.15.0
@@ -462,6 +462,11 @@ module Google
462
462
  # @return [Google::Apis::DatastreamV1::PostgresqlRdbms]
463
463
  attr_accessor :postgresql_rdbms
464
464
 
465
+ # SQLServer database structure.
466
+ # Corresponds to the JSON property `sqlServerRdbms`
467
+ # @return [Google::Apis::DatastreamV1::SqlServerRdbms]
468
+ attr_accessor :sql_server_rdbms
469
+
465
470
  def initialize(**args)
466
471
  update!(**args)
467
472
  end
@@ -475,6 +480,7 @@ module Google
475
480
  @mysql_rdbms = args[:mysql_rdbms] if args.key?(:mysql_rdbms)
476
481
  @oracle_rdbms = args[:oracle_rdbms] if args.key?(:oracle_rdbms)
477
482
  @postgresql_rdbms = args[:postgresql_rdbms] if args.key?(:postgresql_rdbms)
483
+ @sql_server_rdbms = args[:sql_server_rdbms] if args.key?(:sql_server_rdbms)
478
484
  end
479
485
  end
480
486
 
@@ -497,6 +503,11 @@ module Google
497
503
  # @return [Google::Apis::DatastreamV1::PostgresqlRdbms]
498
504
  attr_accessor :postgresql_rdbms
499
505
 
506
+ # SQLServer database structure.
507
+ # Corresponds to the JSON property `sqlServerRdbms`
508
+ # @return [Google::Apis::DatastreamV1::SqlServerRdbms]
509
+ attr_accessor :sql_server_rdbms
510
+
500
511
  def initialize(**args)
501
512
  update!(**args)
502
513
  end
@@ -506,6 +517,7 @@ module Google
506
517
  @mysql_rdbms = args[:mysql_rdbms] if args.key?(:mysql_rdbms)
507
518
  @oracle_rdbms = args[:oracle_rdbms] if args.key?(:oracle_rdbms)
508
519
  @postgresql_rdbms = args[:postgresql_rdbms] if args.key?(:postgresql_rdbms)
520
+ @sql_server_rdbms = args[:sql_server_rdbms] if args.key?(:sql_server_rdbms)
509
521
  end
510
522
  end
511
523
 
@@ -2381,6 +2393,19 @@ module Google
2381
2393
  end
2382
2394
  end
2383
2395
 
2396
+ # Configuration to use Change Tables CDC read method.
2397
+ class SqlServerChangeTables
2398
+ include Google::Apis::Core::Hashable
2399
+
2400
+ def initialize(**args)
2401
+ update!(**args)
2402
+ end
2403
+
2404
+ # Update properties of this object
2405
+ def update!(**args)
2406
+ end
2407
+ end
2408
+
2384
2409
  # SQLServer Column.
2385
2410
  class SqlServerColumn
2386
2411
  include Google::Apis::Core::Hashable
@@ -2560,6 +2585,11 @@ module Google
2560
2585
  class SqlServerSourceConfig
2561
2586
  include Google::Apis::Core::Hashable
2562
2587
 
2588
+ # Configuration to use Change Tables CDC read method.
2589
+ # Corresponds to the JSON property `changeTables`
2590
+ # @return [Google::Apis::DatastreamV1::SqlServerChangeTables]
2591
+ attr_accessor :change_tables
2592
+
2563
2593
  # SQLServer database structure.
2564
2594
  # Corresponds to the JSON property `excludeObjects`
2565
2595
  # @return [Google::Apis::DatastreamV1::SqlServerRdbms]
@@ -2580,16 +2610,23 @@ module Google
2580
2610
  # @return [Fixnum]
2581
2611
  attr_accessor :max_concurrent_cdc_tasks
2582
2612
 
2613
+ # Configuration to use Transaction Logs CDC read method.
2614
+ # Corresponds to the JSON property `transactionLogs`
2615
+ # @return [Google::Apis::DatastreamV1::SqlServerTransactionLogs]
2616
+ attr_accessor :transaction_logs
2617
+
2583
2618
  def initialize(**args)
2584
2619
  update!(**args)
2585
2620
  end
2586
2621
 
2587
2622
  # Update properties of this object
2588
2623
  def update!(**args)
2624
+ @change_tables = args[:change_tables] if args.key?(:change_tables)
2589
2625
  @exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
2590
2626
  @include_objects = args[:include_objects] if args.key?(:include_objects)
2591
2627
  @max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks)
2592
2628
  @max_concurrent_cdc_tasks = args[:max_concurrent_cdc_tasks] if args.key?(:max_concurrent_cdc_tasks)
2629
+ @transaction_logs = args[:transaction_logs] if args.key?(:transaction_logs)
2593
2630
  end
2594
2631
  end
2595
2632
 
@@ -2619,6 +2656,19 @@ module Google
2619
2656
  end
2620
2657
  end
2621
2658
 
2659
+ # Configuration to use Transaction Logs CDC read method.
2660
+ class SqlServerTransactionLogs
2661
+ include Google::Apis::Core::Hashable
2662
+
2663
+ def initialize(**args)
2664
+ update!(**args)
2665
+ end
2666
+
2667
+ # Update properties of this object
2668
+ def update!(**args)
2669
+ end
2670
+ end
2671
+
2622
2672
  # Request for manually initiating a backfill job for a specific stream object.
2623
2673
  class StartBackfillJobRequest
2624
2674
  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.36.0"
19
+ GEM_VERSION = "0.38.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240410"
25
+ REVISION = "20240529"
26
26
  end
27
27
  end
28
28
  end
@@ -442,6 +442,12 @@ module Google
442
442
  include Google::Apis::Core::JsonObjectSupport
443
443
  end
444
444
 
445
+ class SqlServerChangeTables
446
+ class Representation < Google::Apis::Core::JsonRepresentation; end
447
+
448
+ include Google::Apis::Core::JsonObjectSupport
449
+ end
450
+
445
451
  class SqlServerColumn
446
452
  class Representation < Google::Apis::Core::JsonRepresentation; end
447
453
 
@@ -484,6 +490,12 @@ module Google
484
490
  include Google::Apis::Core::JsonObjectSupport
485
491
  end
486
492
 
493
+ class SqlServerTransactionLogs
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
487
499
  class StartBackfillJobRequest
488
500
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
501
 
@@ -708,6 +720,8 @@ module Google
708
720
 
709
721
  property :postgresql_rdbms, as: 'postgresqlRdbms', class: Google::Apis::DatastreamV1::PostgresqlRdbms, decorator: Google::Apis::DatastreamV1::PostgresqlRdbms::Representation
710
722
 
723
+ property :sql_server_rdbms, as: 'sqlServerRdbms', class: Google::Apis::DatastreamV1::SqlServerRdbms, decorator: Google::Apis::DatastreamV1::SqlServerRdbms::Representation
724
+
711
725
  end
712
726
  end
713
727
 
@@ -720,6 +734,8 @@ module Google
720
734
 
721
735
  property :postgresql_rdbms, as: 'postgresqlRdbms', class: Google::Apis::DatastreamV1::PostgresqlRdbms, decorator: Google::Apis::DatastreamV1::PostgresqlRdbms::Representation
722
736
 
737
+ property :sql_server_rdbms, as: 'sqlServerRdbms', class: Google::Apis::DatastreamV1::SqlServerRdbms, decorator: Google::Apis::DatastreamV1::SqlServerRdbms::Representation
738
+
723
739
  end
724
740
  end
725
741
 
@@ -1282,6 +1298,12 @@ module Google
1282
1298
  end
1283
1299
  end
1284
1300
 
1301
+ class SqlServerChangeTables
1302
+ # @private
1303
+ class Representation < Google::Apis::Core::JsonRepresentation
1304
+ end
1305
+ end
1306
+
1285
1307
  class SqlServerColumn
1286
1308
  # @private
1287
1309
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1335,12 +1357,16 @@ module Google
1335
1357
  class SqlServerSourceConfig
1336
1358
  # @private
1337
1359
  class Representation < Google::Apis::Core::JsonRepresentation
1360
+ property :change_tables, as: 'changeTables', class: Google::Apis::DatastreamV1::SqlServerChangeTables, decorator: Google::Apis::DatastreamV1::SqlServerChangeTables::Representation
1361
+
1338
1362
  property :exclude_objects, as: 'excludeObjects', class: Google::Apis::DatastreamV1::SqlServerRdbms, decorator: Google::Apis::DatastreamV1::SqlServerRdbms::Representation
1339
1363
 
1340
1364
  property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::SqlServerRdbms, decorator: Google::Apis::DatastreamV1::SqlServerRdbms::Representation
1341
1365
 
1342
1366
  property :max_concurrent_backfill_tasks, as: 'maxConcurrentBackfillTasks'
1343
1367
  property :max_concurrent_cdc_tasks, as: 'maxConcurrentCdcTasks'
1368
+ property :transaction_logs, as: 'transactionLogs', class: Google::Apis::DatastreamV1::SqlServerTransactionLogs, decorator: Google::Apis::DatastreamV1::SqlServerTransactionLogs::Representation
1369
+
1344
1370
  end
1345
1371
  end
1346
1372
 
@@ -1353,6 +1379,12 @@ module Google
1353
1379
  end
1354
1380
  end
1355
1381
 
1382
+ class SqlServerTransactionLogs
1383
+ # @private
1384
+ class Representation < Google::Apis::Core::JsonRepresentation
1385
+ end
1386
+ end
1387
+
1356
1388
  class StartBackfillJobRequest
1357
1389
  # @private
1358
1390
  class Representation < Google::Apis::Core::JsonRepresentation
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.36.0
4
+ version: 0.38.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-05-26 00:00:00.000000000 Z
11
+ date: 2024-06-09 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.36.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.38.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: []