google-apis-datamigration_v1 0.60.0 → 0.62.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: 8386880b06aa60b14f678c825f1bccf96a9162fb89be139d9b27009ed97de17e
4
- data.tar.gz: a057d86996a3dcbde00df6367d87f7aa977bad521a05d89ae21c9f74b5d3c755
3
+ metadata.gz: a7e5593e1fe0fb7178abce26d0e1f62e02492fb8f96b41c7f51ce98a7177225f
4
+ data.tar.gz: 1a87c4f042fb68164e9ebe6cd95380acbc9e3902072c0c57389e90859cf34c58
5
5
  SHA512:
6
- metadata.gz: 69205127733b391bd96ed99486cb8180715257ec3dbbc2e11e083d685a7c803ed635c0b7b59bafb85677b84b6e2263029bd837a02decd0436c96665299a52ce2
7
- data.tar.gz: e5b97cfab190e5e19c20b90ee0958b1d811f122e69c6b7df1afe512d6028d60131b4efe65ac2ffc076dd2879fe204062798ddf7e8d7b3a1beb6e867f0e0bf4eb
6
+ metadata.gz: f9ed2d72eca39178051b7a160c6fccb8fad33e21885786cd70b8581705625558eca9d48224111d929dd73a610e515b351e94fb8a386c3140786e16a1ba8f1103
7
+ data.tar.gz: 0eaa877488e9f334804a2ef8a3eb8d2fbecee7f03899eda64c8592f27de42fcf5c1aa6d6b580cf039fa8d9c49509bd87ee10126b0bceee36be24aab8e33ab177
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datamigration_v1
2
2
 
3
+ ### v0.62.0 (2024-10-06)
4
+
5
+ * Regenerated from discovery document revision 20240930
6
+
7
+ ### v0.61.0 (2024-09-22)
8
+
9
+ * Regenerated from discovery document revision 20240914
10
+
3
11
  ### v0.60.0 (2024-08-18)
4
12
 
5
13
  * Regenerated from discovery document revision 20240812
@@ -286,6 +286,25 @@ module Google
286
286
  end
287
287
  end
288
288
 
289
+ # AuthorizedNetwork contains metadata for an authorized network.
290
+ class AuthorizedNetwork
291
+ include Google::Apis::Core::Hashable
292
+
293
+ # Optional. CIDR range for one authorzied network of the instance.
294
+ # Corresponds to the JSON property `cidrRange`
295
+ # @return [String]
296
+ attr_accessor :cidr_range
297
+
298
+ def initialize(**args)
299
+ update!(**args)
300
+ end
301
+
302
+ # Update properties of this object
303
+ def update!(**args)
304
+ @cidr_range = args[:cidr_range] if args.key?(:cidr_range)
305
+ end
306
+ end
307
+
289
308
  # Execution log of a background job.
290
309
  class BackgroundJobLogEntry
291
310
  include Google::Apis::Core::Hashable
@@ -369,6 +388,31 @@ module Google
369
388
  end
370
389
  end
371
390
 
391
+ # Configuration to use Binary Log Parser CDC technique.
392
+ class BinaryLogParser
393
+ include Google::Apis::Core::Hashable
394
+
395
+ # Configuration to specify the Oracle directories to access the log files.
396
+ # Corresponds to the JSON property `logFileDirectories`
397
+ # @return [Google::Apis::DatamigrationV1::LogFileDirectories]
398
+ attr_accessor :log_file_directories
399
+
400
+ # Configuration to use Oracle ASM to access the log files.
401
+ # Corresponds to the JSON property `oracleAsmLogFileAccess`
402
+ # @return [Google::Apis::DatamigrationV1::OracleAsmLogFileAccess]
403
+ attr_accessor :oracle_asm_log_file_access
404
+
405
+ def initialize(**args)
406
+ update!(**args)
407
+ end
408
+
409
+ # Update properties of this object
410
+ def update!(**args)
411
+ @log_file_directories = args[:log_file_directories] if args.key?(:log_file_directories)
412
+ @oracle_asm_log_file_access = args[:oracle_asm_log_file_access] if args.key?(:oracle_asm_log_file_access)
413
+ end
414
+ end
415
+
372
416
  # Associates `members`, or principals, with a `role`.
373
417
  class Binding
374
418
  include Google::Apis::Core::Hashable
