google-apis-datastream_v1 0.43.0 → 0.45.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3bbbfcafabfdf5d813d9c08acfe496607adbf4408761e7cfc106736bf9098c35
4
- data.tar.gz: a69439cb4d20695f23098f4b2037c1ea0bf7ccf6e4447bf4d3ab9b7c712c5e4b
3
+ metadata.gz: f31b4e93fc310897e3047ad882d791c94b25d4d77fbb9329a6086d6c6258d3c7
4
+ data.tar.gz: 9123348b22490d246c9969e1c3768b1e37a43248da2fa6953e550e0fcc30979b
5
5
  SHA512:
6
- metadata.gz: 78b38209bd405075f56d9879ffc19f60f9abde246b1dfcaf4cafa477fc74c29d53e1b4989ade3dffa7c0bfc35af26e7e3662d381c81768c5c4ba3897e3dc3382
7
- data.tar.gz: ee44cd355eae2351d49793abdb77b32377473edc272956f692eb833d204a99c80ea237bfde8b21ef4696ef1bb6e2ae63c6c60280b5de81710f5bc0a58e47db2b
6
+ metadata.gz: aa0ce37d47f8f760b161ea3d465d9115bdbdb8b1685f56e662a89252ee1e0cabb431d0ec8a7dd14a31078a939e0bbc08716e212fc19828cf59fb905437706fb1
7
+ data.tar.gz: b05c3a2c7f90bc198dc6ea4820053c76ab91637342f238c36a821edef417b8c878814c5d9acf511290dcadc2cf0d77ebb254f6c121da1ec112a82d9248b24827
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-datastream_v1
2
2
 
3
+ ### v0.45.0 (2025-03-02)
4
+
5
+ * Regenerated from discovery document revision 20250219
6
+
7
+ ### v0.44.0 (2025-01-12)
8
+
9
+ * Regenerated from discovery document revision 20250101
10
+ * Regenerated using generator version 0.16.0
11
+
3
12
  ### v0.43.0 (2024-12-15)
4
13
 
5
14
  * Regenerated from discovery document revision 20241204
@@ -69,6 +69,11 @@ module Google
69
69
  # @return [Google::Apis::DatastreamV1::PostgresqlRdbms]
70
70
  attr_accessor :postgresql_excluded_objects
71
71
 
72
+ # Salesforce organization structure.
73
+ # Corresponds to the JSON property `salesforceExcludedObjects`
74
+ # @return [Google::Apis::DatastreamV1::SalesforceOrg]
75
+ attr_accessor :salesforce_excluded_objects
76
+
72
77
  # SQLServer database structure.
73
78
  # Corresponds to the JSON property `sqlServerExcludedObjects`
74
79
  # @return [Google::Apis::DatastreamV1::SqlServerRdbms]
@@ -83,6 +88,7 @@ module Google
83
88
  @mysql_excluded_objects = args[:mysql_excluded_objects] if args.key?(:mysql_excluded_objects)
84
89
  @oracle_excluded_objects = args[:oracle_excluded_objects] if args.key?(:oracle_excluded_objects)
85
90
  @postgresql_excluded_objects = args[:postgresql_excluded_objects] if args.key?(:postgresql_excluded_objects)
91
+ @salesforce_excluded_objects = args[:salesforce_excluded_objects] if args.key?(:salesforce_excluded_objects)
86
92
  @sql_server_excluded_objects = args[:sql_server_excluded_objects] if args.key?(:sql_server_excluded_objects)
87
93
  end
88
94
  end
@@ -153,6 +159,11 @@ module Google
153
159
  # @return [Google::Apis::DatastreamV1::AppendOnly]
154
160
  attr_accessor :append_only
155
161
 
162
+ # The configuration for BLMT.
163
+ # Corresponds to the JSON property `blmtConfig`
164
+ # @return [Google::Apis::DatastreamV1::BlmtConfig]
165
+ attr_accessor :blmt_config
166
+
156
167
  # The guaranteed data freshness (in seconds) when querying tables created by the
157
168
  # stream. Editing this field will only affect new tables created in the future,
158
169
  # but existing tables will not be impacted. Lower values mean that queries will
@@ -185,6 +196,7 @@ module Google
185
196
  # Update properties of this object
186
197
  def update!(**args)
187
198
  @append_only = args[:append_only] if args.key?(:append_only)
199
+ @blmt_config = args[:blmt_config] if args.key?(:blmt_config)
188
200
  @data_freshness = args[:data_freshness] if args.key?(:data_freshness)
189
201
  @merge = args[:merge] if args.key?(:merge)
190
202
  @single_target_dataset = args[:single_target_dataset] if args.key?(:single_target_dataset)
@@ -243,6 +255,49 @@ module Google
243
255
  end
244
256
  end
245
257
 
258
+ # The configuration for BLMT.
259
+ class BlmtConfig
260
+ include Google::Apis::Core::Hashable
261
+
262
+ # Required. The Cloud Storage bucket name.
263
+ # Corresponds to the JSON property `bucket`
264
+ # @return [String]
265
+ attr_accessor :bucket
266
+
267
+ # Required. The bigquery connection. Format: ``project`.`location`.`name``
268
+ # Corresponds to the JSON property `connectionName`
269
+ # @return [String]
270
+ attr_accessor :connection_name
271
+
272
+ # Required. The file format.
273
+ # Corresponds to the JSON property `fileFormat`
274
+ # @return [String]
275
+ attr_accessor :file_format
276
+
277
+ # The root path inside the Cloud Storage bucket.
278
+ # Corresponds to the JSON property `rootPath`
279
+ # @return [String]
280
+ attr_accessor :root_path
281
+
282
+ # Required. The table format.
283
+ # Corresponds to the JSON property `tableFormat`
284
+ # @return [String]
285
+ attr_accessor :table_format
286
+
287
+ def initialize(**args)
288
+ update!(**args)
289
+ end
290
+
291
+ # Update properties of this object
292
+ def update!(**args)
293
+ @bucket = args[:bucket] if args.key?(:bucket)
294
+ @connection_name = args[:connection_name] if args.key?(:connection_name)
295
+ @file_format = args[:file_format] if args.key?(:file_format)
296
+ @root_path = args[:root_path] if args.key?(:root_path)
297
+ @table_format = args[:table_format] if args.key?(:table_format)
298
+ end
299
+ end
300
+
246
301
  # The request message for Operations.CancelOperation.
247
302
  class CancelOperationRequest
248
303
  include Google::Apis::Core::Hashable
@@ -323,7 +378,7 @@ module Google
323
378
  # @return [Hash<String,String>]
324
379
  attr_accessor :labels
325
380
 
326
- # MySQL database profile. Next ID: 7.
381
+ # MySQL database profile.
327
382
  # Corresponds to the JSON property `mysqlProfile`
