pulumi-oci 2.1.0a1719958917__py3-none-any.whl → 2.2.0__py3-none-any.whl

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.
Files changed (61) hide show
  1. pulumi_oci/__init__.py +43 -0
  2. pulumi_oci/database/__init__.py +11 -0
  3. pulumi_oci/database/_inputs.py +607 -0
  4. pulumi_oci/database/db_node.py +28 -0
  5. pulumi_oci/database/exadb_vm_cluster.py +1761 -0
  6. pulumi_oci/database/exascale_db_storage_vault.py +787 -0
  7. pulumi_oci/database/get_backups.py +22 -5
  8. pulumi_oci/database/get_db_node.py +14 -1
  9. pulumi_oci/database/get_db_nodes.py +2 -2
  10. pulumi_oci/database/get_exadb_vm_cluster.py +614 -0
  11. pulumi_oci/database/get_exadb_vm_cluster_update.py +226 -0
  12. pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py +153 -0
  13. pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py +226 -0
  14. pulumi_oci/database/get_exadb_vm_cluster_updates.py +173 -0
  15. pulumi_oci/database/get_exadb_vm_clusters.py +196 -0
  16. pulumi_oci/database/get_exascale_db_storage_vault.py +301 -0
  17. pulumi_oci/database/get_exascale_db_storage_vaults.py +176 -0
  18. pulumi_oci/database/get_gi_version_minor_versions.py +221 -0
  19. pulumi_oci/database/get_gi_versions.py +22 -5
  20. pulumi_oci/database/outputs.py +2050 -0
  21. pulumi_oci/database/pluggable_database.py +7 -7
  22. pulumi_oci/databasemigration/__init__.py +6 -0
  23. pulumi_oci/databasemigration/_inputs.py +1633 -0
  24. pulumi_oci/databasemigration/connection.py +2019 -0
  25. pulumi_oci/databasemigration/get_connection.py +616 -0
  26. pulumi_oci/databasemigration/get_connections.py +225 -0
  27. pulumi_oci/databasemigration/get_job_advisor_report.py +2 -10
  28. pulumi_oci/databasemigration/get_migration.py +440 -0
  29. pulumi_oci/databasemigration/get_migration_object_types.py +24 -13
  30. pulumi_oci/databasemigration/get_migrations.py +420 -0
  31. pulumi_oci/databasemigration/job.py +16 -20
  32. pulumi_oci/databasemigration/migration.py +1528 -0
  33. pulumi_oci/databasemigration/outputs.py +4447 -76
  34. pulumi_oci/filestorage/_inputs.py +10 -18
  35. pulumi_oci/filestorage/export.py +28 -7
  36. pulumi_oci/filestorage/file_system.py +159 -35
  37. pulumi_oci/filestorage/outputs.py +55 -34
  38. pulumi_oci/generativeai/_inputs.py +50 -2
  39. pulumi_oci/generativeai/dedicated_ai_cluster.py +30 -2
  40. pulumi_oci/generativeai/endpoint.py +2 -2
  41. pulumi_oci/generativeai/get_dedicated_ai_cluster.py +2 -47
  42. pulumi_oci/generativeai/get_dedicated_ai_clusters.py +2 -14
  43. pulumi_oci/generativeai/get_endpoint.py +2 -26
  44. pulumi_oci/generativeai/get_endpoints.py +2 -8
  45. pulumi_oci/generativeai/get_model.py +2 -38
  46. pulumi_oci/generativeai/get_models.py +2 -8
  47. pulumi_oci/generativeai/model.py +2 -2
  48. pulumi_oci/generativeai/outputs.py +86 -310
  49. pulumi_oci/meteringcomputation/_inputs.py +32 -0
  50. pulumi_oci/meteringcomputation/outputs.py +29 -1
  51. pulumi_oci/pulumi-plugin.json +1 -1
  52. pulumi_oci/resourcescheduler/__init__.py +12 -0
  53. pulumi_oci/resourcescheduler/_inputs.py +224 -0
  54. pulumi_oci/resourcescheduler/get_schedule.py +340 -0
  55. pulumi_oci/resourcescheduler/get_schedules.py +193 -0
  56. pulumi_oci/resourcescheduler/outputs.py +687 -0
  57. pulumi_oci/resourcescheduler/schedule.py +977 -0
  58. {pulumi_oci-2.1.0a1719958917.dist-info → pulumi_oci-2.2.0.dist-info}/METADATA +1 -1
  59. {pulumi_oci-2.1.0a1719958917.dist-info → pulumi_oci-2.2.0.dist-info}/RECORD +61 -38
  60. {pulumi_oci-2.1.0a1719958917.dist-info → pulumi_oci-2.2.0.dist-info}/WHEEL +1 -1
  61. {pulumi_oci-2.1.0a1719958917.dist-info → pulumi_oci-2.2.0.dist-info}/top_level.txt +0 -0
@@ -11,19 +11,161 @@ from .. import _utilities
11
11
  from . import outputs
12
12
 
13
13
  __all__ = [
14
+ 'ConnectionAdditionalAttribute',
15
+ 'ConnectionIngressIp',
14
16
  'JobProgress',
15
17
  'JobProgressPhase',
16
18
  'JobProgressPhaseExtract',
17
19
  'JobProgressPhaseLogLocation',
18
20
  'JobUnsupportedObject',
21
+ 'MigrationAdvancedParameter',
22
+ 'MigrationAdvisorSettings',
23
+ 'MigrationDataTransferMediumDetails',
24
+ 'MigrationDataTransferMediumDetailsObjectStorageBucket',
25
+ 'MigrationDataTransferMediumDetailsSource',
26
+ 'MigrationDataTransferMediumDetailsTarget',
27
+ 'MigrationExcludeObject',
28
+ 'MigrationGgsDetails',
29
+ 'MigrationGgsDetailsExtract',
30
+ 'MigrationGgsDetailsGgsDeployment',
31
+ 'MigrationGgsDetailsReplicat',
32
+ 'MigrationHubDetails',
33
+ 'MigrationHubDetailsExtract',
34
+ 'MigrationHubDetailsReplicat',
35
+ 'MigrationHubDetailsRestAdminCredentials',
36
+ 'MigrationIncludeObject',
37
+ 'MigrationInitialLoadSettings',
38
+ 'MigrationInitialLoadSettingsDataPumpParameters',
39
+ 'MigrationInitialLoadSettingsExportDirectoryObject',
40
+ 'MigrationInitialLoadSettingsImportDirectoryObject',
41
+ 'MigrationInitialLoadSettingsMetadataRemap',
42
+ 'MigrationInitialLoadSettingsTablespaceDetails',
43
+ 'GetConnectionAdditionalAttributeResult',
44
+ 'GetConnectionIngressIpResult',
45
+ 'GetConnectionsConnectionCollectionResult',
46
+ 'GetConnectionsConnectionCollectionItemResult',
47
+ 'GetConnectionsConnectionCollectionItemAdditionalAttributeResult',
48
+ 'GetConnectionsConnectionCollectionItemIngressIpResult',
49
+ 'GetConnectionsFilterResult',
19
50
  'GetJobAdvisorReportReportLocationDetailResult',
20
51
  'GetJobAdvisorReportReportLocationDetailObjectStorageDetailResult',
21
52
  'GetJobOutputItemResult',
53
+ 'GetMigrationAdvancedParameterResult',
54
+ 'GetMigrationAdvisorSettingResult',
55
+ 'GetMigrationDataTransferMediumDetailResult',
56
+ 'GetMigrationDataTransferMediumDetailObjectStorageBucketResult',
57
+ 'GetMigrationDataTransferMediumDetailSourceResult',
58
+ 'GetMigrationDataTransferMediumDetailTargetResult',
59
+ 'GetMigrationExcludeObjectResult',
60
+ 'GetMigrationGgsDetailResult',
61
+ 'GetMigrationGgsDetailExtractResult',
62
+ 'GetMigrationGgsDetailGgsDeploymentResult',
63
+ 'GetMigrationGgsDetailReplicatResult',
64
+ 'GetMigrationHubDetailResult',
65
+ 'GetMigrationHubDetailExtractResult',
66
+ 'GetMigrationHubDetailReplicatResult',
67
+ 'GetMigrationHubDetailRestAdminCredentialResult',
68
+ 'GetMigrationIncludeObjectResult',
69
+ 'GetMigrationInitialLoadSettingResult',
70
+ 'GetMigrationInitialLoadSettingDataPumpParameterResult',
71
+ 'GetMigrationInitialLoadSettingExportDirectoryObjectResult',
72
+ 'GetMigrationInitialLoadSettingImportDirectoryObjectResult',
73
+ 'GetMigrationInitialLoadSettingMetadataRemapResult',
74
+ 'GetMigrationInitialLoadSettingTablespaceDetailResult',
22
75
  'GetMigrationObjectTypesFilterResult',
23
76
  'GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionResult',
24
77
  'GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionItemResult',
78
+ 'GetMigrationsAdvancedParameterResult',
79
+ 'GetMigrationsAdvisorSettingResult',
80
+ 'GetMigrationsDataTransferMediumDetailResult',
81
+ 'GetMigrationsDataTransferMediumDetailObjectStorageBucketResult',
82
+ 'GetMigrationsDataTransferMediumDetailSourceResult',
83
+ 'GetMigrationsDataTransferMediumDetailTargetResult',
84
+ 'GetMigrationsExcludeObjectResult',
85
+ 'GetMigrationsGgsDetailResult',
86
+ 'GetMigrationsGgsDetailExtractResult',
87
+ 'GetMigrationsGgsDetailGgsDeploymentResult',
88
+ 'GetMigrationsGgsDetailReplicatResult',
89
+ 'GetMigrationsHubDetailResult',
90
+ 'GetMigrationsHubDetailExtractResult',
91
+ 'GetMigrationsHubDetailReplicatResult',
92
+ 'GetMigrationsHubDetailRestAdminCredentialResult',
93
+ 'GetMigrationsIncludeObjectResult',
94
+ 'GetMigrationsInitialLoadSettingResult',
95
+ 'GetMigrationsInitialLoadSettingDataPumpParameterResult',
96
+ 'GetMigrationsInitialLoadSettingExportDirectoryObjectResult',
97
+ 'GetMigrationsInitialLoadSettingImportDirectoryObjectResult',
98
+ 'GetMigrationsInitialLoadSettingMetadataRemapResult',
99
+ 'GetMigrationsInitialLoadSettingTablespaceDetailResult',
25
100
  ]
26
101
 
102
+ @pulumi.output_type
103
+ class ConnectionAdditionalAttribute(dict):
104
+ def __init__(__self__, *,
105
+ name: Optional[str] = None,
106
+ value: Optional[str] = None):
107
+ """
108
+ :param str name: (Updatable) The name of the property entry.
109
+ :param str value: (Updatable) The value of the property entry.
110
+ """
111
+ if name is not None:
112
+ pulumi.set(__self__, "name", name)
113
+ if value is not None:
114
+ pulumi.set(__self__, "value", value)
115
+
116
+ @property
117
+ @pulumi.getter
118
+ def name(self) -> Optional[str]:
119
+ """
120
+ (Updatable) The name of the property entry.
121
+ """
122
+ return pulumi.get(self, "name")
123
+
124
+ @property
125
+ @pulumi.getter
126
+ def value(self) -> Optional[str]:
127
+ """
128
+ (Updatable) The value of the property entry.
129
+ """
130
+ return pulumi.get(self, "value")
131
+
132
+
133
+ @pulumi.output_type
134
+ class ConnectionIngressIp(dict):
135
+ @staticmethod
136
+ def __key_warning(key: str):
137
+ suggest = None
138
+ if key == "ingressIp":
139
+ suggest = "ingress_ip"
140
+
141
+ if suggest:
142
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionIngressIp. Access the value via the '{suggest}' property getter instead.")
143
+
144
+ def __getitem__(self, key: str) -> Any:
145
+ ConnectionIngressIp.__key_warning(key)
146
+ return super().__getitem__(key)
147
+
148
+ def get(self, key: str, default = None) -> Any:
149
+ ConnectionIngressIp.__key_warning(key)
150
+ return super().get(key, default)
151
+
152
+ def __init__(__self__, *,
153
+ ingress_ip: Optional[str] = None):
154
+ """
155
+ :param str ingress_ip: A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
156
+ """
157
+ if ingress_ip is not None:
158
+ pulumi.set(__self__, "ingress_ip", ingress_ip)
159
+
160
+ @property
161
+ @pulumi.getter(name="ingressIp")
162
+ def ingress_ip(self) -> Optional[str]:
163
+ """
164
+ A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
165
+ """
166
+ return pulumi.get(self, "ingress_ip")
167
+
168
+
27
169
  @pulumi.output_type
28
170
  class JobProgress(dict):
29
171
  @staticmethod
@@ -340,158 +482,4387 @@ class JobUnsupportedObject(dict):
340
482
 
341
483
 
342
484
  @pulumi.output_type
343
- class GetJobAdvisorReportReportLocationDetailResult(dict):
485
+ class MigrationAdvancedParameter(dict):
486
+ @staticmethod
487
+ def __key_warning(key: str):
488
+ suggest = None
489
+ if key == "dataType":
490
+ suggest = "data_type"
491
+
492
+ if suggest:
493
+ pulumi.log.warn(f"Key '{key}' not found in MigrationAdvancedParameter. Access the value via the '{suggest}' property getter instead.")
494
+
495
+ def __getitem__(self, key: str) -> Any:
496
+ MigrationAdvancedParameter.__key_warning(key)
497
+ return super().__getitem__(key)
498
+
499
+ def get(self, key: str, default = None) -> Any:
500
+ MigrationAdvancedParameter.__key_warning(key)
501
+ return super().get(key, default)
502
+
344
503
  def __init__(__self__, *,
345
- location_in_source: str,
346
- object_storage_details: Sequence['outputs.GetJobAdvisorReportReportLocationDetailObjectStorageDetailResult']):
504
+ data_type: Optional[str] = None,
505
+ name: Optional[str] = None,
506
+ value: Optional[str] = None):
347
507
  """
348
- :param str location_in_source: Path in the Source Registered Connection where the Pre-Migration advisor report can be accessed.
349
- :param Sequence['GetJobAdvisorReportReportLocationDetailObjectStorageDetailArgs'] object_storage_details: Details to access Pre-Migration Advisor report in the specified Object Storage bucket, if any.
508
+ :param str data_type: (Updatable) Parameter data type.
509
+ :param str name: (Updatable) Parameter name.
510
+ :param str value: (Updatable) If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
350
511
  """
351
- pulumi.set(__self__, "location_in_source", location_in_source)
352
- pulumi.set(__self__, "object_storage_details", object_storage_details)
512
+ if data_type is not None:
513
+ pulumi.set(__self__, "data_type", data_type)
514
+ if name is not None:
515
+ pulumi.set(__self__, "name", name)
516
+ if value is not None:
517
+ pulumi.set(__self__, "value", value)
353
518
 
354
519
  @property
355
- @pulumi.getter(name="locationInSource")
356
- def location_in_source(self) -> str:
520
+ @pulumi.getter(name="dataType")
521
+ def data_type(self) -> Optional[str]:
357
522
  """
358
- Path in the Source Registered Connection where the Pre-Migration advisor report can be accessed.
523
+ (Updatable) Parameter data type.
359
524
  """
360
- return pulumi.get(self, "location_in_source")
525
+ return pulumi.get(self, "data_type")
361
526
 
362
527
  @property
363
- @pulumi.getter(name="objectStorageDetails")
364
- def object_storage_details(self) -> Sequence['outputs.GetJobAdvisorReportReportLocationDetailObjectStorageDetailResult']:
528
+ @pulumi.getter
529
+ def name(self) -> Optional[str]:
365
530
  """
366
- Details to access Pre-Migration Advisor report in the specified Object Storage bucket, if any.
531
+ (Updatable) Parameter name.
367
532
  """
368
- return pulumi.get(self, "object_storage_details")
533
+ return pulumi.get(self, "name")
534
+
535
+ @property
536
+ @pulumi.getter
537
+ def value(self) -> Optional[str]:
538
+ """
539
+ (Updatable) If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
540
+ """
541
+ return pulumi.get(self, "value")
369
542
 
370
543
 
371
544
  @pulumi.output_type
372
- class GetJobAdvisorReportReportLocationDetailObjectStorageDetailResult(dict):
545
+ class MigrationAdvisorSettings(dict):
546
+ @staticmethod
547
+ def __key_warning(key: str):
548
+ suggest = None
549
+ if key == "isIgnoreErrors":
550
+ suggest = "is_ignore_errors"
551
+ elif key == "isSkipAdvisor":
552
+ suggest = "is_skip_advisor"
553
+
554
+ if suggest:
555
+ pulumi.log.warn(f"Key '{key}' not found in MigrationAdvisorSettings. Access the value via the '{suggest}' property getter instead.")
556
+
557
+ def __getitem__(self, key: str) -> Any:
558
+ MigrationAdvisorSettings.__key_warning(key)
559
+ return super().__getitem__(key)
560
+
561
+ def get(self, key: str, default = None) -> Any:
562
+ MigrationAdvisorSettings.__key_warning(key)
563
+ return super().get(key, default)
564
+
373
565
  def __init__(__self__, *,
374
- bucket: str,
375
- namespace: str,
376
- object: str):
566
+ is_ignore_errors: Optional[bool] = None,
567
+ is_skip_advisor: Optional[bool] = None):
377
568
  """
378
- :param str bucket: Name of the bucket containing the Pre-Migration Advisor report.
379
- :param str namespace: Object Storage namespace.
380
- :param str object: Pre-Migration Advisor report object name.
569
+ :param bool is_ignore_errors: (Updatable) True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
570
+ :param bool is_skip_advisor: (Updatable) True to skip the Pre-Migration Advisor execution. Default is false.
381
571
  """
382
- pulumi.set(__self__, "bucket", bucket)
383
- pulumi.set(__self__, "namespace", namespace)
384
- pulumi.set(__self__, "object", object)
572
+ if is_ignore_errors is not None:
573
+ pulumi.set(__self__, "is_ignore_errors", is_ignore_errors)
574
+ if is_skip_advisor is not None:
575
+ pulumi.set(__self__, "is_skip_advisor", is_skip_advisor)
576
+
577
+ @property
578
+ @pulumi.getter(name="isIgnoreErrors")
579
+ def is_ignore_errors(self) -> Optional[bool]:
580
+ """
581
+ (Updatable) True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
582
+ """
583
+ return pulumi.get(self, "is_ignore_errors")
584
+
585
+ @property
586
+ @pulumi.getter(name="isSkipAdvisor")
587
+ def is_skip_advisor(self) -> Optional[bool]:
588
+ """
589
+ (Updatable) True to skip the Pre-Migration Advisor execution. Default is false.
590
+ """
591
+ return pulumi.get(self, "is_skip_advisor")
592
+
593
+
594
+ @pulumi.output_type
595
+ class MigrationDataTransferMediumDetails(dict):
596
+ @staticmethod
597
+ def __key_warning(key: str):
598
+ suggest = None
599
+ if key == "accessKeyId":
600
+ suggest = "access_key_id"
601
+ elif key == "objectStorageBucket":
602
+ suggest = "object_storage_bucket"
603
+ elif key == "secretAccessKey":
604
+ suggest = "secret_access_key"
605
+ elif key == "sharedStorageMountTargetId":
606
+ suggest = "shared_storage_mount_target_id"
607
+
608
+ if suggest:
609
+ pulumi.log.warn(f"Key '{key}' not found in MigrationDataTransferMediumDetails. Access the value via the '{suggest}' property getter instead.")
610
+
611
+ def __getitem__(self, key: str) -> Any:
612
+ MigrationDataTransferMediumDetails.__key_warning(key)
613
+ return super().__getitem__(key)
614
+
615
+ def get(self, key: str, default = None) -> Any:
616
+ MigrationDataTransferMediumDetails.__key_warning(key)
617
+ return super().get(key, default)
618
+
619
+ def __init__(__self__, *,
620
+ type: str,
621
+ access_key_id: Optional[str] = None,
622
+ name: Optional[str] = None,
623
+ object_storage_bucket: Optional['outputs.MigrationDataTransferMediumDetailsObjectStorageBucket'] = None,
624
+ region: Optional[str] = None,
625
+ secret_access_key: Optional[str] = None,
626
+ shared_storage_mount_target_id: Optional[str] = None,
627
+ source: Optional['outputs.MigrationDataTransferMediumDetailsSource'] = None,
628
+ target: Optional['outputs.MigrationDataTransferMediumDetailsTarget'] = None):
629
+ """
630
+ :param str type: (Updatable) Type of the data transfer medium to use.
631
+ :param str access_key_id: (Updatable) AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
632
+ :param str name: (Updatable) Name of database link from Oracle Cloud Infrastructure database to on-premise database. ODMS will create link, if the link does not already exist.
633
+ :param 'MigrationDataTransferMediumDetailsObjectStorageBucketArgs' object_storage_bucket: (Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
634
+ :param str region: (Updatable) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
635
+ :param str secret_access_key: (Updatable) AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
636
+ :param str shared_storage_mount_target_id: (Updatable) OCID of the shared storage mount target
637
+ :param 'MigrationDataTransferMediumDetailsSourceArgs' source: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL.
638
+ :param 'MigrationDataTransferMediumDetailsTargetArgs' target: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL.
639
+ """
640
+ pulumi.set(__self__, "type", type)
641
+ if access_key_id is not None:
642
+ pulumi.set(__self__, "access_key_id", access_key_id)
643
+ if name is not None:
644
+ pulumi.set(__self__, "name", name)
645
+ if object_storage_bucket is not None:
646
+ pulumi.set(__self__, "object_storage_bucket", object_storage_bucket)
647
+ if region is not None:
648
+ pulumi.set(__self__, "region", region)
649
+ if secret_access_key is not None:
650
+ pulumi.set(__self__, "secret_access_key", secret_access_key)
651
+ if shared_storage_mount_target_id is not None:
652
+ pulumi.set(__self__, "shared_storage_mount_target_id", shared_storage_mount_target_id)
653
+ if source is not None:
654
+ pulumi.set(__self__, "source", source)
655
+ if target is not None:
656
+ pulumi.set(__self__, "target", target)
385
657
 
386
658
  @property
387
659
  @pulumi.getter
388
- def bucket(self) -> str:
660
+ def type(self) -> str:
389
661
  """
390
- Name of the bucket containing the Pre-Migration Advisor report.
662
+ (Updatable) Type of the data transfer medium to use.
391
663
  """
392
- return pulumi.get(self, "bucket")
664
+ return pulumi.get(self, "type")
665
+
666
+ @property
667
+ @pulumi.getter(name="accessKeyId")
668
+ def access_key_id(self) -> Optional[str]:
669
+ """
670
+ (Updatable) AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
671
+ """
672
+ return pulumi.get(self, "access_key_id")
393
673
 
394
674
  @property
395
675
  @pulumi.getter
396
- def namespace(self) -> str:
676
+ def name(self) -> Optional[str]:
397
677
  """
398
- Object Storage namespace.
678
+ (Updatable) Name of database link from Oracle Cloud Infrastructure database to on-premise database. ODMS will create link, if the link does not already exist.
399
679
  """
400
- return pulumi.get(self, "namespace")
680
+ return pulumi.get(self, "name")
681
+
682
+ @property
683
+ @pulumi.getter(name="objectStorageBucket")
684
+ def object_storage_bucket(self) -> Optional['outputs.MigrationDataTransferMediumDetailsObjectStorageBucket']:
685
+ """
686
+ (Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
687
+ """
688
+ return pulumi.get(self, "object_storage_bucket")
401
689
 
402
690
  @property
403
691
  @pulumi.getter
404
- def object(self) -> str:
692
+ def region(self) -> Optional[str]:
405
693
  """
406
- Pre-Migration Advisor report object name.
694
+ (Updatable) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
407
695
  """
408
- return pulumi.get(self, "object")
696
+ return pulumi.get(self, "region")
409
697
 
698
+ @property
699
+ @pulumi.getter(name="secretAccessKey")
700
+ def secret_access_key(self) -> Optional[str]:
701
+ """
702
+ (Updatable) AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
703
+ """
704
+ return pulumi.get(self, "secret_access_key")
410
705
 
411
- @pulumi.output_type
412
- class GetJobOutputItemResult(dict):
413
- def __init__(__self__, *,
414
- message: str):
706
+ @property
707
+ @pulumi.getter(name="sharedStorageMountTargetId")
708
+ def shared_storage_mount_target_id(self) -> Optional[str]:
415
709
  """
416
- :param str message: Job output line.
710
+ (Updatable) OCID of the shared storage mount target
417
711
  """
418
- pulumi.set(__self__, "message", message)
712
+ return pulumi.get(self, "shared_storage_mount_target_id")
419
713
 
420
714
  @property
421
715
  @pulumi.getter
422
- def message(self) -> str:
716
+ def source(self) -> Optional['outputs.MigrationDataTransferMediumDetailsSource']:
423
717
  """
424
- Job output line.
718
+ (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL.
425
719
  """