@@ -597,11 +641,17 @@ module Google
597
641
  # @return [Hash<String,String>]
598
642
  attr_accessor :database_flags
599
643
 
600
- # The database engine type and version.
644
+ # The database engine type and version. Deprecated. Use database_version_name
645
+ # instead.
601
646
  # Corresponds to the JSON property `databaseVersion`
602
647
  # @return [String]
603
648
  attr_accessor :database_version
604
649
 
650
+ # Optional. The database engine type and version name.
651
+ # Corresponds to the JSON property `databaseVersionName`
652
+ # @return [String]
653
+ attr_accessor :database_version_name
654
+
605
655
  # Optional. The edition of the given Cloud SQL instance.
606
656
  # Corresponds to the JSON property `edition`
607
657
  # @return [String]
@@ -681,6 +731,7 @@ module Google
681
731
  @data_disk_type = args[:data_disk_type] if args.key?(:data_disk_type)
682
732
  @database_flags = args[:database_flags] if args.key?(:database_flags)
683
733
  @database_version = args[:database_version] if args.key?(:database_version)
734
+ @database_version_name = args[:database_version_name] if args.key?(:database_version_name)
684
735
  @edition = args[:edition] if args.key?(:edition)
685
736
  @ip_config = args[:ip_config] if args.key?(:ip_config)
686
737
  @root_password = args[:root_password] if args.key?(:root_password)
@@ -2268,6 +2319,40 @@ module Google
2268
2319
  end
2269
2320
  end
2270
2321
 
2322
+ # Metadata related to instance level network configuration.
2323
+ class InstanceNetworkConfig
2324
+ include Google::Apis::Core::Hashable
2325
+
2326
+ # Optional. A list of external network authorized to access this instance.
2327
+ # Corresponds to the JSON property `authorizedExternalNetworks`
2328
+ # @return [Array<Google::Apis::DatamigrationV1::AuthorizedNetwork>]
2329
+ attr_accessor :authorized_external_networks
2330
+
2331
+ # Optional. Enabling an outbound public IP address to support a database server
2332
+ # sending requests out into the internet.
2333
+ # Corresponds to the JSON property `enableOutboundPublicIp`
2334
+ # @return [Boolean]
2335
+ attr_accessor :enable_outbound_public_ip
2336
+ alias_method :enable_outbound_public_ip?, :enable_outbound_public_ip
2337
+
2338
+ # Optional. Enabling public ip for the instance.
2339
+ # Corresponds to the JSON property `enablePublicIp`
2340
+ # @return [Boolean]
2341
+ attr_accessor :enable_public_ip
2342
+ alias_method :enable_public_ip?, :enable_public_ip
2343
+
2344
+ def initialize(**args)
2345
+ update!(**args)
2346
+ end
2347
+
2348
+ # Update properties of this object
2349
+ def update!(**args)
2350
+ @authorized_external_networks = args[:authorized_external_networks] if args.key?(:authorized_external_networks)
2351
+ @enable_outbound_public_ip = args[:enable_outbound_public_ip] if args.key?(:enable_outbound_public_ip)
2352
+ @enable_public_ip = args[:enable_public_ip] if args.key?(:enable_public_ip)
2353
+ end
2354
+ end
2355
+
2271
2356
  # Filter based on relation between source value and compare value of type
2272
2357
  # integer in ConditionalColumnSetValue
2273
2358
  class IntComparisonFilter
@@ -2545,6 +2630,44 @@ module Google
2545
2630
  end
2546
2631
  end
2547
2632
 
2633
+ # Configuration to specify the Oracle directories to access the log files.
2634
+ class LogFileDirectories
2635
+ include Google::Apis::Core::Hashable
2636
+
2637
+ # Required. Oracle directory for archived logs.
2638
+ # Corresponds to the JSON property `archivedLogDirectory`
2639
+ # @return [String]
2640
+ attr_accessor :archived_log_directory
2641
+
2642
+ # Required. Oracle directory for online logs.
2643
+ # Corresponds to the JSON property `onlineLogDirectory`
2644
+ # @return [String]
2645
+ attr_accessor :online_log_directory
2646
+
2647
+ def initialize(**args)
2648
+ update!(**args)
2649
+ end
2650
+
2651
+ # Update properties of this object
2652
+ def update!(**args)
2653
+ @archived_log_directory = args[:archived_log_directory] if args.key?(:archived_log_directory)
2654
+ @online_log_directory = args[:online_log_directory] if args.key?(:online_log_directory)
2655
+ end
2656
+ end
2657
+
2658
+ # Configuration to use LogMiner CDC method.
2659
+ class LogMiner
2660
+ include Google::Apis::Core::Hashable
2661
+
2662
+ def initialize(**args)
2663
+ update!(**args)
2664
+ end
2665
+
2666
+ # Update properties of this object
2667
+ def update!(**args)
2668
+ end
2669
+ end
2670
+
2548
2671
  # MachineConfig describes the configuration of a machine.