328
383
  # @return [Google::Apis::DatastreamV1::MysqlProfile]
329
384
  attr_accessor :mysql_profile
@@ -333,7 +388,7 @@ module Google
333
388
  # @return [String]
334
389
  attr_accessor :name
335
390
 
336
- # Oracle database profile. Next ID: 10.
391
+ # Oracle database profile.
337
392
  # Corresponds to the JSON property `oracleProfile`
338
393
  # @return [Google::Apis::DatastreamV1::OracleProfile]
339
394
  attr_accessor :oracle_profile
@@ -348,7 +403,24 @@ module Google
348
403
  # @return [Google::Apis::DatastreamV1::PrivateConnectivity]
349
404
  attr_accessor :private_connectivity
350
405
 
351
- # SQLServer database profile. Next ID: 8.
406
+ # Salesforce profile
407
+ # Corresponds to the JSON property `salesforceProfile`
408
+ # @return [Google::Apis::DatastreamV1::SalesforceProfile]
409
+ attr_accessor :salesforce_profile
410
+
411
+ # Output only. Reserved for future use.
412
+ # Corresponds to the JSON property `satisfiesPzi`
413
+ # @return [Boolean]
414
+ attr_accessor :satisfies_pzi
415
+ alias_method :satisfies_pzi?, :satisfies_pzi
416
+
417
+ # Output only. Reserved for future use.
418
+ # Corresponds to the JSON property `satisfiesPzs`
419
+ # @return [Boolean]
420
+ attr_accessor :satisfies_pzs
421
+ alias_method :satisfies_pzs?, :satisfies_pzs
422
+
423
+ # SQLServer database profile.
352
424
  # Corresponds to the JSON property `sqlServerProfile`
353
425
  # @return [Google::Apis::DatastreamV1::SqlServerProfile]
354
426
  attr_accessor :sql_server_profile
@@ -382,6 +454,9 @@ module Google
382
454
  @oracle_profile = args[:oracle_profile] if args.key?(:oracle_profile)
383
455
  @postgresql_profile = args[:postgresql_profile] if args.key?(:postgresql_profile)
384
456
  @private_connectivity = args[:private_connectivity] if args.key?(:private_connectivity)
457
+ @salesforce_profile = args[:salesforce_profile] if args.key?(:salesforce_profile)
458
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
459
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
385
460
  @sql_server_profile = args[:sql_server_profile] if args.key?(:sql_server_profile)
386
461
  @static_service_ip_connectivity = args[:static_service_ip_connectivity] if args.key?(:static_service_ip_connectivity)
387
462
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -1239,6 +1314,25 @@ module Google
1239
1314
  end
1240
1315
  end
1241
1316
 
1317
+ # MySQL GTID position
1318
+ class MysqlGtidPosition
1319
+ include Google::Apis::Core::Hashable
1320
+
1321
+ # Required. The gtid set to start replication from.
1322
+ # Corresponds to the JSON property `gtidSet`
1323
+ # @return [String]
1324
+ attr_accessor :gtid_set
1325
+
1326
+ def initialize(**args)
1327
+ update!(**args)
1328
+ end
1329
+
1330
+ # Update properties of this object
1331
+ def update!(**args)
1332
+ @gtid_set = args[:gtid_set] if args.key?(:gtid_set)
1333
+ end
1334
+ end
1335
+
1242
1336
  # MySQL log position
1243
1337
  class MysqlLogPosition
1244
1338
  include Google::Apis::Core::Hashable
@@ -1289,7 +1383,7 @@ module Google
1289
1383
  end
1290
1384
  end
1291
1385
 
1292
- # MySQL database profile. Next ID: 7.
1386
+ # MySQL database profile.
1293
1387
  class MysqlProfile
1294
1388
  include Google::Apis::Core::Hashable
1295
1389
 
@@ -1419,8 +1513,8 @@ module Google
1419
1513
  attr_accessor :ca_certificate_set
1420
1514
  alias_method :ca_certificate_set?, :ca_certificate_set
1421
1515
 
1422
- # Input only. PEM-encoded certificate that will be used by the replica to
1423
- # authenticate against the source database server. If this field is used then
1516
+ # Optional. Input only. PEM-encoded certificate that will be used by the replica
1517
+ # to authenticate against the source database server. If this field is used then
1424
1518
  # the 'client_key' and the 'ca_certificate' fields are mandatory.
1425
1519
  # Corresponds to the JSON property `clientCertificate`
1426
1520
  # @return [String]
@@ -1432,9 +1526,10 @@ module Google
1432
1526
  attr_accessor :client_certificate_set
1433
1527
  alias_method :client_certificate_set?, :client_certificate_set
1434
1528
 
1435
- # Input only. PEM-encoded private key associated with the Client Certificate. If
1436
- # this field is used then the 'client_certificate' and the 'ca_certificate'
1437
- # fields are mandatory.
1529
+ # Optional. Input only. PEM-encoded private key associated with the Client
1530
+ # Certificate. If this field is used then the 'client_certificate' and the '
1531
+ # ca_certificate' fields are mandatory. Mutually exclusive with the `
1532
+ # secret_manager_stored_client_key` field.
1438
1533
  # Corresponds to the JSON property `clientKey`
1439
1534
  # @return [String]
1440
1535
  attr_accessor :client_key
@@ -1500,6 +1595,39 @@ module Google
1500
1595
  end
1501
1596
  end
1502
1597
 
1598
+ # OAuth2 Client Credentials.
1599
+ class Oauth2ClientCredentials
1600
+ include Google::Apis::Core::Hashable
1601
+
1602
+ # Required. Client ID for Salesforce OAuth2 Client Credentials.
1603
+ # Corresponds to the JSON property `clientId`
1604
+ # @return [String]
1605
+ attr_accessor :client_id
1606
+
1607
+ # Optional. Client secret for Salesforce OAuth2 Client Credentials. Mutually
1608
+ # exclusive with the `secret_manager_stored_client_secret` field.
1609
+ # Corresponds to the JSON property `clientSecret`
1610
+ # @return [String]
1611
+ attr_accessor :client_secret
1612
+
1613
+ # Optional. A reference to a Secret Manager resource name storing the Salesforce
1614
+ # OAuth2 client_secret. Mutually exclusive with the `client_secret` field.
1615
+ # Corresponds to the JSON property `secretManagerStoredClientSecret`
1616
+ # @return [String]
1617
+ attr_accessor :secret_manager_stored_client_secret
1618
+
1619
+ def initialize(**args)
1620
+ update!(**args)
1621
+ end
1622
+
1623
+ # Update properties of this object
1624
+ def update!(**args)
1625
+ @client_id = args[:client_id] if args.key?(:client_id)
1626
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
1627
+ @secret_manager_stored_client_secret = args[:secret_manager_stored_client_secret] if args.key?(:secret_manager_stored_client_secret)
1628
+ end
1629
+ end
1630
+
1503
1631
  # This resource represents a long-running operation that is the result of a
