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
@@ -10,14 +10,101 @@ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
10
  from .. import _utilities
11
11
 
12
12
  __all__ = [
13
+ 'ConnectionAdditionalAttributeArgs',
14
+ 'ConnectionIngressIpArgs',
13
15
  'JobProgressArgs',
14
16
  'JobProgressPhaseArgs',
15
17
  'JobProgressPhaseExtractArgs',
16
18
  'JobProgressPhaseLogLocationArgs',
17
19
  'JobUnsupportedObjectArgs',
20
+ 'MigrationAdvancedParameterArgs',
21
+ 'MigrationAdvisorSettingsArgs',
22
+ 'MigrationDataTransferMediumDetailsArgs',
23
+ 'MigrationDataTransferMediumDetailsObjectStorageBucketArgs',
24
+ 'MigrationDataTransferMediumDetailsSourceArgs',
25
+ 'MigrationDataTransferMediumDetailsTargetArgs',
26
+ 'MigrationExcludeObjectArgs',
27
+ 'MigrationGgsDetailsArgs',
28
+ 'MigrationGgsDetailsExtractArgs',
29
+ 'MigrationGgsDetailsGgsDeploymentArgs',
30
+ 'MigrationGgsDetailsReplicatArgs',
31
+ 'MigrationHubDetailsArgs',
32
+ 'MigrationHubDetailsExtractArgs',
33
+ 'MigrationHubDetailsReplicatArgs',
34
+ 'MigrationHubDetailsRestAdminCredentialsArgs',
35
+ 'MigrationIncludeObjectArgs',
36
+ 'MigrationInitialLoadSettingsArgs',
37
+ 'MigrationInitialLoadSettingsDataPumpParametersArgs',
38
+ 'MigrationInitialLoadSettingsExportDirectoryObjectArgs',
39
+ 'MigrationInitialLoadSettingsImportDirectoryObjectArgs',
40
+ 'MigrationInitialLoadSettingsMetadataRemapArgs',
41
+ 'MigrationInitialLoadSettingsTablespaceDetailsArgs',
42
+ 'GetConnectionsFilterArgs',
18
43
  'GetMigrationObjectTypesFilterArgs',
19
44
  ]
20
45
 
46
+ @pulumi.input_type
47
+ class ConnectionAdditionalAttributeArgs:
48
+ def __init__(__self__, *,
49
+ name: Optional[pulumi.Input[str]] = None,
50
+ value: Optional[pulumi.Input[str]] = None):
51
+ """
52
+ :param pulumi.Input[str] name: (Updatable) The name of the property entry.
53
+ :param pulumi.Input[str] value: (Updatable) The value of the property entry.
54
+ """
55
+ if name is not None:
56
+ pulumi.set(__self__, "name", name)
57
+ if value is not None:
58
+ pulumi.set(__self__, "value", value)
59
+
60
+ @property
61
+ @pulumi.getter
62
+ def name(self) -> Optional[pulumi.Input[str]]:
63
+ """
64
+ (Updatable) The name of the property entry.
65
+ """
66
+ return pulumi.get(self, "name")
67
+
68
+ @name.setter
69
+ def name(self, value: Optional[pulumi.Input[str]]):
70
+ pulumi.set(self, "name", value)
71
+
72
+ @property
73
+ @pulumi.getter
74
+ def value(self) -> Optional[pulumi.Input[str]]:
75
+ """
76
+ (Updatable) The value of the property entry.
77
+ """
78
+ return pulumi.get(self, "value")
79
+
80
+ @value.setter
81
+ def value(self, value: Optional[pulumi.Input[str]]):
82
+ pulumi.set(self, "value", value)
83
+
84
+
85
+ @pulumi.input_type
86
+ class ConnectionIngressIpArgs:
87
+ def __init__(__self__, *,
88
+ ingress_ip: Optional[pulumi.Input[str]] = None):
89
+ """
90
+ :param pulumi.Input[str] ingress_ip: A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
91
+ """
92
+ if ingress_ip is not None:
93
+ pulumi.set(__self__, "ingress_ip", ingress_ip)
94
+
95
+ @property
96
+ @pulumi.getter(name="ingressIp")
97
+ def ingress_ip(self) -> Optional[pulumi.Input[str]]:
98
+ """
99
+ A Private Endpoint IPv4 or IPv6 Address created in the customer's subnet.
100
+ """
101
+ return pulumi.get(self, "ingress_ip")
102
+
103
+ @ingress_ip.setter
104
+ def ingress_ip(self, value: Optional[pulumi.Input[str]]):
105
+ pulumi.set(self, "ingress_ip", value)
106
+
107
+
21
108
  @pulumi.input_type
22
109
  class JobProgressArgs:
23
110
  def __init__(__self__, *,
@@ -373,6 +460,1552 @@ class JobUnsupportedObjectArgs:
373
460
  pulumi.set(self, "type", value)
374
461
 
375
462
 
463
+ @pulumi.input_type
464
+ class MigrationAdvancedParameterArgs:
465
+ def __init__(__self__, *,
466
+ data_type: Optional[pulumi.Input[str]] = None,
467
+ name: Optional[pulumi.Input[str]] = None,
468
+ value: Optional[pulumi.Input[str]] = None):
469
+ """
470
+ :param pulumi.Input[str] data_type: (Updatable) Parameter data type.
471
+ :param pulumi.Input[str] name: (Updatable) Parameter name.
472
+ :param pulumi.Input[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.
473
+ """
474
+ if data_type is not None:
475
+ pulumi.set(__self__, "data_type", data_type)
476
+ if name is not None:
477
+ pulumi.set(__self__, "name", name)
478
+ if value is not None:
479
+ pulumi.set(__self__, "value", value)
480
+
481
+ @property
482
+ @pulumi.getter(name="dataType")
483
+ def data_type(self) -> Optional[pulumi.Input[str]]:
484
+ """
485
+ (Updatable) Parameter data type.
486
+ """
487
+ return pulumi.get(self, "data_type")
488
+
489
+ @data_type.setter
490
+ def data_type(self, value: Optional[pulumi.Input[str]]):
491
+ pulumi.set(self, "data_type", value)
492
+
493
+ @property
494
+ @pulumi.getter
495
+ def name(self) -> Optional[pulumi.Input[str]]:
496
+ """
497
+ (Updatable) Parameter name.
498
+ """
499
+ return pulumi.get(self, "name")
500
+
501
+ @name.setter
502
+ def name(self, value: Optional[pulumi.Input[str]]):
503
+ pulumi.set(self, "name", value)
504
+
505
+ @property
506
+ @pulumi.getter
507
+ def value(self) -> Optional[pulumi.Input[str]]:
508
+ """
509
+ (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.
510
+ """
511
+ return pulumi.get(self, "value")
512
+
513
+ @value.setter
514
+ def value(self, value: Optional[pulumi.Input[str]]):
515
+ pulumi.set(self, "value", value)
516
+
517
+
518
+ @pulumi.input_type
519
+ class MigrationAdvisorSettingsArgs:
520
+ def __init__(__self__, *,
521
+ is_ignore_errors: Optional[pulumi.Input[bool]] = None,
522
+ is_skip_advisor: Optional[pulumi.Input[bool]] = None):
523
+ """
524
+ :param pulumi.Input[bool] is_ignore_errors: (Updatable) True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
525
+ :param pulumi.Input[bool] is_skip_advisor: (Updatable) True to skip the Pre-Migration Advisor execution. Default is false.
526
+ """
527
+ if is_ignore_errors is not None:
528
+ pulumi.set(__self__, "is_ignore_errors", is_ignore_errors)
529
+ if is_skip_advisor is not None:
530
+ pulumi.set(__self__, "is_skip_advisor", is_skip_advisor)
531
+
532
+ @property
533
+ @pulumi.getter(name="isIgnoreErrors")
534
+ def is_ignore_errors(self) -> Optional[pulumi.Input[bool]]:
535
+ """
536
+ (Updatable) True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
537
+ """
538
+ return pulumi.get(self, "is_ignore_errors")
539
+
540
+ @is_ignore_errors.setter
541
+ def is_ignore_errors(self, value: Optional[pulumi.Input[bool]]):
542
+ pulumi.set(self, "is_ignore_errors", value)
543
+
544
+ @property
545
+ @pulumi.getter(name="isSkipAdvisor")
546
+ def is_skip_advisor(self) -> Optional[pulumi.Input[bool]]:
547
+ """
548
+ (Updatable) True to skip the Pre-Migration Advisor execution. Default is false.
549
+ """
550
+ return pulumi.get(self, "is_skip_advisor")
551
+
552
+ @is_skip_advisor.setter
553
+ def is_skip_advisor(self, value: Optional[pulumi.Input[bool]]):
554
+ pulumi.set(self, "is_skip_advisor", value)
555
+
556
+
557
+ @pulumi.input_type
558
+ class MigrationDataTransferMediumDetailsArgs:
559
+ def __init__(__self__, *,
560
+ type: pulumi.Input[str],
561
+ access_key_id: Optional[pulumi.Input[str]] = None,
562
+ name: Optional[pulumi.Input[str]] = None,
563
+ object_storage_bucket: Optional[pulumi.Input['MigrationDataTransferMediumDetailsObjectStorageBucketArgs']] = None,
564
+ region: Optional[pulumi.Input[str]] = None,
565
+ secret_access_key: Optional[pulumi.Input[str]] = None,
566
+ shared_storage_mount_target_id: Optional[pulumi.Input[str]] = None,
567
+ source: Optional[pulumi.Input['MigrationDataTransferMediumDetailsSourceArgs']] = None,
568
+ target: Optional[pulumi.Input['MigrationDataTransferMediumDetailsTargetArgs']] = None):
569
+ """
570
+ :param pulumi.Input[str] type: (Updatable) Type of the data transfer medium to use.
571
+ :param pulumi.Input[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
572
+ :param pulumi.Input[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.
573
+ :param pulumi.Input['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.
574
+ :param pulumi.Input[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
575
+ :param pulumi.Input[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
576
+ :param pulumi.Input[str] shared_storage_mount_target_id: (Updatable) OCID of the shared storage mount target
577
+ :param pulumi.Input['MigrationDataTransferMediumDetailsSourceArgs'] source: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL.
578
+ :param pulumi.Input['MigrationDataTransferMediumDetailsTargetArgs'] target: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL.
579
+ """
580
+ pulumi.set(__self__, "type", type)
581
+ if access_key_id is not None:
582
+ pulumi.set(__self__, "access_key_id", access_key_id)
583
+ if name is not None:
584
+ pulumi.set(__self__, "name", name)
585
+ if object_storage_bucket is not None:
586
+ pulumi.set(__self__, "object_storage_bucket", object_storage_bucket)
587
+ if region is not None:
588
+ pulumi.set(__self__, "region", region)
589
+ if secret_access_key is not None:
590
+ pulumi.set(__self__, "secret_access_key", secret_access_key)
591
+ if shared_storage_mount_target_id is not None:
592
+ pulumi.set(__self__, "shared_storage_mount_target_id", shared_storage_mount_target_id)
593
+ if source is not None:
594
+ pulumi.set(__self__, "source", source)
595
+ if target is not None:
596
+ pulumi.set(__self__, "target", target)
597
+
598
+ @property
599
+ @pulumi.getter
600
+ def type(self) -> pulumi.Input[str]:
601
+ """
602
+ (Updatable) Type of the data transfer medium to use.
603
+ """
604
+ return pulumi.get(self, "type")
605
+
606
+ @type.setter
607
+ def type(self, value: pulumi.Input[str]):
608
+ pulumi.set(self, "type", value)
609
+
610
+ @property
611
+ @pulumi.getter(name="accessKeyId")
612
+ def access_key_id(self) -> Optional[pulumi.Input[str]]:
613
+ """
614
+ (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
615
+ """
616
+ return pulumi.get(self, "access_key_id")
617
+
618
+ @access_key_id.setter
619
+ def access_key_id(self, value: Optional[pulumi.Input[str]]):
620
+ pulumi.set(self, "access_key_id", value)
621
+
622
+ @property
623
+ @pulumi.getter
624
+ def name(self) -> Optional[pulumi.Input[str]]:
625
+ """
626
+ (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.
627
+ """
628
+ return pulumi.get(self, "name")
629
+
630
+ @name.setter
631
+ def name(self, value: Optional[pulumi.Input[str]]):
632
+ pulumi.set(self, "name", value)
633
+
634
+ @property
635
+ @pulumi.getter(name="objectStorageBucket")
636
+ def object_storage_bucket(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsObjectStorageBucketArgs']]:
637
+ """
638
+ (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.
639
+ """
640
+ return pulumi.get(self, "object_storage_bucket")
641
+
642
+ @object_storage_bucket.setter
643
+ def object_storage_bucket(self, value: Optional[pulumi.Input['MigrationDataTransferMediumDetailsObjectStorageBucketArgs']]):
644
+ pulumi.set(self, "object_storage_bucket", value)
645
+
646
+ @property
647
+ @pulumi.getter
648
+ def region(self) -> Optional[pulumi.Input[str]]:
649
+ """
650
+ (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
651
+ """
652
+ return pulumi.get(self, "region")
653
+
654
+ @region.setter
655
+ def region(self, value: Optional[pulumi.Input[str]]):
656
+ pulumi.set(self, "region", value)
657
+
658
+ @property
659
+ @pulumi.getter(name="secretAccessKey")
660
+ def secret_access_key(self) -> Optional[pulumi.Input[str]]:
661
+ """
662
+ (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
663
+ """
664
+ return pulumi.get(self, "secret_access_key")
665
+
666
+ @secret_access_key.setter
667
+ def secret_access_key(self, value: Optional[pulumi.Input[str]]):
668
+ pulumi.set(self, "secret_access_key", value)
669
+
670
+ @property
671
+ @pulumi.getter(name="sharedStorageMountTargetId")
672
+ def shared_storage_mount_target_id(self) -> Optional[pulumi.Input[str]]:
673
+ """
674
+ (Updatable) OCID of the shared storage mount target
675
+ """
676
+ return pulumi.get(self, "shared_storage_mount_target_id")
677
+
678
+ @shared_storage_mount_target_id.setter
679
+ def shared_storage_mount_target_id(self, value: Optional[pulumi.Input[str]]):
680
+ pulumi.set(self, "shared_storage_mount_target_id", value)
681
+
682
+ @property
683
+ @pulumi.getter
684
+ def source(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsSourceArgs']]:
685
+ """
686
+ (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL.
687
+ """
688
+ return pulumi.get(self, "source")
689
+
690
+ @source.setter
691
+ def source(self, value: Optional[pulumi.Input['MigrationDataTransferMediumDetailsSourceArgs']]):
692
+ pulumi.set(self, "source", value)
693
+
694
+ @property
695
+ @pulumi.getter
696
+ def target(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsTargetArgs']]:
697
+ """
698
+ (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL.
699
+ """
700
+ return pulumi.get(self, "target")
701
+
702
+ @target.setter
703
+ def target(self, value: Optional[pulumi.Input['MigrationDataTransferMediumDetailsTargetArgs']]):
704
+ pulumi.set(self, "target", value)
705
+
706
+
707
+ @pulumi.input_type
708
+ class MigrationDataTransferMediumDetailsObjectStorageBucketArgs:
709
+ def __init__(__self__, *,
710
+ bucket: Optional[pulumi.Input[str]] = None,
711
+ namespace: Optional[pulumi.Input[str]] = None):
712
+ """
713
+ :param pulumi.Input[str] bucket: (Updatable) Bucket name.
714
+ :param pulumi.Input[str] namespace: (Updatable) Namespace name of the object store bucket.
715
+ """
716
+ if bucket is not None:
717
+ pulumi.set(__self__, "bucket", bucket)
718
+ if namespace is not None:
719
+ pulumi.set(__self__, "namespace", namespace)
720
+
721
+ @property
722
+ @pulumi.getter
723
+ def bucket(self) -> Optional[pulumi.Input[str]]:
724
+ """
725
+ (Updatable) Bucket name.
726
+ """
727
+ return pulumi.get(self, "bucket")
728
+
729
+ @bucket.setter
730
+ def bucket(self, value: Optional[pulumi.Input[str]]):
731
+ pulumi.set(self, "bucket", value)
732
+
733
+ @property
734
+ @pulumi.getter
735
+ def namespace(self) -> Optional[pulumi.Input[str]]:
736
+ """
737
+ (Updatable) Namespace name of the object store bucket.
738
+ """
739
+ return pulumi.get(self, "namespace")
740
+
741
+ @namespace.setter
742
+ def namespace(self, value: Optional[pulumi.Input[str]]):
743
+ pulumi.set(self, "namespace", value)
744
+
745
+
746
+ @pulumi.input_type
747
+ class MigrationDataTransferMediumDetailsSourceArgs:
748
+ def __init__(__self__, *,
749
+ kind: pulumi.Input[str],
750
+ oci_home: Optional[pulumi.Input[str]] = None,
751
+ wallet_location: Optional[pulumi.Input[str]] = None):
752
+ """
753
+ :param pulumi.Input[str] kind: (Updatable) Type of dump transfer to use during migration in source or target host. Default kind is CURL
754
+ :param pulumi.Input[str] oci_home: (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
755
+ :param pulumi.Input[str] wallet_location: (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
756
+ """
757
+ pulumi.set(__self__, "kind", kind)
758
+ if oci_home is not None:
759
+ pulumi.set(__self__, "oci_home", oci_home)
760
+ if wallet_location is not None:
761
+ pulumi.set(__self__, "wallet_location", wallet_location)
762
+
763
+ @property
764
+ @pulumi.getter
765
+ def kind(self) -> pulumi.Input[str]:
766
+ """
767
+ (Updatable) Type of dump transfer to use during migration in source or target host. Default kind is CURL
768
+ """
769
+ return pulumi.get(self, "kind")
770
+
771
+ @kind.setter
772
+ def kind(self, value: pulumi.Input[str]):
773
+ pulumi.set(self, "kind", value)
774
+
775
+ @property
776
+ @pulumi.getter(name="ociHome")
777
+ def oci_home(self) -> Optional[pulumi.Input[str]]:
778
+ """
779
+ (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
780
+ """
781
+ return pulumi.get(self, "oci_home")
782
+
783
+ @oci_home.setter
784
+ def oci_home(self, value: Optional[pulumi.Input[str]]):
785
+ pulumi.set(self, "oci_home", value)
786
+
787
+ @property
788
+ @pulumi.getter(name="walletLocation")
789
+ def wallet_location(self) -> Optional[pulumi.Input[str]]:
790
+ """
791
+ (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
792
+ """
793
+ return pulumi.get(self, "wallet_location")
794
+
795
+ @wallet_location.setter
796
+ def wallet_location(self, value: Optional[pulumi.Input[str]]):
797
+ pulumi.set(self, "wallet_location", value)
798
+
799
+
800
+ @pulumi.input_type
801
+ class MigrationDataTransferMediumDetailsTargetArgs:
802
+ def __init__(__self__, *,
803
+ kind: pulumi.Input[str],
804
+ oci_home: Optional[pulumi.Input[str]] = None,
805
+ wallet_location: Optional[pulumi.Input[str]] = None):
806
+ """
807
+ :param pulumi.Input[str] kind: (Updatable) Type of dump transfer to use during migration in source or target host. Default kind is CURL
808
+ :param pulumi.Input[str] oci_home: (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
809
+ :param pulumi.Input[str] wallet_location: (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
810
+ """
811
+ pulumi.set(__self__, "kind", kind)
812
+ if oci_home is not None:
813
+ pulumi.set(__self__, "oci_home", oci_home)
814
+ if wallet_location is not None:
815
+ pulumi.set(__self__, "wallet_location", wallet_location)
816
+
817
+ @property
818
+ @pulumi.getter
819
+ def kind(self) -> pulumi.Input[str]:
820
+ """
821
+ (Updatable) Type of dump transfer to use during migration in source or target host. Default kind is CURL
822
+ """
823
+ return pulumi.get(self, "kind")
824
+
825
+ @kind.setter
826
+ def kind(self, value: pulumi.Input[str]):
827
+ pulumi.set(self, "kind", value)
828
+
829
+ @property
830
+ @pulumi.getter(name="ociHome")
831
+ def oci_home(self) -> Optional[pulumi.Input[str]]:
832
+ """
833
+ (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
834
+ """
835
+ return pulumi.get(self, "oci_home")
836
+
837
+ @oci_home.setter
838
+ def oci_home(self, value: Optional[pulumi.Input[str]]):
839
+ pulumi.set(self, "oci_home", value)
840
+
841
+ @property
842
+ @pulumi.getter(name="walletLocation")
843
+ def wallet_location(self) -> Optional[pulumi.Input[str]]:
844
+ """
845
+ (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
846
+ """
847
+ return pulumi.get(self, "wallet_location")
848
+
849
+ @wallet_location.setter
850
+ def wallet_location(self, value: Optional[pulumi.Input[str]]):
851
+ pulumi.set(self, "wallet_location", value)
852
+
853
+
854
+ @pulumi.input_type
855
+ class MigrationExcludeObjectArgs:
856
+ def __init__(__self__, *,
857
+ object: pulumi.Input[str],
858
+ is_omit_excluded_table_from_replication: Optional[pulumi.Input[bool]] = None,
859
+ owner: Optional[pulumi.Input[str]] = None,
860
+ schema: Optional[pulumi.Input[str]] = None,
861
+ type: Optional[pulumi.Input[str]] = None):
862
+ """
863
+ :param pulumi.Input[str] object: Name of the object (regular expression is allowed)
864
+ :param pulumi.Input[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.
865
+ :param pulumi.Input[str] owner: Owner of the object (regular expression is allowed)
866
+ :param pulumi.Input[str] schema: Schema of the object (regular expression is allowed)
867
+ :param pulumi.Input[str] type: Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
868
+ """
869
+ pulumi.set(__self__, "object", object)
870
+ if is_omit_excluded_table_from_replication is not None:
871
+ pulumi.set(__self__, "is_omit_excluded_table_from_replication", is_omit_excluded_table_from_replication)
872
+ if owner is not None:
873
+ pulumi.set(__self__, "owner", owner)
874
+ if schema is not None:
875
+ pulumi.set(__self__, "schema", schema)
876
+ if type is not None:
877
+ pulumi.set(__self__, "type", type)
878
+
879
+ @property
880
+ @pulumi.getter
881
+ def object(self) -> pulumi.Input[str]:
882
+ """
883
+ Name of the object (regular expression is allowed)
884
+ """
885
+ return pulumi.get(self, "object")
886
+
887
+ @object.setter
888
+ def object(self, value: pulumi.Input[str]):
889
+ pulumi.set(self, "object", value)
890
+
891
+ @property
892
+ @pulumi.getter(name="isOmitExcludedTableFromReplication")
893
+ def is_omit_excluded_table_from_replication(self) -> Optional[pulumi.Input[bool]]:
894
+ """
895
+ Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and object status EXCLUDE.
896
+ """
897
+ return pulumi.get(self, "is_omit_excluded_table_from_replication")
898
+
899
+ @is_omit_excluded_table_from_replication.setter
900
+ def is_omit_excluded_table_from_replication(self, value: Optional[pulumi.Input[bool]]):
901
+ pulumi.set(self, "is_omit_excluded_table_from_replication", value)
902
+
903
+ @property
904
+ @pulumi.getter
905
+ def owner(self) -> Optional[pulumi.Input[str]]:
906
+ """
907
+ Owner of the object (regular expression is allowed)
908
+ """
909
+ return pulumi.get(self, "owner")
910
+
911
+ @owner.setter
912
+ def owner(self, value: Optional[pulumi.Input[str]]):
913
+ pulumi.set(self, "owner", value)
914
+
915
+ @property
916
+ @pulumi.getter
917
+ def schema(self) -> Optional[pulumi.Input[str]]:
918
+ """
919
+ Schema of the object (regular expression is allowed)
920
+ """
921
+ return pulumi.get(self, "schema")
922
+
923
+ @schema.setter
924
+ def schema(self, value: Optional[pulumi.Input[str]]):
925
+ pulumi.set(self, "schema", value)
926
+
927
+ @property
928
+ @pulumi.getter
929
+ def type(self) -> Optional[pulumi.Input[str]]:
930
+ """
931
+ Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
932
+ """
933
+ return pulumi.get(self, "type")
934
+
935
+ @type.setter
936
+ def type(self, value: Optional[pulumi.Input[str]]):
937
+ pulumi.set(self, "type", value)
938
+
939
+
940
+ @pulumi.input_type
941
+ class MigrationGgsDetailsArgs:
942
+ def __init__(__self__, *,
943
+ acceptable_lag: Optional[pulumi.Input[int]] = None,
944
+ extract: Optional[pulumi.Input['MigrationGgsDetailsExtractArgs']] = None,
945
+ ggs_deployments: Optional[pulumi.Input[Sequence[pulumi.Input['MigrationGgsDetailsGgsDeploymentArgs']]]] = None,
946
+ replicat: Optional[pulumi.Input['MigrationGgsDetailsReplicatArgs']] = None):
947
+ """
948
+ :param pulumi.Input[int] acceptable_lag: (Updatable) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
949
+ :param pulumi.Input['MigrationGgsDetailsExtractArgs'] extract: (Updatable) Parameters for GoldenGate Extract processes.
950
+ :param pulumi.Input[Sequence[pulumi.Input['MigrationGgsDetailsGgsDeploymentArgs']]] ggs_deployments: Details about Oracle GoldenGate GGS Deployment.
951
+ :param pulumi.Input['MigrationGgsDetailsReplicatArgs'] replicat: (Updatable) Parameters for GoldenGate Replicat processes.
952
+ """
953
+ if acceptable_lag is not None:
954
+ pulumi.set(__self__, "acceptable_lag", acceptable_lag)
955
+ if extract is not None:
956
+ pulumi.set(__self__, "extract", extract)
957
+ if ggs_deployments is not None:
958
+ pulumi.set(__self__, "ggs_deployments", ggs_deployments)
959
+ if replicat is not None:
960
+ pulumi.set(__self__, "replicat", replicat)
961
+
962
+ @property
963
+ @pulumi.getter(name="acceptableLag")
964
+ def acceptable_lag(self) -> Optional[pulumi.Input[int]]:
965
+ """
966
+ (Updatable) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
967
+ """
968
+ return pulumi.get(self, "acceptable_lag")
969
+
970
+ @acceptable_lag.setter
971
+ def acceptable_lag(self, value: Optional[pulumi.Input[int]]):
972
+ pulumi.set(self, "acceptable_lag", value)
973
+
974
+ @property
975
+ @pulumi.getter
976
+ def extract(self) -> Optional[pulumi.Input['MigrationGgsDetailsExtractArgs']]:
977
+ """
978
+ (Updatable) Parameters for GoldenGate Extract processes.
979
+ """
980
+ return pulumi.get(self, "extract")
981
+
982
+ @extract.setter
983
+ def extract(self, value: Optional[pulumi.Input['MigrationGgsDetailsExtractArgs']]):
984
+ pulumi.set(self, "extract", value)
985
+
986
+ @property
987
+ @pulumi.getter(name="ggsDeployments")
988
+ def ggs_deployments(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MigrationGgsDetailsGgsDeploymentArgs']]]]:
989
+ """
990
+ Details about Oracle GoldenGate GGS Deployment.
991
+ """
992
+ return pulumi.get(self, "ggs_deployments")
993
+
994
+ @ggs_deployments.setter
995
+ def ggs_deployments(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MigrationGgsDetailsGgsDeploymentArgs']]]]):
996
+ pulumi.set(self, "ggs_deployments", value)
997
+
998
+ @property
999
+ @pulumi.getter
1000
+ def replicat(self) -> Optional[pulumi.Input['MigrationGgsDetailsReplicatArgs']]:
1001
+ """
1002
+ (Updatable) Parameters for GoldenGate Replicat processes.
1003
+ """
1004
+ return pulumi.get(self, "replicat")
1005
+
1006
+ @replicat.setter
1007
+ def replicat(self, value: Optional[pulumi.Input['MigrationGgsDetailsReplicatArgs']]):
1008
+ pulumi.set(self, "replicat", value)
1009
+
1010
+
1011
+ @pulumi.input_type
1012
+ class MigrationGgsDetailsExtractArgs:
1013
+ def __init__(__self__, *,
1014
+ long_trans_duration: Optional[pulumi.Input[int]] = None,
1015
+ performance_profile: Optional[pulumi.Input[str]] = None):
1016
+ """
1017
+ :param pulumi.Input[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.
1018
+ :param pulumi.Input[str] performance_profile: (Updatable) Extract performance.
1019
+ """
1020
+ if long_trans_duration is not None:
1021
+ pulumi.set(__self__, "long_trans_duration", long_trans_duration)
1022
+ if performance_profile is not None:
1023
+ pulumi.set(__self__, "performance_profile", performance_profile)
1024
+
1025
+ @property
1026
+ @pulumi.getter(name="longTransDuration")
1027
+ def long_trans_duration(self) -> Optional[pulumi.Input[int]]:
1028
+ """
1029
+ (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.
1030
+ """
1031
+ return pulumi.get(self, "long_trans_duration")
1032
+
1033
+ @long_trans_duration.setter
1034
+ def long_trans_duration(self, value: Optional[pulumi.Input[int]]):
1035
+ pulumi.set(self, "long_trans_duration", value)
1036
+
1037
+ @property
1038
+ @pulumi.getter(name="performanceProfile")
1039
+ def performance_profile(self) -> Optional[pulumi.Input[str]]:
1040
+ """
1041
+ (Updatable) Extract performance.
1042
+ """
1043
+ return pulumi.get(self, "performance_profile")
1044
+
1045
+ @performance_profile.setter
1046
+ def performance_profile(self, value: Optional[pulumi.Input[str]]):
1047
+ pulumi.set(self, "performance_profile", value)
1048
+
1049
+
1050
+ @pulumi.input_type
1051
+ class MigrationGgsDetailsGgsDeploymentArgs:
1052
+ def __init__(__self__, *,
1053
+ deployment_id: Optional[pulumi.Input[str]] = None,
1054
+ ggs_admin_credentials_secret_id: Optional[pulumi.Input[str]] = None):
1055
+ """
1056
+ :param pulumi.Input[str] deployment_id: The OCID of the resource being referenced.
1057
+ :param pulumi.Input[str] ggs_admin_credentials_secret_id: The OCID of the resource being referenced.
1058
+ """
1059
+ if deployment_id is not None:
1060
+ pulumi.set(__self__, "deployment_id", deployment_id)
1061
+ if ggs_admin_credentials_secret_id is not None:
1062
+ pulumi.set(__self__, "ggs_admin_credentials_secret_id", ggs_admin_credentials_secret_id)
1063
+
1064
+ @property
1065
+ @pulumi.getter(name="deploymentId")
1066
+ def deployment_id(self) -> Optional[pulumi.Input[str]]:
1067
+ """
1068
+ The OCID of the resource being referenced.
1069
+ """
1070
+ return pulumi.get(self, "deployment_id")
1071
+
1072
+ @deployment_id.setter
1073
+ def deployment_id(self, value: Optional[pulumi.Input[str]]):
1074
+ pulumi.set(self, "deployment_id", value)
1075
+
1076
+ @property
1077
+ @pulumi.getter(name="ggsAdminCredentialsSecretId")
1078
+ def ggs_admin_credentials_secret_id(self) -> Optional[pulumi.Input[str]]:
1079
+ """
1080
+ The OCID of the resource being referenced.
1081
+ """
1082
+ return pulumi.get(self, "ggs_admin_credentials_secret_id")
1083
+
1084
+ @ggs_admin_credentials_secret_id.setter
1085
+ def ggs_admin_credentials_secret_id(self, value: Optional[pulumi.Input[str]]):
1086
+ pulumi.set(self, "ggs_admin_credentials_secret_id", value)
1087
+
1088
+
1089
+ @pulumi.input_type
1090
+ class MigrationGgsDetailsReplicatArgs:
1091
+ def __init__(__self__, *,
1092
+ performance_profile: Optional[pulumi.Input[str]] = None):
1093
+ """
1094
+ :param pulumi.Input[str] performance_profile: (Updatable) Replicat performance.
1095
+ """
1096
+ if performance_profile is not None:
1097
+ pulumi.set(__self__, "performance_profile", performance_profile)
1098
+
1099
+ @property
1100
+ @pulumi.getter(name="performanceProfile")
1101
+ def performance_profile(self) -> Optional[pulumi.Input[str]]:
1102
+ """
1103
+ (Updatable) Replicat performance.
1104
+ """
1105
+ return pulumi.get(self, "performance_profile")
1106
+
1107
+ @performance_profile.setter
1108
+ def performance_profile(self, value: Optional[pulumi.Input[str]]):
1109
+ pulumi.set(self, "performance_profile", value)
1110
+
1111
+
1112
+ @pulumi.input_type
1113
+ class MigrationHubDetailsArgs:
1114
+ def __init__(__self__, *,
1115
+ key_id: pulumi.Input[str],
1116
+ rest_admin_credentials: pulumi.Input['MigrationHubDetailsRestAdminCredentialsArgs'],
1117
+ url: pulumi.Input[str],
1118
+ vault_id: pulumi.Input[str],
1119
+ acceptable_lag: Optional[pulumi.Input[int]] = None,
1120
+ compute_id: Optional[pulumi.Input[str]] = None,
1121
+ extract: Optional[pulumi.Input['MigrationHubDetailsExtractArgs']] = None,
1122
+ replicat: Optional[pulumi.Input['MigrationHubDetailsReplicatArgs']] = None):
1123
+ """
1124
+ :param pulumi.Input[str] key_id: (Updatable) The OCID of the resource being referenced.
1125
+ :param pulumi.Input['MigrationHubDetailsRestAdminCredentialsArgs'] rest_admin_credentials: (Updatable) Database Administrator Credentials details.
1126
+ :param pulumi.Input[str] url: (Updatable) Endpoint URL.
1127
+ :param pulumi.Input[str] vault_id: (Updatable) The OCID of the resource being referenced.
1128
+ :param pulumi.Input[int] acceptable_lag: (Updatable) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
1129
+ :param pulumi.Input[str] compute_id: (Updatable) The OCID of the resource being referenced.
1130
+ :param pulumi.Input['MigrationHubDetailsExtractArgs'] extract: (Updatable) Parameters for GoldenGate Extract processes.
1131
+ :param pulumi.Input['MigrationHubDetailsReplicatArgs'] replicat: (Updatable) Parameters for GoldenGate Replicat processes.
1132
+ """
1133
+ pulumi.set(__self__, "key_id", key_id)
1134
+ pulumi.set(__self__, "rest_admin_credentials", rest_admin_credentials)
1135
+ pulumi.set(__self__, "url", url)
1136
+ pulumi.set(__self__, "vault_id", vault_id)
1137
+ if acceptable_lag is not None:
1138
+ pulumi.set(__self__, "acceptable_lag", acceptable_lag)
1139
+ if compute_id is not None:
1140
+ pulumi.set(__self__, "compute_id", compute_id)
1141
+ if extract is not None:
1142
+ pulumi.set(__self__, "extract", extract)
1143
+ if replicat is not None:
1144
+ pulumi.set(__self__, "replicat", replicat)
1145
+
1146
+ @property
1147
+ @pulumi.getter(name="keyId")
1148
+ def key_id(self) -> pulumi.Input[str]:
1149
+ """
1150
+ (Updatable) The OCID of the resource being referenced.
1151
+ """
1152
+ return pulumi.get(self, "key_id")
1153
+
1154
+ @key_id.setter
1155
+ def key_id(self, value: pulumi.Input[str]):
1156
+ pulumi.set(self, "key_id", value)
1157
+
1158
+ @property
1159
+ @pulumi.getter(name="restAdminCredentials")
1160
+ def rest_admin_credentials(self) -> pulumi.Input['MigrationHubDetailsRestAdminCredentialsArgs']:
1161
+ """
1162
+ (Updatable) Database Administrator Credentials details.
1163
+ """
1164
+ return pulumi.get(self, "rest_admin_credentials")
1165
+
1166
+ @rest_admin_credentials.setter
1167
+ def rest_admin_credentials(self, value: pulumi.Input['MigrationHubDetailsRestAdminCredentialsArgs']):
1168
+ pulumi.set(self, "rest_admin_credentials", value)
1169
+
1170
+ @property
1171
+ @pulumi.getter
1172
+ def url(self) -> pulumi.Input[str]:
1173
+ """
1174
+ (Updatable) Endpoint URL.
1175
+ """
1176
+ return pulumi.get(self, "url")
1177
+
1178
+ @url.setter
1179
+ def url(self, value: pulumi.Input[str]):
1180
+ pulumi.set(self, "url", value)
1181
+
1182
+ @property
1183
+ @pulumi.getter(name="vaultId")
1184
+ def vault_id(self) -> pulumi.Input[str]:
1185
+ """
1186
+ (Updatable) The OCID of the resource being referenced.
1187
+ """
1188
+ return pulumi.get(self, "vault_id")
1189
+
1190
+ @vault_id.setter
1191
+ def vault_id(self, value: pulumi.Input[str]):
1192
+ pulumi.set(self, "vault_id", value)
1193
+
1194
+ @property
1195
+ @pulumi.getter(name="acceptableLag")
1196
+ def acceptable_lag(self) -> Optional[pulumi.Input[int]]:
1197
+ """
1198
+ (Updatable) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
1199
+ """
1200
+ return pulumi.get(self, "acceptable_lag")
1201
+
1202
+ @acceptable_lag.setter
1203
+ def acceptable_lag(self, value: Optional[pulumi.Input[int]]):
1204
+ pulumi.set(self, "acceptable_lag", value)
1205
+
1206
+ @property
1207
+ @pulumi.getter(name="computeId")
1208
+ def compute_id(self) -> Optional[pulumi.Input[str]]:
1209
+ """
1210
+ (Updatable) The OCID of the resource being referenced.
1211
+ """
1212
+ return pulumi.get(self, "compute_id")
1213
+
1214
+ @compute_id.setter
1215
+ def compute_id(self, value: Optional[pulumi.Input[str]]):
1216
+ pulumi.set(self, "compute_id", value)
1217
+
1218
+ @property
1219
+ @pulumi.getter
1220
+ def extract(self) -> Optional[pulumi.Input['MigrationHubDetailsExtractArgs']]:
1221
+ """
1222
+ (Updatable) Parameters for GoldenGate Extract processes.
1223
+ """
1224
+ return pulumi.get(self, "extract")
1225
+
1226
+ @extract.setter
1227
+ def extract(self, value: Optional[pulumi.Input['MigrationHubDetailsExtractArgs']]):
1228
+ pulumi.set(self, "extract", value)
1229
+
1230
+ @property
1231
+ @pulumi.getter
1232
+ def replicat(self) -> Optional[pulumi.Input['MigrationHubDetailsReplicatArgs']]:
1233
+ """
1234
+ (Updatable) Parameters for GoldenGate Replicat processes.
1235
+ """
1236
+ return pulumi.get(self, "replicat")
1237
+
1238
+ @replicat.setter
1239
+ def replicat(self, value: Optional[pulumi.Input['MigrationHubDetailsReplicatArgs']]):
1240
+ pulumi.set(self, "replicat", value)
1241
+
1242
+
1243
+ @pulumi.input_type
1244
+ class MigrationHubDetailsExtractArgs:
1245
+ def __init__(__self__, *,
1246
+ long_trans_duration: Optional[pulumi.Input[int]] = None,
1247
+ performance_profile: Optional[pulumi.Input[str]] = None):
1248
+ """
1249
+ :param pulumi.Input[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.
1250
+ :param pulumi.Input[str] performance_profile: (Updatable) Extract performance.
1251
+ """
1252
+ if long_trans_duration is not None:
1253
+ pulumi.set(__self__, "long_trans_duration", long_trans_duration)
1254
+ if performance_profile is not None:
1255
+ pulumi.set(__self__, "performance_profile", performance_profile)
1256
+
1257
+ @property
1258
+ @pulumi.getter(name="longTransDuration")
1259
+ def long_trans_duration(self) -> Optional[pulumi.Input[int]]:
1260
+ """
1261
+ (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.
1262
+ """
1263
+ return pulumi.get(self, "long_trans_duration")
1264
+
1265
+ @long_trans_duration.setter
1266
+ def long_trans_duration(self, value: Optional[pulumi.Input[int]]):
1267
+ pulumi.set(self, "long_trans_duration", value)
1268
+
1269
+ @property
1270
+ @pulumi.getter(name="performanceProfile")
1271
+ def performance_profile(self) -> Optional[pulumi.Input[str]]:
1272
+ """
1273
+ (Updatable) Extract performance.
1274
+ """
1275
+ return pulumi.get(self, "performance_profile")
1276
+
1277
+ @performance_profile.setter
1278
+ def performance_profile(self, value: Optional[pulumi.Input[str]]):
1279
+ pulumi.set(self, "performance_profile", value)
1280
+
1281
+
1282
+ @pulumi.input_type
1283
+ class MigrationHubDetailsReplicatArgs:
1284
+ def __init__(__self__, *,
1285
+ performance_profile: Optional[pulumi.Input[str]] = None):
1286
+ """
1287
+ :param pulumi.Input[str] performance_profile: (Updatable) Replicat performance.
1288
+ """
1289
+ if performance_profile is not None:
1290
+ pulumi.set(__self__, "performance_profile", performance_profile)
1291
+
1292
+ @property
1293
+ @pulumi.getter(name="performanceProfile")
1294
+ def performance_profile(self) -> Optional[pulumi.Input[str]]:
1295
+ """
1296
+ (Updatable) Replicat performance.
1297
+ """
1298
+ return pulumi.get(self, "performance_profile")
1299
+
1300
+ @performance_profile.setter
1301
+ def performance_profile(self, value: Optional[pulumi.Input[str]]):
1302
+ pulumi.set(self, "performance_profile", value)
1303
+
1304
+
1305
+ @pulumi.input_type
1306
+ class MigrationHubDetailsRestAdminCredentialsArgs:
1307
+ def __init__(__self__, *,
1308
+ password: pulumi.Input[str],
1309
+ username: pulumi.Input[str]):
1310
+ """
1311
+ :param pulumi.Input[str] password: (Updatable) Administrator password
1312
+ :param pulumi.Input[str] username: (Updatable) Administrator username
1313
+ """
1314
+ pulumi.set(__self__, "password", password)
1315
+ pulumi.set(__self__, "username", username)
1316
+
1317
+ @property
1318
+ @pulumi.getter
1319
+ def password(self) -> pulumi.Input[str]:
1320
+ """
1321
+ (Updatable) Administrator password
1322
+ """
1323
+ return pulumi.get(self, "password")
1324
+
1325
+ @password.setter
1326
+ def password(self, value: pulumi.Input[str]):
1327
+ pulumi.set(self, "password", value)
1328
+
1329
+ @property
1330
+ @pulumi.getter
1331
+ def username(self) -> pulumi.Input[str]:
1332
+ """
1333
+ (Updatable) Administrator username
1334
+ """
1335
+ return pulumi.get(self, "username")
1336
+
1337
+ @username.setter
1338
+ def username(self, value: pulumi.Input[str]):
1339
+ pulumi.set(self, "username", value)
1340
+
1341
+
1342
+ @pulumi.input_type
1343
+ class MigrationIncludeObjectArgs:
1344
+ def __init__(__self__, *,
1345
+ object: pulumi.Input[str],
1346
+ is_omit_excluded_table_from_replication: Optional[pulumi.Input[bool]] = None,
1347
+ owner: Optional[pulumi.Input[str]] = None,
1348
+ schema: Optional[pulumi.Input[str]] = None,
1349
+ type: Optional[pulumi.Input[str]] = None):
1350
+ """
1351
+ :param pulumi.Input[str] object: Name of the object (regular expression is allowed)
1352
+ :param pulumi.Input[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.
1353
+ :param pulumi.Input[str] owner: Owner of the object (regular expression is allowed)
1354
+ :param pulumi.Input[str] schema: Schema of the object (regular expression is allowed)
1355
+ :param pulumi.Input[str] type: Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
1356
+ """
1357
+ pulumi.set(__self__, "object", object)
1358
+ if is_omit_excluded_table_from_replication is not None:
1359
+ pulumi.set(__self__, "is_omit_excluded_table_from_replication", is_omit_excluded_table_from_replication)
1360
+ if owner is not None:
1361
+ pulumi.set(__self__, "owner", owner)
1362
+ if schema is not None:
1363
+ pulumi.set(__self__, "schema", schema)
1364
+ if type is not None:
1365
+ pulumi.set(__self__, "type", type)
1366
+
1367
+ @property
1368
+ @pulumi.getter
1369
+ def object(self) -> pulumi.Input[str]:
1370
+ """
1371
+ Name of the object (regular expression is allowed)
1372
+ """
1373
+ return pulumi.get(self, "object")
1374
+
1375
+ @object.setter
1376
+ def object(self, value: pulumi.Input[str]):
1377
+ pulumi.set(self, "object", value)
1378
+
1379
+ @property
1380
+ @pulumi.getter(name="isOmitExcludedTableFromReplication")
1381
+ def is_omit_excluded_table_from_replication(self) -> Optional[pulumi.Input[bool]]:
1382
+ """
1383
+ Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and object status EXCLUDE.
1384
+ """
1385
+ return pulumi.get(self, "is_omit_excluded_table_from_replication")
1386
+
1387
+ @is_omit_excluded_table_from_replication.setter
1388
+ def is_omit_excluded_table_from_replication(self, value: Optional[pulumi.Input[bool]]):
1389
+ pulumi.set(self, "is_omit_excluded_table_from_replication", value)
1390
+
1391
+ @property
1392
+ @pulumi.getter
1393
+ def owner(self) -> Optional[pulumi.Input[str]]:
1394
+ """
1395
+ Owner of the object (regular expression is allowed)
1396
+ """
1397
+ return pulumi.get(self, "owner")
1398
+
1399
+ @owner.setter
1400
+ def owner(self, value: Optional[pulumi.Input[str]]):
1401
+ pulumi.set(self, "owner", value)
1402
+
1403
+ @property
1404
+ @pulumi.getter
1405
+ def schema(self) -> Optional[pulumi.Input[str]]:
1406
+ """
1407
+ Schema of the object (regular expression is allowed)
1408
+ """
1409
+ return pulumi.get(self, "schema")
1410
+
1411
+ @schema.setter
1412
+ def schema(self, value: Optional[pulumi.Input[str]]):
1413
+ pulumi.set(self, "schema", value)
1414
+
1415
+ @property
1416
+ @pulumi.getter
1417
+ def type(self) -> Optional[pulumi.Input[str]]:
1418
+ """
1419
+ Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
1420
+ """
1421
+ return pulumi.get(self, "type")
1422
+
1423
+ @type.setter
1424
+ def type(self, value: Optional[pulumi.Input[str]]):
1425
+ pulumi.set(self, "type", value)
1426
+
1427
+
1428
+ @pulumi.input_type
1429
+ class MigrationInitialLoadSettingsArgs:
1430
+ def __init__(__self__, *,
1431
+ job_mode: pulumi.Input[str],
1432
+ compatibilities: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1433
+ data_pump_parameters: Optional[pulumi.Input['MigrationInitialLoadSettingsDataPumpParametersArgs']] = None,
1434
+ export_directory_object: Optional[pulumi.Input['MigrationInitialLoadSettingsExportDirectoryObjectArgs']] = None,
1435
+ handle_grant_errors: Optional[pulumi.Input[str]] = None,
1436
+ import_directory_object: Optional[pulumi.Input['MigrationInitialLoadSettingsImportDirectoryObjectArgs']] = None,
1437
+ is_consistent: Optional[pulumi.Input[bool]] = None,
1438
+ is_ignore_existing_objects: Optional[pulumi.Input[bool]] = None,
1439
+ is_tz_utc: Optional[pulumi.Input[bool]] = None,
1440
+ metadata_remaps: Optional[pulumi.Input[Sequence[pulumi.Input['MigrationInitialLoadSettingsMetadataRemapArgs']]]] = None,
1441
+ primary_key_compatibility: Optional[pulumi.Input[str]] = None,
1442
+ tablespace_details: Optional[pulumi.Input['MigrationInitialLoadSettingsTablespaceDetailsArgs']] = None):
1443
+ """
1444
+ :param pulumi.Input[str] job_mode: (Updatable) Oracle Job Mode
1445
+ :param pulumi.Input[Sequence[pulumi.Input[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.
1446
+ :param pulumi.Input['MigrationInitialLoadSettingsDataPumpParametersArgs'] data_pump_parameters: (Updatable) Optional parameters for Data Pump Export and Import.
1447
+ :param pulumi.Input['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.
1448
+ :param pulumi.Input[str] handle_grant_errors: (Updatable) The action taken in the event of errors related to GRANT or REVOKE errors.
1449
+ :param pulumi.Input['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.
1450
+ :param pulumi.Input[bool] is_consistent: (Updatable) Enable (true) or disable (false) consistent data dumps by locking the instance for backup during the dump.
1451
+ :param pulumi.Input[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.
1452
+ :param pulumi.Input[bool] is_tz_utc: (Updatable) Include a statement at the start of the dump to set the time zone to UTC.
1453
+ :param pulumi.Input[Sequence[pulumi.Input['MigrationInitialLoadSettingsMetadataRemapArgs']]] metadata_remaps: (Updatable) Defines remapping to be applied to objects as they are processed.
1454
+ :param pulumi.Input[str] primary_key_compatibility: (Updatable) Primary key compatibility option
1455
+ :param pulumi.Input['MigrationInitialLoadSettingsTablespaceDetailsArgs'] tablespace_details: (Updatable) Migration tablespace settings.
1456
+ """
1457
+ pulumi.set(__self__, "job_mode", job_mode)
1458
+ if compatibilities is not None:
1459
+ pulumi.set(__self__, "compatibilities", compatibilities)
1460
+ if data_pump_parameters is not None:
1461
+ pulumi.set(__self__, "data_pump_parameters", data_pump_parameters)
1462
+ if export_directory_object is not None:
1463
+ pulumi.set(__self__, "export_directory_object", export_directory_object)
1464
+ if handle_grant_errors is not None:
1465
+ pulumi.set(__self__, "handle_grant_errors", handle_grant_errors)
1466
+ if import_directory_object is not None:
1467
+ pulumi.set(__self__, "import_directory_object", import_directory_object)
1468
+ if is_consistent is not None:
1469
+ pulumi.set(__self__, "is_consistent", is_consistent)
1470
+ if is_ignore_existing_objects is not None:
1471
+ pulumi.set(__self__, "is_ignore_existing_objects", is_ignore_existing_objects)
1472
+ if is_tz_utc is not None:
1473
+ pulumi.set(__self__, "is_tz_utc", is_tz_utc)
1474
+ if metadata_remaps is not None:
1475
+ pulumi.set(__self__, "metadata_remaps", metadata_remaps)
1476
+ if primary_key_compatibility is not None:
1477
+ pulumi.set(__self__, "primary_key_compatibility", primary_key_compatibility)
1478
+ if tablespace_details is not None:
1479
+ pulumi.set(__self__, "tablespace_details", tablespace_details)
1480
+
1481
+ @property
1482
+ @pulumi.getter(name="jobMode")
1483
+ def job_mode(self) -> pulumi.Input[str]:
1484
+ """
1485
+ (Updatable) Oracle Job Mode
1486
+ """
1487
+ return pulumi.get(self, "job_mode")
1488
+
1489
+ @job_mode.setter
1490
+ def job_mode(self, value: pulumi.Input[str]):
1491
+ pulumi.set(self, "job_mode", value)
1492
+
1493
+ @property
1494
+ @pulumi.getter
1495
+ def compatibilities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1496
+ """
1497
+ (Updatable) Apply the specified requirements for compatibility with MySQL Database Service for all tables in the dump output, altering the dump files as necessary.
1498
+ """
1499
+ return pulumi.get(self, "compatibilities")
1500
+
1501
+ @compatibilities.setter
1502
+ def compatibilities(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1503
+ pulumi.set(self, "compatibilities", value)
1504
+
1505
+ @property
1506
+ @pulumi.getter(name="dataPumpParameters")
1507
+ def data_pump_parameters(self) -> Optional[pulumi.Input['MigrationInitialLoadSettingsDataPumpParametersArgs']]:
1508
+ """
1509
+ (Updatable) Optional parameters for Data Pump Export and Import.
1510
+ """
1511
+ return pulumi.get(self, "data_pump_parameters")
1512
+
1513
+ @data_pump_parameters.setter
1514
+ def data_pump_parameters(self, value: Optional[pulumi.Input['MigrationInitialLoadSettingsDataPumpParametersArgs']]):
1515
+ pulumi.set(self, "data_pump_parameters", value)
1516
+
1517
+ @property
1518
+ @pulumi.getter(name="exportDirectoryObject")
1519
+ def export_directory_object(self) -> Optional[pulumi.Input['MigrationInitialLoadSettingsExportDirectoryObjectArgs']]:
1520
+ """
1521
+ (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.
1522
+ """
1523
+ return pulumi.get(self, "export_directory_object")
1524
+
1525
+ @export_directory_object.setter
1526
+ def export_directory_object(self, value: Optional[pulumi.Input['MigrationInitialLoadSettingsExportDirectoryObjectArgs']]):
1527
+ pulumi.set(self, "export_directory_object", value)
1528
+
1529
+ @property
1530
+ @pulumi.getter(name="handleGrantErrors")
1531
+ def handle_grant_errors(self) -> Optional[pulumi.Input[str]]:
1532
+ """
1533
+ (Updatable) The action taken in the event of errors related to GRANT or REVOKE errors.
1534
+ """
1535
+ return pulumi.get(self, "handle_grant_errors")
1536
+
1537
+ @handle_grant_errors.setter
1538
+ def handle_grant_errors(self, value: Optional[pulumi.Input[str]]):
1539
+ pulumi.set(self, "handle_grant_errors", value)
1540
+
1541
+ @property
1542
+ @pulumi.getter(name="importDirectoryObject")
1543
+ def import_directory_object(self) -> Optional[pulumi.Input['MigrationInitialLoadSettingsImportDirectoryObjectArgs']]:
1544
+ """
1545
+ (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.
1546
+ """
1547
+ return pulumi.get(self, "import_directory_object")
1548
+
1549
+ @import_directory_object.setter
1550
+ def import_directory_object(self, value: Optional[pulumi.Input['MigrationInitialLoadSettingsImportDirectoryObjectArgs']]):
1551
+ pulumi.set(self, "import_directory_object", value)
1552
+
1553
+ @property
1554
+ @pulumi.getter(name="isConsistent")
1555
+ def is_consistent(self) -> Optional[pulumi.Input[bool]]:
1556
+ """
1557
+ (Updatable) Enable (true) or disable (false) consistent data dumps by locking the instance for backup during the dump.
1558
+ """
1559
+ return pulumi.get(self, "is_consistent")
1560
+
1561
+ @is_consistent.setter
1562
+ def is_consistent(self, value: Optional[pulumi.Input[bool]]):
1563
+ pulumi.set(self, "is_consistent", value)
1564
+
1565
+ @property
1566
+ @pulumi.getter(name="isIgnoreExistingObjects")
1567
+ def is_ignore_existing_objects(self) -> Optional[pulumi.Input[bool]]:
1568
+ """
1569
+ (Updatable) Import the dump even if it contains objects that already exist in the target schema in the MySQL instance.
1570
+ """
1571
+ return pulumi.get(self, "is_ignore_existing_objects")
1572
+
1573
+ @is_ignore_existing_objects.setter
1574
+ def is_ignore_existing_objects(self, value: Optional[pulumi.Input[bool]]):
1575
+ pulumi.set(self, "is_ignore_existing_objects", value)
1576
+
1577
+ @property
1578
+ @pulumi.getter(name="isTzUtc")
1579
+ def is_tz_utc(self) -> Optional[pulumi.Input[bool]]:
1580
+ """
1581
+ (Updatable) Include a statement at the start of the dump to set the time zone to UTC.
1582
+ """
1583
+ return pulumi.get(self, "is_tz_utc")
1584
+
1585
+ @is_tz_utc.setter
1586
+ def is_tz_utc(self, value: Optional[pulumi.Input[bool]]):
1587
+ pulumi.set(self, "is_tz_utc", value)
1588
+
1589
+ @property
1590
+ @pulumi.getter(name="metadataRemaps")
1591
+ def metadata_remaps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MigrationInitialLoadSettingsMetadataRemapArgs']]]]:
1592
+ """
1593
+ (Updatable) Defines remapping to be applied to objects as they are processed.
1594
+ """
1595
+ return pulumi.get(self, "metadata_remaps")
1596
+
1597
+ @metadata_remaps.setter
1598
+ def metadata_remaps(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MigrationInitialLoadSettingsMetadataRemapArgs']]]]):
1599
+ pulumi.set(self, "metadata_remaps", value)
1600
+
1601
+ @property
1602
+ @pulumi.getter(name="primaryKeyCompatibility")
1603
+ def primary_key_compatibility(self) -> Optional[pulumi.Input[str]]:
1604
+ """
1605
+ (Updatable) Primary key compatibility option
1606
+ """
1607
+ return pulumi.get(self, "primary_key_compatibility")
1608
+
1609
+ @primary_key_compatibility.setter
1610
+ def primary_key_compatibility(self, value: Optional[pulumi.Input[str]]):
1611
+ pulumi.set(self, "primary_key_compatibility", value)
1612
+
1613
+ @property
1614
+ @pulumi.getter(name="tablespaceDetails")
1615
+ def tablespace_details(self) -> Optional[pulumi.Input['MigrationInitialLoadSettingsTablespaceDetailsArgs']]:
1616
+ """
1617
+ (Updatable) Migration tablespace settings.
1618
+ """
1619
+ return pulumi.get(self, "tablespace_details")
1620
+
1621
+ @tablespace_details.setter
1622
+ def tablespace_details(self, value: Optional[pulumi.Input['MigrationInitialLoadSettingsTablespaceDetailsArgs']]):
1623
+ pulumi.set(self, "tablespace_details", value)
1624
+
1625
+
1626
+ @pulumi.input_type
1627
+ class MigrationInitialLoadSettingsDataPumpParametersArgs:
1628
+ def __init__(__self__, *,
1629
+ estimate: Optional[pulumi.Input[str]] = None,
1630
+ exclude_parameters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1631
+ export_parallelism_degree: Optional[pulumi.Input[int]] = None,
1632
+ import_parallelism_degree: Optional[pulumi.Input[int]] = None,
1633
+ is_cluster: Optional[pulumi.Input[bool]] = None,
1634
+ table_exists_action: Optional[pulumi.Input[str]] = None):
1635
+ """
1636
+ :param pulumi.Input[str] estimate: (Updatable) Estimate size of dumps that will be generated.
1637
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_parameters: (Updatable) Exclude paratemers for Export and Import.
1638
+ :param pulumi.Input[int] export_parallelism_degree: (Updatable) Maximum number of worker processes that can be used for a Data Pump Export job.
1639
+ :param pulumi.Input[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.
1640
+ :param pulumi.Input[bool] is_cluster: (Updatable) Set to false to force Data Pump worker process to run on one instance.
1641
+ :param pulumi.Input[str] table_exists_action: (Updatable) IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
1642
+ """
1643
+ if estimate is not None:
1644
+ pulumi.set(__self__, "estimate", estimate)
1645
+ if exclude_parameters is not None:
1646
+ pulumi.set(__self__, "exclude_parameters", exclude_parameters)
1647
+ if export_parallelism_degree is not None:
1648
+ pulumi.set(__self__, "export_parallelism_degree", export_parallelism_degree)
1649
+ if import_parallelism_degree is not None:
1650
+ pulumi.set(__self__, "import_parallelism_degree", import_parallelism_degree)
1651
+ if is_cluster is not None:
1652
+ pulumi.set(__self__, "is_cluster", is_cluster)
1653
+ if table_exists_action is not None:
1654
+ pulumi.set(__self__, "table_exists_action", table_exists_action)
1655
+
1656
+ @property
1657
+ @pulumi.getter
1658
+ def estimate(self) -> Optional[pulumi.Input[str]]:
1659
+ """
1660
+ (Updatable) Estimate size of dumps that will be generated.
1661
+ """
1662
+ return pulumi.get(self, "estimate")
1663
+
1664
+ @estimate.setter
1665
+ def estimate(self, value: Optional[pulumi.Input[str]]):
1666
+ pulumi.set(self, "estimate", value)
1667
+
1668
+ @property
1669
+ @pulumi.getter(name="excludeParameters")
1670
+ def exclude_parameters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1671
+ """
1672
+ (Updatable) Exclude paratemers for Export and Import.
1673
+ """
1674
+ return pulumi.get(self, "exclude_parameters")
1675
+
1676
+ @exclude_parameters.setter
1677
+ def exclude_parameters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1678
+ pulumi.set(self, "exclude_parameters", value)
1679
+
1680
+ @property
1681
+ @pulumi.getter(name="exportParallelismDegree")
1682
+ def export_parallelism_degree(self) -> Optional[pulumi.Input[int]]:
1683
+ """
1684
+ (Updatable) Maximum number of worker processes that can be used for a Data Pump Export job.
1685
+ """
1686
+ return pulumi.get(self, "export_parallelism_degree")
1687
+
1688
+ @export_parallelism_degree.setter
1689
+ def export_parallelism_degree(self, value: Optional[pulumi.Input[int]]):
1690
+ pulumi.set(self, "export_parallelism_degree", value)
1691
+
1692
+ @property
1693
+ @pulumi.getter(name="importParallelismDegree")
1694
+ def import_parallelism_degree(self) -> Optional[pulumi.Input[int]]:
1695
+ """
1696
+ (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.
1697
+ """
1698
+ return pulumi.get(self, "import_parallelism_degree")
1699
+
1700
+ @import_parallelism_degree.setter
1701
+ def import_parallelism_degree(self, value: Optional[pulumi.Input[int]]):
1702
+ pulumi.set(self, "import_parallelism_degree", value)
1703
+
1704
+ @property
1705
+ @pulumi.getter(name="isCluster")
1706
+ def is_cluster(self) -> Optional[pulumi.Input[bool]]:
1707
+ """
1708
+ (Updatable) Set to false to force Data Pump worker process to run on one instance.
1709
+ """
1710
+ return pulumi.get(self, "is_cluster")
1711
+
1712
+ @is_cluster.setter
1713
+ def is_cluster(self, value: Optional[pulumi.Input[bool]]):
1714
+ pulumi.set(self, "is_cluster", value)
1715
+
1716
+ @property
1717
+ @pulumi.getter(name="tableExistsAction")
1718
+ def table_exists_action(self) -> Optional[pulumi.Input[str]]:
1719
+ """
1720
+ (Updatable) IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
1721
+ """
1722
+ return pulumi.get(self, "table_exists_action")
1723
+
1724
+ @table_exists_action.setter
1725
+ def table_exists_action(self, value: Optional[pulumi.Input[str]]):
1726
+ pulumi.set(self, "table_exists_action", value)
1727
+
1728
+
1729
+ @pulumi.input_type
1730
+ class MigrationInitialLoadSettingsExportDirectoryObjectArgs:
1731
+ def __init__(__self__, *,
1732
+ name: Optional[pulumi.Input[str]] = None,
1733
+ path: Optional[pulumi.Input[str]] = None):
1734
+ """
1735
+ :param pulumi.Input[str] name: (Updatable) Name of directory object in database
1736
+ :param pulumi.Input[str] path: (Updatable) Absolute path of directory on database server
1737
+ """
1738
+ if name is not None:
1739
+ pulumi.set(__self__, "name", name)
1740
+ if path is not None:
1741
+ pulumi.set(__self__, "path", path)
1742
+
1743
+ @property
1744
+ @pulumi.getter
1745
+ def name(self) -> Optional[pulumi.Input[str]]:
1746
+ """
1747
+ (Updatable) Name of directory object in database
1748
+ """
1749
+ return pulumi.get(self, "name")
1750
+
1751
+ @name.setter
1752
+ def name(self, value: Optional[pulumi.Input[str]]):
1753
+ pulumi.set(self, "name", value)
1754
+
1755
+ @property
1756
+ @pulumi.getter
1757
+ def path(self) -> Optional[pulumi.Input[str]]:
1758
+ """
1759
+ (Updatable) Absolute path of directory on database server
1760
+ """
1761
+ return pulumi.get(self, "path")
1762
+
1763
+ @path.setter
1764
+ def path(self, value: Optional[pulumi.Input[str]]):
1765
+ pulumi.set(self, "path", value)
1766
+
1767
+
1768
+ @pulumi.input_type
1769
+ class MigrationInitialLoadSettingsImportDirectoryObjectArgs:
1770
+ def __init__(__self__, *,
1771
+ name: Optional[pulumi.Input[str]] = None,
1772
+ path: Optional[pulumi.Input[str]] = None):
1773
+ """
1774
+ :param pulumi.Input[str] name: (Updatable) Name of directory object in database
1775
+ :param pulumi.Input[str] path: (Updatable) Absolute path of directory on database server
1776
+ """
1777
+ if name is not None:
1778
+ pulumi.set(__self__, "name", name)
1779
+ if path is not None:
1780
+ pulumi.set(__self__, "path", path)
1781
+
1782
+ @property
1783
+ @pulumi.getter
1784
+ def name(self) -> Optional[pulumi.Input[str]]:
1785
+ """
1786
+ (Updatable) Name of directory object in database
1787
+ """
1788
+ return pulumi.get(self, "name")
1789
+
1790
+ @name.setter
1791
+ def name(self, value: Optional[pulumi.Input[str]]):
1792
+ pulumi.set(self, "name", value)
1793
+
1794
+ @property
1795
+ @pulumi.getter
1796
+ def path(self) -> Optional[pulumi.Input[str]]:
1797
+ """
1798
+ (Updatable) Absolute path of directory on database server
1799
+ """
1800
+ return pulumi.get(self, "path")
1801
+
1802
+ @path.setter
1803
+ def path(self, value: Optional[pulumi.Input[str]]):
1804
+ pulumi.set(self, "path", value)
1805
+
1806
+
1807
+ @pulumi.input_type
1808
+ class MigrationInitialLoadSettingsMetadataRemapArgs:
1809
+ def __init__(__self__, *,
1810
+ new_value: Optional[pulumi.Input[str]] = None,
1811
+ old_value: Optional[pulumi.Input[str]] = None,
1812
+ type: Optional[pulumi.Input[str]] = None):
1813
+ """
1814
+ :param pulumi.Input[str] new_value: (Updatable) Specifies the new value that oldValue should be translated into.
1815
+ :param pulumi.Input[str] old_value: (Updatable) Specifies the value which needs to be reset.
1816
+ :param pulumi.Input[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)
1817
+ """
1818
+ if new_value is not None:
1819
+ pulumi.set(__self__, "new_value", new_value)
1820
+ if old_value is not None:
1821
+ pulumi.set(__self__, "old_value", old_value)
1822
+ if type is not None:
1823
+ pulumi.set(__self__, "type", type)
1824
+
1825
+ @property
1826
+ @pulumi.getter(name="newValue")
1827
+ def new_value(self) -> Optional[pulumi.Input[str]]:
1828
+ """
1829
+ (Updatable) Specifies the new value that oldValue should be translated into.
1830
+ """
1831
+ return pulumi.get(self, "new_value")
1832
+
1833
+ @new_value.setter
1834
+ def new_value(self, value: Optional[pulumi.Input[str]]):
1835
+ pulumi.set(self, "new_value", value)
1836
+
1837
+ @property
1838
+ @pulumi.getter(name="oldValue")
1839
+ def old_value(self) -> Optional[pulumi.Input[str]]:
1840
+ """
1841
+ (Updatable) Specifies the value which needs to be reset.
1842
+ """
1843
+ return pulumi.get(self, "old_value")
1844
+
1845
+ @old_value.setter
1846
+ def old_value(self, value: Optional[pulumi.Input[str]]):
1847
+ pulumi.set(self, "old_value", value)
1848
+
1849
+ @property
1850
+ @pulumi.getter
1851
+ def type(self) -> Optional[pulumi.Input[str]]:
1852
+ """
1853
+ (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)
1854
+ """
1855
+ return pulumi.get(self, "type")
1856
+
1857
+ @type.setter
1858
+ def type(self, value: Optional[pulumi.Input[str]]):
1859
+ pulumi.set(self, "type", value)
1860
+
1861
+
1862
+ @pulumi.input_type
1863
+ class MigrationInitialLoadSettingsTablespaceDetailsArgs:
1864
+ def __init__(__self__, *,
1865
+ target_type: pulumi.Input[str],
1866
+ block_size_in_kbs: Optional[pulumi.Input[str]] = None,
1867
+ extend_size_in_mbs: Optional[pulumi.Input[int]] = None,
1868
+ is_auto_create: Optional[pulumi.Input[bool]] = None,
1869
+ is_big_file: Optional[pulumi.Input[bool]] = None,
1870
+ remap_target: Optional[pulumi.Input[str]] = None):
1871
+ """
1872
+ :param pulumi.Input[str] target_type: (Updatable) Type of Database Base Migration Target.
1873
+ :param pulumi.Input[str] block_size_in_kbs: (Updatable) Size of Oracle database blocks in KB.
1874
+ :param pulumi.Input[int] extend_size_in_mbs: (Updatable) Size to extend the tablespace in MB. Note: Only applicable if 'isBigFile' property is set to true.
1875
+ :param pulumi.Input[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.
1876
+ :param pulumi.Input[bool] is_big_file: (Updatable) Set this property to true to enable tablespace of the type big file.
1877
+ :param pulumi.Input[str] remap_target: (Updatable) Name of the tablespace on the target database to which the source database tablespace is to be remapped.
1878
+ """
1879
+ pulumi.set(__self__, "target_type", target_type)
1880
+ if block_size_in_kbs is not None:
1881
+ pulumi.set(__self__, "block_size_in_kbs", block_size_in_kbs)
1882
+ if extend_size_in_mbs is not None:
1883
+ pulumi.set(__self__, "extend_size_in_mbs", extend_size_in_mbs)
1884
+ if is_auto_create is not None:
1885
+ pulumi.set(__self__, "is_auto_create", is_auto_create)
1886
+ if is_big_file is not None:
1887
+ pulumi.set(__self__, "is_big_file", is_big_file)
1888
+ if remap_target is not None:
1889
+ pulumi.set(__self__, "remap_target", remap_target)
1890
+
1891
+ @property
1892
+ @pulumi.getter(name="targetType")
1893
+ def target_type(self) -> pulumi.Input[str]:
1894
+ """
1895
+ (Updatable) Type of Database Base Migration Target.
1896
+ """
1897
+ return pulumi.get(self, "target_type")
1898
+
1899
+ @target_type.setter
1900
+ def target_type(self, value: pulumi.Input[str]):
1901
+ pulumi.set(self, "target_type", value)
1902
+
1903
+ @property
1904
+ @pulumi.getter(name="blockSizeInKbs")
1905
+ def block_size_in_kbs(self) -> Optional[pulumi.Input[str]]:
1906
+ """
1907
+ (Updatable) Size of Oracle database blocks in KB.
1908
+ """
1909
+ return pulumi.get(self, "block_size_in_kbs")
1910
+
1911
+ @block_size_in_kbs.setter
1912
+ def block_size_in_kbs(self, value: Optional[pulumi.Input[str]]):
1913
+ pulumi.set(self, "block_size_in_kbs", value)
1914
+
1915
+ @property
1916
+ @pulumi.getter(name="extendSizeInMbs")
1917
+ def extend_size_in_mbs(self) -> Optional[pulumi.Input[int]]:
1918
+ """
1919
+ (Updatable) Size to extend the tablespace in MB. Note: Only applicable if 'isBigFile' property is set to true.
1920
+ """
1921
+ return pulumi.get(self, "extend_size_in_mbs")
1922
+
1923
+ @extend_size_in_mbs.setter
1924
+ def extend_size_in_mbs(self, value: Optional[pulumi.Input[int]]):
1925
+ pulumi.set(self, "extend_size_in_mbs", value)
1926
+
1927
+ @property
1928
+ @pulumi.getter(name="isAutoCreate")
1929
+ def is_auto_create(self) -> Optional[pulumi.Input[bool]]:
1930
+ """
1931
+ (Updatable) Set this property to true to auto-create tablespaces in the target Database. Note: This is not applicable for Autonomous Database Serverless databases.
1932
+ """
1933
+ return pulumi.get(self, "is_auto_create")
1934
+
1935
+ @is_auto_create.setter
1936
+ def is_auto_create(self, value: Optional[pulumi.Input[bool]]):
1937
+ pulumi.set(self, "is_auto_create", value)
1938
+
1939
+ @property
1940
+ @pulumi.getter(name="isBigFile")
1941
+ def is_big_file(self) -> Optional[pulumi.Input[bool]]:
1942
+ """
1943
+ (Updatable) Set this property to true to enable tablespace of the type big file.
1944
+ """
1945
+ return pulumi.get(self, "is_big_file")
1946
+
1947
+ @is_big_file.setter
1948
+ def is_big_file(self, value: Optional[pulumi.Input[bool]]):
1949
+ pulumi.set(self, "is_big_file", value)
1950
+
1951
+ @property
1952
+ @pulumi.getter(name="remapTarget")
1953
+ def remap_target(self) -> Optional[pulumi.Input[str]]:
1954
+ """
1955
+ (Updatable) Name of the tablespace on the target database to which the source database tablespace is to be remapped.
1956
+ """
1957
+ return pulumi.get(self, "remap_target")
1958
+
1959
+ @remap_target.setter
1960
+ def remap_target(self, value: Optional[pulumi.Input[str]]):
1961
+ pulumi.set(self, "remap_target", value)
1962
+
1963
+
1964
+ @pulumi.input_type
1965
+ class GetConnectionsFilterArgs:
1966
+ def __init__(__self__, *,
1967
+ name: str,
1968
+ values: Sequence[str],
1969
+ regex: Optional[bool] = None):
1970
+ """
1971
+ :param str name: The name of the property entry.
1972
+ """
1973
+ pulumi.set(__self__, "name", name)
1974
+ pulumi.set(__self__, "values", values)
1975
+ if regex is not None:
1976
+ pulumi.set(__self__, "regex", regex)
1977
+
1978
+ @property
1979
+ @pulumi.getter
1980
+ def name(self) -> str:
1981
+ """
1982
+ The name of the property entry.
1983
+ """
1984
+ return pulumi.get(self, "name")
1985
+
1986
+ @name.setter
1987
+ def name(self, value: str):
1988
+ pulumi.set(self, "name", value)
1989
+
1990
+ @property
1991
+ @pulumi.getter
1992
+ def values(self) -> Sequence[str]:
1993
+ return pulumi.get(self, "values")
1994
+
1995
+ @values.setter
1996
+ def values(self, value: Sequence[str]):
1997
+ pulumi.set(self, "values", value)
1998
+
1999
+ @property
2000
+ @pulumi.getter
2001
+ def regex(self) -> Optional[bool]:
2002
+ return pulumi.get(self, "regex")
2003
+
2004
+ @regex.setter
2005
+ def regex(self, value: Optional[bool]):
2006
+ pulumi.set(self, "regex", value)
2007
+
2008
+
376
2009
  @pulumi.input_type
377
2010
  class GetMigrationObjectTypesFilterArgs:
378
2011
  def __init__(__self__, *,