2549
2672
  class MachineConfig
2550
2673
  include Google::Apis::Core::Hashable
@@ -2917,6 +3040,12 @@ module Google
2917
3040
  # @return [String]
2918
3041
  attr_accessor :name
2919
3042
 
3043
+ # Configuration for heterogeneous **Oracle to Cloud SQL for PostgreSQL** and **
3044
+ # Oracle to AlloyDB for PostgreSQL** migrations.
3045
+ # Corresponds to the JSON property `oracleToPostgresConfig`
3046
+ # @return [Google::Apis::DatamigrationV1::OracleToPostgresConfig]
3047
+ attr_accessor :oracle_to_postgres_config
3048
+
2920
3049
  # Performance configuration definition.
2921
3050
  # Corresponds to the JSON property `performanceConfig`
2922
3051
  # @return [Google::Apis::DatamigrationV1::PerformanceConfig]
@@ -3005,6 +3134,7 @@ module Google
3005
3134
  @filter = args[:filter] if args.key?(:filter)
3006
3135
  @labels = args[:labels] if args.key?(:labels)
3007
3136
  @name = args[:name] if args.key?(:name)
3137
+ @oracle_to_postgres_config = args[:oracle_to_postgres_config] if args.key?(:oracle_to_postgres_config)
3008
3138
  @performance_config = args[:performance_config] if args.key?(:performance_config)
3009
3139
  @phase = args[:phase] if args.key?(:phase)
3010
3140
  @reverse_ssh_connectivity = args[:reverse_ssh_connectivity] if args.key?(:reverse_ssh_connectivity)
@@ -3343,6 +3473,19 @@ module Google
3343
3473
  end
3344
3474
  end
3345
3475
 
3476
+ # Configuration to use Oracle ASM to access the log files.
3477
+ class OracleAsmLogFileAccess
3478
+ include Google::Apis::Core::Hashable
3479
+
3480
+ def initialize(**args)
3481
+ update!(**args)
3482
+ end
3483
+
3484
+ # Update properties of this object
3485
+ def update!(**args)
3486
+ end
3487
+ end
3488
+
3346
3489
  # Specifies connection parameters required specifically for Oracle databases.
3347
3490
  class OracleConnectionProfile
3348
3491
  include Google::Apis::Core::Hashable
@@ -3427,6 +3570,84 @@ module Google
3427
3570
  end
3428
3571
  end
3429
3572
 