1504
1632
  # network API call.
1505
1633
  class Operation
@@ -1627,7 +1755,7 @@ module Google
1627
1755
  end
1628
1756
  end
1629
1757
 
1630
- # Configuration for Oracle Automatic Storage Management (ASM) connection. .
1758
+ # Configuration for Oracle Automatic Storage Management (ASM) connection.
1631
1759
  class OracleAsmConfig
1632
1760
  include Google::Apis::Core::Hashable
1633
1761
 
@@ -1789,7 +1917,7 @@ module Google
1789
1917
  end
1790
1918
  end
1791
1919
 
1792
- # Oracle database profile. Next ID: 10.
1920
+ # Oracle database profile.
1793
1921
  class OracleProfile
1794
1922
  include Google::Apis::Core::Hashable
1795
1923
 
@@ -1808,7 +1936,7 @@ module Google
1808
1936
  # @return [String]
1809
1937
  attr_accessor :hostname
1810
1938
 
1811
- # Configuration for Oracle Automatic Storage Management (ASM) connection. .
1939
+ # Configuration for Oracle Automatic Storage Management (ASM) connection.
1812
1940
  # Corresponds to the JSON property `oracleAsmConfig`
1813
1941
  # @return [Google::Apis::DatastreamV1::OracleAsmConfig]
1814
1942
  attr_accessor :oracle_asm_config
@@ -2151,6 +2279,11 @@ module Google
2151
2279
  # @return [Fixnum]
2152
2280
  attr_accessor :port
2153
2281
 
2282
+ # PostgreSQL SSL configuration information.
2283
+ # Corresponds to the JSON property `sslConfig`
2284
+ # @return [Google::Apis::DatastreamV1::PostgresqlSslConfig]
2285
+ attr_accessor :ssl_config
2286
+
2154
2287
  # Required. Username for the PostgreSQL connection.
2155
2288
  # Corresponds to the JSON property `username`
2156
2289
  # @return [String]
@@ -2166,6 +2299,7 @@ module Google
2166
2299
  @hostname = args[:hostname] if args.key?(:hostname)
2167
2300
  @password = args[:password] if args.key?(:password)
2168
2301
  @port = args[:port] if args.key?(:port)
2302
+ @ssl_config = args[:ssl_config] if args.key?(:ssl_config)
2169
2303
  @username = args[:username] if args.key?(:username)
2170
2304
  end
2171
2305
  end
@@ -2260,6 +2394,36 @@ module Google
2260
2394
  end
2261
2395
  end
2262
2396
 
2397
+ # PostgreSQL SSL configuration information.
2398
+ class PostgresqlSslConfig
2399
+ include Google::Apis::Core::Hashable
2400
+
2401
+ # Message represents the option where Datastream will enforce the encryption and
2402
+ # authenticate the server identity as well as the client identity.
2403
+ # ca_certificate, client_certificate and client_key must be set if user selects
2404
+ # this option.
2405
+ # Corresponds to the JSON property `serverAndClientVerification`
2406
+ # @return [Google::Apis::DatastreamV1::ServerAndClientVerification]
2407
+ attr_accessor :server_and_client_verification
2408
+
2409
+ # Message represents the option where Datastream will enforce the encryption and
2410
+ # authenticate the server identity. ca_certificate must be set if user selects
2411
+ # this option.
2412
+ # Corresponds to the JSON property `serverVerification`
2413
+ # @return [Google::Apis::DatastreamV1::ServerVerification]
2414
+ attr_accessor :server_verification
2415
+
2416
+ def initialize(**args)
2417
+ update!(**args)
2418
+ end
2419
+
2420
+ # Update properties of this object
2421
+ def update!(**args)
2422
+ @server_and_client_verification = args[:server_and_client_verification] if args.key?(:server_and_client_verification)
2423
+ @server_verification = args[:server_verification] if args.key?(:server_verification)
2424
+ end
2425
+ end
2426
+
2263
2427
  # PostgreSQL table.
2264
2428
  class PostgresqlTable
2265
2429
  include Google::Apis::Core::Hashable
@@ -2316,6 +2480,18 @@ module Google
2316
2480
  # @return [String]
2317
2481
  attr_accessor :name
2318
2482
 
2483
+ # Output only. Reserved for future use.
2484
+ # Corresponds to the JSON property `satisfiesPzi`
2485
+ # @return [Boolean]
2486
+ attr_accessor :satisfies_pzi
2487
+ alias_method :satisfies_pzi?, :satisfies_pzi
2488
+
2489
+ # Output only. Reserved for future use.
2490
+ # Corresponds to the JSON property `satisfiesPzs`
2491
+ # @return [Boolean]
2492
+ attr_accessor :satisfies_pzs
2493
+ alias_method :satisfies_pzs?, :satisfies_pzs
2494
+
2319
2495
  # Output only. The state of the Private Connection.
2320
2496
  # Corresponds to the JSON property `state`
2321
2497
  # @return [String]
@@ -2343,6 +2519,8 @@ module Google
2343
2519
  @error = args[:error] if args.key?(:error)
2344
2520
  @labels = args[:labels] if args.key?(:labels)
2345
2521
  @name = args[:name] if args.key?(:name)
2522
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
2523
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
2346
2524
  @state = args[:state] if args.key?(:state)
2347
2525
  @update_time = args[:update_time] if args.key?(:update_time)
2348
2526
  @vpc_peering_config = args[:vpc_peering_config] if args.key?(:vpc_peering_config)
@@ -2451,6 +2629,229 @@ module Google
2451
2629
  end
2452
2630
  end
2453
2631
 