426
- return pulumi.get(self, "message")
720
+ return pulumi.get(self, "source")
721
+
722
+ @property
723
+ @pulumi.getter
724
+ def target(self) -> Optional['outputs.MigrationDataTransferMediumDetailsTarget']:
725
+ """
726
+ (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL.
727
+ """
728
+ return pulumi.get(self, "target")
427
729
 
428
730
 
429
731
  @pulumi.output_type
430
- class GetMigrationObjectTypesFilterResult(dict):
732
+ class MigrationDataTransferMediumDetailsObjectStorageBucket(dict):
431
733
  def __init__(__self__, *,
432
- name: str,
433
- values: Sequence[str],
434
- regex: Optional[bool] = None):
734
+ bucket: Optional[str] = None,
735
+ namespace: Optional[str] = None):
435
736
  """
436
- :param str name: Object type name
737
+ :param str bucket: (Updatable) Bucket name.
738
+ :param str namespace: (Updatable) Namespace name of the object store bucket.
437
739
  """
438
- pulumi.set(__self__, "name", name)
439
- pulumi.set(__self__, "values", values)
440
- if regex is not None:
441
- pulumi.set(__self__, "regex", regex)
740
+ if bucket is not None:
741
+ pulumi.set(__self__, "bucket", bucket)
742
+ if namespace is not None:
743
+ pulumi.set(__self__, "namespace", namespace)
442
744
 
443
745
  @property
444
746
  @pulumi.getter
445
- def name(self) -> str:
747
+ def bucket(self) -> Optional[str]:
446
748
  """
447
- Object type name
749
+ (Updatable) Bucket name.
448
750
  """
449
- return pulumi.get(self, "name")
450
-
451
- @property
452
- @pulumi.getter
453
- def values(self) -> Sequence[str]:
454
- return pulumi.get(self, "values")
751
+ return pulumi.get(self, "bucket")
455
752
 
456
753
  @property
457
754
  @pulumi.getter
458
- def regex(self) -> Optional[bool]:
459
- return pulumi.get(self, "regex")
755
+ def namespace(self) -> Optional[str]:
756
+ """
757
+ (Updatable) Namespace name of the object store bucket.
758
+ """
759
+ return pulumi.get(self, "namespace")
460
760
 
461
761
 
462
762
  @pulumi.output_type
463
- class GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionResult(dict):
763
+ class MigrationDataTransferMediumDetailsSource(dict):
764
+ @staticmethod
765
+ def __key_warning(key: str):
766
+ suggest = None
767
+ if key == "ociHome":
768
+ suggest = "oci_home"
769
+ elif key == "walletLocation":
770
+ suggest = "wallet_location"
771
+
772
+ if suggest:
773
+ pulumi.log.warn(f"Key '{key}' not found in MigrationDataTransferMediumDetailsSource. Access the value via the '{suggest}' property getter instead.")
774
+
775
+ def __getitem__(self, key: str) -> Any:
776
+ MigrationDataTransferMediumDetailsSource.__key_warning(key)
777
+ return super().__getitem__(key)
778
+
779
+ def get(self, key: str, default = None) -> Any:
780
+ MigrationDataTransferMediumDetailsSource.__key_warning(key)
781
+ return super().get(key, default)
782
+
464
783
  def __init__(__self__, *,
465
- items: Sequence['outputs.GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionItemResult']):
784
+ kind: str,
785
+ oci_home: Optional[str] = None,
786
+ wallet_location: Optional[str] = None):
466
787
  """
467
- :param Sequence['GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionItemArgs'] items: Items in collection.
788
+ :param str kind: (Updatable) Type of dump transfer to use during migration in source or target host. Default kind is CURL
789
+ :param str oci_home: (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
790
+ :param str wallet_location: (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
468
791
  """
469
- pulumi.set(__self__, "items", items)
792
+ pulumi.set(__self__, "kind", kind)
793
+ if oci_home is not None:
794
+ pulumi.set(__self__, "oci_home", oci_home)
795
+ if wallet_location is not None:
796
+ pulumi.set(__self__, "wallet_location", wallet_location)
470
797
 
471
798
  @property
472
799
  @pulumi.getter
473
- def items(self) -> Sequence['outputs.GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionItemResult']:
800
+ def kind(self) -> str:
474
801
  """
475
- Items in collection.
802
+ (Updatable) Type of dump transfer to use during migration in source or target host. Default kind is CURL
476
803
  """
477
- return pulumi.get(self, "items")
804
+ return pulumi.get(self, "kind")
805
+
806
+ @property
807
+ @pulumi.getter(name="ociHome")
808
+ def oci_home(self) -> Optional[str]:
809
+ """
810
+ (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
811
+ """
812
+ return pulumi.get(self, "oci_home")
813
+
814
+ @property
815
+ @pulumi.getter(name="walletLocation")
816
+ def wallet_location(self) -> Optional[str]:
817
+ """
818
+ (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
819
+ """
820
+ return pulumi.get(self, "wallet_location")
478
821
 
479
822
 
480
823
  @pulumi.output_type
481
- class GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionItemResult(dict):
824
+ class MigrationDataTransferMediumDetailsTarget(dict):
825
+ @staticmethod
826
+ def __key_warning(key: str):
827
+ suggest = None
828
+ if key == "ociHome":
829
+ suggest = "oci_home"
830
+ elif key == "walletLocation":
831
+ suggest = "wallet_location"
832
+
833
+ if suggest:
834
+ pulumi.log.warn(f"Key '{key}' not found in MigrationDataTransferMediumDetailsTarget. Access the value via the '{suggest}' property getter instead.")
835
+
836
+ def __getitem__(self, key: str) -> Any:
837
+ MigrationDataTransferMediumDetailsTarget.__key_warning(key)
838
+ return super().__getitem__(key)
839
+
840
+ def get(self, key: str, default = None) -> Any:
841
+ MigrationDataTransferMediumDetailsTarget.__key_warning(key)
842
+ return super().get(key, default)
843
+
482
844
  def __init__(__self__, *,
483
- name: str):
845
+ kind: str,
846
+ oci_home: Optional[str] = None,
847
+ wallet_location: Optional[str] = None):
484
848
  """
485
- :param str name: Object type name
849
+ :param str kind: (Updatable) Type of dump transfer to use during migration in source or target host. Default kind is CURL
850
+ :param str oci_home: (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
851
+ :param str wallet_location: (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
486
852
  """
487
- pulumi.set(__self__, "name", name)
853
+ pulumi.set(__self__, "kind", kind)
854
+ if oci_home is not None:
855
+ pulumi.set(__self__, "oci_home", oci_home)
856
+ if wallet_location is not None:
857
+ pulumi.set(__self__, "wallet_location", wallet_location)
488
858
 
489
859
  @property
490
860
  @pulumi.getter
491
- def name(self) -> str:
861
+ def kind(self) -> str:
492
862
  """
493
- Object type name
863
+ (Updatable) Type of dump transfer to use during migration in source or target host. Default kind is CURL
494
864
  """