3573
+ # Configuration for Oracle as a source in a migration.
3574
+ class OracleSourceConfig
3575
+ include Google::Apis::Core::Hashable
3576
+
3577
+ # Configuration to use Binary Log Parser CDC technique.
3578
+ # Corresponds to the JSON property `binaryLogParser`
3579
+ # @return [Google::Apis::DatamigrationV1::BinaryLogParser]
3580
+ attr_accessor :binary_log_parser
3581
+
3582
+ # Optional. The schema change number (SCN) to start CDC data migration from.
3583
+ # Corresponds to the JSON property `cdcStartPosition`
3584
+ # @return [Fixnum]
3585
+ attr_accessor :cdc_start_position
3586
+
3587
+ # Configuration to use LogMiner CDC method.
3588
+ # Corresponds to the JSON property `logMiner`
3589
+ # @return [Google::Apis::DatamigrationV1::LogMiner]
3590
+ attr_accessor :log_miner
3591
+
3592
+ # Optional. Maximum number of connections Database Migration Service will open
3593
+ # to the source for CDC phase.
3594
+ # Corresponds to the JSON property `maxConcurrentCdcConnections`
3595
+ # @return [Fixnum]
3596
+ attr_accessor :max_concurrent_cdc_connections
3597
+
3598
+ # Optional. Maximum number of connections Database Migration Service will open
3599
+ # to the source for full dump phase.
3600
+ # Corresponds to the JSON property `maxConcurrentFullDumpConnections`
3601
+ # @return [Fixnum]
3602
+ attr_accessor :max_concurrent_full_dump_connections
3603
+
3604
+ # Optional. Whether to skip full dump or not.
3605
+ # Corresponds to the JSON property `skipFullDump`
3606
+ # @return [Boolean]
3607
+ attr_accessor :skip_full_dump
3608
+ alias_method :skip_full_dump?, :skip_full_dump
3609
+
3610
+ def initialize(**args)
3611
+ update!(**args)
3612
+ end
3613
+
3614
+ # Update properties of this object
3615
+ def update!(**args)
3616
+ @binary_log_parser = args[:binary_log_parser] if args.key?(:binary_log_parser)
3617
+ @cdc_start_position = args[:cdc_start_position] if args.key?(:cdc_start_position)
3618
+ @log_miner = args[:log_miner] if args.key?(:log_miner)
3619
+ @max_concurrent_cdc_connections = args[:max_concurrent_cdc_connections] if args.key?(:max_concurrent_cdc_connections)
3620
+ @max_concurrent_full_dump_connections = args[:max_concurrent_full_dump_connections] if args.key?(:max_concurrent_full_dump_connections)
3621
+ @skip_full_dump = args[:skip_full_dump] if args.key?(:skip_full_dump)
3622
+ end
3623
+ end
3624
+
3625
+ # Configuration for heterogeneous **Oracle to Cloud SQL for PostgreSQL** and **
3626
+ # Oracle to AlloyDB for PostgreSQL** migrations.
3627
+ class OracleToPostgresConfig
3628
+ include Google::Apis::Core::Hashable
3629
+
3630
+ # Configuration for Oracle as a source in a migration.
3631
+ # Corresponds to the JSON property `oracleSourceConfig`
3632
+ # @return [Google::Apis::DatamigrationV1::OracleSourceConfig]
3633
+ attr_accessor :oracle_source_config
3634
+
3635
+ # Configuration for Postgres as a destination in a migration.
3636
+ # Corresponds to the JSON property `postgresDestinationConfig`
3637
+ # @return [Google::Apis::DatamigrationV1::PostgresDestinationConfig]
3638
+ attr_accessor :postgres_destination_config
3639
+
3640
+ def initialize(**args)
3641
+ update!(**args)
3642
+ end
3643
+
3644
+ # Update properties of this object
3645
+ def update!(**args)
3646
+ @oracle_source_config = args[:oracle_source_config] if args.key?(:oracle_source_config)
3647
+ @postgres_destination_config = args[:postgres_destination_config] if args.key?(:postgres_destination_config)
3648
+ end
3649
+ end
3650
+
3430
3651
  # Package's parent is a schema.
3431
3652
  class PackageEntity
3432
3653
  include Google::Apis::Core::Hashable
@@ -3701,6 +3922,32 @@ module Google
3701
3922
  end
3702
3923
  end
3703
3924
 
3925
+ # Configuration for Postgres as a destination in a migration.
3926
+ class PostgresDestinationConfig
3927
+ include Google::Apis::Core::Hashable
3928
+
3929
+ # Optional. Maximum number of connections Database Migration Service will open
3930
+ # to the destination for data migration.
3931
+ # Corresponds to the JSON property `maxConcurrentConnections`
3932
+ # @return [Fixnum]
3933
+ attr_accessor :max_concurrent_connections
3934
+
3935
+ # Optional. Timeout for data migration transactions.
3936
+ # Corresponds to the JSON property `transactionTimeout`
3937
+ # @return [String]
3938
+ attr_accessor :transaction_timeout
3939
+
3940
+ def initialize(**args)
3941
+ update!(**args)
3942
+ end
3943
+
3944
+ # Update properties of this object
3945
+ def update!(**args)
3946
+ @max_concurrent_connections = args[:max_concurrent_connections] if args.key?(:max_concurrent_connections)
3947
+ @transaction_timeout = args[:transaction_timeout] if args.key?(:transaction_timeout)
3948
+ end
3949
+ end
3950
+
3704
3951
  # Settings for the cluster's primary instance