2632
+ # Salesforce field.
2633
+ class SalesforceField
2634
+ include Google::Apis::Core::Hashable
2635
+
2636
+ # The data type.
2637
+ # Corresponds to the JSON property `dataType`
2638
+ # @return [String]
2639
+ attr_accessor :data_type
2640
+
2641
+ # Field name.
2642
+ # Corresponds to the JSON property `name`
2643
+ # @return [String]
2644
+ attr_accessor :name
2645
+
2646
+ # Indicates whether the field can accept nil values.
2647
+ # Corresponds to the JSON property `nillable`
2648
+ # @return [Boolean]
2649
+ attr_accessor :nillable
2650
+ alias_method :nillable?, :nillable
2651
+
2652
+ def initialize(**args)
2653
+ update!(**args)
2654
+ end
2655
+
2656
+ # Update properties of this object
2657
+ def update!(**args)
2658
+ @data_type = args[:data_type] if args.key?(:data_type)
2659
+ @name = args[:name] if args.key?(:name)
2660
+ @nillable = args[:nillable] if args.key?(:nillable)
2661
+ end
2662
+ end
2663
+
2664
+ # Salesforce object.
2665
+ class SalesforceObject
2666
+ include Google::Apis::Core::Hashable
2667
+
2668
+ # Salesforce fields. When unspecified as part of include objects, includes
2669
+ # everything, when unspecified as part of exclude objects, excludes nothing.
2670
+ # Corresponds to the JSON property `fields`
2671
+ # @return [Array<Google::Apis::DatastreamV1::SalesforceField>]
2672
+ attr_accessor :fields
2673
+
2674
+ # Object name.
2675
+ # Corresponds to the JSON property `objectName`
2676
+ # @return [String]
2677
+ attr_accessor :object_name
2678
+
2679
+ def initialize(**args)
2680
+ update!(**args)
2681
+ end
2682
+
2683
+ # Update properties of this object
2684
+ def update!(**args)
2685
+ @fields = args[:fields] if args.key?(:fields)
2686
+ @object_name = args[:object_name] if args.key?(:object_name)
2687
+ end
2688
+ end
2689
+
2690
+ # Salesforce data source object identifier.
2691
+ class SalesforceObjectIdentifier
2692
+ include Google::Apis::Core::Hashable
2693
+
2694
+ # Required. The object name.
2695
+ # Corresponds to the JSON property `objectName`
2696
+ # @return [String]
2697
+ attr_accessor :object_name
2698
+
2699
+ def initialize(**args)
2700
+ update!(**args)
2701
+ end
2702
+
2703
+ # Update properties of this object
2704
+ def update!(**args)
2705
+ @object_name = args[:object_name] if args.key?(:object_name)
2706
+ end
2707
+ end
2708
+
2709
+ # Salesforce organization structure.
2710
+ class SalesforceOrg
2711
+ include Google::Apis::Core::Hashable
2712
+
2713
+ # Salesforce objects in the database server.
2714
+ # Corresponds to the JSON property `objects`
2715
+ # @return [Array<Google::Apis::DatastreamV1::SalesforceObject>]
2716
+ attr_accessor :objects
2717
+
2718
+ def initialize(**args)
2719
+ update!(**args)
2720
+ end
2721
+
2722
+ # Update properties of this object
2723
+ def update!(**args)
2724
+ @objects = args[:objects] if args.key?(:objects)
2725
+ end
2726
+ end
2727
+
2728
+ # Salesforce profile
2729
+ class SalesforceProfile
2730
+ include Google::Apis::Core::Hashable
2731
+
2732
+ # Required. Domain endpoint for the Salesforce connection.
2733
+ # Corresponds to the JSON property `domain`
2734
+ # @return [String]
2735
+ attr_accessor :domain
2736
+
2737
+ # OAuth2 Client Credentials.
2738
+ # Corresponds to the JSON property `oauth2ClientCredentials`
2739
+ # @return [Google::Apis::DatastreamV1::Oauth2ClientCredentials]
2740
+ attr_accessor :oauth2_client_credentials
2741
+
2742
+ # Username-password credentials.
2743
+ # Corresponds to the JSON property `userCredentials`
2744
+ # @return [Google::Apis::DatastreamV1::UserCredentials]
2745
+ attr_accessor :user_credentials
2746
+
2747
+ def initialize(**args)
2748
+ update!(**args)
2749
+ end
2750
+
2751
+ # Update properties of this object
2752
+ def update!(**args)
2753
+ @domain = args[:domain] if args.key?(:domain)
2754
+ @oauth2_client_credentials = args[:oauth2_client_credentials] if args.key?(:oauth2_client_credentials)
2755
+ @user_credentials = args[:user_credentials] if args.key?(:user_credentials)
2756
+ end
2757
+ end
2758
+
2759
+ # Salesforce source configuration
2760
+ class SalesforceSourceConfig
2761
+ include Google::Apis::Core::Hashable
2762
+
2763
+ # Salesforce organization structure.
2764
+ # Corresponds to the JSON property `excludeObjects`
2765
+ # @return [Google::Apis::DatastreamV1::SalesforceOrg]
2766
+ attr_accessor :exclude_objects
2767
+
2768
+ # Salesforce organization structure.
2769
+ # Corresponds to the JSON property `includeObjects`
2770
+ # @return [Google::Apis::DatastreamV1::SalesforceOrg]
2771
+ attr_accessor :include_objects
2772
+
2773
+ # Required. Salesforce objects polling interval. The interval at which new
2774
+ # changes will be polled for each object. The duration must be between 5 minutes
2775
+ # and 24 hours.
2776
+ # Corresponds to the JSON property `pollingInterval`
2777
+ # @return [String]
2778
+ attr_accessor :polling_interval
2779
+
2780
+ def initialize(**args)
2781
+ update!(**args)
2782
+ end
2783
+
2784
+ # Update properties of this object
2785
+ def update!(**args)
2786
+ @exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
2787
+ @include_objects = args[:include_objects] if args.key?(:include_objects)
2788
+ @polling_interval = args[:polling_interval] if args.key?(:polling_interval)
2789
+ end
2790
+ end
2791
+
2792
+ # Message represents the option where Datastream will enforce the encryption and
2793
+ # authenticate the server identity as well as the client identity.
2794
+ # ca_certificate, client_certificate and client_key must be set if user selects
2795
+ # this option.
2796
+ class ServerAndClientVerification
2797
+ include Google::Apis::Core::Hashable
2798
+
2799
+ # Required. Input only. PEM-encoded server root CA certificate.
2800
+ # Corresponds to the JSON property `caCertificate`
2801
+ # @return [String]
2802
+ attr_accessor :ca_certificate
2803
+
2804
+ # Required. Input only. PEM-encoded certificate used by the source database to
2805
+ # authenticate the client identity (i.e., the Datastream's identity). This
2806
+ # certificate is signed by either a root certificate trusted by the server or
2807
+ # one or more intermediate certificates (which is stored with the leaf
2808
+ # certificate) to link the this certificate to the trusted root certificate.
2809
+ # Corresponds to the JSON property `clientCertificate`
2810
+ # @return [String]
2811
+ attr_accessor :client_certificate
2812
+
2813
+ # Optional. Input only. PEM-encoded private key associated with the client
2814
+ # certificate. This value will be used during the SSL/TLS handshake, allowing
2815
+ # the PostgreSQL server to authenticate the client's identity, i.e. identity of
2816
+ # the Datastream. Mutually exclusive with the `secret_manager_stored_client_key`
2817
+ # field.
2818
+ # Corresponds to the JSON property `clientKey`
2819
+ # @return [String]
2820
+ attr_accessor :client_key
2821
+
2822
+ def initialize(**args)
2823
+ update!(**args)
2824
+ end
2825
+
2826
+ # Update properties of this object
2827
+ def update!(**args)
2828
+ @ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
2829
+ @client_certificate = args[:client_certificate] if args.key?(:client_certificate)
2830
+ @client_key = args[:client_key] if args.key?(:client_key)
2831
+ end
2832
+ end
2833
+
2834
+ # Message represents the option where Datastream will enforce the encryption and
2835
+ # authenticate the server identity. ca_certificate must be set if user selects
2836
+ # this option.
2837
+ class ServerVerification
2838
+ include Google::Apis::Core::Hashable
2839
+
2840
+ # Required. Input only. PEM-encoded server root CA certificate.
2841
+ # Corresponds to the JSON property `caCertificate`
2842
+ # @return [String]
2843
+ attr_accessor :ca_certificate
2844
+
2845
+ def initialize(**args)
2846
+ update!(**args)
2847
+ end
2848
+
2849
+ # Update properties of this object
2850
+ def update!(**args)
2851
+ @ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
2852
+ end
2853
+ end
2854
+
2454
2855
  # A single target dataset to which all data will be streamed.
