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