3705
3952
  class PrimaryInstanceSettings
3706
3953
  include Google::Apis::Core::Hashable
@@ -3717,6 +3964,11 @@ module Google
3717
3964
  # @return [String]
3718
3965
  attr_accessor :id
3719
3966
 
3967
+ # Metadata related to instance level network configuration.
3968
+ # Corresponds to the JSON property `instanceNetworkConfig`
3969
+ # @return [Google::Apis::DatamigrationV1::InstanceNetworkConfig]
3970
+ attr_accessor :instance_network_config
3971
+
3720
3972
  # Labels for the AlloyDB primary instance created by DMS. An object containing a
3721
3973
  # list of 'key', 'value' pairs.
3722
3974
  # Corresponds to the JSON property `labels`
@@ -3728,6 +3980,11 @@ module Google
3728
3980
  # @return [Google::Apis::DatamigrationV1::MachineConfig]
3729
3981
  attr_accessor :machine_config
3730
3982
 
3983
+ # Output only. All outbound public IP addresses configured for the instance.
3984
+ # Corresponds to the JSON property `outboundPublicIpAddresses`
3985
+ # @return [Array<String>]
3986
+ attr_accessor :outbound_public_ip_addresses
3987
+
3731
3988
  # Output only. The private IP address for the Instance. This is the connection
3732
3989
  # endpoint for an end-user application.
3733
3990
  # Corresponds to the JSON property `privateIp`
@@ -3742,8 +3999,10 @@ module Google
3742
3999
  def update!(**args)
3743
4000
  @database_flags = args[:database_flags] if args.key?(:database_flags)
3744
4001
  @id = args[:id] if args.key?(:id)
4002
+ @instance_network_config = args[:instance_network_config] if args.key?(:instance_network_config)
3745
4003
  @labels = args[:labels] if args.key?(:labels)
3746
4004
  @machine_config = args[:machine_config] if args.key?(:machine_config)
4005
+ @outbound_public_ip_addresses = args[:outbound_public_ip_addresses] if args.key?(:outbound_public_ip_addresses)
3747
4006
  @private_ip = args[:private_ip] if args.key?(:private_ip)
3748
4007
  end
3749
4008
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatamigrationV1
18
18
  # Version of the google-apis-datamigration_v1 gem
19
- GEM_VERSION = "0.60.0"
19
+ GEM_VERSION = "0.62.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 = "20240812"
25
+ REVISION = "20240930"
26
26
  end
27
27
  end
28
28
  end
@@ -70,12 +70,24 @@ module Google
70
70
  include Google::Apis::Core::JsonObjectSupport
71
71
  end
72
72
 
73
+ class AuthorizedNetwork
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
73
79
  class BackgroundJobLogEntry
74
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
81
 
76
82
  include Google::Apis::Core::JsonObjectSupport
77
83
  end
78
84
 
85
+ class BinaryLogParser
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
79
91
  class Binding
80
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
93
 
@@ -334,6 +346,12 @@ module Google
334
346
  include Google::Apis::Core::JsonObjectSupport
335
347
  end
336
348
 
349
+ class InstanceNetworkConfig
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
337
355
  class IntComparisonFilter
338
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
357
 
@@ -388,6 +406,18 @@ module Google
388
406
  include Google::Apis::Core::JsonObjectSupport
389
407
  end
390
408
 
409
+ class LogFileDirectories
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
415
+ class LogMiner
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
391
421
  class MachineConfig
392
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
393
423
 
@@ -454,12 +484,30 @@ module Google
454
484
  include Google::Apis::Core::JsonObjectSupport
455
485
  end
456
486
 
487
+ class OracleAsmLogFileAccess
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
457
493
  class OracleConnectionProfile
458
494
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
495
 
460
496
  include Google::Apis::Core::JsonObjectSupport
461
497
  end
462
498
 
499
+ class OracleSourceConfig
500
+ class Representation < Google::Apis::Core::JsonRepresentation; end
501
+
502
+ include Google::Apis::Core::JsonObjectSupport
503
+ end
504
+
505
+ class OracleToPostgresConfig
506
+ class Representation < Google::Apis::Core::JsonRepresentation; end
507
+
508
+ include Google::Apis::Core::JsonObjectSupport
509
+ end
510
+
463
511
  class PackageEntity