2455
2856
  class SingleTargetDataset
2456
2857
  include Google::Apis::Core::Hashable
@@ -2490,7 +2891,12 @@ module Google
2490
2891
  # @return [Google::Apis::DatastreamV1::PostgresqlSourceConfig]
2491
2892
  attr_accessor :postgresql_source_config
2492
2893
 
2493
- # Required. Source connection profile resoource. Format: `projects/`project`/
2894
+ # Salesforce source configuration
2895
+ # Corresponds to the JSON property `salesforceSourceConfig`
2896
+ # @return [Google::Apis::DatastreamV1::SalesforceSourceConfig]
2897
+ attr_accessor :salesforce_source_config
2898
+
2899
+ # Required. Source connection profile resource. Format: `projects/`project`/
2494
2900
  # locations/`location`/connectionProfiles/`name``
2495
2901
  # Corresponds to the JSON property `sourceConnectionProfile`
2496
2902
  # @return [String]
@@ -2510,6 +2916,7 @@ module Google
2510
2916
  @mysql_source_config = args[:mysql_source_config] if args.key?(:mysql_source_config)
2511
2917
  @oracle_source_config = args[:oracle_source_config] if args.key?(:oracle_source_config)
2512
2918
  @postgresql_source_config = args[:postgresql_source_config] if args.key?(:postgresql_source_config)
2919
+ @salesforce_source_config = args[:salesforce_source_config] if args.key?(:salesforce_source_config)
2513
2920
  @source_connection_profile = args[:source_connection_profile] if args.key?(:source_connection_profile)
2514
2921
  @sql_server_source_config = args[:sql_server_source_config] if args.key?(:sql_server_source_config)
2515
2922
  end
@@ -2554,6 +2961,11 @@ module Google
2554
2961
  # @return [Google::Apis::DatastreamV1::PostgresqlObjectIdentifier]
2555
2962
  attr_accessor :postgresql_identifier
2556
2963
 
2964
+ # Salesforce data source object identifier.
2965
+ # Corresponds to the JSON property `salesforceIdentifier`
2966
+ # @return [Google::Apis::DatastreamV1::SalesforceObjectIdentifier]
2967
+ attr_accessor :salesforce_identifier
2968
+
2557
2969
  # SQLServer data source object identifier.
2558
2970
  # Corresponds to the JSON property `sqlServerIdentifier`
2559
2971
  # @return [Google::Apis::DatastreamV1::SqlServerObjectIdentifier]
@@ -2568,6 +2980,7 @@ module Google
2568
2980
  @mysql_identifier = args[:mysql_identifier] if args.key?(:mysql_identifier)
2569
2981
  @oracle_identifier = args[:oracle_identifier] if args.key?(:oracle_identifier)
2570
2982
  @postgresql_identifier = args[:postgresql_identifier] if args.key?(:postgresql_identifier)
2983
+ @salesforce_identifier = args[:salesforce_identifier] if args.key?(:salesforce_identifier)
2571
2984
  @sql_server_identifier = args[:sql_server_identifier] if args.key?(:sql_server_identifier)
2572
2985
  end
2573
2986
  end
@@ -2576,6 +2989,11 @@ module Google
2576
2989
  class SpecificStartPosition
2577
2990
  include Google::Apis::Core::Hashable
2578
2991
 
2992
+ # MySQL GTID position
2993
+ # Corresponds to the JSON property `mysqlGtidPosition`
2994
+ # @return [Google::Apis::DatastreamV1::MysqlGtidPosition]
2995
+ attr_accessor :mysql_gtid_position
2996
+
2579
2997
  # MySQL log position
2580
2998
  # Corresponds to the JSON property `mysqlLogPosition`
2581
2999
  # @return [Google::Apis::DatastreamV1::MysqlLogPosition]
@@ -2597,6 +3015,7 @@ module Google
2597
3015
 
2598
3016
  # Update properties of this object
2599
3017
  def update!(**args)
3018
+ @mysql_gtid_position = args[:mysql_gtid_position] if args.key?(:mysql_gtid_position)
2600
3019
  @mysql_log_position = args[:mysql_log_position] if args.key?(:mysql_log_position)
2601
3020
  @oracle_scn_position = args[:oracle_scn_position] if args.key?(:oracle_scn_position)
2602
3021
  @sql_server_lsn_position = args[:sql_server_lsn_position] if args.key?(:sql_server_lsn_position)
@@ -2723,7 +3142,7 @@ module Google
2723
3142
  end
2724
3143
  end
2725
3144
 
2726
- # SQLServer database profile. Next ID: 8.
3145
+ # SQLServer database profile.
2727
3146
  class SqlServerProfile
2728
3147
  include Google::Apis::Core::Hashable
2729
3148
 
@@ -3076,6 +3495,18 @@ module Google
3076
3495
  # @return [String]
3077
3496
  attr_accessor :name
3078
3497
 
3498
+ # Output only. Reserved for future use.
3499
+ # Corresponds to the JSON property `satisfiesPzi`
3500
+ # @return [Boolean]
3501
+ attr_accessor :satisfies_pzi
3502
+ alias_method :satisfies_pzi?, :satisfies_pzi
3503
+
3504
+ # Output only. Reserved for future use.
3505
+ # Corresponds to the JSON property `satisfiesPzs`
3506
+ # @return [Boolean]
3507
+ attr_accessor :satisfies_pzs
3508
+ alias_method :satisfies_pzs?, :satisfies_pzs
3509
+
3079
3510
  # The configuration of the stream source.
3080
3511
  # Corresponds to the JSON property `sourceConfig`
3081
3512
  # @return [Google::Apis::DatastreamV1::SourceConfig]
@@ -3107,6 +3538,8 @@ module Google
3107
3538
  @labels = args[:labels] if args.key?(:labels)
3108
3539
  @last_recovery_time = args[:last_recovery_time] if args.key?(:last_recovery_time)
3109
3540
  @name = args[:name] if args.key?(:name)
3541
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
3542
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
3110
3543
  @source_config = args[:source_config] if args.key?(:source_config)