495
- return pulumi.get(self, "name")
865
+ return pulumi.get(self, "kind")
866
+
867
+ @property
868
+ @pulumi.getter(name="ociHome")
869
+ def oci_home(self) -> Optional[str]:
870
+ """
871
+ (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
872
+ """
873
+ return pulumi.get(self, "oci_home")
874
+
875
+ @property
876
+ @pulumi.getter(name="walletLocation")
877
+ def wallet_location(self) -> Optional[str]:
878
+ """
879
+ (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
880
+ """
881
+ return pulumi.get(self, "wallet_location")
882
+
883
+
884
+ @pulumi.output_type
885
+ class MigrationExcludeObject(dict):
886
+ @staticmethod
887
+ def __key_warning(key: str):
888
+ suggest = None
889
+ if key == "isOmitExcludedTableFromReplication":
890
+ suggest = "is_omit_excluded_table_from_replication"
891
+
892
+ if suggest:
893
+ pulumi.log.warn(f"Key '{key}' not found in MigrationExcludeObject. Access the value via the '{suggest}' property getter instead.")
894
+
895
+ def __getitem__(self, key: str) -> Any:
896
+ MigrationExcludeObject.__key_warning(key)
897
+ return super().__getitem__(key)
898
+
899
+ def get(self, key: str, default = None) -> Any:
900
+ MigrationExcludeObject.__key_warning(key)
901
+ return super().get(key, default)
902
+
903
+ def __init__(__self__, *,
904
+ object: str,
905
+ is_omit_excluded_table_from_replication: Optional[bool] = None,
906
+ owner: Optional[str] = None,
907
+ schema: Optional[str] = None,
908
+ type: Optional[str] = None):
909
+ """
910
+ :param str object: Name of the object (regular expression is allowed)
911
+ :param bool is_omit_excluded_table_from_replication: Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and object status EXCLUDE.
912
+ :param str owner: Owner of the object (regular expression is allowed)
913
+ :param str schema: Schema of the object (regular expression is allowed)
914
+ :param str type: Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
915
+ """
916
+ pulumi.set(__self__, "object", object)
917
+ if is_omit_excluded_table_from_replication is not None:
918
+ pulumi.set(__self__, "is_omit_excluded_table_from_replication", is_omit_excluded_table_from_replication)
919
+ if owner is not None:
920
+ pulumi.set(__self__, "owner", owner)
921
+ if schema is not None:
922
+ pulumi.set(__self__, "schema", schema)
923
+ if type is not None:
924
+ pulumi.set(__self__, "type", type)
925
+
926
+ @property
927
+ @pulumi.getter
928
+ def object(self) -> str:
929
+ """
930
+ Name of the object (regular expression is allowed)
931
+ """
932
+ return pulumi.get(self, "object")
933
+
934
+ @property
935
+ @pulumi.getter(name="isOmitExcludedTableFromReplication")
936
+ def is_omit_excluded_table_from_replication(self) -> Optional[bool]:
937
+ """
938
+ Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and object status EXCLUDE.
939
+ """
940
+ return pulumi.get(self, "is_omit_excluded_table_from_replication")
941
+
942
+ @property
943
+ @pulumi.getter
944
+ def owner(self) -> Optional[str]:
945
+ """
946
+ Owner of the object (regular expression is allowed)
947
+ """
948
+ return pulumi.get(self, "owner")
949
+
950
+ @property
951
+ @pulumi.getter
952
+ def schema(self) -> Optional[str]:
953
+ """
954
+ Schema of the object (regular expression is allowed)
955
+ """
956
+ return pulumi.get(self, "schema")
957
+
958
+ @property
959
+ @pulumi.getter
960
+ def type(self) -> Optional[str]:
961
+ """
962
+ Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
963
+ """
964
+ return pulumi.get(self, "type")
965
+
966
+
967
+ @pulumi.output_type
968
+ class MigrationGgsDetails(dict):
969
+ @staticmethod
970
+ def __key_warning(key: str):
971
+ suggest = None
972
+ if key == "acceptableLag":
973
+ suggest = "acceptable_lag"
974
+ elif key == "ggsDeployments":
975
+ suggest = "ggs_deployments"
976
+
977
+ if suggest:
978
+ pulumi.log.warn(f"Key '{key}' not found in MigrationGgsDetails. Access the value via the '{suggest}' property getter instead.")
979
+
980
+ def __getitem__(self, key: str) -> Any:
981
+ MigrationGgsDetails.__key_warning(key)
982
+ return super().__getitem__(key)
983
+
984
+ def get(self, key: str, default = None) -> Any:
985
+ MigrationGgsDetails.__key_warning(key)
986
+ return super().get(key, default)
987
+
988
+ def __init__(__self__, *,
989
+ acceptable_lag: Optional[int] = None,
990
+ extract: Optional['outputs.MigrationGgsDetailsExtract'] = None,
991
+ ggs_deployments: Optional[Sequence['outputs.MigrationGgsDetailsGgsDeployment']] = None,
992
+ replicat: Optional['outputs.MigrationGgsDetailsReplicat'] = None):
993
+ """
994
+ :param int acceptable_lag: (Updatable) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
995
+ :param 'MigrationGgsDetailsExtractArgs' extract: (Updatable) Parameters for GoldenGate Extract processes.
996
+ :param Sequence['MigrationGgsDetailsGgsDeploymentArgs'] ggs_deployments: Details about Oracle GoldenGate GGS Deployment.
997
+ :param 'MigrationGgsDetailsReplicatArgs' replicat: (Updatable) Parameters for GoldenGate Replicat processes.
998
+ """
999
+ if acceptable_lag is not None:
1000
+ pulumi.set(__self__, "acceptable_lag", acceptable_lag)
1001
+ if extract is not None:
1002
+ pulumi.set(__self__, "extract", extract)
1003
+ if ggs_deployments is not None:
1004
+ pulumi.set(__self__, "ggs_deployments", ggs_deployments)
1005
+ if replicat is not None:
1006
+ pulumi.set(__self__, "replicat", replicat)
1007
+
1008
+ @property
1009
+ @pulumi.getter(name="acceptableLag")
1010
+ def acceptable_lag(self) -> Optional[int]:
1011
+ """
1012
+ (Updatable) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
1013
+ """
1014
+ return pulumi.get(self, "acceptable_lag")
1015
+
1016
+ @property
1017
+ @pulumi.getter
1018
+ def extract(self) -> Optional['outputs.MigrationGgsDetailsExtract']:
1019
+ """
1020
+ (Updatable) Parameters for GoldenGate Extract processes.
1021
+ """
1022
+ return pulumi.get(self, "extract")
1023
+
1024
+ @property
1025
+ @pulumi.getter(name="ggsDeployments")
1026
+ def ggs_deployments(self) -> Optional[Sequence['outputs.MigrationGgsDetailsGgsDeployment']]:
1027
+ """
1028
+ Details about Oracle GoldenGate GGS Deployment.
1029
+ """
1030
+ return pulumi.get(self, "ggs_deployments")
1031
+
1032
+ @property
1033
+ @pulumi.getter
1034
+ def replicat(self) -> Optional['outputs.MigrationGgsDetailsReplicat']:
1035
+ """
1036
+ (Updatable) Parameters for GoldenGate Replicat processes.
1037
+ """
1038
+ return pulumi.get(self, "replicat")
1039
+
1040
+
1041
+ @pulumi.output_type
1042
+ class MigrationGgsDetailsExtract(dict):
1043
+ @staticmethod
1044
+ def __key_warning(key: str):
1045
+ suggest = None
1046
+ if key == "longTransDuration":
1047
+ suggest = "long_trans_duration"
1048
+ elif key == "performanceProfile":
1049
+ suggest = "performance_profile"
1050
+
1051
+ if suggest:
1052
+ pulumi.log.warn(f"Key '{key}' not found in MigrationGgsDetailsExtract. Access the value via the '{suggest}' property getter instead.")
1053
+
1054
+ def __getitem__(self, key: str) -> Any:
1055
+ MigrationGgsDetailsExtract.__key_warning(key)
1056
+ return super().__getitem__(key)
1057
+
1058
+ def get(self, key: str, default = None) -> Any:
1059
+ MigrationGgsDetailsExtract.__key_warning(key)
1060
+ return super().get(key, default)
1061
+
1062
+ def __init__(__self__, *,
1063
+ long_trans_duration: Optional[int] = None,
1064
+ performance_profile: Optional[str] = None):
1065
+ """
1066
+ :param int long_trans_duration: (Updatable) Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
1067
+ :param str performance_profile: (Updatable) Extract performance.
1068
+ """
1069
+ if long_trans_duration is not None:
1070
+ pulumi.set(__self__, "long_trans_duration", long_trans_duration)
1071
+ if performance_profile is not None:
1072
+ pulumi.set(__self__, "performance_profile", performance_profile)
1073
+
1074
+ @property
1075
+ @pulumi.getter(name="longTransDuration")
1076
+ def long_trans_duration(self) -> Optional[int]:
1077
+ """
1078
+ (Updatable) Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
1079
+ """
1080
+ return pulumi.get(self, "long_trans_duration")
1081
+
1082
+ @property
1083
+ @pulumi.getter(name="performanceProfile")
1084
+ def performance_profile(self) -> Optional[str]:
1085
+ """
1086
+ (Updatable) Extract performance.
1087
+ """
1088
+ return pulumi.get(self, "performance_profile")
1089
+
1090
+
1091
+ @pulumi.output_type
1092
+ class MigrationGgsDetailsGgsDeployment(dict):
1093
+ @staticmethod
1094
+ def __key_warning(key: str):
1095
+ suggest = None
1096
+ if key == "deploymentId":
1097
+ suggest = "deployment_id"
1098
+ elif key == "ggsAdminCredentialsSecretId":
1099
+ suggest = "ggs_admin_credentials_secret_id"
1100
+
1101
+ if suggest:
1102
+ pulumi.log.warn(f"Key '{key}' not found in MigrationGgsDetailsGgsDeployment. Access the value via the '{suggest}' property getter instead.")
1103
+
1104
+ def __getitem__(self, key: str) -> Any:
1105
+ MigrationGgsDetailsGgsDeployment.__key_warning(key)
1106
+ return super().__getitem__(key)
1107
+
1108
+ def get(self, key: str, default = None) -> Any:
1109
+ MigrationGgsDetailsGgsDeployment.__key_warning(key)
1110
+ return super().get(key, default)
1111
+
1112
+ def __init__(__self__, *,
1113
+ deployment_id: Optional[str] = None,
1114
+ ggs_admin_credentials_secret_id: Optional[str] = None):
1115
+ """
1116
+ :param str deployment_id: The OCID of the resource being referenced.
1117
+ :param str ggs_admin_credentials_secret_id: The OCID of the resource being referenced.
1118
+ """
1119
+ if deployment_id is not None:
1120
+ pulumi.set(__self__, "deployment_id", deployment_id)
1121
+ if ggs_admin_credentials_secret_id is not None:
1122
+ pulumi.set(__self__, "ggs_admin_credentials_secret_id", ggs_admin_credentials_secret_id)
1123
+
1124
+ @property
1125
+ @pulumi.getter(name="deploymentId")
1126
+ def deployment_id(self) -> Optional[str]:
1127
+ """
1128
+ The OCID of the resource being referenced.
1129
+ """
1130
+ return pulumi.get(self, "deployment_id")
1131
+
1132
+ @property
1133
+ @pulumi.getter(name="ggsAdminCredentialsSecretId")
1134
+ def ggs_admin_credentials_secret_id(self) -> Optional[str]:
1135
+ """
1136
+ The OCID of the resource being referenced.
1137
+ """
1138
+ return pulumi.get(self, "ggs_admin_credentials_secret_id")
1139
+
1140
+
1141
+ @pulumi.output_type
1142
+ class MigrationGgsDetailsReplicat(dict):
1143
+ @staticmethod
1144
+ def __key_warning(key: str):
1145
+ suggest = None
1146
+ if key == "performanceProfile":
1147
+ suggest = "performance_profile"
1148
+
1149
+ if suggest:
1150
+ pulumi.log.warn(f"Key '{key}' not found in MigrationGgsDetailsReplicat. Access the value via the '{suggest}' property getter instead.")
1151
+
1152
+ def __getitem__(self, key: str) -> Any:
1153
+ MigrationGgsDetailsReplicat.__key_warning(key)
1154
+ return super().__getitem__(key)
1155
+
1156
+ def get(self, key: str, default = None) -> Any:
1157
+ MigrationGgsDetailsReplicat.__key_warning(key)
1158
+ return super().get(key, default)
1159
+
1160
+ def __init__(__self__, *,
1161
+ performance_profile: Optional[str] = None):
1162
+ """
1163
+ :param str performance_profile: (Updatable) Replicat performance.
1164
+ """
1165
+ if performance_profile is not None:
1166
+ pulumi.set(__self__, "performance_profile", performance_profile)
1167
+
1168
+ @property
1169
+ @pulumi.getter(name="performanceProfile")
1170
+ def performance_profile(self) -> Optional[str]:
1171
+ """
1172
+ (Updatable) Replicat performance.
1173
+ """
1174
+ return pulumi.get(self, "performance_profile")
1175
+
1176
+
1177
+ @pulumi.output_type
1178
+ class MigrationHubDetails(dict):
1179
+ @staticmethod
1180
+ def __key_warning(key: str):
1181
+ suggest = None
1182
+ if key == "keyId":
1183
+ suggest = "key_id"
1184
+ elif key == "restAdminCredentials":
1185
+ suggest = "rest_admin_credentials"
1186
+ elif key == "vaultId":
1187
+ suggest = "vault_id"
1188
+ elif key == "acceptableLag":
1189
+ suggest = "acceptable_lag"
1190
+ elif key == "computeId":
1191
+ suggest = "compute_id"
1192
+
1193
+ if suggest:
1194
+ pulumi.log.warn(f"Key '{key}' not found in MigrationHubDetails. Access the value via the '{suggest}' property getter instead.")
1195
+
1196
+ def __getitem__(self, key: str) -> Any:
1197
+ MigrationHubDetails.__key_warning(key)
1198
+ return super().__getitem__(key)
1199
+
1200
+ def get(self, key: str, default = None) -> Any:
1201
+ MigrationHubDetails.__key_warning(key)
1202
+ return super().get(key, default)
1203
+
1204
+ def __init__(__self__, *,
1205
+ key_id: str,
1206
+ rest_admin_credentials: 'outputs.MigrationHubDetailsRestAdminCredentials',
1207
+ url: str,
1208
+ vault_id: str,
1209
+ acceptable_lag: Optional[int] = None,
1210
+ compute_id: Optional[str] = None,
1211
+ extract: Optional['outputs.MigrationHubDetailsExtract'] = None,
1212
+ replicat: Optional['outputs.MigrationHubDetailsReplicat'] = None):
1213
+ """
1214
+ :param str key_id: (Updatable) The OCID of the resource being referenced.
1215
+ :param 'MigrationHubDetailsRestAdminCredentialsArgs' rest_admin_credentials: (Updatable) Database Administrator Credentials details.
1216
+ :param str url: (Updatable) Endpoint URL.
1217
+ :param str vault_id: (Updatable) The OCID of the resource being referenced.
1218
+ :param int acceptable_lag: (Updatable) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
1219
+ :param str compute_id: (Updatable) The OCID of the resource being referenced.
1220
+ :param 'MigrationHubDetailsExtractArgs' extract: (Updatable) Parameters for GoldenGate Extract processes.
1221
+ :param 'MigrationHubDetailsReplicatArgs' replicat: (Updatable) Parameters for GoldenGate Replicat processes.
1222
+ """
1223
+ pulumi.set(__self__, "key_id", key_id)
1224
+ pulumi.set(__self__, "rest_admin_credentials", rest_admin_credentials)
1225
+ pulumi.set(__self__, "url", url)
1226
+ pulumi.set(__self__, "vault_id", vault_id)
1227
+ if acceptable_lag is not None:
1228
+ pulumi.set(__self__, "acceptable_lag", acceptable_lag)
1229
+ if compute_id is not None:
1230
+ pulumi.set(__self__, "compute_id", compute_id)
1231
+ if extract is not None:
1232
+ pulumi.set(__self__, "extract", extract)
1233
+ if replicat is not None:
1234
+ pulumi.set(__self__, "replicat", replicat)
1235
+
1236
+ @property
1237
+ @pulumi.getter(name="keyId")
1238
+ def key_id(self) -> str:
1239
+ """
1240
+ (Updatable) The OCID of the resource being referenced.
1241
+ """
1242
+ return pulumi.get(self, "key_id")
1243
+
1244
+ @property
1245
+ @pulumi.getter(name="restAdminCredentials")
1246
+ def rest_admin_credentials(self) -> 'outputs.MigrationHubDetailsRestAdminCredentials':
1247
+ """
1248
+ (Updatable) Database Administrator Credentials details.
1249
+ """
1250
+ return pulumi.get(self, "rest_admin_credentials")
1251
+
1252
+ @property
1253
+ @pulumi.getter
1254
+ def url(self) -> str:
1255
+ """
1256
+ (Updatable) Endpoint URL.
1257
+ """
1258
+ return pulumi.get(self, "url")
1259
+
1260
+ @property
1261
+ @pulumi.getter(name="vaultId")
1262
+ def vault_id(self) -> str:
1263
+ """
1264
+ (Updatable) The OCID of the resource being referenced.
1265
+ """
1266
+ return pulumi.get(self, "vault_id")
1267
+
1268
+ @property
1269
+ @pulumi.getter(name="acceptableLag")
1270
+ def acceptable_lag(self) -> Optional[int]:
1271
+ """
1272
+ (Updatable) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
1273
+ """
1274
+ return pulumi.get(self, "acceptable_lag")
1275
+
1276
+ @property
1277
+ @pulumi.getter(name="computeId")
1278
+ def compute_id(self) -> Optional[str]:
1279
+ """
1280
+ (Updatable) The OCID of the resource being referenced.
1281
+ """
1282
+ return pulumi.get(self, "compute_id")
1283
+
1284
+ @property
1285
+ @pulumi.getter
1286
+ def extract(self) -> Optional['outputs.MigrationHubDetailsExtract']:
1287
+ """
1288
+ (Updatable) Parameters for GoldenGate Extract processes.
1289
+ """
1290
+ return pulumi.get(self, "extract")
1291
+
1292
+ @property
1293
+ @pulumi.getter
1294
+ def replicat(self) -> Optional['outputs.MigrationHubDetailsReplicat']:
1295
+ """
1296
+ (Updatable) Parameters for GoldenGate Replicat processes.
1297
+ """
1298
+ return pulumi.get(self, "replicat")
1299
+
1300
+
1301
+ @pulumi.output_type
1302
+ class MigrationHubDetailsExtract(dict):
1303
+ @staticmethod
1304
+ def __key_warning(key: str):
1305
+ suggest = None
1306
+ if key == "longTransDuration":
1307
+ suggest = "long_trans_duration"
1308
+ elif key == "performanceProfile":
1309
+ suggest = "performance_profile"
1310
+
1311
+ if suggest:
1312
+ pulumi.log.warn(f"Key '{key}' not found in MigrationHubDetailsExtract. Access the value via the '{suggest}' property getter instead.")
1313
+
1314
+ def __getitem__(self, key: str) -> Any:
1315
+ MigrationHubDetailsExtract.__key_warning(key)
1316
+ return super().__getitem__(key)
1317
+
1318
+ def get(self, key: str, default = None) -> Any:
1319
+ MigrationHubDetailsExtract.__key_warning(key)
1320
+ return super().get(key, default)
1321
+
1322
+ def __init__(__self__, *,
1323
+ long_trans_duration: Optional[int] = None,
1324
+ performance_profile: Optional[str] = None):
1325
+ """
1326
+ :param int long_trans_duration: (Updatable) Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
1327
+ :param str performance_profile: (Updatable) Extract performance.
1328
+ """
1329
+ if long_trans_duration is not None:
1330
+ pulumi.set(__self__, "long_trans_duration", long_trans_duration)
1331
+ if performance_profile is not None:
1332
+ pulumi.set(__self__, "performance_profile", performance_profile)
1333
+
1334
+ @property
1335
+ @pulumi.getter(name="longTransDuration")
1336
+ def long_trans_duration(self) -> Optional[int]:
1337
+ """
1338
+ (Updatable) Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
1339
+ """
1340
+ return pulumi.get(self, "long_trans_duration")
1341
+
1342
+ @property
1343
+ @pulumi.getter(name="performanceProfile")
1344
+ def performance_profile(self) -> Optional[str]:
1345
+ """
1346
+ (Updatable) Extract performance.
1347
+ """
1348
+ return pulumi.get(self, "performance_profile")
1349
+
1350
+
1351
+ @pulumi.output_type
1352
+ class MigrationHubDetailsReplicat(dict):
1353
+ @staticmethod
1354
+ def __key_warning(key: str):
1355
+ suggest = None
1356
+ if key == "performanceProfile":
1357
+ suggest = "performance_profile"
1358
+
1359
+ if suggest:
1360
+ pulumi.log.warn(f"Key '{key}' not found in MigrationHubDetailsReplicat. Access the value via the '{suggest}' property getter instead.")
1361
+
1362
+ def __getitem__(self, key: str) -> Any:
1363
+ MigrationHubDetailsReplicat.__key_warning(key)
1364
+ return super().__getitem__(key)
1365
+
1366
+ def get(self, key: str, default = None) -> Any:
1367
+ MigrationHubDetailsReplicat.__key_warning(key)
1368
+ return super().get(key, default)
1369
+
1370
+ def __init__(__self__, *,
1371
+ performance_profile: Optional[str] = None):
1372
+ """
1373
+ :param str performance_profile: (Updatable) Replicat performance.
1374
+ """
1375
+ if performance_profile is not None:
1376
+ pulumi.set(__self__, "performance_profile", performance_profile)
1377
+
1378
+ @property
1379
+ @pulumi.getter(name="performanceProfile")
1380
+ def performance_profile(self) -> Optional[str]:
1381
+ """
1382
+ (Updatable) Replicat performance.
1383
+ """
1384
+ return pulumi.get(self, "performance_profile")
1385
+
1386
+
1387
+ @pulumi.output_type
1388
+ class MigrationHubDetailsRestAdminCredentials(dict):
1389
+ def __init__(__self__, *,
1390
+ password: str,
1391
+ username: str):
1392
+ """
1393
+ :param str password: (Updatable) Administrator password
1394
+ :param str username: (Updatable) Administrator username
1395
+ """
1396
+ pulumi.set(__self__, "password", password)
1397
+ pulumi.set(__self__, "username", username)
1398
+
1399
+ @property
1400
+ @pulumi.getter
1401
+ def password(self) -> str:
1402
+ """
1403
+ (Updatable) Administrator password
1404
+ """
1405
+ return pulumi.get(self, "password")
1406
+
1407
+ @property
1408
+ @pulumi.getter
1409
+ def username(self) -> str:
1410
+ """
1411
+ (Updatable) Administrator username
1412
+ """
1413
+ return pulumi.get(self, "username")
1414
+
1415
+
1416
+ @pulumi.output_type
1417
+ class MigrationIncludeObject(dict):
1418
+ @staticmethod
1419
+ def __key_warning(key: str):
1420
+ suggest = None
1421
+ if key == "isOmitExcludedTableFromReplication":
1422
+ suggest = "is_omit_excluded_table_from_replication"
1423
+
1424
+ if suggest:
1425
+ pulumi.log.warn(f"Key '{key}' not found in MigrationIncludeObject. Access the value via the '{suggest}' property getter instead.")
1426
+
1427
+ def __getitem__(self, key: str) -> Any:
1428
+ MigrationIncludeObject.__key_warning(key)
1429
+ return super().__getitem__(key)
1430
+
1431
+ def get(self, key: str, default = None) -> Any:
1432
+ MigrationIncludeObject.__key_warning(key)
1433
+ return super().get(key, default)
1434
+
1435
+ def __init__(__self__, *,
1436
+ object: str,
1437
+ is_omit_excluded_table_from_replication: Optional[bool] = None,
1438
+ owner: Optional[str] = None,
1439
+ schema: Optional[str] = None,
1440
+ type: Optional[str] = None):
1441
+ """
1442
+ :param str object: Name of the object (regular expression is allowed)
1443
+ :param bool is_omit_excluded_table_from_replication: Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and object status EXCLUDE.
1444
+ :param str owner: Owner of the object (regular expression is allowed)
1445
+ :param str schema: Schema of the object (regular expression is allowed)
1446
+ :param str type: Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
1447
+ """
1448
+ pulumi.set(__self__, "object", object)
1449
+ if is_omit_excluded_table_from_replication is not None:
1450
+ pulumi.set(__self__, "is_omit_excluded_table_from_replication", is_omit_excluded_table_from_replication)
1451
+ if owner is not None:
1452
+ pulumi.set(__self__, "owner", owner)
1453
+ if schema is not None:
1454
+ pulumi.set(__self__, "schema", schema)
1455
+ if type is not None:
1456
+ pulumi.set(__self__, "type", type)
1457
+
1458
+ @property
1459
+ @pulumi.getter
1460
+ def object(self) -> str:
1461
+ """
1462
+ Name of the object (regular expression is allowed)
1463
+ """
1464
+ return pulumi.get(self, "object")
1465
+
1466
+ @property
1467
+ @pulumi.getter(name="isOmitExcludedTableFromReplication")
1468
+ def is_omit_excluded_table_from_replication(self) -> Optional[bool]:
1469
+ """
1470
+ Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and object status EXCLUDE.
1471
+ """
1472
+ return pulumi.get(self, "is_omit_excluded_table_from_replication")
1473
+
1474
+ @property
1475
+ @pulumi.getter
1476
+ def owner(self) -> Optional[str]:
1477
+ """
1478
+ Owner of the object (regular expression is allowed)
1479
+ """
1480
+ return pulumi.get(self, "owner")
1481
+
1482
+ @property
1483
+ @pulumi.getter
1484
+ def schema(self) -> Optional[str]:
1485
+ """
1486
+ Schema of the object (regular expression is allowed)
1487
+ """
1488
+ return pulumi.get(self, "schema")
1489
+
1490
+ @property
1491
+ @pulumi.getter
1492
+ def type(self) -> Optional[str]:
1493
+ """
1494
+ Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
1495
+ """
1496
+ return pulumi.get(self, "type")
1497
+
1498
+
1499
+ @pulumi.output_type
1500
+ class MigrationInitialLoadSettings(dict):
1501
+ @staticmethod
1502
+ def __key_warning(key: str):
1503
+ suggest = None
1504
+ if key == "jobMode":
1505
+ suggest = "job_mode"
1506
+ elif key == "dataPumpParameters":
1507
+ suggest = "data_pump_parameters"
1508
+ elif key == "exportDirectoryObject":
1509
+ suggest = "export_directory_object"
1510
+ elif key == "handleGrantErrors":
1511
+ suggest = "handle_grant_errors"
1512
+ elif key == "importDirectoryObject":
1513
+ suggest = "import_directory_object"
1514
+ elif key == "isConsistent":
1515
+ suggest = "is_consistent"
1516
+ elif key == "isIgnoreExistingObjects":
1517
+ suggest = "is_ignore_existing_objects"
1518
+ elif key == "isTzUtc":
1519
+ suggest = "is_tz_utc"
1520
+ elif key == "metadataRemaps":
1521
+ suggest = "metadata_remaps"
1522
+ elif key == "primaryKeyCompatibility":
1523
+ suggest = "primary_key_compatibility"
1524
+ elif key == "tablespaceDetails":
1525
+ suggest = "tablespace_details"
1526
+
1527
+ if suggest:
1528
+ pulumi.log.warn(f"Key '{key}' not found in MigrationInitialLoadSettings. Access the value via the '{suggest}' property getter instead.")
1529
+
1530
+ def __getitem__(self, key: str) -> Any:
1531
+ MigrationInitialLoadSettings.__key_warning(key)
1532
+ return super().__getitem__(key)
1533
+
1534
+ def get(self, key: str, default = None) -> Any:
1535
+ MigrationInitialLoadSettings.__key_warning(key)
1536
+ return super().get(key, default)
1537
+
1538
+ def __init__(__self__, *,
1539
+ job_mode: str,
1540
+ compatibilities: Optional[Sequence[str]] = None,
1541
+ data_pump_parameters: Optional['outputs.MigrationInitialLoadSettingsDataPumpParameters'] = None,
1542
+ export_directory_object: Optional['outputs.MigrationInitialLoadSettingsExportDirectoryObject'] = None,
1543
+ handle_grant_errors: Optional[str] = None,
1544
+ import_directory_object: Optional['outputs.MigrationInitialLoadSettingsImportDirectoryObject'] = None,
1545
+ is_consistent: Optional[bool] = None,
1546
+ is_ignore_existing_objects: Optional[bool] = None,
1547
+ is_tz_utc: Optional[bool] = None,
1548
+ metadata_remaps: Optional[Sequence['outputs.MigrationInitialLoadSettingsMetadataRemap']] = None,
1549
+ primary_key_compatibility: Optional[str] = None,
1550
+ tablespace_details: Optional['outputs.MigrationInitialLoadSettingsTablespaceDetails'] = None):
1551
+ """
1552
+ :param str job_mode: (Updatable) Oracle Job Mode
1553
+ :param Sequence[str] compatibilities: (Updatable) Apply the specified requirements for compatibility with MySQL Database Service for all tables in the dump output, altering the dump files as necessary.
1554
+ :param 'MigrationInitialLoadSettingsDataPumpParametersArgs' data_pump_parameters: (Updatable) Optional parameters for Data Pump Export and Import.
1555
+ :param 'MigrationInitialLoadSettingsExportDirectoryObjectArgs' export_directory_object: (Updatable) Directory object details, used to define either import or export directory objects in Data Pump Settings. Import directory is required for Non-Autonomous target connections. If specified for an autonomous target, it will show an error. Export directory will error if there are database link details specified.
1556
+ :param str handle_grant_errors: (Updatable) The action taken in the event of errors related to GRANT or REVOKE errors.
1557
+ :param 'MigrationInitialLoadSettingsImportDirectoryObjectArgs' import_directory_object: (Updatable) Directory object details, used to define either import or export directory objects in Data Pump Settings. Import directory is required for Non-Autonomous target connections. If specified for an autonomous target, it will show an error. Export directory will error if there are database link details specified.
1558
+ :param bool is_consistent: (Updatable) Enable (true) or disable (false) consistent data dumps by locking the instance for backup during the dump.
1559
+ :param bool is_ignore_existing_objects: (Updatable) Import the dump even if it contains objects that already exist in the target schema in the MySQL instance.
1560
+ :param bool is_tz_utc: (Updatable) Include a statement at the start of the dump to set the time zone to UTC.
1561
+ :param Sequence['MigrationInitialLoadSettingsMetadataRemapArgs'] metadata_remaps: (Updatable) Defines remapping to be applied to objects as they are processed.
1562
+ :param str primary_key_compatibility: (Updatable) Primary key compatibility option
1563
+ :param 'MigrationInitialLoadSettingsTablespaceDetailsArgs' tablespace_details: (Updatable) Migration tablespace settings.
1564
+ """
1565
+ pulumi.set(__self__, "job_mode", job_mode)
1566
+ if compatibilities is not None:
1567
+ pulumi.set(__self__, "compatibilities", compatibilities)
1568
+ if data_pump_parameters is not None:
1569
+ pulumi.set(__self__, "data_pump_parameters", data_pump_parameters)
1570
+ if export_directory_object is not None:
1571
+ pulumi.set(__self__, "export_directory_object", export_directory_object)
1572
+ if handle_grant_errors is not None:
1573
+ pulumi.set(__self__, "handle_grant_errors", handle_grant_errors)
1574
+ if import_directory_object is not None:
1575
+ pulumi.set(__self__, "import_directory_object", import_directory_object)
1576
+ if is_consistent is not None:
1577
+ pulumi.set(__self__, "is_consistent", is_consistent)
1578
+ if is_ignore_existing_objects is not None:
1579
+ pulumi.set(__self__, "is_ignore_existing_objects", is_ignore_existing_objects)
1580
+ if is_tz_utc is not None:
1581
+ pulumi.set(__self__, "is_tz_utc", is_tz_utc)
1582
+ if metadata_remaps is not None:
1583
+ pulumi.set(__self__, "metadata_remaps", metadata_remaps)
1584
+ if primary_key_compatibility is not None:
1585
+ pulumi.set(__self__, "primary_key_compatibility", primary_key_compatibility)
1586
+ if tablespace_details is not None:
1587
+ pulumi.set(__self__, "tablespace_details", tablespace_details)
1588
+
1589
+ @property
1590
+ @pulumi.getter(name="jobMode")
1591
+ def job_mode(self) -> str:
1592
+ """
1593
+ (Updatable) Oracle Job Mode
1594
+ """
1595
+ return pulumi.get(self, "job_mode")
1596
+
1597
+ @property
1598
+ @pulumi.getter
1599
+ def compatibilities(self) -> Optional[Sequence[str]]:
1600
+ """
1601
+ (Updatable) Apply the specified requirements for compatibility with MySQL Database Service for all tables in the dump output, altering the dump files as necessary.
1602
+ """
1603
+ return pulumi.get(self, "compatibilities")
1604
+
1605
+ @property
1606
+ @pulumi.getter(name="dataPumpParameters")
1607
+ def data_pump_parameters(self) -> Optional['outputs.MigrationInitialLoadSettingsDataPumpParameters']:
1608
+ """
1609
+ (Updatable) Optional parameters for Data Pump Export and Import.
1610
+ """
1611
+ return pulumi.get(self, "data_pump_parameters")
1612
+
1613
+ @property
1614
+ @pulumi.getter(name="exportDirectoryObject")
1615
+ def export_directory_object(self) -> Optional['outputs.MigrationInitialLoadSettingsExportDirectoryObject']:
1616
+ """
1617
+ (Updatable) Directory object details, used to define either import or export directory objects in Data Pump Settings. Import directory is required for Non-Autonomous target connections. If specified for an autonomous target, it will show an error. Export directory will error if there are database link details specified.
1618
+ """
1619
+ return pulumi.get(self, "export_directory_object")
1620
+
1621
+ @property
1622
+ @pulumi.getter(name="handleGrantErrors")
1623
+ def handle_grant_errors(self) -> Optional[str]:
1624
+ """
1625
+ (Updatable) The action taken in the event of errors related to GRANT or REVOKE errors.
1626
+ """
1627
+ return pulumi.get(self, "handle_grant_errors")
1628
+
1629
+ @property
1630
+ @pulumi.getter(name="importDirectoryObject")
1631
+ def import_directory_object(self) -> Optional['outputs.MigrationInitialLoadSettingsImportDirectoryObject']:
1632
+ """
1633
+ (Updatable) Directory object details, used to define either import or export directory objects in Data Pump Settings. Import directory is required for Non-Autonomous target connections. If specified for an autonomous target, it will show an error. Export directory will error if there are database link details specified.
1634
+ """
1635
+ return pulumi.get(self, "import_directory_object")
1636
+
1637
+ @property
1638
+ @pulumi.getter(name="isConsistent")
1639
+ def is_consistent(self) -> Optional[bool]:
1640
+ """
1641
+ (Updatable) Enable (true) or disable (false) consistent data dumps by locking the instance for backup during the dump.
1642
+ """
1643
+ return pulumi.get(self, "is_consistent")
1644
+
1645
+ @property
1646
+ @pulumi.getter(name="isIgnoreExistingObjects")
1647
+ def is_ignore_existing_objects(self) -> Optional[bool]:
1648
+ """
1649
+ (Updatable) Import the dump even if it contains objects that already exist in the target schema in the MySQL instance.
1650
+ """
1651
+ return pulumi.get(self, "is_ignore_existing_objects")
1652
+
1653
+ @property
1654
+ @pulumi.getter(name="isTzUtc")
1655
+ def is_tz_utc(self) -> Optional[bool]:
1656
+ """
1657
+ (Updatable) Include a statement at the start of the dump to set the time zone to UTC.
1658
+ """
1659
+ return pulumi.get(self, "is_tz_utc")
1660
+
1661
+ @property
1662
+ @pulumi.getter(name="metadataRemaps")
1663
+ def metadata_remaps(self) -> Optional[Sequence['outputs.MigrationInitialLoadSettingsMetadataRemap']]:
1664
+ """
1665
+ (Updatable) Defines remapping to be applied to objects as they are processed.
1666
+ """
1667
+ return pulumi.get(self, "metadata_remaps")
1668
+
1669
+ @property
1670
+ @pulumi.getter(name="primaryKeyCompatibility")
1671
+ def primary_key_compatibility(self) -> Optional[str]:
1672
+ """
1673
+ (Updatable) Primary key compatibility option
1674
+ """
1675
+ return pulumi.get(self, "primary_key_compatibility")
1676
+
1677
+ @property
1678
+ @pulumi.getter(name="tablespaceDetails")
1679
+ def tablespace_details(self) -> Optional['outputs.MigrationInitialLoadSettingsTablespaceDetails']:
1680
+ """
1681
+ (Updatable) Migration tablespace settings.
1682
+ """
1683
+ return pulumi.get(self, "tablespace_details")
1684
+
1685
+
1686
+ @pulumi.output_type
1687
+ class MigrationInitialLoadSettingsDataPumpParameters(dict):
1688
+ @staticmethod
1689
+ def __key_warning(key: str):
1690
+ suggest = None
1691
+ if key == "excludeParameters":
1692
+ suggest = "exclude_parameters"
1693
+ elif key == "exportParallelismDegree":
1694
+ suggest = "export_parallelism_degree"
1695
+ elif key == "importParallelismDegree":
1696
+ suggest = "import_parallelism_degree"
1697
+ elif key == "isCluster":
1698
+ suggest = "is_cluster"
1699
+ elif key == "tableExistsAction":
1700
+ suggest = "table_exists_action"
1701
+
1702
+ if suggest:
1703
+ pulumi.log.warn(f"Key '{key}' not found in MigrationInitialLoadSettingsDataPumpParameters. Access the value via the '{suggest}' property getter instead.")
1704
+
1705
+ def __getitem__(self, key: str) -> Any:
1706
+ MigrationInitialLoadSettingsDataPumpParameters.__key_warning(key)
1707
+ return super().__getitem__(key)
1708
+
1709
+ def get(self, key: str, default = None) -> Any:
1710
+ MigrationInitialLoadSettingsDataPumpParameters.__key_warning(key)
1711
+ return super().get(key, default)
1712
+
1713
+ def __init__(__self__, *,
1714
+ estimate: Optional[str] = None,
1715
+ exclude_parameters: Optional[Sequence[str]] = None,
1716
+ export_parallelism_degree: Optional[int] = None,
1717
+ import_parallelism_degree: Optional[int] = None,
1718
+ is_cluster: Optional[bool] = None,
1719
+ table_exists_action: Optional[str] = None):
1720
+ """
1721
+ :param str estimate: (Updatable) Estimate size of dumps that will be generated.
1722
+ :param Sequence[str] exclude_parameters: (Updatable) Exclude paratemers for Export and Import.
1723
+ :param int export_parallelism_degree: (Updatable) Maximum number of worker processes that can be used for a Data Pump Export job.
1724
+ :param int import_parallelism_degree: (Updatable) Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
1725
+ :param bool is_cluster: (Updatable) Set to false to force Data Pump worker process to run on one instance.
1726
+ :param str table_exists_action: (Updatable) IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
1727
+ """
1728
+ if estimate is not None:
1729
+ pulumi.set(__self__, "estimate", estimate)
1730
+ if exclude_parameters is not None:
1731
+ pulumi.set(__self__, "exclude_parameters", exclude_parameters)
1732
+ if export_parallelism_degree is not None:
1733
+ pulumi.set(__self__, "export_parallelism_degree", export_parallelism_degree)
1734
+ if import_parallelism_degree is not None:
1735
+ pulumi.set(__self__, "import_parallelism_degree", import_parallelism_degree)
1736
+ if is_cluster is not None:
1737
+ pulumi.set(__self__, "is_cluster", is_cluster)
1738
+ if table_exists_action is not None:
1739
+ pulumi.set(__self__, "table_exists_action", table_exists_action)
1740
+
1741
+ @property
1742
+ @pulumi.getter
1743
+ def estimate(self) -> Optional[str]:
1744
+ """
1745
+ (Updatable) Estimate size of dumps that will be generated.
1746
+ """
1747
+ return pulumi.get(self, "estimate")
1748
+
1749
+ @property
1750
+ @pulumi.getter(name="excludeParameters")
1751
+ def exclude_parameters(self) -> Optional[Sequence[str]]:
1752
+ """
1753
+ (Updatable) Exclude paratemers for Export and Import.
1754
+ """
1755
+ return pulumi.get(self, "exclude_parameters")
1756
+
1757
+ @property
1758
+ @pulumi.getter(name="exportParallelismDegree")
1759
+ def export_parallelism_degree(self) -> Optional[int]:
1760
+ """
1761
+ (Updatable) Maximum number of worker processes that can be used for a Data Pump Export job.
1762
+ """
1763
+ return pulumi.get(self, "export_parallelism_degree")
1764
+
1765
+ @property
1766
+ @pulumi.getter(name="importParallelismDegree")
1767
+ def import_parallelism_degree(self) -> Optional[int]:
1768
+ """
1769
+ (Updatable) Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
1770
+ """
1771
+ return pulumi.get(self, "import_parallelism_degree")
1772
+
1773
+ @property
1774
+ @pulumi.getter(name="isCluster")
1775
+ def is_cluster(self) -> Optional[bool]:
1776
+ """
1777
+ (Updatable) Set to false to force Data Pump worker process to run on one instance.
1778
+ """
1779
+ return pulumi.get(self, "is_cluster")
1780
+
1781
+ @property
1782
+ @pulumi.getter(name="tableExistsAction")
1783
+ def table_exists_action(self) -> Optional[str]:
1784
+ """
1785
+ (Updatable) IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
1786
+ """
1787
+ return pulumi.get(self, "table_exists_action")
1788
+
1789
+
1790
+ @pulumi.output_type
1791
+ class MigrationInitialLoadSettingsExportDirectoryObject(dict):
1792
+ def __init__(__self__, *,
1793
+ name: Optional[str] = None,
1794
+ path: Optional[str] = None):
1795
+ """
1796
+ :param str name: (Updatable) Name of directory object in database
1797
+ :param str path: (Updatable) Absolute path of directory on database server
1798
+ """
1799
+ if name is not None:
1800
+ pulumi.set(__self__, "name", name)
1801
+ if path is not None:
1802
+ pulumi.set(__self__, "path", path)
1803
+
1804
+ @property
1805
+ @pulumi.getter
1806
+ def name(self) -> Optional[str]:
1807
+ """
1808
+ (Updatable) Name of directory object in database
1809
+ """
1810
+ return pulumi.get(self, "name")
1811
+
1812
+ @property
1813
+ @pulumi.getter
1814
+ def path(self) -> Optional[str]:
1815
+ """
1816
+ (Updatable) Absolute path of directory on database server
1817
+ """
1818
+ return pulumi.get(self, "path")
1819
+
1820
+
1821
+ @pulumi.output_type
1822
+ class MigrationInitialLoadSettingsImportDirectoryObject(dict):
1823
+ def __init__(__self__, *,
1824
+ name: Optional[str] = None,
1825
+ path: Optional[str] = None):
1826
+ """
1827
+ :param str name: (Updatable) Name of directory object in database
1828
+ :param str path: (Updatable) Absolute path of directory on database server
1829
+ """
1830
+ if name is not None:
1831
+ pulumi.set(__self__, "name", name)
1832
+ if path is not None:
1833
+ pulumi.set(__self__, "path", path)
1834
+
1835
+ @property
1836
+ @pulumi.getter
1837
+ def name(self) -> Optional[str]:
1838
+ """
1839
+ (Updatable) Name of directory object in database
1840
+ """
1841
+ return pulumi.get(self, "name")
1842
+
1843
+ @property
1844
+ @pulumi.getter
1845
+ def path(self) -> Optional[str]:
1846
+ """
1847
+ (Updatable) Absolute path of directory on database server
1848
+ """
1849
+ return pulumi.get(self, "path")
1850
+
1851
+
1852
+ @pulumi.output_type
1853
+ class MigrationInitialLoadSettingsMetadataRemap(dict):
1854
+ @staticmethod
1855
+ def __key_warning(key: str):
1856
+ suggest = None
1857
+ if key == "newValue":
1858
+ suggest = "new_value"
1859
+ elif key == "oldValue":
1860
+ suggest = "old_value"
1861
+
1862
+ if suggest:
1863
+ pulumi.log.warn(f"Key '{key}' not found in MigrationInitialLoadSettingsMetadataRemap. Access the value via the '{suggest}' property getter instead.")
1864
+
1865
+ def __getitem__(self, key: str) -> Any:
1866
+ MigrationInitialLoadSettingsMetadataRemap.__key_warning(key)
1867
+ return super().__getitem__(key)
1868
+
1869
+ def get(self, key: str, default = None) -> Any:
1870
+ MigrationInitialLoadSettingsMetadataRemap.__key_warning(key)
1871
+ return super().get(key, default)
1872
+
1873
+ def __init__(__self__, *,
1874
+ new_value: Optional[str] = None,
1875
+ old_value: Optional[str] = None,
1876
+ type: Optional[str] = None):
1877
+ """
1878
+ :param str new_value: (Updatable) Specifies the new value that oldValue should be translated into.
1879
+ :param str old_value: (Updatable) Specifies the value which needs to be reset.
1880
+ :param str type: (Updatable) Type of remap. Refer to [METADATA_REMAP Procedure ](https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_DATAPUMP.html#GUID-0FC32790-91E6-4781-87A3-229DE024CB3D)
1881
+ """
1882
+ if new_value is not None:
1883
+ pulumi.set(__self__, "new_value", new_value)
1884
+ if old_value is not None:
1885
+ pulumi.set(__self__, "old_value", old_value)
1886
+ if type is not None:
1887
+ pulumi.set(__self__, "type", type)
1888
+
1889
+ @property
1890
+ @pulumi.getter(name="newValue")
1891
+ def new_value(self) -> Optional[str]:
1892
+ """
1893
+ (Updatable) Specifies the new value that oldValue should be translated into.
1894
+ """
1895
+ return pulumi.get(self, "new_value")
1896
+
1897
+ @property
1898
+ @pulumi.getter(name="oldValue")
1899
+ def old_value(self) -> Optional[str]:
1900
+ """
1901
+ (Updatable) Specifies the value which needs to be reset.
1902
+ """
1903
+ return pulumi.get(self, "old_value")
1904
+
1905
+ @property
1906
+ @pulumi.getter
1907
+ def type(self) -> Optional[str]:
1908
+ """
1909
+ (Updatable) Type of remap. Refer to [METADATA_REMAP Procedure ](https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_DATAPUMP.html#GUID-0FC32790-91E6-4781-87A3-229DE024CB3D)
1910
+ """
1911
+ return pulumi.get(self, "type")
1912
+
1913
+
1914
+ @pulumi.output_type
1915
+ class MigrationInitialLoadSettingsTablespaceDetails(dict):
1916
+ @staticmethod
1917
+ def __key_warning(key: str):
1918
+ suggest = None
1919
+ if key == "targetType":
1920
+ suggest = "target_type"
1921
+ elif key == "blockSizeInKbs":
1922
+ suggest = "block_size_in_kbs"
1923
+ elif key == "extendSizeInMbs":
1924
+ suggest = "extend_size_in_mbs"
1925
+ elif key == "isAutoCreate":
1926
+ suggest = "is_auto_create"
1927
+ elif key == "isBigFile":
1928
+ suggest = "is_big_file"
1929
+ elif key == "remapTarget":
1930
+ suggest = "remap_target"
1931
+
1932
+ if suggest:
1933
+ pulumi.log.warn(f"Key '{key}' not found in MigrationInitialLoadSettingsTablespaceDetails. Access the value via the '{suggest}' property getter instead.")
1934
+
1935
+ def __getitem__(self, key: str) -> Any:
1936
+ MigrationInitialLoadSettingsTablespaceDetails.__key_warning(key)
1937
+ return super().__getitem__(key)
1938
+
1939
+ def get(self, key: str, default = None) -> Any:
1940
+ MigrationInitialLoadSettingsTablespaceDetails.__key_warning(key)
1941
+ return super().get(key, default)
1942
+
1943
+ def __init__(__self__, *,
1944
+ target_type: str,
1945
+ block_size_in_kbs: Optional[str] = None,
1946
+ extend_size_in_mbs: Optional[int] = None,
1947
+ is_auto_create: Optional[bool] = None,
1948
+ is_big_file: Optional[bool] = None,
1949
+ remap_target: Optional[str] = None):
1950
+ """
1951
+ :param str target_type: (Updatable) Type of Database Base Migration Target.
1952
+ :param str block_size_in_kbs: (Updatable) Size of Oracle database blocks in KB.
1953
+ :param int extend_size_in_mbs: (Updatable) Size to extend the tablespace in MB. Note: Only applicable if 'isBigFile' property is set to true.
1954
+ :param bool is_auto_create: (Updatable) Set this property to true to auto-create tablespaces in the target Database. Note: This is not applicable for Autonomous Database Serverless databases.
1955
+ :param bool is_big_file: (Updatable) Set this property to true to enable tablespace of the type big file.
1956
+ :param str remap_target: (Updatable) Name of the tablespace on the target database to which the source database tablespace is to be remapped.
1957
+ """
1958
+ pulumi.set(__self__, "target_type", target_type)
1959
+ if block_size_in_kbs is not None:
1960
+ pulumi.set(__self__, "block_size_in_kbs", block_size_in_kbs)
1961
+ if extend_size_in_mbs is not None:
1962
+ pulumi.set(__self__, "extend_size_in_mbs", extend_size_in_mbs)
1963
+ if is_auto_create is not None:
1964
+ pulumi.set(__self__, "is_auto_create", is_auto_create)
1965
+ if is_big_file is not None:
1966
+ pulumi.set(__self__, "is_big_file", is_big_file)
1967
+ if remap_target is not None:
1968
+ pulumi.set(__self__, "remap_target", remap_target)
1969
+
1970
+ @property
1971
+ @pulumi.getter(name="targetType")
1972
+ def target_type(self) -> str:
1973
+ """
1974
+ (Updatable) Type of Database Base Migration Target.
1975
+ """
1976
+ return pulumi.get(self, "target_type")
1977
+
1978
+ @property
1979
+ @pulumi.getter(name="blockSizeInKbs")
1980
+ def block_size_in_kbs(self) -> Optional[str]:
1981
+ """
1982
+ (Updatable) Size of Oracle database blocks in KB.
1983
+ """
1984
+ return pulumi.get(self, "block_size_in_kbs")
1985
+
1986
+ @property
1987
+ @pulumi.getter(name="extendSizeInMbs")
1988
+ def extend_size_in_mbs(self) -> Optional[int]:
1989
+ """
1990
+ (Updatable) Size to extend the tablespace in MB. Note: Only applicable if 'isBigFile' property is set to true.
1991
+ """
1992
+ return pulumi.get(self, "extend_size_in_mbs")
1993
+
1994
+ @property
1995
+ @pulumi.getter(name="isAutoCreate")
1996
+ def is_auto_create(self) -> Optional[bool]:
1997
+ """
1998
+ (Updatable) Set this property to true to auto-create tablespaces in the target Database. Note: This is not applicable for Autonomous Database Serverless databases.
1999
+ """
2000
+ return pulumi.get(self, "is_auto_create")
2001
+
2002
+ @property
2003
+ @pulumi.getter(name="isBigFile")
2004
+ def is_big_file(self) -> Optional[bool]:
2005
+ """
2006
+ (Updatable) Set this property to true to enable tablespace of the type big file.
2007
+ """
2008
+ return pulumi.get(self, "is_big_file")
2009
+
2010
+ @property
2011
+ @pulumi.getter(name="remapTarget")
2012
+ def remap_target(self) -> Optional[str]:
2013
+ """
2014
+ (Updatable) Name of the tablespace on the target database to which the source database tablespace is to be remapped.
2015
+ """
2016
+ return pulumi.get(self, "remap_target")
2017
+
2018
+
2019
+ @pulumi.output_type
2020
+ class GetConnectionAdditionalAttributeResult(dict):
2021
+ def __init__(__self__, *,
2022
+ name: str,
2023
+ value: str):
2024
+ """
2025
+ :param str name: The name of the property entry.
2026
+ :param str value: The value of the property entry.
2027
+ """
2028
+ pulumi.set(__self__, "name", name)
2029
+ pulumi.set(__self__, "value", value)
2030
+
2031
+ @property
2032
+ @pulumi.getter
2033
+ def name(self) -> str:
2034
+ """
2035
+ The name of the property entry.
2036
+ """
2037
+ return pulumi.get(self, "name")
2038
+
2039
+ @property
2040
+ @pulumi.getter
2041
+ def value(self) -> str:
2042
+ """
2043
+ The value of the property entry.
2044
+ """
2045
+ return pulumi.get(self, "value")
2046
+
2047
+
2048
+ @pulumi.output_type
2049
+ class GetConnectionIngressIpResult(dict):
2050
+ def __init__(__self__, *,
2051
+ ingress_ip: str):
2052
+ """
2053
+ :param str ingress_ip: A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
2054
+ """
2055
+ pulumi.set(__self__, "ingress_ip", ingress_ip)
2056
+
2057
+ @property
2058
+ @pulumi.getter(name="ingressIp")
2059
+ def ingress_ip(self) -> str:
2060
+ """
2061
+ A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
2062
+ """
2063
+ return pulumi.get(self, "ingress_ip")
2064
+
2065
+
2066
+ @pulumi.output_type
2067
+ class GetConnectionsConnectionCollectionResult(dict):
2068
+ def __init__(__self__, *,
2069
+ items: Sequence['outputs.GetConnectionsConnectionCollectionItemResult']):
2070
+ pulumi.set(__self__, "items", items)
2071
+
2072
+ @property
2073
+ @pulumi.getter
2074
+ def items(self) -> Sequence['outputs.GetConnectionsConnectionCollectionItemResult']:
2075
+ return pulumi.get(self, "items")
2076
+
2077
+
2078
+ @pulumi.output_type
2079
+ class GetConnectionsConnectionCollectionItemResult(dict):
2080
+ def __init__(__self__, *,
2081
+ additional_attributes: Sequence['outputs.GetConnectionsConnectionCollectionItemAdditionalAttributeResult'],
2082
+ compartment_id: str,
2083
+ connection_string: str,
2084
+ connection_type: str,
2085
+ database_id: str,
2086
+ database_name: str,
2087
+ db_system_id: str,
2088
+ defined_tags: Mapping[str, Any],
2089
+ description: str,
2090
+ display_name: str,
2091
+ freeform_tags: Mapping[str, Any],
2092
+ host: str,
2093
+ id: str,
2094
+ ingress_ips: Sequence['outputs.GetConnectionsConnectionCollectionItemIngressIpResult'],
2095
+ key_id: str,
2096
+ lifecycle_details: str,
2097
+ nsg_ids: Sequence[str],
2098
+ password: str,
2099
+ port: int,
2100
+ private_endpoint_id: str,
2101
+ replication_password: str,
2102
+ replication_username: str,
2103
+ secret_id: str,
2104
+ security_protocol: str,
2105
+ ssh_host: str,
2106
+ ssh_key: str,
2107
+ ssh_sudo_location: str,
2108
+ ssh_user: str,
2109
+ ssl_ca: str,
2110
+ ssl_cert: str,
2111
+ ssl_crl: str,
2112
+ ssl_key: str,
2113
+ ssl_mode: str,
2114
+ state: str,
2115
+ subnet_id: str,
2116
+ system_tags: Mapping[str, Any],
2117
+ technology_type: str,
2118
+ time_created: str,
2119
+ time_updated: str,
2120
+ username: str,
2121
+ vault_id: str,
2122
+ wallet: str):
2123
+ """
2124
+ :param Sequence['GetConnectionsConnectionCollectionItemAdditionalAttributeArgs'] additional_attributes: An array of name-value pair attribute entries.
2125
+ :param str compartment_id: The ID of the compartment in which to list resources.
2126
+ :param str connection_string: Connect descriptor or Easy Connect Naming method used to connect to a database.
2127
+ :param str connection_type: The array of connection types.
2128
+ :param str database_id: The OCID of the database being referenced.
2129
+ :param str database_name: The name of the database being referenced.
2130
+ :param str db_system_id: The OCID of the database system being referenced.
2131
+ :param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
2132
+ :param str description: A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
2133
+ :param str display_name: A filter to return only resources that match the entire display name given.
2134
+ :param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
2135
+ :param str host: The IP Address of the host.
2136
+ :param str id: The OCID of the connection being referenced.
2137
+ :param Sequence['GetConnectionsConnectionCollectionItemIngressIpArgs'] ingress_ips: List of ingress IP addresses from where to connect to this connection's privateIp.
2138
+ :param str key_id: The OCID of the key used in cryptographic operations.
2139
+ :param str lifecycle_details: The message describing the current state of the connection's lifecycle in detail. For example, can be used to provide actionable information for a connection in a Failed state.
2140
+ :param Sequence[str] nsg_ids: An array of Network Security Group OCIDs used to define network access for Connections.
2141
+ :param str password: The password (credential) used when creating or updating this resource.
2142
+ :param int port: The port to be used for the connection.
2143
+ :param str private_endpoint_id: The OCID of the resource being referenced.
2144
+ :param str replication_password: The password (credential) used when creating or updating this resource.
2145
+ :param str replication_username: The username (credential) used when creating or updating this resource.
2146
+ :param str secret_id: The OCID of the resource being referenced.
2147
+ :param str security_protocol: Security Protocol to be used for the connection.
2148
+ :param str ssh_host: Name of the host the SSH key is valid for.
2149
+ :param str ssh_key: Private SSH key string.
2150
+ :param str ssh_sudo_location: Sudo location
2151
+ :param str ssh_user: The username (credential) used when creating or updating this resource.
2152
+ :param str ssl_mode: SSL mode to be used for the connection.
2153
+ :param str state: The current state of the Database Migration Deployment.
2154
+ :param str subnet_id: Oracle Cloud Infrastructure resource ID.
2155
+ :param Mapping[str, Any] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
2156
+ :param str technology_type: The array of technology types.
2157
+ :param str time_created: The time when this resource was created. An RFC3339 formatted datetime string such as `2016-08-25T21:10:29.600Z`.
2158
+ :param str time_updated: The time when this resource was updated. An RFC3339 formatted datetime string such as `2016-08-25T21:10:29.600Z`.
2159
+ :param str username: The username (credential) used when creating or updating this resource.
2160
+ :param str vault_id: Oracle Cloud Infrastructure resource ID.
2161
+ """
2162
+ pulumi.set(__self__, "additional_attributes", additional_attributes)
2163
+ pulumi.set(__self__, "compartment_id", compartment_id)
2164
+ pulumi.set(__self__, "connection_string", connection_string)
2165
+ pulumi.set(__self__, "connection_type", connection_type)
2166
+ pulumi.set(__self__, "database_id", database_id)
2167
+ pulumi.set(__self__, "database_name", database_name)
2168
+ pulumi.set(__self__, "db_system_id", db_system_id)
2169
+ pulumi.set(__self__, "defined_tags", defined_tags)
2170
+ pulumi.set(__self__, "description", description)
2171
+ pulumi.set(__self__, "display_name", display_name)
2172
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
2173
+ pulumi.set(__self__, "host", host)
2174
+ pulumi.set(__self__, "id", id)
2175
+ pulumi.set(__self__, "ingress_ips", ingress_ips)
2176
+ pulumi.set(__self__, "key_id", key_id)
2177
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
2178
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
2179
+ pulumi.set(__self__, "password", password)
2180
+ pulumi.set(__self__, "port", port)
2181
+ pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
2182
+ pulumi.set(__self__, "replication_password", replication_password)
2183
+ pulumi.set(__self__, "replication_username", replication_username)
2184
+ pulumi.set(__self__, "secret_id", secret_id)
2185
+ pulumi.set(__self__, "security_protocol", security_protocol)
2186
+ pulumi.set(__self__, "ssh_host", ssh_host)
2187
+ pulumi.set(__self__, "ssh_key", ssh_key)
2188
+ pulumi.set(__self__, "ssh_sudo_location", ssh_sudo_location)
2189
+ pulumi.set(__self__, "ssh_user", ssh_user)
2190
+ pulumi.set(__self__, "ssl_ca", ssl_ca)
2191
+ pulumi.set(__self__, "ssl_cert", ssl_cert)
2192
+ pulumi.set(__self__, "ssl_crl", ssl_crl)
2193
+ pulumi.set(__self__, "ssl_key", ssl_key)
2194
+ pulumi.set(__self__, "ssl_mode", ssl_mode)
2195
+ pulumi.set(__self__, "state", state)
2196
+ pulumi.set(__self__, "subnet_id", subnet_id)
2197
+ pulumi.set(__self__, "system_tags", system_tags)
2198
+ pulumi.set(__self__, "technology_type", technology_type)
2199
+ pulumi.set(__self__, "time_created", time_created)
2200
+ pulumi.set(__self__, "time_updated", time_updated)
2201
+ pulumi.set(__self__, "username", username)
2202
+ pulumi.set(__self__, "vault_id", vault_id)
2203
+ pulumi.set(__self__, "wallet", wallet)
2204
+
2205
+ @property
2206
+ @pulumi.getter(name="additionalAttributes")
2207
+ def additional_attributes(self) -> Sequence['outputs.GetConnectionsConnectionCollectionItemAdditionalAttributeResult']:
2208
+ """
2209
+ An array of name-value pair attribute entries.
2210
+ """
2211
+ return pulumi.get(self, "additional_attributes")
2212
+
2213
+ @property
2214
+ @pulumi.getter(name="compartmentId")
2215
+ def compartment_id(self) -> str:
2216
+ """
2217
+ The ID of the compartment in which to list resources.
2218
+ """
2219
+ return pulumi.get(self, "compartment_id")
2220
+
2221
+ @property
2222
+ @pulumi.getter(name="connectionString")
2223
+ def connection_string(self) -> str:
2224
+ """
2225
+ Connect descriptor or Easy Connect Naming method used to connect to a database.
2226
+ """
2227
+ return pulumi.get(self, "connection_string")
2228
+
2229
+ @property
2230
+ @pulumi.getter(name="connectionType")
2231
+ def connection_type(self) -> str:
2232
+ """
2233
+ The array of connection types.
2234
+ """
2235
+ return pulumi.get(self, "connection_type")
2236
+
2237
+ @property
2238
+ @pulumi.getter(name="databaseId")
2239
+ def database_id(self) -> str:
2240
+ """
2241
+ The OCID of the database being referenced.
2242
+ """
2243
+ return pulumi.get(self, "database_id")
2244
+
2245
+ @property
2246
+ @pulumi.getter(name="databaseName")
2247
+ def database_name(self) -> str:
2248
+ """
2249
+ The name of the database being referenced.
2250
+ """
2251
+ return pulumi.get(self, "database_name")
2252
+
2253
+ @property
2254
+ @pulumi.getter(name="dbSystemId")
2255
+ def db_system_id(self) -> str:
2256
+ """
2257
+ The OCID of the database system being referenced.
2258
+ """
2259
+ return pulumi.get(self, "db_system_id")
2260
+
2261
+ @property
2262
+ @pulumi.getter(name="definedTags")
2263
+ def defined_tags(self) -> Mapping[str, Any]:
2264
+ """
2265
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
2266
+ """
2267
+ return pulumi.get(self, "defined_tags")
2268
+
2269
+ @property
2270
+ @pulumi.getter
2271
+ def description(self) -> str:
2272
+ """
2273
+ A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
2274
+ """
2275
+ return pulumi.get(self, "description")
2276
+
2277
+ @property
2278
+ @pulumi.getter(name="displayName")
2279
+ def display_name(self) -> str:
2280
+ """
2281
+ A filter to return only resources that match the entire display name given.
2282
+ """
2283
+ return pulumi.get(self, "display_name")
2284
+
2285
+ @property
2286
+ @pulumi.getter(name="freeformTags")
2287
+ def freeform_tags(self) -> Mapping[str, Any]:
2288
+ """
2289
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
2290
+ """
2291
+ return pulumi.get(self, "freeform_tags")
2292
+
2293
+ @property
2294
+ @pulumi.getter
2295
+ def host(self) -> str:
2296
+ """
2297
+ The IP Address of the host.
2298
+ """
2299
+ return pulumi.get(self, "host")
2300
+
2301
+ @property
2302
+ @pulumi.getter
2303
+ def id(self) -> str:
2304
+ """
2305
+ The OCID of the connection being referenced.
2306
+ """
2307
+ return pulumi.get(self, "id")
2308
+
2309
+ @property
2310
+ @pulumi.getter(name="ingressIps")
2311
+ def ingress_ips(self) -> Sequence['outputs.GetConnectionsConnectionCollectionItemIngressIpResult']:
2312
+ """
2313
+ List of ingress IP addresses from where to connect to this connection's privateIp.
2314
+ """
2315
+ return pulumi.get(self, "ingress_ips")
2316
+
2317
+ @property
2318
+ @pulumi.getter(name="keyId")
2319
+ def key_id(self) -> str:
2320
+ """
2321
+ The OCID of the key used in cryptographic operations.
2322
+ """
2323
+ return pulumi.get(self, "key_id")
2324
+
2325
+ @property
2326
+ @pulumi.getter(name="lifecycleDetails")
2327
+ def lifecycle_details(self) -> str:
2328
+ """
2329
+ The message describing the current state of the connection's lifecycle in detail. For example, can be used to provide actionable information for a connection in a Failed state.
2330
+ """
2331
+ return pulumi.get(self, "lifecycle_details")
2332
+
2333
+ @property
2334
+ @pulumi.getter(name="nsgIds")
2335
+ def nsg_ids(self) -> Sequence[str]:
2336
+ """
2337
+ An array of Network Security Group OCIDs used to define network access for Connections.
2338
+ """
2339
+ return pulumi.get(self, "nsg_ids")
2340
+
2341
+ @property
2342
+ @pulumi.getter
2343
+ def password(self) -> str:
2344
+ """
2345
+ The password (credential) used when creating or updating this resource.
2346
+ """
2347
+ return pulumi.get(self, "password")
2348
+
2349
+ @property
2350
+ @pulumi.getter
2351
+ def port(self) -> int:
2352
+ """
2353
+ The port to be used for the connection.
2354
+ """
2355
+ return pulumi.get(self, "port")
2356
+
2357
+ @property
2358
+ @pulumi.getter(name="privateEndpointId")
2359
+ def private_endpoint_id(self) -> str:
2360
+ """
2361
+ The OCID of the resource being referenced.
2362
+ """
2363
+ return pulumi.get(self, "private_endpoint_id")
2364
+
2365
+ @property
2366
+ @pulumi.getter(name="replicationPassword")
2367
+ def replication_password(self) -> str:
2368
+ """
2369
+ The password (credential) used when creating or updating this resource.
2370
+ """
2371
+ return pulumi.get(self, "replication_password")
2372
+
2373
+ @property
2374
+ @pulumi.getter(name="replicationUsername")
2375
+ def replication_username(self) -> str:
2376
+ """
2377
+ The username (credential) used when creating or updating this resource.
2378
+ """
2379
+ return pulumi.get(self, "replication_username")
2380
+
2381
+ @property
2382
+ @pulumi.getter(name="secretId")
2383
+ def secret_id(self) -> str:
2384
+ """
2385
+ The OCID of the resource being referenced.
2386
+ """
2387
+ return pulumi.get(self, "secret_id")
2388
+
2389
+ @property
2390
+ @pulumi.getter(name="securityProtocol")
2391
+ def security_protocol(self) -> str:
2392
+ """
2393
+ Security Protocol to be used for the connection.
2394
+ """
2395
+ return pulumi.get(self, "security_protocol")
2396
+
2397
+ @property
2398
+ @pulumi.getter(name="sshHost")
2399
+ def ssh_host(self) -> str:
2400
+ """
2401
+ Name of the host the SSH key is valid for.
2402
+ """
2403
+ return pulumi.get(self, "ssh_host")
2404
+
2405
+ @property
2406
+ @pulumi.getter(name="sshKey")
2407
+ def ssh_key(self) -> str:
2408
+ """
2409
+ Private SSH key string.
2410
+ """
2411
+ return pulumi.get(self, "ssh_key")
2412
+
2413
+ @property
2414
+ @pulumi.getter(name="sshSudoLocation")
2415
+ def ssh_sudo_location(self) -> str:
2416
+ """
2417
+ Sudo location
2418
+ """
2419
+ return pulumi.get(self, "ssh_sudo_location")
2420
+
2421
+ @property
2422
+ @pulumi.getter(name="sshUser")
2423
+ def ssh_user(self) -> str:
2424
+ """
2425
+ The username (credential) used when creating or updating this resource.
2426
+ """
2427
+ return pulumi.get(self, "ssh_user")
2428
+
2429
+ @property
2430
+ @pulumi.getter(name="sslCa")
2431
+ def ssl_ca(self) -> str:
2432
+ return pulumi.get(self, "ssl_ca")
2433
+
2434
+ @property
2435
+ @pulumi.getter(name="sslCert")
2436
+ def ssl_cert(self) -> str:
2437
+ return pulumi.get(self, "ssl_cert")
2438
+
2439
+ @property
2440
+ @pulumi.getter(name="sslCrl")
2441
+ def ssl_crl(self) -> str:
2442
+ return pulumi.get(self, "ssl_crl")
2443
+
2444
+ @property
2445
+ @pulumi.getter(name="sslKey")
2446
+ def ssl_key(self) -> str:
2447
+ return pulumi.get(self, "ssl_key")
2448
+
2449
+ @property
2450
+ @pulumi.getter(name="sslMode")
2451
+ def ssl_mode(self) -> str:
2452
+ """
2453
+ SSL mode to be used for the connection.
2454
+ """
2455
+ return pulumi.get(self, "ssl_mode")
2456
+
2457
+ @property
2458
+ @pulumi.getter
2459
+ def state(self) -> str:
2460
+ """
2461
+ The current state of the Database Migration Deployment.
2462
+ """
2463
+ return pulumi.get(self, "state")
2464
+
2465
+ @property
2466
+ @pulumi.getter(name="subnetId")
2467
+ def subnet_id(self) -> str:
2468
+ """
2469
+ Oracle Cloud Infrastructure resource ID.
2470
+ """
2471
+ return pulumi.get(self, "subnet_id")
2472
+
2473
+ @property
2474
+ @pulumi.getter(name="systemTags")
2475
+ def system_tags(self) -> Mapping[str, Any]:
2476
+ """
2477
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
2478
+ """
2479
+ return pulumi.get(self, "system_tags")
2480
+
2481
+ @property
2482
+ @pulumi.getter(name="technologyType")
2483
+ def technology_type(self) -> str:
2484
+ """
2485
+ The array of technology types.
2486
+ """
2487
+ return pulumi.get(self, "technology_type")
2488
+
2489
+ @property
2490
+ @pulumi.getter(name="timeCreated")
2491
+ def time_created(self) -> str:
2492
+ """
2493
+ The time when this resource was created. An RFC3339 formatted datetime string such as `2016-08-25T21:10:29.600Z`.
2494
+ """
2495
+ return pulumi.get(self, "time_created")
2496
+
2497
+ @property
2498
+ @pulumi.getter(name="timeUpdated")
2499
+ def time_updated(self) -> str:
2500
+ """
2501
+ The time when this resource was updated. An RFC3339 formatted datetime string such as `2016-08-25T21:10:29.600Z`.
2502
+ """
2503
+ return pulumi.get(self, "time_updated")
2504
+
2505
+ @property
2506
+ @pulumi.getter
2507
+ def username(self) -> str:
2508
+ """
2509
+ The username (credential) used when creating or updating this resource.
2510
+ """
2511
+ return pulumi.get(self, "username")
2512
+
2513
+ @property
2514
+ @pulumi.getter(name="vaultId")
2515
+ def vault_id(self) -> str:
2516
+ """
2517
+ Oracle Cloud Infrastructure resource ID.
2518
+ """
2519
+ return pulumi.get(self, "vault_id")
2520
+
2521
+ @property
2522
+ @pulumi.getter
2523
+ def wallet(self) -> str:
2524
+ return pulumi.get(self, "wallet")
2525
+
2526
+
2527
+ @pulumi.output_type
2528
+ class GetConnectionsConnectionCollectionItemAdditionalAttributeResult(dict):
2529
+ def __init__(__self__, *,
2530
+ name: str,
2531
+ value: str):
2532
+ """
2533
+ :param str name: The name of the property entry.
2534
+ :param str value: The value of the property entry.
2535
+ """
2536
+ pulumi.set(__self__, "name", name)
2537
+ pulumi.set(__self__, "value", value)
2538
+
2539
+ @property
2540
+ @pulumi.getter
2541
+ def name(self) -> str:
2542
+ """
2543
+ The name of the property entry.
2544
+ """
2545
+ return pulumi.get(self, "name")
2546
+
2547
+ @property
2548
+ @pulumi.getter
2549
+ def value(self) -> str:
2550
+ """
2551
+ The value of the property entry.
2552
+ """
2553
+ return pulumi.get(self, "value")
2554
+
2555
+
2556
+ @pulumi.output_type
2557
+ class GetConnectionsConnectionCollectionItemIngressIpResult(dict):
2558
+ def __init__(__self__, *,
2559
+ ingress_ip: str):
2560
+ """
2561
+ :param str ingress_ip: A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
2562
+ """
2563
+ pulumi.set(__self__, "ingress_ip", ingress_ip)
2564
+
2565
+ @property
2566
+ @pulumi.getter(name="ingressIp")
2567
+ def ingress_ip(self) -> str:
2568
+ """
2569
+ A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
2570
+ """
2571
+ return pulumi.get(self, "ingress_ip")
2572
+
2573
+
2574
+ @pulumi.output_type
2575
+ class GetConnectionsFilterResult(dict):
2576
+ def __init__(__self__, *,
2577
+ name: str,
2578
+ values: Sequence[str],
2579
+ regex: Optional[bool] = None):
2580
+ """
2581
+ :param str name: The name of the property entry.
2582
+ """
2583
+ pulumi.set(__self__, "name", name)
2584
+ pulumi.set(__self__, "values", values)
2585
+ if regex is not None:
2586
+ pulumi.set(__self__, "regex", regex)
2587
+
2588
+ @property
2589
+ @pulumi.getter
2590
+ def name(self) -> str:
2591
+ """
2592
+ The name of the property entry.
2593
+ """
2594
+ return pulumi.get(self, "name")
2595
+
2596
+ @property
2597
+ @pulumi.getter
2598
+ def values(self) -> Sequence[str]:
2599
+ return pulumi.get(self, "values")
2600
+
2601
+ @property
2602
+ @pulumi.getter
2603
+ def regex(self) -> Optional[bool]:
2604
+ return pulumi.get(self, "regex")
2605
+
2606
+
2607
+ @pulumi.output_type
2608
+ class GetJobAdvisorReportReportLocationDetailResult(dict):
2609
+ def __init__(__self__, *,
2610
+ location_in_source: str,
2611
+ object_storage_details: Sequence['outputs.GetJobAdvisorReportReportLocationDetailObjectStorageDetailResult']):
2612
+ """
2613
+ :param str location_in_source: File system path on the Source Database host where the Premigration Advisor report can be accessed.
2614
+ :param Sequence['GetJobAdvisorReportReportLocationDetailObjectStorageDetailArgs'] object_storage_details: Details to access Premigration Advisor report in the specified Object Storage bucket.
2615
+ """
2616
+ pulumi.set(__self__, "location_in_source", location_in_source)
2617
+ pulumi.set(__self__, "object_storage_details", object_storage_details)
2618
+
2619
+ @property
2620
+ @pulumi.getter(name="locationInSource")
2621
+ def location_in_source(self) -> str:
2622
+ """
2623
+ File system path on the Source Database host where the Premigration Advisor report can be accessed.
2624
+ """
2625
+ return pulumi.get(self, "location_in_source")
2626
+
2627
+ @property
2628
+ @pulumi.getter(name="objectStorageDetails")
2629
+ def object_storage_details(self) -> Sequence['outputs.GetJobAdvisorReportReportLocationDetailObjectStorageDetailResult']:
2630
+ """
2631
+ Details to access Premigration Advisor report in the specified Object Storage bucket.
2632
+ """
2633
+ return pulumi.get(self, "object_storage_details")
2634
+
2635
+
2636
+ @pulumi.output_type
2637
+ class GetJobAdvisorReportReportLocationDetailObjectStorageDetailResult(dict):
2638
+ def __init__(__self__, *,
2639
+ bucket: str,
2640
+ namespace: str,
2641
+ object: str):
2642
+ """
2643
+ :param str bucket: Name of the bucket containing the Premigration Advisor report.
2644
+ :param str namespace: Object Storage namespace.
2645
+ :param str object: Premigration Advisor report object name.
2646
+ """
2647
+ pulumi.set(__self__, "bucket", bucket)
2648
+ pulumi.set(__self__, "namespace", namespace)
2649
+ pulumi.set(__self__, "object", object)
2650
+
2651
+ @property
2652
+ @pulumi.getter
2653
+ def bucket(self) -> str:
2654
+ """
2655
+ Name of the bucket containing the Premigration Advisor report.
2656
+ """
2657
+ return pulumi.get(self, "bucket")
2658
+
2659
+ @property
2660
+ @pulumi.getter
2661
+ def namespace(self) -> str:
2662
+ """
2663
+ Object Storage namespace.
2664
+ """
2665
+ return pulumi.get(self, "namespace")
2666
+
2667
+ @property
2668
+ @pulumi.getter
2669
+ def object(self) -> str:
2670
+ """
2671
+ Premigration Advisor report object name.
2672
+ """
2673
+ return pulumi.get(self, "object")
2674
+
2675
+
2676
+ @pulumi.output_type
2677
+ class GetJobOutputItemResult(dict):
2678
+ def __init__(__self__, *,
2679
+ message: str):
2680
+ """
2681
+ :param str message: Job output line.
2682
+ """
2683
+ pulumi.set(__self__, "message", message)
2684
+
2685
+ @property
2686
+ @pulumi.getter
2687
+ def message(self) -> str:
2688
+ """
2689
+ Job output line.
2690
+ """
2691
+ return pulumi.get(self, "message")
2692
+
2693
+
2694
+ @pulumi.output_type
2695
+ class GetMigrationAdvancedParameterResult(dict):
2696
+ def __init__(__self__, *,
2697
+ data_type: str,
2698
+ name: str,
2699
+ value: str):
2700
+ """
2701
+ :param str data_type: Parameter data type.
2702
+ :param str name: Name of directory object in database
2703
+ :param str value: If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
2704
+ """
2705
+ pulumi.set(__self__, "data_type", data_type)
2706
+ pulumi.set(__self__, "name", name)
2707
+ pulumi.set(__self__, "value", value)
2708
+
2709
+ @property
2710
+ @pulumi.getter(name="dataType")
2711
+ def data_type(self) -> str:
2712
+ """
2713
+ Parameter data type.
2714
+ """
2715
+ return pulumi.get(self, "data_type")
2716
+
2717
+ @property
2718
+ @pulumi.getter
2719
+ def name(self) -> str:
2720
+ """
2721
+ Name of directory object in database
2722
+ """
2723
+ return pulumi.get(self, "name")
2724
+
2725
+ @property
2726
+ @pulumi.getter
2727
+ def value(self) -> str:
2728
+ """
2729
+ If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
2730
+ """
2731
+ return pulumi.get(self, "value")
2732
+
2733
+
2734
+ @pulumi.output_type
2735
+ class GetMigrationAdvisorSettingResult(dict):
2736
+ def __init__(__self__, *,
2737
+ is_ignore_errors: bool,
2738
+ is_skip_advisor: bool):
2739
+ """
2740
+ :param bool is_ignore_errors: True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
2741
+ :param bool is_skip_advisor: True to skip the Pre-Migration Advisor execution. Default is false.
2742
+ """
2743
+ pulumi.set(__self__, "is_ignore_errors", is_ignore_errors)
2744
+ pulumi.set(__self__, "is_skip_advisor", is_skip_advisor)
2745
+
2746
+ @property
2747
+ @pulumi.getter(name="isIgnoreErrors")
2748
+ def is_ignore_errors(self) -> bool:
2749
+ """
2750
+ True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
2751
+ """
2752
+ return pulumi.get(self, "is_ignore_errors")
2753
+
2754
+ @property
2755
+ @pulumi.getter(name="isSkipAdvisor")
2756
+ def is_skip_advisor(self) -> bool:
2757
+ """
2758
+ True to skip the Pre-Migration Advisor execution. Default is false.
2759
+ """
2760
+ return pulumi.get(self, "is_skip_advisor")
2761
+
2762
+
2763
+ @pulumi.output_type
2764
+ class GetMigrationDataTransferMediumDetailResult(dict):
2765
+ def __init__(__self__, *,
2766
+ access_key_id: str,
2767
+ name: str,
2768
+ object_storage_buckets: Sequence['outputs.GetMigrationDataTransferMediumDetailObjectStorageBucketResult'],
2769
+ region: str,
2770
+ secret_access_key: str,
2771
+ shared_storage_mount_target_id: str,
2772
+ sources: Sequence['outputs.GetMigrationDataTransferMediumDetailSourceResult'],
2773
+ targets: Sequence['outputs.GetMigrationDataTransferMediumDetailTargetResult'],
2774
+ type: str):
2775
+ """
2776
+ :param str access_key_id: AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
2777
+ :param str name: Name of directory object in database
2778
+ :param Sequence['GetMigrationDataTransferMediumDetailObjectStorageBucketArgs'] object_storage_buckets: In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
2779
+ :param str region: AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
2780
+ :param str secret_access_key: AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
2781
+ :param str shared_storage_mount_target_id: OCID of the shared storage mount target
2782
+ :param Sequence['GetMigrationDataTransferMediumDetailSourceArgs'] sources: Optional additional properties for dump transfer in source or target host. Default kind is CURL.
2783
+ :param Sequence['GetMigrationDataTransferMediumDetailTargetArgs'] targets: Optional additional properties for dump transfer in source or target host. Default kind is CURL.
2784
+ :param str type: The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
2785
+ """
2786
+ pulumi.set(__self__, "access_key_id", access_key_id)
2787
+ pulumi.set(__self__, "name", name)
2788
+ pulumi.set(__self__, "object_storage_buckets", object_storage_buckets)
2789
+ pulumi.set(__self__, "region", region)
2790
+ pulumi.set(__self__, "secret_access_key", secret_access_key)
2791
+ pulumi.set(__self__, "shared_storage_mount_target_id", shared_storage_mount_target_id)
2792
+ pulumi.set(__self__, "sources", sources)
2793
+ pulumi.set(__self__, "targets", targets)
2794
+ pulumi.set(__self__, "type", type)
2795
+
2796
+ @property
2797
+ @pulumi.getter(name="accessKeyId")
2798
+ def access_key_id(self) -> str:
2799
+ """
2800
+ AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
2801
+ """
2802
+ return pulumi.get(self, "access_key_id")
2803
+
2804
+ @property
2805
+ @pulumi.getter
2806
+ def name(self) -> str:
2807
+ """
2808
+ Name of directory object in database
2809
+ """
2810
+ return pulumi.get(self, "name")
2811
+
2812
+ @property
2813
+ @pulumi.getter(name="objectStorageBuckets")
2814
+ def object_storage_buckets(self) -> Sequence['outputs.GetMigrationDataTransferMediumDetailObjectStorageBucketResult']:
2815
+ """
2816
+ In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
2817
+ """
2818
+ return pulumi.get(self, "object_storage_buckets")
2819
+
2820
+ @property
2821
+ @pulumi.getter
2822
+ def region(self) -> str:
2823
+ """
2824
+ AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
2825
+ """
2826
+ return pulumi.get(self, "region")
2827
+
2828
+ @property
2829
+ @pulumi.getter(name="secretAccessKey")
2830
+ def secret_access_key(self) -> str:
2831
+ """
2832
+ AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
2833
+ """
2834
+ return pulumi.get(self, "secret_access_key")
2835
+
2836
+ @property
2837
+ @pulumi.getter(name="sharedStorageMountTargetId")
2838
+ def shared_storage_mount_target_id(self) -> str:
2839
+ """
2840
+ OCID of the shared storage mount target
2841
+ """
2842
+ return pulumi.get(self, "shared_storage_mount_target_id")
2843
+
2844
+ @property
2845
+ @pulumi.getter
2846
+ def sources(self) -> Sequence['outputs.GetMigrationDataTransferMediumDetailSourceResult']:
2847
+ """
2848
+ Optional additional properties for dump transfer in source or target host. Default kind is CURL.
2849
+ """
2850
+ return pulumi.get(self, "sources")
2851
+
2852
+ @property
2853
+ @pulumi.getter
2854
+ def targets(self) -> Sequence['outputs.GetMigrationDataTransferMediumDetailTargetResult']:
2855
+ """
2856
+ Optional additional properties for dump transfer in source or target host. Default kind is CURL.
2857
+ """
2858
+ return pulumi.get(self, "targets")
2859
+
2860
+ @property
2861
+ @pulumi.getter
2862
+ def type(self) -> str:
2863
+ """
2864
+ The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
2865
+ """
2866
+ return pulumi.get(self, "type")
2867
+
2868
+
2869
+ @pulumi.output_type
2870
+ class GetMigrationDataTransferMediumDetailObjectStorageBucketResult(dict):
2871
+ def __init__(__self__, *,
2872
+ bucket: str,
2873
+ namespace: str):
2874
+ """
2875
+ :param str bucket: Bucket name.
2876
+ :param str namespace: Namespace name of the object store bucket.
2877
+ """
2878
+ pulumi.set(__self__, "bucket", bucket)
2879
+ pulumi.set(__self__, "namespace", namespace)
2880
+
2881
+ @property
2882
+ @pulumi.getter
2883
+ def bucket(self) -> str:
2884
+ """
2885
+ Bucket name.
2886
+ """
2887
+ return pulumi.get(self, "bucket")
2888
+
2889
+ @property
2890
+ @pulumi.getter
2891
+ def namespace(self) -> str:
2892
+ """
2893
+ Namespace name of the object store bucket.
2894
+ """
2895
+ return pulumi.get(self, "namespace")
2896
+
2897
+
2898
+ @pulumi.output_type
2899
+ class GetMigrationDataTransferMediumDetailSourceResult(dict):
2900
+ def __init__(__self__, *,
2901
+ kind: str,
2902
+ oci_home: str,
2903
+ wallet_location: str):
2904
+ """
2905
+ :param str kind: Type of dump transfer to use during migration in source or target host. Default kind is CURL
2906
+ :param str oci_home: Path to the Oracle Cloud Infrastructure CLI installation in the node.
2907
+ :param str wallet_location: Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
2908
+ """
2909
+ pulumi.set(__self__, "kind", kind)
2910
+ pulumi.set(__self__, "oci_home", oci_home)
2911
+ pulumi.set(__self__, "wallet_location", wallet_location)
2912
+
2913
+ @property
2914
+ @pulumi.getter
2915
+ def kind(self) -> str:
2916
+ """
2917
+ Type of dump transfer to use during migration in source or target host. Default kind is CURL
2918
+ """
2919
+ return pulumi.get(self, "kind")
2920
+
2921
+ @property
2922
+ @pulumi.getter(name="ociHome")
2923
+ def oci_home(self) -> str:
2924
+ """
2925
+ Path to the Oracle Cloud Infrastructure CLI installation in the node.
2926
+ """
2927
+ return pulumi.get(self, "oci_home")
2928
+
2929
+ @property
2930
+ @pulumi.getter(name="walletLocation")
2931
+ def wallet_location(self) -> str:
2932
+ """
2933
+ Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
2934
+ """
2935
+ return pulumi.get(self, "wallet_location")
2936
+
2937
+
2938
+ @pulumi.output_type
2939
+ class GetMigrationDataTransferMediumDetailTargetResult(dict):
2940
+ def __init__(__self__, *,
2941
+ kind: str,
2942
+ oci_home: str,
2943
+ wallet_location: str):
2944
+ """
2945
+ :param str kind: Type of dump transfer to use during migration in source or target host. Default kind is CURL
2946
+ :param str oci_home: Path to the Oracle Cloud Infrastructure CLI installation in the node.
2947
+ :param str wallet_location: Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
2948
+ """
2949
+ pulumi.set(__self__, "kind", kind)
2950
+ pulumi.set(__self__, "oci_home", oci_home)
2951
+ pulumi.set(__self__, "wallet_location", wallet_location)
2952
+
2953
+ @property
2954
+ @pulumi.getter
2955
+ def kind(self) -> str:
2956
+ """
2957
+ Type of dump transfer to use during migration in source or target host. Default kind is CURL
2958
+ """
2959
+ return pulumi.get(self, "kind")
2960
+
2961
+ @property
2962
+ @pulumi.getter(name="ociHome")
2963
+ def oci_home(self) -> str:
2964
+ """
2965
+ Path to the Oracle Cloud Infrastructure CLI installation in the node.
2966
+ """
2967
+ return pulumi.get(self, "oci_home")
2968
+
2969
+ @property
2970
+ @pulumi.getter(name="walletLocation")
2971
+ def wallet_location(self) -> str:
2972
+ """
2973
+ Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
2974
+ """
2975
+ return pulumi.get(self, "wallet_location")
2976
+
2977
+
2978
+ @pulumi.output_type
2979
+ class GetMigrationExcludeObjectResult(dict):
2980
+ def __init__(__self__, *,
2981
+ is_omit_excluded_table_from_replication: bool,
2982
+ object: str,
2983
+ owner: str,
2984
+ schema: str,
2985
+ type: str):
2986
+ """
2987
+ :param str type: The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
2988
+ """
2989
+ pulumi.set(__self__, "is_omit_excluded_table_from_replication", is_omit_excluded_table_from_replication)
2990
+ pulumi.set(__self__, "object", object)
2991
+ pulumi.set(__self__, "owner", owner)
2992
+ pulumi.set(__self__, "schema", schema)
2993
+ pulumi.set(__self__, "type", type)
2994
+
2995
+ @property
2996
+ @pulumi.getter(name="isOmitExcludedTableFromReplication")
2997
+ def is_omit_excluded_table_from_replication(self) -> bool:
2998
+ return pulumi.get(self, "is_omit_excluded_table_from_replication")
2999
+
3000
+ @property
3001
+ @pulumi.getter
3002
+ def object(self) -> str:
3003
+ return pulumi.get(self, "object")
3004
+
3005
+ @property
3006
+ @pulumi.getter
3007
+ def owner(self) -> str:
3008
+ return pulumi.get(self, "owner")
3009
+
3010
+ @property
3011
+ @pulumi.getter
3012
+ def schema(self) -> str:
3013
+ return pulumi.get(self, "schema")
3014
+
3015
+ @property
3016
+ @pulumi.getter
3017
+ def type(self) -> str:
3018
+ """
3019
+ The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
3020
+ """
3021
+ return pulumi.get(self, "type")
3022
+
3023
+
3024
+ @pulumi.output_type
3025
+ class GetMigrationGgsDetailResult(dict):
3026
+ def __init__(__self__, *,
3027
+ acceptable_lag: int,
3028
+ extracts: Sequence['outputs.GetMigrationGgsDetailExtractResult'],
3029
+ ggs_deployments: Sequence['outputs.GetMigrationGgsDetailGgsDeploymentResult'],
3030
+ replicats: Sequence['outputs.GetMigrationGgsDetailReplicatResult']):
3031
+ """
3032
+ :param int acceptable_lag: ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
3033
+ :param Sequence['GetMigrationGgsDetailExtractArgs'] extracts: Parameters for Extract processes.
3034
+ :param Sequence['GetMigrationGgsDetailGgsDeploymentArgs'] ggs_deployments: Details about Oracle GoldenGate GGS Deployment.
3035
+ :param Sequence['GetMigrationGgsDetailReplicatArgs'] replicats: Parameters for Replicat processes.
3036
+ """
3037
+ pulumi.set(__self__, "acceptable_lag", acceptable_lag)
3038
+ pulumi.set(__self__, "extracts", extracts)
3039
+ pulumi.set(__self__, "ggs_deployments", ggs_deployments)
3040
+ pulumi.set(__self__, "replicats", replicats)
3041
+
3042
+ @property
3043
+ @pulumi.getter(name="acceptableLag")
3044
+ def acceptable_lag(self) -> int:
3045
+ """
3046
+ ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
3047
+ """
3048
+ return pulumi.get(self, "acceptable_lag")
3049
+
3050
+ @property
3051
+ @pulumi.getter
3052
+ def extracts(self) -> Sequence['outputs.GetMigrationGgsDetailExtractResult']:
3053
+ """
3054
+ Parameters for Extract processes.
3055
+ """
3056
+ return pulumi.get(self, "extracts")
3057
+
3058
+ @property
3059
+ @pulumi.getter(name="ggsDeployments")
3060
+ def ggs_deployments(self) -> Sequence['outputs.GetMigrationGgsDetailGgsDeploymentResult']:
3061
+ """
3062
+ Details about Oracle GoldenGate GGS Deployment.
3063
+ """
3064
+ return pulumi.get(self, "ggs_deployments")
3065
+
3066
+ @property
3067
+ @pulumi.getter
3068
+ def replicats(self) -> Sequence['outputs.GetMigrationGgsDetailReplicatResult']:
3069
+ """
3070
+ Parameters for Replicat processes.
3071
+ """
3072
+ return pulumi.get(self, "replicats")
3073
+
3074
+
3075
+ @pulumi.output_type
3076
+ class GetMigrationGgsDetailExtractResult(dict):
3077
+ def __init__(__self__, *,
3078
+ long_trans_duration: int,
3079
+ performance_profile: str):
3080
+ """
3081
+ :param int long_trans_duration: Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
3082
+ :param str performance_profile: Replicat performance.
3083
+ """
3084
+ pulumi.set(__self__, "long_trans_duration", long_trans_duration)
3085
+ pulumi.set(__self__, "performance_profile", performance_profile)
3086
+
3087
+ @property
3088
+ @pulumi.getter(name="longTransDuration")
3089
+ def long_trans_duration(self) -> int:
3090
+ """
3091
+ Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
3092
+ """
3093
+ return pulumi.get(self, "long_trans_duration")
3094
+
3095
+ @property
3096
+ @pulumi.getter(name="performanceProfile")
3097
+ def performance_profile(self) -> str:
3098
+ """
3099
+ Replicat performance.
3100
+ """
3101
+ return pulumi.get(self, "performance_profile")
3102
+
3103
+
3104
+ @pulumi.output_type
3105
+ class GetMigrationGgsDetailGgsDeploymentResult(dict):
3106
+ def __init__(__self__, *,
3107
+ deployment_id: str,
3108
+ ggs_admin_credentials_secret_id: str):
3109
+ """
3110
+ :param str deployment_id: The OCID of the resource being referenced.
3111
+ :param str ggs_admin_credentials_secret_id: The OCID of the resource being referenced.
3112
+ """
3113
+ pulumi.set(__self__, "deployment_id", deployment_id)
3114
+ pulumi.set(__self__, "ggs_admin_credentials_secret_id", ggs_admin_credentials_secret_id)
3115
+
3116
+ @property
3117
+ @pulumi.getter(name="deploymentId")
3118
+ def deployment_id(self) -> str:
3119
+ """
3120
+ The OCID of the resource being referenced.
3121
+ """
3122
+ return pulumi.get(self, "deployment_id")
3123
+
3124
+ @property
3125
+ @pulumi.getter(name="ggsAdminCredentialsSecretId")
3126
+ def ggs_admin_credentials_secret_id(self) -> str:
3127
+ """
3128
+ The OCID of the resource being referenced.
3129
+ """
3130
+ return pulumi.get(self, "ggs_admin_credentials_secret_id")
3131
+
3132
+
3133
+ @pulumi.output_type
3134
+ class GetMigrationGgsDetailReplicatResult(dict):
3135
+ def __init__(__self__, *,
3136
+ performance_profile: str):
3137
+ """
3138
+ :param str performance_profile: Replicat performance.
3139
+ """
3140
+ pulumi.set(__self__, "performance_profile", performance_profile)
3141
+
3142
+ @property
3143
+ @pulumi.getter(name="performanceProfile")
3144
+ def performance_profile(self) -> str:
3145
+ """
3146
+ Replicat performance.
3147
+ """
3148
+ return pulumi.get(self, "performance_profile")
3149
+
3150
+
3151
+ @pulumi.output_type
3152
+ class GetMigrationHubDetailResult(dict):
3153
+ def __init__(__self__, *,
3154
+ acceptable_lag: int,
3155
+ compute_id: str,
3156
+ extracts: Sequence['outputs.GetMigrationHubDetailExtractResult'],
3157
+ key_id: str,
3158
+ replicats: Sequence['outputs.GetMigrationHubDetailReplicatResult'],
3159
+ rest_admin_credentials: Sequence['outputs.GetMigrationHubDetailRestAdminCredentialResult'],
3160
+ url: str,
3161
+ vault_id: str):
3162
+ """
3163
+ :param int acceptable_lag: ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
3164
+ :param str compute_id: The OCID of the resource being referenced.
3165
+ :param Sequence['GetMigrationHubDetailExtractArgs'] extracts: Parameters for Extract processes.
3166
+ :param str key_id: The OCID of the resource being referenced.
3167
+ :param Sequence['GetMigrationHubDetailReplicatArgs'] replicats: Parameters for Replicat processes.
3168
+ :param Sequence['GetMigrationHubDetailRestAdminCredentialArgs'] rest_admin_credentials: Database Administrator Credentials details.
3169
+ :param str url: Endpoint URL.
3170
+ :param str vault_id: The OCID of the resource being referenced.
3171
+ """
3172
+ pulumi.set(__self__, "acceptable_lag", acceptable_lag)
3173
+ pulumi.set(__self__, "compute_id", compute_id)
3174
+ pulumi.set(__self__, "extracts", extracts)
3175
+ pulumi.set(__self__, "key_id", key_id)
3176
+ pulumi.set(__self__, "replicats", replicats)
3177
+ pulumi.set(__self__, "rest_admin_credentials", rest_admin_credentials)
3178
+ pulumi.set(__self__, "url", url)
3179
+ pulumi.set(__self__, "vault_id", vault_id)
3180
+
3181
+ @property
3182
+ @pulumi.getter(name="acceptableLag")
3183
+ def acceptable_lag(self) -> int:
3184
+ """
3185
+ ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
3186
+ """
3187
+ return pulumi.get(self, "acceptable_lag")
3188
+
3189
+ @property
3190
+ @pulumi.getter(name="computeId")
3191
+ def compute_id(self) -> str:
3192
+ """
3193
+ The OCID of the resource being referenced.
3194
+ """
3195
+ return pulumi.get(self, "compute_id")
3196
+
3197
+ @property
3198
+ @pulumi.getter
3199
+ def extracts(self) -> Sequence['outputs.GetMigrationHubDetailExtractResult']:
3200
+ """
3201
+ Parameters for Extract processes.
3202
+ """
3203
+ return pulumi.get(self, "extracts")
3204
+
3205
+ @property
3206
+ @pulumi.getter(name="keyId")
3207
+ def key_id(self) -> str:
3208
+ """
3209
+ The OCID of the resource being referenced.
3210
+ """
3211
+ return pulumi.get(self, "key_id")
3212
+
3213
+ @property
3214
+ @pulumi.getter
3215
+ def replicats(self) -> Sequence['outputs.GetMigrationHubDetailReplicatResult']:
3216
+ """
3217
+ Parameters for Replicat processes.
3218
+ """
3219
+ return pulumi.get(self, "replicats")
3220
+
3221
+ @property
3222
+ @pulumi.getter(name="restAdminCredentials")
3223
+ def rest_admin_credentials(self) -> Sequence['outputs.GetMigrationHubDetailRestAdminCredentialResult']:
3224
+ """
3225
+ Database Administrator Credentials details.
3226
+ """
3227
+ return pulumi.get(self, "rest_admin_credentials")
3228
+
3229
+ @property
3230
+ @pulumi.getter
3231
+ def url(self) -> str:
3232
+ """
3233
+ Endpoint URL.
3234
+ """
3235
+ return pulumi.get(self, "url")
3236
+
3237
+ @property
3238
+ @pulumi.getter(name="vaultId")
3239
+ def vault_id(self) -> str:
3240
+ """
3241
+ The OCID of the resource being referenced.
3242
+ """
3243
+ return pulumi.get(self, "vault_id")
3244
+
3245
+
3246
+ @pulumi.output_type
3247
+ class GetMigrationHubDetailExtractResult(dict):
3248
+ def __init__(__self__, *,
3249
+ long_trans_duration: int,
3250
+ performance_profile: str):
3251
+ """
3252
+ :param int long_trans_duration: Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
3253
+ :param str performance_profile: Replicat performance.
3254
+ """
3255
+ pulumi.set(__self__, "long_trans_duration", long_trans_duration)
3256
+ pulumi.set(__self__, "performance_profile", performance_profile)
3257
+
3258
+ @property
3259
+ @pulumi.getter(name="longTransDuration")
3260
+ def long_trans_duration(self) -> int:
3261
+ """
3262
+ Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
3263
+ """
3264
+ return pulumi.get(self, "long_trans_duration")
3265
+
3266
+ @property
3267
+ @pulumi.getter(name="performanceProfile")
3268
+ def performance_profile(self) -> str:
3269
+ """
3270
+ Replicat performance.
3271
+ """
3272
+ return pulumi.get(self, "performance_profile")
3273
+
3274
+
3275
+ @pulumi.output_type
3276
+ class GetMigrationHubDetailReplicatResult(dict):
3277
+ def __init__(__self__, *,
3278
+ performance_profile: str):
3279
+ """
3280
+ :param str performance_profile: Replicat performance.
3281
+ """
3282
+ pulumi.set(__self__, "performance_profile", performance_profile)
3283
+
3284
+ @property
3285
+ @pulumi.getter(name="performanceProfile")
3286
+ def performance_profile(self) -> str:
3287
+ """
3288
+ Replicat performance.
3289
+ """
3290
+ return pulumi.get(self, "performance_profile")
3291
+
3292
+
3293
+ @pulumi.output_type
3294
+ class GetMigrationHubDetailRestAdminCredentialResult(dict):
3295
+ def __init__(__self__, *,
3296
+ password: str,
3297
+ username: str):
3298
+ """
3299
+ :param str username: Administrator username
3300
+ """
3301
+ pulumi.set(__self__, "password", password)
3302
+ pulumi.set(__self__, "username", username)
3303
+
3304
+ @property
3305
+ @pulumi.getter
3306
+ def password(self) -> str:
3307
+ return pulumi.get(self, "password")
3308
+
3309
+ @property
3310
+ @pulumi.getter
3311
+ def username(self) -> str:
3312
+ """
3313
+ Administrator username
3314
+ """
3315
+ return pulumi.get(self, "username")
3316
+
3317
+
3318
+ @pulumi.output_type
3319
+ class GetMigrationIncludeObjectResult(dict):
3320
+ def __init__(__self__, *,
3321
+ is_omit_excluded_table_from_replication: bool,
3322
+ object: str,
3323
+ owner: str,
3324
+ schema: str,
3325
+ type: str):
3326
+ """
3327
+ :param str type: The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
3328
+ """
3329
+ pulumi.set(__self__, "is_omit_excluded_table_from_replication", is_omit_excluded_table_from_replication)
3330
+ pulumi.set(__self__, "object", object)
3331
+ pulumi.set(__self__, "owner", owner)
3332
+ pulumi.set(__self__, "schema", schema)
3333
+ pulumi.set(__self__, "type", type)
3334
+
3335
+ @property
3336
+ @pulumi.getter(name="isOmitExcludedTableFromReplication")
3337
+ def is_omit_excluded_table_from_replication(self) -> bool:
3338
+ return pulumi.get(self, "is_omit_excluded_table_from_replication")
3339
+
3340
+ @property
3341
+ @pulumi.getter
3342
+ def object(self) -> str:
3343
+ return pulumi.get(self, "object")
3344
+
3345
+ @property
3346
+ @pulumi.getter
3347
+ def owner(self) -> str:
3348
+ return pulumi.get(self, "owner")
3349
+
3350
+ @property
3351
+ @pulumi.getter
3352
+ def schema(self) -> str:
3353
+ return pulumi.get(self, "schema")
3354
+
3355
+ @property
3356
+ @pulumi.getter
3357
+ def type(self) -> str:
3358
+ """
3359
+ The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
3360
+ """
3361
+ return pulumi.get(self, "type")
3362
+
3363
+
3364
+ @pulumi.output_type
3365
+ class GetMigrationInitialLoadSettingResult(dict):
3366
+ def __init__(__self__, *,
3367
+ compatibilities: Sequence[str],
3368
+ data_pump_parameters: Sequence['outputs.GetMigrationInitialLoadSettingDataPumpParameterResult'],
3369
+ export_directory_objects: Sequence['outputs.GetMigrationInitialLoadSettingExportDirectoryObjectResult'],
3370
+ handle_grant_errors: str,
3371
+ import_directory_objects: Sequence['outputs.GetMigrationInitialLoadSettingImportDirectoryObjectResult'],
3372
+ is_consistent: bool,
3373
+ is_ignore_existing_objects: bool,
3374
+ is_tz_utc: bool,
3375
+ job_mode: str,
3376
+ metadata_remaps: Sequence['outputs.GetMigrationInitialLoadSettingMetadataRemapResult'],
3377
+ primary_key_compatibility: str,
3378
+ tablespace_details: Sequence['outputs.GetMigrationInitialLoadSettingTablespaceDetailResult']):
3379
+ """
3380
+ :param Sequence[str] compatibilities: Apply the specified requirements for compatibility with MySQL Database Service for all tables in the dump output, altering the dump files as necessary.
3381
+ :param Sequence['GetMigrationInitialLoadSettingDataPumpParameterArgs'] data_pump_parameters: Optional parameters for Data Pump Export and Import.
3382
+ :param Sequence['GetMigrationInitialLoadSettingExportDirectoryObjectArgs'] export_directory_objects: Directory object details, used to define either import or export directory objects in Data Pump Settings.
3383
+ :param str handle_grant_errors: The action taken in the event of errors related to GRANT or REVOKE errors.
3384
+ :param Sequence['GetMigrationInitialLoadSettingImportDirectoryObjectArgs'] import_directory_objects: Directory object details, used to define either import or export directory objects in Data Pump Settings.
3385
+ :param bool is_consistent: Enable (true) or disable (false) consistent data dumps by locking the instance for backup during the dump.
3386
+ :param bool is_ignore_existing_objects: Import the dump even if it contains objects that already exist in the target schema in the MySQL instance.
3387
+ :param bool is_tz_utc: Include a statement at the start of the dump to set the time zone to UTC.
3388
+ :param str job_mode: Oracle Job Mode
3389
+ :param Sequence['GetMigrationInitialLoadSettingMetadataRemapArgs'] metadata_remaps: Defines remapping to be applied to objects as they are processed.
3390
+ :param str primary_key_compatibility: Primary key compatibility option
3391
+ :param Sequence['GetMigrationInitialLoadSettingTablespaceDetailArgs'] tablespace_details: Migration tablespace settings.
3392
+ """
3393
+ pulumi.set(__self__, "compatibilities", compatibilities)
3394
+ pulumi.set(__self__, "data_pump_parameters", data_pump_parameters)
3395
+ pulumi.set(__self__, "export_directory_objects", export_directory_objects)
3396
+ pulumi.set(__self__, "handle_grant_errors", handle_grant_errors)
3397
+ pulumi.set(__self__, "import_directory_objects", import_directory_objects)
3398
+ pulumi.set(__self__, "is_consistent", is_consistent)
3399
+ pulumi.set(__self__, "is_ignore_existing_objects", is_ignore_existing_objects)
3400
+ pulumi.set(__self__, "is_tz_utc", is_tz_utc)
3401
+ pulumi.set(__self__, "job_mode", job_mode)
3402
+ pulumi.set(__self__, "metadata_remaps", metadata_remaps)
3403
+ pulumi.set(__self__, "primary_key_compatibility", primary_key_compatibility)
3404
+ pulumi.set(__self__, "tablespace_details", tablespace_details)
3405
+
3406
+ @property
3407
+ @pulumi.getter
3408
+ def compatibilities(self) -> Sequence[str]:
3409
+ """
3410
+ Apply the specified requirements for compatibility with MySQL Database Service for all tables in the dump output, altering the dump files as necessary.
3411
+ """
3412
+ return pulumi.get(self, "compatibilities")
3413
+
3414
+ @property
3415
+ @pulumi.getter(name="dataPumpParameters")
3416
+ def data_pump_parameters(self) -> Sequence['outputs.GetMigrationInitialLoadSettingDataPumpParameterResult']:
3417
+ """
3418
+ Optional parameters for Data Pump Export and Import.
3419
+ """
3420
+ return pulumi.get(self, "data_pump_parameters")
3421
+
3422
+ @property
3423
+ @pulumi.getter(name="exportDirectoryObjects")
3424
+ def export_directory_objects(self) -> Sequence['outputs.GetMigrationInitialLoadSettingExportDirectoryObjectResult']:
3425
+ """
3426
+ Directory object details, used to define either import or export directory objects in Data Pump Settings.
3427
+ """
3428
+ return pulumi.get(self, "export_directory_objects")
3429
+
3430
+ @property
3431
+ @pulumi.getter(name="handleGrantErrors")
3432
+ def handle_grant_errors(self) -> str:
3433
+ """
3434
+ The action taken in the event of errors related to GRANT or REVOKE errors.
3435
+ """
3436
+ return pulumi.get(self, "handle_grant_errors")
3437
+
3438
+ @property
3439
+ @pulumi.getter(name="importDirectoryObjects")
3440
+ def import_directory_objects(self) -> Sequence['outputs.GetMigrationInitialLoadSettingImportDirectoryObjectResult']:
3441
+ """
3442
+ Directory object details, used to define either import or export directory objects in Data Pump Settings.
3443
+ """
3444
+ return pulumi.get(self, "import_directory_objects")
3445
+
3446
+ @property
3447
+ @pulumi.getter(name="isConsistent")
3448
+ def is_consistent(self) -> bool:
3449
+ """
3450
+ Enable (true) or disable (false) consistent data dumps by locking the instance for backup during the dump.
3451
+ """
3452
+ return pulumi.get(self, "is_consistent")
3453
+
3454
+ @property
3455
+ @pulumi.getter(name="isIgnoreExistingObjects")
3456
+ def is_ignore_existing_objects(self) -> bool:
3457
+ """
3458
+ Import the dump even if it contains objects that already exist in the target schema in the MySQL instance.
3459
+ """
3460
+ return pulumi.get(self, "is_ignore_existing_objects")
3461
+
3462
+ @property
3463
+ @pulumi.getter(name="isTzUtc")
3464
+ def is_tz_utc(self) -> bool:
3465
+ """
3466
+ Include a statement at the start of the dump to set the time zone to UTC.
3467
+ """
3468
+ return pulumi.get(self, "is_tz_utc")
3469
+
3470
+ @property
3471
+ @pulumi.getter(name="jobMode")
3472
+ def job_mode(self) -> str:
3473
+ """
3474
+ Oracle Job Mode
3475
+ """
3476
+ return pulumi.get(self, "job_mode")
3477
+
3478
+ @property
3479
+ @pulumi.getter(name="metadataRemaps")
3480
+ def metadata_remaps(self) -> Sequence['outputs.GetMigrationInitialLoadSettingMetadataRemapResult']:
3481
+ """
3482
+ Defines remapping to be applied to objects as they are processed.
3483
+ """
3484
+ return pulumi.get(self, "metadata_remaps")
3485
+
3486
+ @property
3487
+ @pulumi.getter(name="primaryKeyCompatibility")
3488
+ def primary_key_compatibility(self) -> str:
3489
+ """
3490
+ Primary key compatibility option
3491
+ """
3492
+ return pulumi.get(self, "primary_key_compatibility")
3493
+
3494
+ @property
3495
+ @pulumi.getter(name="tablespaceDetails")
3496
+ def tablespace_details(self) -> Sequence['outputs.GetMigrationInitialLoadSettingTablespaceDetailResult']:
3497
+ """
3498
+ Migration tablespace settings.
3499
+ """
3500
+ return pulumi.get(self, "tablespace_details")
3501
+
3502
+
3503
+ @pulumi.output_type
3504
+ class GetMigrationInitialLoadSettingDataPumpParameterResult(dict):
3505
+ def __init__(__self__, *,
3506
+ estimate: str,
3507
+ exclude_parameters: Sequence[str],
3508
+ export_parallelism_degree: int,
3509
+ import_parallelism_degree: int,
3510
+ is_cluster: bool,
3511
+ table_exists_action: str):
3512
+ """
3513
+ :param str estimate: Estimate size of dumps that will be generated.
3514
+ :param Sequence[str] exclude_parameters: Exclude paratemers for Export and Import.
3515
+ :param int export_parallelism_degree: Maximum number of worker processes that can be used for a Data Pump Export job.
3516
+ :param int import_parallelism_degree: Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
3517
+ :param bool is_cluster: Set to false to force Data Pump worker process to run on one instance.
3518
+ :param str table_exists_action: IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
3519
+ """
3520
+ pulumi.set(__self__, "estimate", estimate)
3521
+ pulumi.set(__self__, "exclude_parameters", exclude_parameters)
3522
+ pulumi.set(__self__, "export_parallelism_degree", export_parallelism_degree)
3523
+ pulumi.set(__self__, "import_parallelism_degree", import_parallelism_degree)
3524
+ pulumi.set(__self__, "is_cluster", is_cluster)
3525
+ pulumi.set(__self__, "table_exists_action", table_exists_action)
3526
+
3527
+ @property
3528
+ @pulumi.getter
3529
+ def estimate(self) -> str:
3530
+ """
3531
+ Estimate size of dumps that will be generated.
3532
+ """
3533
+ return pulumi.get(self, "estimate")
3534
+
3535
+ @property
3536
+ @pulumi.getter(name="excludeParameters")
3537
+ def exclude_parameters(self) -> Sequence[str]:
3538
+ """
3539
+ Exclude paratemers for Export and Import.
3540
+ """
3541
+ return pulumi.get(self, "exclude_parameters")
3542
+
3543
+ @property
3544
+ @pulumi.getter(name="exportParallelismDegree")
3545
+ def export_parallelism_degree(self) -> int:
3546
+ """
3547
+ Maximum number of worker processes that can be used for a Data Pump Export job.
3548
+ """
3549
+ return pulumi.get(self, "export_parallelism_degree")
3550
+
3551
+ @property
3552
+ @pulumi.getter(name="importParallelismDegree")
3553
+ def import_parallelism_degree(self) -> int:
3554
+ """
3555
+ Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
3556
+ """
3557
+ return pulumi.get(self, "import_parallelism_degree")
3558
+
3559
+ @property
3560
+ @pulumi.getter(name="isCluster")
3561
+ def is_cluster(self) -> bool:
3562
+ """
3563
+ Set to false to force Data Pump worker process to run on one instance.
3564
+ """
3565
+ return pulumi.get(self, "is_cluster")
3566
+
3567
+ @property
3568
+ @pulumi.getter(name="tableExistsAction")
3569
+ def table_exists_action(self) -> str:
3570
+ """
3571
+ IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
3572
+ """
3573
+ return pulumi.get(self, "table_exists_action")
3574
+
3575
+
3576
+ @pulumi.output_type
3577
+ class GetMigrationInitialLoadSettingExportDirectoryObjectResult(dict):
3578
+ def __init__(__self__, *,
3579
+ name: str,
3580
+ path: str):
3581
+ """
3582
+ :param str name: Name of directory object in database
3583
+ :param str path: Absolute path of directory on database server
3584
+ """
3585
+ pulumi.set(__self__, "name", name)
3586
+ pulumi.set(__self__, "path", path)
3587
+
3588
+ @property
3589
+ @pulumi.getter
3590
+ def name(self) -> str:
3591
+ """
3592
+ Name of directory object in database
3593
+ """
3594
+ return pulumi.get(self, "name")
3595
+
3596
+ @property
3597
+ @pulumi.getter
3598
+ def path(self) -> str:
3599
+ """
3600
+ Absolute path of directory on database server
3601
+ """
3602
+ return pulumi.get(self, "path")
3603
+
3604
+
3605
+ @pulumi.output_type
3606
+ class GetMigrationInitialLoadSettingImportDirectoryObjectResult(dict):
3607
+ def __init__(__self__, *,
3608
+ name: str,
3609
+ path: str):
3610
+ """
3611
+ :param str name: Name of directory object in database
3612
+ :param str path: Absolute path of directory on database server
3613
+ """
3614
+ pulumi.set(__self__, "name", name)
3615
+ pulumi.set(__self__, "path", path)
3616
+
3617
+ @property
3618
+ @pulumi.getter
3619
+ def name(self) -> str:
3620
+ """
3621
+ Name of directory object in database
3622
+ """
3623
+ return pulumi.get(self, "name")
3624
+
3625
+ @property
3626
+ @pulumi.getter
3627
+ def path(self) -> str:
3628
+ """
3629
+ Absolute path of directory on database server
3630
+ """
3631
+ return pulumi.get(self, "path")
3632
+
3633
+
3634
+ @pulumi.output_type
3635
+ class GetMigrationInitialLoadSettingMetadataRemapResult(dict):
3636
+ def __init__(__self__, *,
3637
+ new_value: str,
3638
+ old_value: str,
3639
+ type: str):
3640
+ """
3641
+ :param str new_value: Specifies the new value that oldValue should be translated into.
3642
+ :param str old_value: Specifies the value which needs to be reset.
3643
+ :param str type: The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
3644
+ """
3645
+ pulumi.set(__self__, "new_value", new_value)
3646
+ pulumi.set(__self__, "old_value", old_value)
3647
+ pulumi.set(__self__, "type", type)
3648
+
3649
+ @property
3650
+ @pulumi.getter(name="newValue")
3651
+ def new_value(self) -> str:
3652
+ """
3653
+ Specifies the new value that oldValue should be translated into.
3654
+ """
3655
+ return pulumi.get(self, "new_value")
3656
+
3657
+ @property
3658
+ @pulumi.getter(name="oldValue")
3659
+ def old_value(self) -> str:
3660
+ """
3661
+ Specifies the value which needs to be reset.
3662
+ """
3663
+ return pulumi.get(self, "old_value")
3664
+
3665
+ @property
3666
+ @pulumi.getter
3667
+ def type(self) -> str:
3668
+ """
3669
+ The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
3670
+ """
3671
+ return pulumi.get(self, "type")
3672
+
3673
+
3674
+ @pulumi.output_type
3675
+ class GetMigrationInitialLoadSettingTablespaceDetailResult(dict):
3676
+ def __init__(__self__, *,
3677
+ block_size_in_kbs: str,
3678
+ extend_size_in_mbs: int,
3679
+ is_auto_create: bool,
3680
+ is_big_file: bool,
3681
+ remap_target: str,
3682
+ target_type: str):
3683
+ """
3684
+ :param str block_size_in_kbs: Size of Oracle database blocks in KB.
3685
+ :param int extend_size_in_mbs: Size to extend the tablespace in MB. Note: Only applicable if 'isBigFile' property is set to true.
3686
+ :param bool is_auto_create: Set this property to true to auto-create tablespaces in the target Database. Note: This is not applicable for Autonomous Database Serverless databases.
3687
+ :param bool is_big_file: Set this property to true to enable tablespace of the type big file.
3688
+ :param str remap_target: Name of the tablespace on the target database to which the source database tablespace is to be remapped.
3689
+ :param str target_type: Type of Database Base Migration Target.
3690
+ """
3691
+ pulumi.set(__self__, "block_size_in_kbs", block_size_in_kbs)
3692
+ pulumi.set(__self__, "extend_size_in_mbs", extend_size_in_mbs)
3693
+ pulumi.set(__self__, "is_auto_create", is_auto_create)
3694
+ pulumi.set(__self__, "is_big_file", is_big_file)
3695
+ pulumi.set(__self__, "remap_target", remap_target)
3696
+ pulumi.set(__self__, "target_type", target_type)
3697
+
3698
+ @property
3699
+ @pulumi.getter(name="blockSizeInKbs")
3700
+ def block_size_in_kbs(self) -> str:
3701
+ """
3702
+ Size of Oracle database blocks in KB.
3703
+ """
3704
+ return pulumi.get(self, "block_size_in_kbs")
3705
+
3706
+ @property
3707
+ @pulumi.getter(name="extendSizeInMbs")
3708
+ def extend_size_in_mbs(self) -> int:
3709
+ """
3710
+ Size to extend the tablespace in MB. Note: Only applicable if 'isBigFile' property is set to true.
3711
+ """
3712
+ return pulumi.get(self, "extend_size_in_mbs")
3713
+
3714
+ @property
3715
+ @pulumi.getter(name="isAutoCreate")
3716
+ def is_auto_create(self) -> bool:
3717
+ """
3718
+ Set this property to true to auto-create tablespaces in the target Database. Note: This is not applicable for Autonomous Database Serverless databases.
3719
+ """
3720
+ return pulumi.get(self, "is_auto_create")
3721
+
3722
+ @property
3723
+ @pulumi.getter(name="isBigFile")
3724
+ def is_big_file(self) -> bool:
3725
+ """
3726
+ Set this property to true to enable tablespace of the type big file.
3727
+ """
3728
+ return pulumi.get(self, "is_big_file")
3729
+
3730
+ @property
3731
+ @pulumi.getter(name="remapTarget")
3732
+ def remap_target(self) -> str:
3733
+ """
3734
+ Name of the tablespace on the target database to which the source database tablespace is to be remapped.
3735
+ """
3736
+ return pulumi.get(self, "remap_target")
3737
+
3738
+ @property
3739
+ @pulumi.getter(name="targetType")
3740
+ def target_type(self) -> str:
3741
+ """
3742
+ Type of Database Base Migration Target.
3743
+ """
3744
+ return pulumi.get(self, "target_type")
3745
+
3746
+
3747
+ @pulumi.output_type
3748
+ class GetMigrationObjectTypesFilterResult(dict):
3749
+ def __init__(__self__, *,
3750
+ name: str,
3751
+ values: Sequence[str],
3752
+ regex: Optional[bool] = None):
3753
+ """
3754
+ :param str name: Object type name
3755
+ """
3756
+ pulumi.set(__self__, "name", name)
3757
+ pulumi.set(__self__, "values", values)
3758
+ if regex is not None:
3759
+ pulumi.set(__self__, "regex", regex)
3760
+
3761
+ @property
3762
+ @pulumi.getter
3763
+ def name(self) -> str:
3764
+ """
3765
+ Object type name
3766
+ """
3767
+ return pulumi.get(self, "name")
3768
+
3769
+ @property
3770
+ @pulumi.getter
3771
+ def values(self) -> Sequence[str]:
3772
+ return pulumi.get(self, "values")
3773
+
3774
+ @property
3775
+ @pulumi.getter
3776
+ def regex(self) -> Optional[bool]:
3777
+ return pulumi.get(self, "regex")
3778
+
3779
+
3780
+ @pulumi.output_type
3781
+ class GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionResult(dict):
3782
+ def __init__(__self__, *,
3783
+ items: Sequence['outputs.GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionItemResult']):
3784
+ """
3785
+ :param Sequence['GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionItemArgs'] items: Items in collection.
3786
+ """
3787
+ pulumi.set(__self__, "items", items)
3788
+
3789
+ @property
3790
+ @pulumi.getter
3791
+ def items(self) -> Sequence['outputs.GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionItemResult']:
3792
+ """
3793
+ Items in collection.
3794
+ """
3795
+ return pulumi.get(self, "items")
3796
+
3797
+
3798
+ @pulumi.output_type
3799
+ class GetMigrationObjectTypesMigrationObjectTypeSummaryCollectionItemResult(dict):
3800
+ def __init__(__self__, *,
3801
+ name: str):
3802
+ """
3803
+ :param str name: Object type name
3804
+ """
3805
+ pulumi.set(__self__, "name", name)
3806
+
3807
+ @property
3808
+ @pulumi.getter
3809
+ def name(self) -> str:
3810
+ """
3811
+ Object type name
3812
+ """
3813
+ return pulumi.get(self, "name")
3814
+
3815
+
3816
+ @pulumi.output_type
3817
+ class GetMigrationsAdvancedParameterResult(dict):
3818
+ def __init__(__self__, *,
3819
+ data_type: str,
3820
+ name: str,
3821
+ value: str):
3822
+ """
3823
+ :param str data_type: Parameter data type.
3824
+ :param str name: Name of directory object in database
3825
+ :param str value: If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
3826
+ """
3827
+ pulumi.set(__self__, "data_type", data_type)
3828
+ pulumi.set(__self__, "name", name)
3829
+ pulumi.set(__self__, "value", value)
3830
+
3831
+ @property
3832
+ @pulumi.getter(name="dataType")
3833
+ def data_type(self) -> str:
3834
+ """
3835
+ Parameter data type.
3836
+ """
3837
+ return pulumi.get(self, "data_type")
3838
+
3839
+ @property
3840
+ @pulumi.getter
3841
+ def name(self) -> str:
3842
+ """
3843
+ Name of directory object in database
3844
+ """
3845
+ return pulumi.get(self, "name")
3846
+
3847
+ @property
3848
+ @pulumi.getter
3849
+ def value(self) -> str:
3850
+ """
3851
+ If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
3852
+ """
3853
+ return pulumi.get(self, "value")
3854
+
3855
+
3856
+ @pulumi.output_type
3857
+ class GetMigrationsAdvisorSettingResult(dict):
3858
+ def __init__(__self__, *,
3859
+ is_ignore_errors: bool,
3860
+ is_skip_advisor: bool):
3861
+ """
3862
+ :param bool is_ignore_errors: True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
3863
+ :param bool is_skip_advisor: True to skip the Pre-Migration Advisor execution. Default is false.
3864
+ """
3865
+ pulumi.set(__self__, "is_ignore_errors", is_ignore_errors)
3866
+ pulumi.set(__self__, "is_skip_advisor", is_skip_advisor)
3867
+
3868
+ @property
3869
+ @pulumi.getter(name="isIgnoreErrors")
3870
+ def is_ignore_errors(self) -> bool:
3871
+ """
3872
+ True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
3873
+ """
3874
+ return pulumi.get(self, "is_ignore_errors")
3875
+
3876
+ @property
3877
+ @pulumi.getter(name="isSkipAdvisor")
3878
+ def is_skip_advisor(self) -> bool:
3879
+ """
3880
+ True to skip the Pre-Migration Advisor execution. Default is false.
3881
+ """
3882
+ return pulumi.get(self, "is_skip_advisor")
3883
+
3884
+
3885
+ @pulumi.output_type
3886
+ class GetMigrationsDataTransferMediumDetailResult(dict):
3887
+ def __init__(__self__, *,
3888
+ access_key_id: str,
3889
+ name: str,
3890
+ object_storage_buckets: Sequence['outputs.GetMigrationsDataTransferMediumDetailObjectStorageBucketResult'],
3891
+ region: str,
3892
+ secret_access_key: str,
3893
+ shared_storage_mount_target_id: str,
3894
+ sources: Sequence['outputs.GetMigrationsDataTransferMediumDetailSourceResult'],
3895
+ targets: Sequence['outputs.GetMigrationsDataTransferMediumDetailTargetResult'],
3896
+ type: str):
3897
+ """
3898
+ :param str access_key_id: AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
3899
+ :param str name: Name of directory object in database
3900
+ :param Sequence['GetMigrationsDataTransferMediumDetailObjectStorageBucketArgs'] object_storage_buckets: In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
3901
+ :param str region: AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
3902
+ :param str secret_access_key: AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
3903
+ :param str shared_storage_mount_target_id: OCID of the shared storage mount target
3904
+ :param Sequence['GetMigrationsDataTransferMediumDetailSourceArgs'] sources: Optional additional properties for dump transfer in source or target host. Default kind is CURL.
3905
+ :param Sequence['GetMigrationsDataTransferMediumDetailTargetArgs'] targets: Optional additional properties for dump transfer in source or target host. Default kind is CURL.
3906
+ :param str type: The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
3907
+ """
3908
+ pulumi.set(__self__, "access_key_id", access_key_id)
3909
+ pulumi.set(__self__, "name", name)
3910
+ pulumi.set(__self__, "object_storage_buckets", object_storage_buckets)
3911
+ pulumi.set(__self__, "region", region)
3912
+ pulumi.set(__self__, "secret_access_key", secret_access_key)
3913
+ pulumi.set(__self__, "shared_storage_mount_target_id", shared_storage_mount_target_id)
3914
+ pulumi.set(__self__, "sources", sources)
3915
+ pulumi.set(__self__, "targets", targets)
3916
+ pulumi.set(__self__, "type", type)
3917
+
3918
+ @property
3919
+ @pulumi.getter(name="accessKeyId")
3920
+ def access_key_id(self) -> str:
3921
+ """
3922
+ AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
3923
+ """
3924
+ return pulumi.get(self, "access_key_id")
3925
+
3926
+ @property
3927
+ @pulumi.getter
3928
+ def name(self) -> str:
3929
+ """
3930
+ Name of directory object in database
3931
+ """
3932
+ return pulumi.get(self, "name")
3933
+
3934
+ @property
3935
+ @pulumi.getter(name="objectStorageBuckets")
3936
+ def object_storage_buckets(self) -> Sequence['outputs.GetMigrationsDataTransferMediumDetailObjectStorageBucketResult']:
3937
+ """
3938
+ In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
3939
+ """
3940
+ return pulumi.get(self, "object_storage_buckets")
3941
+
3942
+ @property
3943
+ @pulumi.getter
3944
+ def region(self) -> str:
3945
+ """
3946
+ AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
3947
+ """
3948
+ return pulumi.get(self, "region")
3949
+
3950
+ @property
3951
+ @pulumi.getter(name="secretAccessKey")
3952
+ def secret_access_key(self) -> str:
3953
+ """
3954
+ AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
3955
+ """
3956
+ return pulumi.get(self, "secret_access_key")
3957
+
3958
+ @property
3959
+ @pulumi.getter(name="sharedStorageMountTargetId")
3960
+ def shared_storage_mount_target_id(self) -> str:
3961
+ """
3962
+ OCID of the shared storage mount target
3963
+ """
3964
+ return pulumi.get(self, "shared_storage_mount_target_id")
3965
+
3966
+ @property
3967
+ @pulumi.getter
3968
+ def sources(self) -> Sequence['outputs.GetMigrationsDataTransferMediumDetailSourceResult']:
3969
+ """
3970
+ Optional additional properties for dump transfer in source or target host. Default kind is CURL.
3971
+ """
3972
+ return pulumi.get(self, "sources")
3973
+
3974
+ @property
3975
+ @pulumi.getter
3976
+ def targets(self) -> Sequence['outputs.GetMigrationsDataTransferMediumDetailTargetResult']:
3977
+ """
3978
+ Optional additional properties for dump transfer in source or target host. Default kind is CURL.
3979
+ """
3980
+ return pulumi.get(self, "targets")
3981
+
3982
+ @property
3983
+ @pulumi.getter
3984
+ def type(self) -> str:
3985
+ """
3986
+ The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
3987
+ """
3988
+ return pulumi.get(self, "type")
3989
+
3990
+
3991
+ @pulumi.output_type
3992
+ class GetMigrationsDataTransferMediumDetailObjectStorageBucketResult(dict):
3993
+ def __init__(__self__, *,
3994
+ bucket: str,
3995
+ namespace: str):
3996
+ """
3997
+ :param str bucket: Bucket name.
3998
+ :param str namespace: Namespace name of the object store bucket.
3999
+ """
4000
+ pulumi.set(__self__, "bucket", bucket)
4001
+ pulumi.set(__self__, "namespace", namespace)
4002
+
4003
+ @property
4004
+ @pulumi.getter
4005
+ def bucket(self) -> str:
4006
+ """
4007
+ Bucket name.
4008
+ """
4009
+ return pulumi.get(self, "bucket")
4010
+
4011
+ @property
4012
+ @pulumi.getter
4013
+ def namespace(self) -> str:
4014
+ """
4015
+ Namespace name of the object store bucket.
4016
+ """
4017
+ return pulumi.get(self, "namespace")
4018
+
4019
+
4020
+ @pulumi.output_type
4021
+ class GetMigrationsDataTransferMediumDetailSourceResult(dict):
4022
+ def __init__(__self__, *,
4023
+ kind: str,
4024
+ oci_home: str,
4025
+ wallet_location: str):
4026
+ """
4027
+ :param str kind: Type of dump transfer to use during migration in source or target host. Default kind is CURL
4028
+ :param str oci_home: Path to the Oracle Cloud Infrastructure CLI installation in the node.
4029
+ :param str wallet_location: Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
4030
+ """
4031
+ pulumi.set(__self__, "kind", kind)
4032
+ pulumi.set(__self__, "oci_home", oci_home)
4033
+ pulumi.set(__self__, "wallet_location", wallet_location)
4034
+
4035
+ @property
4036
+ @pulumi.getter
4037
+ def kind(self) -> str:
4038
+ """
4039
+ Type of dump transfer to use during migration in source or target host. Default kind is CURL
4040
+ """
4041
+ return pulumi.get(self, "kind")
4042
+
4043
+ @property
4044
+ @pulumi.getter(name="ociHome")
4045
+ def oci_home(self) -> str:
4046
+ """
4047
+ Path to the Oracle Cloud Infrastructure CLI installation in the node.
4048
+ """
4049
+ return pulumi.get(self, "oci_home")
4050
+
4051
+ @property
4052
+ @pulumi.getter(name="walletLocation")
4053
+ def wallet_location(self) -> str:
4054
+ """
4055
+ Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
4056
+ """
4057
+ return pulumi.get(self, "wallet_location")
4058
+
4059
+
4060
+ @pulumi.output_type
4061
+ class GetMigrationsDataTransferMediumDetailTargetResult(dict):
4062
+ def __init__(__self__, *,
4063
+ kind: str,
4064
+ oci_home: str,
4065
+ wallet_location: str):
4066
+ """
4067
+ :param str kind: Type of dump transfer to use during migration in source or target host. Default kind is CURL
4068
+ :param str oci_home: Path to the Oracle Cloud Infrastructure CLI installation in the node.
4069
+ :param str wallet_location: Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
4070
+ """
4071
+ pulumi.set(__self__, "kind", kind)
4072
+ pulumi.set(__self__, "oci_home", oci_home)
4073
+ pulumi.set(__self__, "wallet_location", wallet_location)
4074
+
4075
+ @property
4076
+ @pulumi.getter
4077
+ def kind(self) -> str:
4078
+ """
4079
+ Type of dump transfer to use during migration in source or target host. Default kind is CURL
4080
+ """
4081
+ return pulumi.get(self, "kind")
4082
+
4083
+ @property
4084
+ @pulumi.getter(name="ociHome")
4085
+ def oci_home(self) -> str:
4086
+ """
4087
+ Path to the Oracle Cloud Infrastructure CLI installation in the node.
4088
+ """
4089
+ return pulumi.get(self, "oci_home")
4090
+
4091
+ @property
4092
+ @pulumi.getter(name="walletLocation")
4093
+ def wallet_location(self) -> str:
4094
+ """
4095
+ Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
4096
+ """
4097
+ return pulumi.get(self, "wallet_location")
4098
+
4099
+
4100
+ @pulumi.output_type
4101
+ class GetMigrationsExcludeObjectResult(dict):
4102
+ def __init__(__self__, *,
4103
+ is_omit_excluded_table_from_replication: bool,
4104
+ object: str,
4105
+ owner: str,
4106
+ schema: str,
4107
+ type: str):
4108
+ """
4109
+ :param str type: The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
4110
+ """
4111
+ pulumi.set(__self__, "is_omit_excluded_table_from_replication", is_omit_excluded_table_from_replication)
4112
+ pulumi.set(__self__, "object", object)
4113
+ pulumi.set(__self__, "owner", owner)
4114
+ pulumi.set(__self__, "schema", schema)
4115
+ pulumi.set(__self__, "type", type)
4116
+
4117
+ @property
4118
+ @pulumi.getter(name="isOmitExcludedTableFromReplication")
4119
+ def is_omit_excluded_table_from_replication(self) -> bool:
4120
+ return pulumi.get(self, "is_omit_excluded_table_from_replication")
4121
+
4122
+ @property
4123
+ @pulumi.getter
4124
+ def object(self) -> str:
4125
+ return pulumi.get(self, "object")
4126
+
4127
+ @property
4128
+ @pulumi.getter
4129
+ def owner(self) -> str:
4130
+ return pulumi.get(self, "owner")
4131
+
4132
+ @property
4133
+ @pulumi.getter
4134
+ def schema(self) -> str:
4135
+ return pulumi.get(self, "schema")
4136
+
4137
+ @property
4138
+ @pulumi.getter
4139
+ def type(self) -> str:
4140
+ """
4141
+ The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
4142
+ """
4143
+ return pulumi.get(self, "type")
4144
+
4145
+
4146
+ @pulumi.output_type
4147
+ class GetMigrationsGgsDetailResult(dict):
4148
+ def __init__(__self__, *,
4149
+ acceptable_lag: int,
4150
+ extracts: Sequence['outputs.GetMigrationsGgsDetailExtractResult'],
4151
+ ggs_deployments: Sequence['outputs.GetMigrationsGgsDetailGgsDeploymentResult'],
4152
+ replicats: Sequence['outputs.GetMigrationsGgsDetailReplicatResult']):
4153
+ """
4154
+ :param int acceptable_lag: ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
4155
+ :param Sequence['GetMigrationsGgsDetailExtractArgs'] extracts: Parameters for Extract processes.
4156
+ :param Sequence['GetMigrationsGgsDetailGgsDeploymentArgs'] ggs_deployments: Details about Oracle GoldenGate GGS Deployment.
4157
+ :param Sequence['GetMigrationsGgsDetailReplicatArgs'] replicats: Parameters for Replicat processes.
4158
+ """
4159
+ pulumi.set(__self__, "acceptable_lag", acceptable_lag)
4160
+ pulumi.set(__self__, "extracts", extracts)
4161
+ pulumi.set(__self__, "ggs_deployments", ggs_deployments)
4162
+ pulumi.set(__self__, "replicats", replicats)
4163
+
4164
+ @property
4165
+ @pulumi.getter(name="acceptableLag")
4166
+ def acceptable_lag(self) -> int:
4167
+ """
4168
+ ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
4169
+ """
4170
+ return pulumi.get(self, "acceptable_lag")
4171
+
4172
+ @property
4173
+ @pulumi.getter
4174
+ def extracts(self) -> Sequence['outputs.GetMigrationsGgsDetailExtractResult']:
4175
+ """
4176
+ Parameters for Extract processes.
4177
+ """
4178
+ return pulumi.get(self, "extracts")
4179
+
4180
+ @property
4181
+ @pulumi.getter(name="ggsDeployments")
4182
+ def ggs_deployments(self) -> Sequence['outputs.GetMigrationsGgsDetailGgsDeploymentResult']:
4183
+ """
4184
+ Details about Oracle GoldenGate GGS Deployment.
4185
+ """
4186
+ return pulumi.get(self, "ggs_deployments")
4187
+
4188
+ @property
4189
+ @pulumi.getter
4190
+ def replicats(self) -> Sequence['outputs.GetMigrationsGgsDetailReplicatResult']:
4191
+ """
4192
+ Parameters for Replicat processes.
4193
+ """
4194
+ return pulumi.get(self, "replicats")
4195
+
4196
+
4197
+ @pulumi.output_type
4198
+ class GetMigrationsGgsDetailExtractResult(dict):
4199
+ def __init__(__self__, *,
4200
+ long_trans_duration: int,
4201
+ performance_profile: str):
4202
+ """
4203
+ :param int long_trans_duration: Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
4204
+ :param str performance_profile: Replicat performance.
4205
+ """
4206
+ pulumi.set(__self__, "long_trans_duration", long_trans_duration)
4207
+ pulumi.set(__self__, "performance_profile", performance_profile)
4208
+
4209
+ @property
4210
+ @pulumi.getter(name="longTransDuration")
4211
+ def long_trans_duration(self) -> int:
4212
+ """
4213
+ Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
4214
+ """
4215
+ return pulumi.get(self, "long_trans_duration")
4216
+
4217
+ @property
4218
+ @pulumi.getter(name="performanceProfile")
4219
+ def performance_profile(self) -> str:
4220
+ """
4221
+ Replicat performance.
4222
+ """
4223
+ return pulumi.get(self, "performance_profile")
4224
+
4225
+
4226
+ @pulumi.output_type
4227
+ class GetMigrationsGgsDetailGgsDeploymentResult(dict):
4228
+ def __init__(__self__, *,
4229
+ deployment_id: str,
4230
+ ggs_admin_credentials_secret_id: str):
4231
+ """
4232
+ :param str deployment_id: The OCID of the resource being referenced.
4233
+ :param str ggs_admin_credentials_secret_id: The OCID of the resource being referenced.
4234
+ """
4235
+ pulumi.set(__self__, "deployment_id", deployment_id)
4236
+ pulumi.set(__self__, "ggs_admin_credentials_secret_id", ggs_admin_credentials_secret_id)
4237
+
4238
+ @property
4239
+ @pulumi.getter(name="deploymentId")
4240
+ def deployment_id(self) -> str:
4241
+ """
4242
+ The OCID of the resource being referenced.
4243
+ """
4244
+ return pulumi.get(self, "deployment_id")
4245
+
4246
+ @property
4247
+ @pulumi.getter(name="ggsAdminCredentialsSecretId")
4248
+ def ggs_admin_credentials_secret_id(self) -> str:
4249
+ """
4250
+ The OCID of the resource being referenced.
4251
+ """
4252
+ return pulumi.get(self, "ggs_admin_credentials_secret_id")
4253
+
4254
+
4255
+ @pulumi.output_type
4256
+ class GetMigrationsGgsDetailReplicatResult(dict):
4257
+ def __init__(__self__, *,
4258
+ performance_profile: str):
4259
+ """
4260
+ :param str performance_profile: Replicat performance.
4261
+ """
4262
+ pulumi.set(__self__, "performance_profile", performance_profile)
4263
+
4264
+ @property
4265
+ @pulumi.getter(name="performanceProfile")
4266
+ def performance_profile(self) -> str:
4267
+ """
4268
+ Replicat performance.
4269
+ """
4270
+ return pulumi.get(self, "performance_profile")
4271
+
4272
+
4273
+ @pulumi.output_type
4274
+ class GetMigrationsHubDetailResult(dict):
4275
+ def __init__(__self__, *,
4276
+ acceptable_lag: int,
4277
+ compute_id: str,
4278
+ extracts: Sequence['outputs.GetMigrationsHubDetailExtractResult'],
4279
+ key_id: str,
4280
+ replicats: Sequence['outputs.GetMigrationsHubDetailReplicatResult'],
4281
+ rest_admin_credentials: Sequence['outputs.GetMigrationsHubDetailRestAdminCredentialResult'],
4282
+ url: str,
4283
+ vault_id: str):
4284
+ """
4285
+ :param int acceptable_lag: ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
4286
+ :param str compute_id: The OCID of the resource being referenced.
4287
+ :param Sequence['GetMigrationsHubDetailExtractArgs'] extracts: Parameters for Extract processes.
4288
+ :param str key_id: The OCID of the resource being referenced.
4289
+ :param Sequence['GetMigrationsHubDetailReplicatArgs'] replicats: Parameters for Replicat processes.
4290
+ :param Sequence['GetMigrationsHubDetailRestAdminCredentialArgs'] rest_admin_credentials: Database Administrator Credentials details.
4291
+ :param str url: Endpoint URL.
4292
+ :param str vault_id: The OCID of the resource being referenced.
4293
+ """
4294
+ pulumi.set(__self__, "acceptable_lag", acceptable_lag)
4295
+ pulumi.set(__self__, "compute_id", compute_id)
4296
+ pulumi.set(__self__, "extracts", extracts)
4297
+ pulumi.set(__self__, "key_id", key_id)
4298
+ pulumi.set(__self__, "replicats", replicats)
4299
+ pulumi.set(__self__, "rest_admin_credentials", rest_admin_credentials)
4300
+ pulumi.set(__self__, "url", url)
4301
+ pulumi.set(__self__, "vault_id", vault_id)
4302
+
4303
+ @property
4304
+ @pulumi.getter(name="acceptableLag")
4305
+ def acceptable_lag(self) -> int:
4306
+ """
4307
+ ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
4308
+ """
4309
+ return pulumi.get(self, "acceptable_lag")
4310
+
4311
+ @property
4312
+ @pulumi.getter(name="computeId")
4313
+ def compute_id(self) -> str:
4314
+ """
4315
+ The OCID of the resource being referenced.
4316
+ """
4317
+ return pulumi.get(self, "compute_id")
4318
+
4319
+ @property
4320
+ @pulumi.getter
4321
+ def extracts(self) -> Sequence['outputs.GetMigrationsHubDetailExtractResult']:
4322
+ """
4323
+ Parameters for Extract processes.
4324
+ """
4325
+ return pulumi.get(self, "extracts")
4326
+
4327
+ @property
4328
+ @pulumi.getter(name="keyId")
4329
+ def key_id(self) -> str:
4330
+ """
4331
+ The OCID of the resource being referenced.
4332
+ """
4333
+ return pulumi.get(self, "key_id")
4334
+
4335
+ @property
4336
+ @pulumi.getter
4337
+ def replicats(self) -> Sequence['outputs.GetMigrationsHubDetailReplicatResult']:
4338
+ """
4339
+ Parameters for Replicat processes.
4340
+ """
4341
+ return pulumi.get(self, "replicats")
4342
+
4343
+ @property
4344
+ @pulumi.getter(name="restAdminCredentials")
4345
+ def rest_admin_credentials(self) -> Sequence['outputs.GetMigrationsHubDetailRestAdminCredentialResult']:
4346
+ """
4347
+ Database Administrator Credentials details.
4348
+ """
4349
+ return pulumi.get(self, "rest_admin_credentials")
4350
+
4351
+ @property
4352
+ @pulumi.getter
4353
+ def url(self) -> str:
4354
+ """
4355
+ Endpoint URL.
4356
+ """
4357
+ return pulumi.get(self, "url")
4358
+
4359
+ @property
4360
+ @pulumi.getter(name="vaultId")
4361
+ def vault_id(self) -> str:
4362
+ """
4363
+ The OCID of the resource being referenced.
4364
+ """
4365
+ return pulumi.get(self, "vault_id")
4366
+
4367
+
4368
+ @pulumi.output_type
4369
+ class GetMigrationsHubDetailExtractResult(dict):
4370
+ def __init__(__self__, *,
4371
+ long_trans_duration: int,
4372
+ performance_profile: str):
4373
+ """
4374
+ :param int long_trans_duration: Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
4375
+ :param str performance_profile: Replicat performance.
4376
+ """
4377
+ pulumi.set(__self__, "long_trans_duration", long_trans_duration)
4378
+ pulumi.set(__self__, "performance_profile", performance_profile)
4379
+
4380
+ @property
4381
+ @pulumi.getter(name="longTransDuration")
4382
+ def long_trans_duration(self) -> int:
4383
+ """
4384
+ Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
4385
+ """
4386
+ return pulumi.get(self, "long_trans_duration")
4387
+
4388
+ @property
4389
+ @pulumi.getter(name="performanceProfile")
4390
+ def performance_profile(self) -> str:
4391
+ """
4392
+ Replicat performance.
4393
+ """
4394
+ return pulumi.get(self, "performance_profile")
4395
+
4396
+
4397
+ @pulumi.output_type
4398
+ class GetMigrationsHubDetailReplicatResult(dict):
4399
+ def __init__(__self__, *,
4400
+ performance_profile: str):
4401
+ """
4402
+ :param str performance_profile: Replicat performance.
4403
+ """
4404
+ pulumi.set(__self__, "performance_profile", performance_profile)
4405
+
4406
+ @property
4407
+ @pulumi.getter(name="performanceProfile")
4408
+ def performance_profile(self) -> str:
4409
+ """
4410
+ Replicat performance.
4411
+ """
4412
+ return pulumi.get(self, "performance_profile")
4413
+
4414
+
4415
+ @pulumi.output_type
4416
+ class GetMigrationsHubDetailRestAdminCredentialResult(dict):
4417
+ def __init__(__self__, *,
4418
+ password: str,
4419
+ username: str):
4420
+ """
4421
+ :param str username: Administrator username
4422
+ """
4423
+ pulumi.set(__self__, "password", password)
4424
+ pulumi.set(__self__, "username", username)
4425
+
4426
+ @property
4427
+ @pulumi.getter
4428
+ def password(self) -> str:
4429
+ return pulumi.get(self, "password")
4430
+
4431
+ @property
4432
+ @pulumi.getter
4433
+ def username(self) -> str:
4434
+ """
4435
+ Administrator username
4436
+ """
4437
+ return pulumi.get(self, "username")
4438
+
4439
+
4440
+ @pulumi.output_type
4441
+ class GetMigrationsIncludeObjectResult(dict):
4442
+ def __init__(__self__, *,
4443
+ is_omit_excluded_table_from_replication: bool,
4444
+ object: str,
4445
+ owner: str,
4446
+ schema: str,
4447
+ type: str):
4448
+ """
4449
+ :param str type: The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
4450
+ """
4451
+ pulumi.set(__self__, "is_omit_excluded_table_from_replication", is_omit_excluded_table_from_replication)
4452
+ pulumi.set(__self__, "object", object)
4453
+ pulumi.set(__self__, "owner", owner)
4454
+ pulumi.set(__self__, "schema", schema)
4455
+ pulumi.set(__self__, "type", type)
4456
+
4457
+ @property
4458
+ @pulumi.getter(name="isOmitExcludedTableFromReplication")
4459
+ def is_omit_excluded_table_from_replication(self) -> bool:
4460
+ return pulumi.get(self, "is_omit_excluded_table_from_replication")
4461
+
4462
+ @property
4463
+ @pulumi.getter
4464
+ def object(self) -> str:
4465
+ return pulumi.get(self, "object")
4466
+
4467
+ @property
4468
+ @pulumi.getter
4469
+ def owner(self) -> str:
4470
+ return pulumi.get(self, "owner")
4471
+
4472
+ @property
4473
+ @pulumi.getter
4474
+ def schema(self) -> str:
4475
+ return pulumi.get(self, "schema")
4476
+
4477
+ @property
4478
+ @pulumi.getter
4479
+ def type(self) -> str:
4480
+ """
4481
+ The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
4482
+ """
4483
+ return pulumi.get(self, "type")
4484
+
4485
+
4486
+ @pulumi.output_type
4487
+ class GetMigrationsInitialLoadSettingResult(dict):
4488
+ def __init__(__self__, *,
4489
+ compatibilities: Sequence[str],
4490
+ data_pump_parameters: Sequence['outputs.GetMigrationsInitialLoadSettingDataPumpParameterResult'],
4491
+ export_directory_objects: Sequence['outputs.GetMigrationsInitialLoadSettingExportDirectoryObjectResult'],
4492
+ handle_grant_errors: str,
4493
+ import_directory_objects: Sequence['outputs.GetMigrationsInitialLoadSettingImportDirectoryObjectResult'],
4494
+ is_consistent: bool,
4495
+ is_ignore_existing_objects: bool,
4496
+ is_tz_utc: bool,
4497
+ job_mode: str,
4498
+ metadata_remaps: Sequence['outputs.GetMigrationsInitialLoadSettingMetadataRemapResult'],
4499
+ primary_key_compatibility: str,
4500
+ tablespace_details: Sequence['outputs.GetMigrationsInitialLoadSettingTablespaceDetailResult']):
4501
+ """
4502
+ :param Sequence[str] compatibilities: Apply the specified requirements for compatibility with MySQL Database Service for all tables in the dump output, altering the dump files as necessary.
4503
+ :param Sequence['GetMigrationsInitialLoadSettingDataPumpParameterArgs'] data_pump_parameters: Optional parameters for Data Pump Export and Import.
4504
+ :param Sequence['GetMigrationsInitialLoadSettingExportDirectoryObjectArgs'] export_directory_objects: Directory object details, used to define either import or export directory objects in Data Pump Settings.
4505
+ :param str handle_grant_errors: The action taken in the event of errors related to GRANT or REVOKE errors.
4506
+ :param Sequence['GetMigrationsInitialLoadSettingImportDirectoryObjectArgs'] import_directory_objects: Directory object details, used to define either import or export directory objects in Data Pump Settings.
4507
+ :param bool is_consistent: Enable (true) or disable (false) consistent data dumps by locking the instance for backup during the dump.
4508
+ :param bool is_ignore_existing_objects: Import the dump even if it contains objects that already exist in the target schema in the MySQL instance.
4509
+ :param bool is_tz_utc: Include a statement at the start of the dump to set the time zone to UTC.
4510
+ :param str job_mode: Oracle Job Mode
4511
+ :param Sequence['GetMigrationsInitialLoadSettingMetadataRemapArgs'] metadata_remaps: Defines remapping to be applied to objects as they are processed.
4512
+ :param str primary_key_compatibility: Primary key compatibility option
4513
+ :param Sequence['GetMigrationsInitialLoadSettingTablespaceDetailArgs'] tablespace_details: Migration tablespace settings.
4514
+ """
4515
+ pulumi.set(__self__, "compatibilities", compatibilities)
4516
+ pulumi.set(__self__, "data_pump_parameters", data_pump_parameters)
4517
+ pulumi.set(__self__, "export_directory_objects", export_directory_objects)
4518
+ pulumi.set(__self__, "handle_grant_errors", handle_grant_errors)
4519
+ pulumi.set(__self__, "import_directory_objects", import_directory_objects)
4520
+ pulumi.set(__self__, "is_consistent", is_consistent)
4521
+ pulumi.set(__self__, "is_ignore_existing_objects", is_ignore_existing_objects)
4522
+ pulumi.set(__self__, "is_tz_utc", is_tz_utc)
4523
+ pulumi.set(__self__, "job_mode", job_mode)
4524
+ pulumi.set(__self__, "metadata_remaps", metadata_remaps)
4525
+ pulumi.set(__self__, "primary_key_compatibility", primary_key_compatibility)
4526
+ pulumi.set(__self__, "tablespace_details", tablespace_details)
4527
+
4528
+ @property
4529
+ @pulumi.getter
4530
+ def compatibilities(self) -> Sequence[str]:
4531
+ """
4532
+ Apply the specified requirements for compatibility with MySQL Database Service for all tables in the dump output, altering the dump files as necessary.
4533
+ """
4534
+ return pulumi.get(self, "compatibilities")
4535
+
4536
+ @property
4537
+ @pulumi.getter(name="dataPumpParameters")
4538
+ def data_pump_parameters(self) -> Sequence['outputs.GetMigrationsInitialLoadSettingDataPumpParameterResult']:
4539
+ """
4540
+ Optional parameters for Data Pump Export and Import.
4541
+ """
4542
+ return pulumi.get(self, "data_pump_parameters")
4543
+
4544
+ @property
4545
+ @pulumi.getter(name="exportDirectoryObjects")
4546
+ def export_directory_objects(self) -> Sequence['outputs.GetMigrationsInitialLoadSettingExportDirectoryObjectResult']:
4547
+ """
4548
+ Directory object details, used to define either import or export directory objects in Data Pump Settings.
4549
+ """
4550
+ return pulumi.get(self, "export_directory_objects")
4551
+
4552
+ @property
4553
+ @pulumi.getter(name="handleGrantErrors")
4554
+ def handle_grant_errors(self) -> str:
4555
+ """
4556
+ The action taken in the event of errors related to GRANT or REVOKE errors.
4557
+ """
4558
+ return pulumi.get(self, "handle_grant_errors")
4559
+
4560
+ @property
4561
+ @pulumi.getter(name="importDirectoryObjects")
4562
+ def import_directory_objects(self) -> Sequence['outputs.GetMigrationsInitialLoadSettingImportDirectoryObjectResult']:
4563
+ """
4564
+ Directory object details, used to define either import or export directory objects in Data Pump Settings.
4565
+ """
4566
+ return pulumi.get(self, "import_directory_objects")
4567
+
4568
+ @property
4569
+ @pulumi.getter(name="isConsistent")
4570
+ def is_consistent(self) -> bool:
4571
+ """
4572
+ Enable (true) or disable (false) consistent data dumps by locking the instance for backup during the dump.
4573
+ """
4574
+ return pulumi.get(self, "is_consistent")
4575
+
4576
+ @property
4577
+ @pulumi.getter(name="isIgnoreExistingObjects")
4578
+ def is_ignore_existing_objects(self) -> bool:
4579
+ """
4580
+ Import the dump even if it contains objects that already exist in the target schema in the MySQL instance.
4581
+ """
4582
+ return pulumi.get(self, "is_ignore_existing_objects")
4583
+
4584
+ @property
4585
+ @pulumi.getter(name="isTzUtc")
4586
+ def is_tz_utc(self) -> bool:
4587
+ """
4588
+ Include a statement at the start of the dump to set the time zone to UTC.
4589
+ """
4590
+ return pulumi.get(self, "is_tz_utc")
4591
+
4592
+ @property
4593
+ @pulumi.getter(name="jobMode")
4594
+ def job_mode(self) -> str:
4595
+ """
4596
+ Oracle Job Mode
4597
+ """
4598
+ return pulumi.get(self, "job_mode")
4599
+
4600
+ @property
4601
+ @pulumi.getter(name="metadataRemaps")
4602
+ def metadata_remaps(self) -> Sequence['outputs.GetMigrationsInitialLoadSettingMetadataRemapResult']:
4603
+ """
4604
+ Defines remapping to be applied to objects as they are processed.
4605
+ """
4606
+ return pulumi.get(self, "metadata_remaps")
4607
+
4608
+ @property
4609
+ @pulumi.getter(name="primaryKeyCompatibility")
4610
+ def primary_key_compatibility(self) -> str:
4611
+ """
4612
+ Primary key compatibility option
4613
+ """
4614
+ return pulumi.get(self, "primary_key_compatibility")
4615
+
4616
+ @property
4617
+ @pulumi.getter(name="tablespaceDetails")
4618
+ def tablespace_details(self) -> Sequence['outputs.GetMigrationsInitialLoadSettingTablespaceDetailResult']:
4619
+ """
4620
+ Migration tablespace settings.
4621
+ """
4622
+ return pulumi.get(self, "tablespace_details")
4623
+
4624
+
4625
+ @pulumi.output_type
4626
+ class GetMigrationsInitialLoadSettingDataPumpParameterResult(dict):
4627
+ def __init__(__self__, *,
4628
+ estimate: str,
4629
+ exclude_parameters: Sequence[str],
4630
+ export_parallelism_degree: int,
4631
+ import_parallelism_degree: int,
4632
+ is_cluster: bool,
4633
+ table_exists_action: str):
4634
+ """
4635
+ :param str estimate: Estimate size of dumps that will be generated.
4636
+ :param Sequence[str] exclude_parameters: Exclude paratemers for Export and Import.
4637
+ :param int export_parallelism_degree: Maximum number of worker processes that can be used for a Data Pump Export job.
4638
+ :param int import_parallelism_degree: Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
4639
+ :param bool is_cluster: Set to false to force Data Pump worker process to run on one instance.
4640
+ :param str table_exists_action: IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
4641
+ """
4642
+ pulumi.set(__self__, "estimate", estimate)
4643
+ pulumi.set(__self__, "exclude_parameters", exclude_parameters)
4644
+ pulumi.set(__self__, "export_parallelism_degree", export_parallelism_degree)
4645
+ pulumi.set(__self__, "import_parallelism_degree", import_parallelism_degree)
4646
+ pulumi.set(__self__, "is_cluster", is_cluster)
4647
+ pulumi.set(__self__, "table_exists_action", table_exists_action)
4648
+
4649
+ @property
4650
+ @pulumi.getter
4651
+ def estimate(self) -> str:
4652
+ """
4653
+ Estimate size of dumps that will be generated.
4654
+ """
4655
+ return pulumi.get(self, "estimate")
4656
+
4657
+ @property
4658
+ @pulumi.getter(name="excludeParameters")
4659
+ def exclude_parameters(self) -> Sequence[str]:
4660
+ """
4661
+ Exclude paratemers for Export and Import.
4662
+ """
4663
+ return pulumi.get(self, "exclude_parameters")
4664
+
4665
+ @property
4666
+ @pulumi.getter(name="exportParallelismDegree")
4667
+ def export_parallelism_degree(self) -> int:
4668
+ """
4669
+ Maximum number of worker processes that can be used for a Data Pump Export job.
4670
+ """
4671
+ return pulumi.get(self, "export_parallelism_degree")
4672
+
4673
+ @property
4674
+ @pulumi.getter(name="importParallelismDegree")
4675
+ def import_parallelism_degree(self) -> int:
4676
+ """
4677
+ Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
4678
+ """
4679
+ return pulumi.get(self, "import_parallelism_degree")
4680
+
4681
+ @property
4682
+ @pulumi.getter(name="isCluster")
4683
+ def is_cluster(self) -> bool:
4684
+ """
4685
+ Set to false to force Data Pump worker process to run on one instance.
4686
+ """
4687
+ return pulumi.get(self, "is_cluster")
4688
+
4689
+ @property
4690
+ @pulumi.getter(name="tableExistsAction")
4691
+ def table_exists_action(self) -> str:
4692
+ """
4693
+ IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
4694
+ """
4695
+ return pulumi.get(self, "table_exists_action")
4696
+
4697
+
4698
+ @pulumi.output_type
4699
+ class GetMigrationsInitialLoadSettingExportDirectoryObjectResult(dict):
4700
+ def __init__(__self__, *,
4701
+ name: str,
4702
+ path: str):
4703
+ """
4704
+ :param str name: Name of directory object in database
4705
+ :param str path: Absolute path of directory on database server
4706
+ """
4707
+ pulumi.set(__self__, "name", name)
4708
+ pulumi.set(__self__, "path", path)
4709
+
4710
+ @property
4711
+ @pulumi.getter
4712
+ def name(self) -> str:
4713
+ """
4714
+ Name of directory object in database
4715
+ """
4716
+ return pulumi.get(self, "name")
4717
+
4718
+ @property
4719
+ @pulumi.getter
4720
+ def path(self) -> str:
4721
+ """
4722
+ Absolute path of directory on database server
4723
+ """
4724
+ return pulumi.get(self, "path")
4725
+
4726
+
4727
+ @pulumi.output_type
4728
+ class GetMigrationsInitialLoadSettingImportDirectoryObjectResult(dict):
4729
+ def __init__(__self__, *,
4730
+ name: str,
4731
+ path: str):
4732
+ """
4733
+ :param str name: Name of directory object in database
4734
+ :param str path: Absolute path of directory on database server
4735
+ """
4736
+ pulumi.set(__self__, "name", name)
4737
+ pulumi.set(__self__, "path", path)
4738
+
4739
+ @property
4740
+ @pulumi.getter
4741
+ def name(self) -> str:
4742
+ """
4743
+ Name of directory object in database
4744
+ """
4745
+ return pulumi.get(self, "name")
4746
+
4747
+ @property
4748
+ @pulumi.getter
4749
+ def path(self) -> str:
4750
+ """
4751
+ Absolute path of directory on database server
4752
+ """
4753
+ return pulumi.get(self, "path")
4754
+
4755
+
4756
+ @pulumi.output_type
4757
+ class GetMigrationsInitialLoadSettingMetadataRemapResult(dict):
4758
+ def __init__(__self__, *,
4759
+ new_value: str,
4760
+ old_value: str,
4761
+ type: str):
4762
+ """
4763
+ :param str new_value: Specifies the new value that oldValue should be translated into.
4764
+ :param str old_value: Specifies the value which needs to be reset.
4765
+ :param str type: The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
4766
+ """
4767
+ pulumi.set(__self__, "new_value", new_value)
4768
+ pulumi.set(__self__, "old_value", old_value)
4769
+ pulumi.set(__self__, "type", type)
4770
+
4771
+ @property
4772
+ @pulumi.getter(name="newValue")
4773
+ def new_value(self) -> str:
4774
+ """
4775
+ Specifies the new value that oldValue should be translated into.
4776
+ """
4777
+ return pulumi.get(self, "new_value")
4778
+
4779
+ @property
4780
+ @pulumi.getter(name="oldValue")
4781
+ def old_value(self) -> str:
4782
+ """
4783
+ Specifies the value which needs to be reset.
4784
+ """
4785
+ return pulumi.get(self, "old_value")
4786
+
4787
+ @property
4788
+ @pulumi.getter
4789
+ def type(self) -> str:
4790
+ """
4791
+ The type of the migration to be performed. Example: ONLINE if no downtime is preferred for a migration. This method uses Oracle GoldenGate for replication.
4792
+ """
4793
+ return pulumi.get(self, "type")
4794
+
4795
+
4796
+ @pulumi.output_type
4797
+ class GetMigrationsInitialLoadSettingTablespaceDetailResult(dict):
4798
+ def __init__(__self__, *,
4799
+ block_size_in_kbs: str,
4800
+ extend_size_in_mbs: int,
4801
+ is_auto_create: bool,
4802
+ is_big_file: bool,
4803
+ remap_target: str,
4804
+ target_type: str):
4805
+ """
4806
+ :param str block_size_in_kbs: Size of Oracle database blocks in KB.
4807
+ :param int extend_size_in_mbs: Size to extend the tablespace in MB. Note: Only applicable if 'isBigFile' property is set to true.
4808
+ :param bool is_auto_create: Set this property to true to auto-create tablespaces in the target Database. Note: This is not applicable for Autonomous Database Serverless databases.
4809
+ :param bool is_big_file: Set this property to true to enable tablespace of the type big file.
4810
+ :param str remap_target: Name of the tablespace on the target database to which the source database tablespace is to be remapped.
4811
+ :param str target_type: Type of Database Base Migration Target.
4812
+ """
4813
+ pulumi.set(__self__, "block_size_in_kbs", block_size_in_kbs)
4814
+ pulumi.set(__self__, "extend_size_in_mbs", extend_size_in_mbs)
4815
+ pulumi.set(__self__, "is_auto_create", is_auto_create)
4816
+ pulumi.set(__self__, "is_big_file", is_big_file)
4817
+ pulumi.set(__self__, "remap_target", remap_target)
4818
+ pulumi.set(__self__, "target_type", target_type)
4819
+
4820
+ @property
4821
+ @pulumi.getter(name="blockSizeInKbs")
4822
+ def block_size_in_kbs(self) -> str:
4823
+ """
4824
+ Size of Oracle database blocks in KB.
4825
+ """
4826
+ return pulumi.get(self, "block_size_in_kbs")
4827
+
4828
+ @property
4829
+ @pulumi.getter(name="extendSizeInMbs")
4830
+ def extend_size_in_mbs(self) -> int:
4831
+ """
4832
+ Size to extend the tablespace in MB. Note: Only applicable if 'isBigFile' property is set to true.
4833
+ """
4834
+ return pulumi.get(self, "extend_size_in_mbs")
4835
+
4836
+ @property
4837
+ @pulumi.getter(name="isAutoCreate")
4838
+ def is_auto_create(self) -> bool:
4839
+ """
4840
+ Set this property to true to auto-create tablespaces in the target Database. Note: This is not applicable for Autonomous Database Serverless databases.
4841
+ """
4842
+ return pulumi.get(self, "is_auto_create")
4843
+
4844
+ @property
4845
+ @pulumi.getter(name="isBigFile")
4846
+ def is_big_file(self) -> bool:
4847
+ """
4848
+ Set this property to true to enable tablespace of the type big file.
4849
+ """
4850
+ return pulumi.get(self, "is_big_file")
4851
+
4852
+ @property
4853
+ @pulumi.getter(name="remapTarget")
4854
+ def remap_target(self) -> str:
4855
+ """
4856
+ Name of the tablespace on the target database to which the source database tablespace is to be remapped.
4857
+ """
4858
+ return pulumi.get(self, "remap_target")
4859
+
4860
+ @property
4861
+ @pulumi.getter(name="targetType")
4862
+ def target_type(self) -> str:
4863
+ """
4864
+ Type of Database Base Migration Target.
4865
+ """
4866
+ return pulumi.get(self, "target_type")
496
4867
 
497
4868