464
512
  class Representation < Google::Apis::Core::JsonRepresentation; end
465
513
 
@@ -490,6 +538,12 @@ module Google
490
538
  include Google::Apis::Core::JsonObjectSupport
491
539
  end
492
540
 
541
+ class PostgresDestinationConfig
542
+ class Representation < Google::Apis::Core::JsonRepresentation; end
543
+
544
+ include Google::Apis::Core::JsonObjectSupport
545
+ end
546
+
493
547
  class PrimaryInstanceSettings
494
548
  class Representation < Google::Apis::Core::JsonRepresentation; end
495
549
 
@@ -894,6 +948,13 @@ module Google
894
948
  end
895
949
  end
896
950
 
951
+ class AuthorizedNetwork
952
+ # @private
953
+ class Representation < Google::Apis::Core::JsonRepresentation
954
+ property :cidr_range, as: 'cidrRange'
955
+ end
956
+ end
957
+
897
958
  class BackgroundJobLogEntry
898
959
  # @private
899
960
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -915,6 +976,16 @@ module Google
915
976
  end
916
977
  end
917
978
 
979
+ class BinaryLogParser
980
+ # @private
981
+ class Representation < Google::Apis::Core::JsonRepresentation
982
+ property :log_file_directories, as: 'logFileDirectories', class: Google::Apis::DatamigrationV1::LogFileDirectories, decorator: Google::Apis::DatamigrationV1::LogFileDirectories::Representation
983
+
984
+ property :oracle_asm_log_file_access, as: 'oracleAsmLogFileAccess', class: Google::Apis::DatamigrationV1::OracleAsmLogFileAccess, decorator: Google::Apis::DatamigrationV1::OracleAsmLogFileAccess::Representation
985
+
986
+ end
987
+ end
988
+
918
989
  class Binding
919
990
  # @private
920
991
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -957,6 +1028,7 @@ module Google
957
1028
  property :data_disk_type, as: 'dataDiskType'
958
1029
  hash :database_flags, as: 'databaseFlags'
959
1030
  property :database_version, as: 'databaseVersion'
1031
+ property :database_version_name, as: 'databaseVersionName'
960
1032
  property :edition, as: 'edition'
961
1033
  property :ip_config, as: 'ipConfig', class: Google::Apis::DatamigrationV1::SqlIpConfig, decorator: Google::Apis::DatamigrationV1::SqlIpConfig::Representation
962
1034
 
@@ -1396,6 +1468,16 @@ module Google
1396
1468
  end
1397
1469
  end
1398
1470
 
1471
+ class InstanceNetworkConfig
1472
+ # @private
1473
+ class Representation < Google::Apis::Core::JsonRepresentation
1474
+ collection :authorized_external_networks, as: 'authorizedExternalNetworks', class: Google::Apis::DatamigrationV1::AuthorizedNetwork, decorator: Google::Apis::DatamigrationV1::AuthorizedNetwork::Representation
1475
+
1476
+ property :enable_outbound_public_ip, as: 'enableOutboundPublicIp'
1477
+ property :enable_public_ip, as: 'enablePublicIp'
1478
+ end
1479
+ end
1480
+
1399
1481
  class IntComparisonFilter
1400
1482
  # @private
1401
1483
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1482,6 +1564,20 @@ module Google
1482
1564
  end
1483
1565
  end
1484
1566
 
1567
+ class LogFileDirectories
1568
+ # @private
1569
+ class Representation < Google::Apis::Core::JsonRepresentation
1570
+ property :archived_log_directory, as: 'archivedLogDirectory'
1571
+ property :online_log_directory, as: 'onlineLogDirectory'
1572
+ end
1573
+ end
1574
+
1575
+ class LogMiner
1576
+ # @private
1577
+ class Representation < Google::Apis::Core::JsonRepresentation
1578
+ end
1579
+ end
1580
+
1485
1581
  class MachineConfig
1486
1582
  # @private
1487
1583
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1567,6 +1663,8 @@ module Google
1567
1663
  property :filter, as: 'filter'
1568
1664
  hash :labels, as: 'labels'
1569
1665
  property :name, as: 'name'