3111
3544
  @state = args[:state] if args.key?(:state)
3112
3545
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -3181,6 +3614,54 @@ module Google
3181
3614
  end
3182
3615
  end
3183
3616
 
3617
+ # Username-password credentials.
3618
+ class UserCredentials
3619
+ include Google::Apis::Core::Hashable
3620
+
3621
+ # Optional. Password for the Salesforce connection. Mutually exclusive with the `
3622
+ # secret_manager_stored_password` field.
3623
+ # Corresponds to the JSON property `password`
3624
+ # @return [String]
3625
+ attr_accessor :password
3626
+
3627
+ # Optional. A reference to a Secret Manager resource name storing the Salesforce
3628
+ # connection's password. Mutually exclusive with the `password` field.
3629
+ # Corresponds to the JSON property `secretManagerStoredPassword`
3630
+ # @return [String]
3631
+ attr_accessor :secret_manager_stored_password
3632
+
3633
+ # Optional. A reference to a Secret Manager resource name storing the Salesforce
3634
+ # connection's security token. Mutually exclusive with the `security_token`
3635
+ # field.
3636
+ # Corresponds to the JSON property `secretManagerStoredSecurityToken`
3637
+ # @return [String]
3638
+ attr_accessor :secret_manager_stored_security_token
3639
+
3640
+ # Optional. Security token for the Salesforce connection. Mutually exclusive
3641
+ # with the `secret_manager_stored_security_token` field.
3642
+ # Corresponds to the JSON property `securityToken`
3643
+ # @return [String]
3644
+ attr_accessor :security_token
3645
+
3646
+ # Required. Username for the Salesforce connection.
3647
+ # Corresponds to the JSON property `username`
3648
+ # @return [String]
3649
+ attr_accessor :username
3650
+
3651
+ def initialize(**args)
3652
+ update!(**args)
3653
+ end
3654
+
3655
+ # Update properties of this object
3656
+ def update!(**args)
3657
+ @password = args[:password] if args.key?(:password)
3658
+ @secret_manager_stored_password = args[:secret_manager_stored_password] if args.key?(:secret_manager_stored_password)
3659
+ @secret_manager_stored_security_token = args[:secret_manager_stored_security_token] if args.key?(:secret_manager_stored_security_token)
3660
+ @security_token = args[:security_token] if args.key?(:security_token)
3661
+ @username = args[:username] if args.key?(:username)
3662
+ end
3663
+ end
3664
+
3184
3665
  # A validation to perform on a stream.
3185
3666
  class Validation
3186
3667
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatastreamV1
18
18
  # Version of the google-apis-datastream_v1 gem
19
- GEM_VERSION = "0.43.0"
19
+ GEM_VERSION = "0.45.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241204"
25
+ REVISION = "20250219"
26
26
  end
27
27
  end
28
28
  end
@@ -76,6 +76,12 @@ module Google
76
76
  include Google::Apis::Core::JsonObjectSupport
77
77
  end
78
78
 
79
+ class BlmtConfig
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
79
85
  class CancelOperationRequest
80
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
87
 
@@ -262,6 +268,12 @@ module Google
262
268
  include Google::Apis::Core::JsonObjectSupport
263
269
  end
264
270
 
271
+ class MysqlGtidPosition
272
+ class Representation < Google::Apis::Core::JsonRepresentation; end
273
+
274
+ include Google::Apis::Core::JsonObjectSupport
275
+ end
276
+
265
277
  class MysqlLogPosition
266
278
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
279
 
@@ -310,6 +322,12 @@ module Google
310
322
  include Google::Apis::Core::JsonObjectSupport
311
323
  end
312
324
 
325
+ class Oauth2ClientCredentials
326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
327
+
328
+ include Google::Apis::Core::JsonObjectSupport
329
+ end
330
+
313
331
  class Operation
314
332
  class Representation < Google::Apis::Core::JsonRepresentation; end
315
333
 
@@ -424,6 +442,12 @@ module Google
424
442
  include Google::Apis::Core::JsonObjectSupport
425
443
  end
426
444
 
445
+ class PostgresqlSslConfig
446
+ class Representation < Google::Apis::Core::JsonRepresentation; end
447
+
448
+ include Google::Apis::Core::JsonObjectSupport
449
+ end
450
+
427
451
  class PostgresqlTable
428
452
  class Representation < Google::Apis::Core::JsonRepresentation; end
429
453
 
@@ -454,6 +478,54 @@ module Google
454
478
  include Google::Apis::Core::JsonObjectSupport
455
479
  end
456
480
 
481
+ class SalesforceField
482
+ class Representation < Google::Apis::Core::JsonRepresentation; end
483
+
484
+ include Google::Apis::Core::JsonObjectSupport
485
+ end
486
+
487
+ class SalesforceObject
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
493
+ class SalesforceObjectIdentifier
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
499
+ class SalesforceOrg
500
+ class Representation < Google::Apis::Core::JsonRepresentation; end
501
+
502
+ include Google::Apis::Core::JsonObjectSupport
503
+ end
504
+
505
+ class SalesforceProfile
506
+ class Representation < Google::Apis::Core::JsonRepresentation; end
507
+
508
+ include Google::Apis::Core::JsonObjectSupport
509
+ end
510
+
511
+ class SalesforceSourceConfig
512
+ class Representation < Google::Apis::Core::JsonRepresentation; end
513
+
514
+ include Google::Apis::Core::JsonObjectSupport
515
+ end
516
+
517
+ class ServerAndClientVerification
518
+ class Representation < Google::Apis::Core::JsonRepresentation; end
519
+
520
+ include Google::Apis::Core::JsonObjectSupport
521
+ end
522
+
523
+ class ServerVerification
524
+ class Representation < Google::Apis::Core::JsonRepresentation; end
525
+
526
+ include Google::Apis::Core::JsonObjectSupport
527
+ end
528
+
457
529
  class SingleTargetDataset
458
530
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
531
 
@@ -598,6 +670,12 @@ module Google
598
670
  include Google::Apis::Core::JsonObjectSupport
599
671
  end
600
672
 
673
+ class UserCredentials
674
+ class Representation < Google::Apis::Core::JsonRepresentation; end
675
+
676
+ include Google::Apis::Core::JsonObjectSupport
677
+ end
678
+
601
679
  class Validation
602
680
  class Representation < Google::Apis::Core::JsonRepresentation; end
603
681
 
@@ -643,6 +721,8 @@ module Google
643
721
 
644
722
  property :postgresql_excluded_objects, as: 'postgresqlExcludedObjects', class: Google::Apis::DatastreamV1::PostgresqlRdbms, decorator: Google::Apis::DatastreamV1::PostgresqlRdbms::Representation
645
723
 
724
+ property :salesforce_excluded_objects, as: 'salesforceExcludedObjects', class: Google::Apis::DatastreamV1::SalesforceOrg, decorator: Google::Apis::DatastreamV1::SalesforceOrg::Representation
725
+
646
726
  property :sql_server_excluded_objects, as: 'sqlServerExcludedObjects', class: Google::Apis::DatastreamV1::SqlServerRdbms, decorator: Google::Apis::DatastreamV1::SqlServerRdbms::Representation
647
727
 
648
728
  end
@@ -671,6 +751,8 @@ module Google
671
751
  class Representation < Google::Apis::Core::JsonRepresentation
672
752
  property :append_only, as: 'appendOnly', class: Google::Apis::DatastreamV1::AppendOnly, decorator: Google::Apis::DatastreamV1::AppendOnly::Representation
673
753
 
754
+ property :blmt_config, as: 'blmtConfig', class: Google::Apis::DatastreamV1::BlmtConfig, decorator: Google::Apis::DatastreamV1::BlmtConfig::Representation
755
+
674
756
  property :data_freshness, as: 'dataFreshness'
675
757
  property :merge, as: 'merge', class: Google::Apis::DatastreamV1::Merge, decorator: Google::Apis::DatastreamV1::Merge::Representation
676
758
 
@@ -703,6 +785,17 @@ module Google
703
785
  end
704
786
  end
705
787
 
788
+ class BlmtConfig
789
+ # @private
790
+ class Representation < Google::Apis::Core::JsonRepresentation
791
+ property :bucket, as: 'bucket'
792
+ property :connection_name, as: 'connectionName'
793
+ property :file_format, as: 'fileFormat'
794
+ property :root_path, as: 'rootPath'
795
+ property :table_format, as: 'tableFormat'
796
+ end
797
+ end
798
+
706
799
  class CancelOperationRequest
707
800
  # @private
708
801
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -742,6 +835,10 @@ module Google
742
835
 
743
836
  property :private_connectivity, as: 'privateConnectivity', class: Google::Apis::DatastreamV1::PrivateConnectivity, decorator: Google::Apis::DatastreamV1::PrivateConnectivity::Representation
744
837
 
838
+ property :salesforce_profile, as: 'salesforceProfile', class: Google::Apis::DatastreamV1::SalesforceProfile, decorator: Google::Apis::DatastreamV1::SalesforceProfile::Representation
839
+
840
+ property :satisfies_pzi, as: 'satisfiesPzi'
841
+ property :satisfies_pzs, as: 'satisfiesPzs'
745
842
  property :sql_server_profile, as: 'sqlServerProfile', class: Google::Apis::DatastreamV1::SqlServerProfile, decorator: Google::Apis::DatastreamV1::SqlServerProfile::Representation
746
843
 
747
844
  property :static_service_ip_connectivity, as: 'staticServiceIpConnectivity', class: Google::Apis::DatastreamV1::StaticServiceIpConnectivity, decorator: Google::Apis::DatastreamV1::StaticServiceIpConnectivity::Representation
@@ -1016,6 +1113,13 @@ module Google
1016
1113
  end
1017
1114
  end
1018
1115
 
1116
+ class MysqlGtidPosition
1117
+ # @private
1118
+ class Representation < Google::Apis::Core::JsonRepresentation
1119
+ property :gtid_set, as: 'gtidSet'
1120
+ end
1121
+ end
1122
+
1019
1123
  class MysqlLogPosition
1020
1124
  # @private
1021
1125
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1095,6 +1199,15 @@ module Google
1095
1199
  end
1096
1200
  end
1097
1201
 
1202
+ class Oauth2ClientCredentials
1203
+ # @private
1204
+ class Representation < Google::Apis::Core::JsonRepresentation
1205
+ property :client_id, as: 'clientId'
1206
+ property :client_secret, as: 'clientSecret'
1207
+ property :secret_manager_stored_client_secret, as: 'secretManagerStoredClientSecret'
1208
+ end
1209
+ end
1210
+
1098
1211
  class Operation
1099
1212
  # @private
1100
1213
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1272,6 +1385,8 @@ module Google
1272
1385
  property :hostname, as: 'hostname'
1273
1386
  property :password, as: 'password'
1274
1387
  property :port, as: 'port'
1388
+ property :ssl_config, as: 'sslConfig', class: Google::Apis::DatastreamV1::PostgresqlSslConfig, decorator: Google::Apis::DatastreamV1::PostgresqlSslConfig::Representation
1389
+
1275
1390
  property :username, as: 'username'
1276
1391
  end
1277
1392
  end
@@ -1306,6 +1421,16 @@ module Google
1306
1421
  end
1307
1422
  end
1308
1423
 
1424
+ class PostgresqlSslConfig
1425
+ # @private
1426
+ class Representation < Google::Apis::Core::JsonRepresentation
1427
+ property :server_and_client_verification, as: 'serverAndClientVerification', class: Google::Apis::DatastreamV1::ServerAndClientVerification, decorator: Google::Apis::DatastreamV1::ServerAndClientVerification::Representation
1428
+
1429
+ property :server_verification, as: 'serverVerification', class: Google::Apis::DatastreamV1::ServerVerification, decorator: Google::Apis::DatastreamV1::ServerVerification::Representation
1430
+
1431
+ end
1432
+ end
1433
+
1309
1434
  class PostgresqlTable
1310
1435
  # @private
1311
1436
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1324,6 +1449,8 @@ module Google
1324
1449
 
1325
1450
  hash :labels, as: 'labels'
1326
1451
  property :name, as: 'name'
1452
+ property :satisfies_pzi, as: 'satisfiesPzi'
1453
+ property :satisfies_pzs, as: 'satisfiesPzs'
1327
1454
  property :state, as: 'state'
1328
1455
  property :update_time, as: 'updateTime'
1329
1456
  property :vpc_peering_config, as: 'vpcPeeringConfig', class: Google::Apis::DatastreamV1::VpcPeeringConfig, decorator: Google::Apis::DatastreamV1::VpcPeeringConfig::Representation
@@ -1360,6 +1487,77 @@ module Google
1360
1487
  end
1361
1488
  end
1362
1489
 