1666
+ property :oracle_to_postgres_config, as: 'oracleToPostgresConfig', class: Google::Apis::DatamigrationV1::OracleToPostgresConfig, decorator: Google::Apis::DatamigrationV1::OracleToPostgresConfig::Representation
1667
+
1570
1668
  property :performance_config, as: 'performanceConfig', class: Google::Apis::DatamigrationV1::PerformanceConfig, decorator: Google::Apis::DatamigrationV1::PerformanceConfig::Representation
1571
1669
 
1572
1670
  property :phase, as: 'phase'
@@ -1661,6 +1759,12 @@ module Google
1661
1759
  end
1662
1760
  end
1663
1761
 
1762
+ class OracleAsmLogFileAccess
1763
+ # @private
1764
+ class Representation < Google::Apis::Core::JsonRepresentation
1765
+ end
1766
+ end
1767
+
1664
1768
  class OracleConnectionProfile
1665
1769
  # @private
1666
1770
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1683,6 +1787,30 @@ module Google
1683
1787
  end
1684
1788
  end
1685
1789
 
1790
+ class OracleSourceConfig
1791
+ # @private
1792
+ class Representation < Google::Apis::Core::JsonRepresentation
1793
+ property :binary_log_parser, as: 'binaryLogParser', class: Google::Apis::DatamigrationV1::BinaryLogParser, decorator: Google::Apis::DatamigrationV1::BinaryLogParser::Representation
1794
+
1795
+ property :cdc_start_position, :numeric_string => true, as: 'cdcStartPosition'
1796
+ property :log_miner, as: 'logMiner', class: Google::Apis::DatamigrationV1::LogMiner, decorator: Google::Apis::DatamigrationV1::LogMiner::Representation
1797
+
1798
+ property :max_concurrent_cdc_connections, as: 'maxConcurrentCdcConnections'
1799
+ property :max_concurrent_full_dump_connections, as: 'maxConcurrentFullDumpConnections'
1800
+ property :skip_full_dump, as: 'skipFullDump'
1801
+ end
1802
+ end
1803
+
1804
+ class OracleToPostgresConfig
1805
+ # @private
1806
+ class Representation < Google::Apis::Core::JsonRepresentation
1807
+ property :oracle_source_config, as: 'oracleSourceConfig', class: Google::Apis::DatamigrationV1::OracleSourceConfig, decorator: Google::Apis::DatamigrationV1::OracleSourceConfig::Representation
1808
+
1809
+ property :postgres_destination_config, as: 'postgresDestinationConfig', class: Google::Apis::DatamigrationV1::PostgresDestinationConfig, decorator: Google::Apis::DatamigrationV1::PostgresDestinationConfig::Representation
1810
+
1811
+ end
1812
+ end
1813
+
1686
1814
  class PackageEntity
1687
1815
  # @private
1688
1816
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1741,14 +1869,25 @@ module Google
1741
1869
  end
1742
1870
  end
1743
1871
 
1872
+ class PostgresDestinationConfig
1873
+ # @private
1874
+ class Representation < Google::Apis::Core::JsonRepresentation
1875
+ property :max_concurrent_connections, as: 'maxConcurrentConnections'
1876
+ property :transaction_timeout, as: 'transactionTimeout'
1877
+ end
1878
+ end
1879
+
1744
1880
  class PrimaryInstanceSettings
1745
1881
  # @private
1746
1882
  class Representation < Google::Apis::Core::JsonRepresentation
1747
1883
  hash :database_flags, as: 'databaseFlags'
1748
1884
  property :id, as: 'id'
1885
+ property :instance_network_config, as: 'instanceNetworkConfig', class: Google::Apis::DatamigrationV1::InstanceNetworkConfig, decorator: Google::Apis::DatamigrationV1::InstanceNetworkConfig::Representation
1886
+
1749
1887
  hash :labels, as: 'labels'
1750
1888
  property :machine_config, as: 'machineConfig', class: Google::Apis::DatamigrationV1::MachineConfig, decorator: Google::Apis::DatamigrationV1::MachineConfig::Representation
1751
1889
 
1890
+ collection :outbound_public_ip_addresses, as: 'outboundPublicIpAddresses'
1752
1891
  property :private_ip, as: 'privateIp'
1753
1892
  end
1754
1893
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datamigration_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.60.0
4
+ version: 0.62.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-08-18 00:00:00.000000000 Z
11
+ date: 2024-10-06 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-datamigration_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.60.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.62.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1
63
63
  post_install_message:
64
64
  rdoc_options: []