1490
+ class SalesforceField
1491
+ # @private
1492
+ class Representation < Google::Apis::Core::JsonRepresentation
1493
+ property :data_type, as: 'dataType'
1494
+ property :name, as: 'name'
1495
+ property :nillable, as: 'nillable'
1496
+ end
1497
+ end
1498
+
1499
+ class SalesforceObject
1500
+ # @private
1501
+ class Representation < Google::Apis::Core::JsonRepresentation
1502
+ collection :fields, as: 'fields', class: Google::Apis::DatastreamV1::SalesforceField, decorator: Google::Apis::DatastreamV1::SalesforceField::Representation
1503
+
1504
+ property :object_name, as: 'objectName'
1505
+ end
1506
+ end
1507
+
1508
+ class SalesforceObjectIdentifier
1509
+ # @private
1510
+ class Representation < Google::Apis::Core::JsonRepresentation
1511
+ property :object_name, as: 'objectName'
1512
+ end
1513
+ end
1514
+
1515
+ class SalesforceOrg
1516
+ # @private
1517
+ class Representation < Google::Apis::Core::JsonRepresentation
1518
+ collection :objects, as: 'objects', class: Google::Apis::DatastreamV1::SalesforceObject, decorator: Google::Apis::DatastreamV1::SalesforceObject::Representation
1519
+
1520
+ end
1521
+ end
1522
+
1523
+ class SalesforceProfile
1524
+ # @private
1525
+ class Representation < Google::Apis::Core::JsonRepresentation
1526
+ property :domain, as: 'domain'
1527
+ property :oauth2_client_credentials, as: 'oauth2ClientCredentials', class: Google::Apis::DatastreamV1::Oauth2ClientCredentials, decorator: Google::Apis::DatastreamV1::Oauth2ClientCredentials::Representation
1528
+
1529
+ property :user_credentials, as: 'userCredentials', class: Google::Apis::DatastreamV1::UserCredentials, decorator: Google::Apis::DatastreamV1::UserCredentials::Representation
1530
+
1531
+ end
1532
+ end
1533
+
1534
+ class SalesforceSourceConfig
1535
+ # @private
1536
+ class Representation < Google::Apis::Core::JsonRepresentation
1537
+ property :exclude_objects, as: 'excludeObjects', class: Google::Apis::DatastreamV1::SalesforceOrg, decorator: Google::Apis::DatastreamV1::SalesforceOrg::Representation
1538
+
1539
+ property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::SalesforceOrg, decorator: Google::Apis::DatastreamV1::SalesforceOrg::Representation
1540
+
1541
+ property :polling_interval, as: 'pollingInterval'
1542
+ end
1543
+ end
1544
+
1545
+ class ServerAndClientVerification
1546
+ # @private
1547
+ class Representation < Google::Apis::Core::JsonRepresentation
1548
+ property :ca_certificate, as: 'caCertificate'
1549
+ property :client_certificate, as: 'clientCertificate'
1550
+ property :client_key, as: 'clientKey'
1551
+ end
1552
+ end
1553
+
1554
+ class ServerVerification
1555
+ # @private
1556
+ class Representation < Google::Apis::Core::JsonRepresentation
1557
+ property :ca_certificate, as: 'caCertificate'
1558
+ end
1559
+ end
1560
+
1363
1561
  class SingleTargetDataset
1364
1562
  # @private
1365
1563
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1376,6 +1574,8 @@ module Google
1376
1574
 
1377
1575
  property :postgresql_source_config, as: 'postgresqlSourceConfig', class: Google::Apis::DatastreamV1::PostgresqlSourceConfig, decorator: Google::Apis::DatastreamV1::PostgresqlSourceConfig::Representation
1378
1576
 
1577
+ property :salesforce_source_config, as: 'salesforceSourceConfig', class: Google::Apis::DatastreamV1::SalesforceSourceConfig, decorator: Google::Apis::DatastreamV1::SalesforceSourceConfig::Representation
1578
+
1379
1579
  property :source_connection_profile, as: 'sourceConnectionProfile'
1380
1580
  property :sql_server_source_config, as: 'sqlServerSourceConfig', class: Google::Apis::DatastreamV1::SqlServerSourceConfig, decorator: Google::Apis::DatastreamV1::SqlServerSourceConfig::Representation
1381
1581
 
@@ -1399,6 +1599,8 @@ module Google
1399
1599
 
1400
1600
  property :postgresql_identifier, as: 'postgresqlIdentifier', class: Google::Apis::DatastreamV1::PostgresqlObjectIdentifier, decorator: Google::Apis::DatastreamV1::PostgresqlObjectIdentifier::Representation
1401
1601
 
1602
+ property :salesforce_identifier, as: 'salesforceIdentifier', class: Google::Apis::DatastreamV1::SalesforceObjectIdentifier, decorator: Google::Apis::DatastreamV1::SalesforceObjectIdentifier::Representation
1603
+
1402
1604
  property :sql_server_identifier, as: 'sqlServerIdentifier', class: Google::Apis::DatastreamV1::SqlServerObjectIdentifier, decorator: Google::Apis::DatastreamV1::SqlServerObjectIdentifier::Representation
1403
1605
 
1404
1606
  end
@@ -1407,6 +1609,8 @@ module Google
1407
1609
  class SpecificStartPosition
1408
1610
  # @private
1409
1611
  class Representation < Google::Apis::Core::JsonRepresentation
1612
+ property :mysql_gtid_position, as: 'mysqlGtidPosition', class: Google::Apis::DatastreamV1::MysqlGtidPosition, decorator: Google::Apis::DatastreamV1::MysqlGtidPosition::Representation
1613
+
1410
1614
  property :mysql_log_position, as: 'mysqlLogPosition', class: Google::Apis::DatastreamV1::MysqlLogPosition, decorator: Google::Apis::DatastreamV1::MysqlLogPosition::Representation
1411
1615
 
1412
1616
  property :oracle_scn_position, as: 'oracleScnPosition', class: Google::Apis::DatastreamV1::OracleScnPosition, decorator: Google::Apis::DatastreamV1::OracleScnPosition::Representation
@@ -1570,6 +1774,8 @@ module Google
1570
1774
  hash :labels, as: 'labels'
1571
1775
  property :last_recovery_time, as: 'lastRecoveryTime'
1572
1776
  property :name, as: 'name'
1777
+ property :satisfies_pzi, as: 'satisfiesPzi'
1778
+ property :satisfies_pzs, as: 'satisfiesPzs'
1573
1779
  property :source_config, as: 'sourceConfig', class: Google::Apis::DatastreamV1::SourceConfig, decorator: Google::Apis::DatastreamV1::SourceConfig::Representation
1574
1780
 
1575
1781
  property :state, as: 'state'
@@ -1599,6 +1805,17 @@ module Google
1599
1805
  end
1600
1806
  end
1601
1807
 
1808
+ class UserCredentials
1809
+ # @private
1810
+ class Representation < Google::Apis::Core::JsonRepresentation
1811
+ property :password, as: 'password'
1812
+ property :secret_manager_stored_password, as: 'secretManagerStoredPassword'
1813
+ property :secret_manager_stored_security_token, as: 'secretManagerStoredSecurityToken'
1814
+ property :security_token, as: 'securityToken'
1815
+ property :username, as: 'username'
1816
+ end
1817
+ end
1818
+
1602
1819
  class Validation
1603
1820
  # @private
1604
1821
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datastream_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.43.0
4
+ version: 0.45.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
10
+ date: 2025-03-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  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.43.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.45.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.5
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Datastream API V1
82
79
  test_files: []