pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.34.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.
- pulumi_oci/__init__.py +51 -0
- pulumi_oci/clusterplacementgroups/__init__.py +12 -0
- pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
- pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
- pulumi_oci/clusterplacementgroups/outputs.py +485 -0
- pulumi_oci/config/__init__.pyi +2 -2
- pulumi_oci/config/vars.py +2 -2
- pulumi_oci/core/_inputs.py +116 -28
- pulumi_oci/core/boot_volume.py +49 -0
- pulumi_oci/core/compute_capacity_reservation.py +2 -0
- pulumi_oci/core/compute_cluster.py +2 -4
- pulumi_oci/core/drg_route_distribution.py +7 -7
- pulumi_oci/core/get_boot_volume.py +14 -1
- pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
- pulumi_oci/core/get_instance.py +14 -1
- pulumi_oci/core/get_subnet.py +2 -2
- pulumi_oci/core/get_vcn.py +2 -2
- pulumi_oci/core/get_volume.py +14 -1
- pulumi_oci/core/get_volumes.py +21 -1
- pulumi_oci/core/instance.py +51 -4
- pulumi_oci/core/instance_configuration.py +8 -0
- pulumi_oci/core/outputs.py +302 -45
- pulumi_oci/core/volume.py +49 -0
- pulumi_oci/core/volume_attachment.py +28 -0
- pulumi_oci/core/volume_group.py +49 -0
- pulumi_oci/database/db_home.py +47 -0
- pulumi_oci/database/get_db_home.py +14 -1
- pulumi_oci/database/outputs.py +11 -0
- pulumi_oci/databasemanagement/__init__.py +5 -0
- pulumi_oci/databasemanagement/_inputs.py +1207 -2
- pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
- pulumi_oci/databasemanagement/external_asm.py +28 -0
- pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
- pulumi_oci/databasemanagement/external_cluster.py +28 -0
- pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
- pulumi_oci/databasemanagement/external_db_home.py +28 -0
- pulumi_oci/databasemanagement/external_db_node.py +28 -0
- pulumi_oci/databasemanagement/external_db_system.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
- pulumi_oci/databasemanagement/external_listener.py +28 -0
- pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_databases.py +18 -1
- pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
- pulumi_oci/databasemanagement/get_external_listener.py +14 -1
- pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
- pulumi_oci/databasemanagement/get_named_credential.py +14 -1
- pulumi_oci/databasemanagement/managed_database.py +28 -0
- pulumi_oci/databasemanagement/managed_database_group.py +28 -0
- pulumi_oci/databasemanagement/named_credential.py +28 -0
- pulumi_oci/databasemanagement/outputs.py +1723 -214
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemigration/_inputs.py +20 -0
- pulumi_oci/databasemigration/connection.py +13 -0
- pulumi_oci/databasemigration/get_connection.py +3 -0
- pulumi_oci/databasemigration/get_migration.py +3 -0
- pulumi_oci/databasemigration/migration.py +13 -0
- pulumi_oci/databasemigration/outputs.py +68 -0
- pulumi_oci/datasafe/__init__.py +3 -0
- pulumi_oci/datasafe/_inputs.py +80 -0
- pulumi_oci/datasafe/get_masking_policy.py +11 -1
- pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
- pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
- pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
- pulumi_oci/datasafe/masking_policy.py +75 -28
- pulumi_oci/datasafe/outputs.py +287 -0
- pulumi_oci/networkloadbalancer/backend_set.py +49 -0
- pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/provider.py +8 -8
- pulumi_oci/recoverymod/_inputs.py +16 -0
- pulumi_oci/recoverymod/get_protected_database.py +25 -5
- pulumi_oci/recoverymod/get_protection_policies.py +1 -7
- pulumi_oci/recoverymod/get_protection_policy.py +15 -8
- pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
- pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
- pulumi_oci/recoverymod/outputs.py +96 -24
- pulumi_oci/recoverymod/protected_database.py +95 -16
- pulumi_oci/recoverymod/protection_policy.py +121 -54
- pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/RECORD +108 -94
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/top_level.txt +0 -0
@@ -1049,7 +1049,11 @@ class MigrationDataTransferMediumDetailsV2(dict):
|
|
1049
1049
|
secret_access_key: Optional[str] = None):
|
1050
1050
|
"""
|
1051
1051
|
:param str type: (Updatable) Migration type.
|
1052
|
+
:param str access_key_id: (Updatable) AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
1052
1053
|
:param str name: (Updatable) Name of directory object in database
|
1054
|
+
:param 'MigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs' 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.
|
1055
|
+
:param str region: (Updatable) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
1056
|
+
:param str secret_access_key: (Updatable) AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
1053
1057
|
"""
|
1054
1058
|
pulumi.set(__self__, "type", type)
|
1055
1059
|
if access_key_id is not None:
|
@@ -1074,6 +1078,9 @@ class MigrationDataTransferMediumDetailsV2(dict):
|
|
1074
1078
|
@property
|
1075
1079
|
@pulumi.getter(name="accessKeyId")
|
1076
1080
|
def access_key_id(self) -> Optional[str]:
|
1081
|
+
"""
|
1082
|
+
(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
|
1083
|
+
"""
|
1077
1084
|
return pulumi.get(self, "access_key_id")
|
1078
1085
|
|
1079
1086
|
@property
|
@@ -1087,16 +1094,25 @@ class MigrationDataTransferMediumDetailsV2(dict):
|
|
1087
1094
|
@property
|
1088
1095
|
@pulumi.getter(name="objectStorageBucket")
|
1089
1096
|
def object_storage_bucket(self) -> Optional['outputs.MigrationDataTransferMediumDetailsV2ObjectStorageBucket']:
|
1097
|
+
"""
|
1098
|
+
(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.
|
1099
|
+
"""
|
1090
1100
|
return pulumi.get(self, "object_storage_bucket")
|
1091
1101
|
|
1092
1102
|
@property
|
1093
1103
|
@pulumi.getter
|
1094
1104
|
def region(self) -> Optional[str]:
|
1105
|
+
"""
|
1106
|
+
(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
|
1107
|
+
"""
|
1095
1108
|
return pulumi.get(self, "region")
|
1096
1109
|
|
1097
1110
|
@property
|
1098
1111
|
@pulumi.getter(name="secretAccessKey")
|
1099
1112
|
def secret_access_key(self) -> Optional[str]:
|
1113
|
+
"""
|
1114
|
+
(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
|
1115
|
+
"""
|
1100
1116
|
return pulumi.get(self, "secret_access_key")
|
1101
1117
|
|
1102
1118
|
|
@@ -1470,6 +1486,7 @@ class MigrationDumpTransferDetails(dict):
|
|
1470
1486
|
source: Optional['outputs.MigrationDumpTransferDetailsSource'] = None,
|
1471
1487
|
target: Optional['outputs.MigrationDumpTransferDetailsTarget'] = None):
|
1472
1488
|
"""
|
1489
|
+
:param str shared_storage_mount_target_id: Optional OCID of the shared storage mount target.
|
1473
1490
|
:param 'MigrationDumpTransferDetailsSourceArgs' source: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
1474
1491
|
:param 'MigrationDumpTransferDetailsTargetArgs' target: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
1475
1492
|
"""
|
@@ -1483,6 +1500,9 @@ class MigrationDumpTransferDetails(dict):
|
|
1483
1500
|
@property
|
1484
1501
|
@pulumi.getter(name="sharedStorageMountTargetId")
|
1485
1502
|
def shared_storage_mount_target_id(self) -> Optional[str]:
|
1503
|
+
"""
|
1504
|
+
Optional OCID of the shared storage mount target.
|
1505
|
+
"""
|
1486
1506
|
return pulumi.get(self, "shared_storage_mount_target_id")
|
1487
1507
|
|
1488
1508
|
@property
|
@@ -2989,6 +3009,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2989
3009
|
:param Mapping[str, Any] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
2990
3010
|
:param str id: [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a previously created Private Endpoint.
|
2991
3011
|
:param str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
3012
|
+
:param str manual_database_sub_type: Database manual connection subtype. This value can only be specified for manual connections.
|
2992
3013
|
:param Sequence[str] nsg_ids: An array of Network Security Group OCIDs used to define network access for Connections.
|
2993
3014
|
:param Sequence['GetConnectionsConnectionCollectionItemPrivateEndpointArgs'] private_endpoints: Oracle Cloud Infrastructure Private Endpoint configuration details.
|
2994
3015
|
:param Sequence['GetConnectionsConnectionCollectionItemReplicationCredentialArgs'] replication_credentials: Database Administrator Credentials details.
|
@@ -3123,6 +3144,9 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
3123
3144
|
@property
|
3124
3145
|
@pulumi.getter(name="manualDatabaseSubType")
|
3125
3146
|
def manual_database_sub_type(self) -> str:
|
3147
|
+
"""
|
3148
|
+
Database manual connection subtype. This value can only be specified for manual connections.
|
3149
|
+
"""
|
3126
3150
|
return pulumi.get(self, "manual_database_sub_type")
|
3127
3151
|
|
3128
3152
|
@property
|
@@ -3716,7 +3740,11 @@ class GetMigrationDataTransferMediumDetailsV2Result(dict):
|
|
3716
3740
|
secret_access_key: str,
|
3717
3741
|
type: str):
|
3718
3742
|
"""
|
3743
|
+
:param str access_key_id: AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
3719
3744
|
:param str name: Name of directory object in database
|
3745
|
+
:param Sequence['GetMigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs'] object_storage_buckets: In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
|
3746
|
+
:param str region: AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
3747
|
+
:param str secret_access_key: AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
3720
3748
|
:param str type: Migration type.
|
3721
3749
|
"""
|
3722
3750
|
pulumi.set(__self__, "access_key_id", access_key_id)
|
@@ -3729,6 +3757,9 @@ class GetMigrationDataTransferMediumDetailsV2Result(dict):
|
|
3729
3757
|
@property
|
3730
3758
|
@pulumi.getter(name="accessKeyId")
|
3731
3759
|
def access_key_id(self) -> str:
|
3760
|
+
"""
|
3761
|
+
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
|
3762
|
+
"""
|
3732
3763
|
return pulumi.get(self, "access_key_id")
|
3733
3764
|
|
3734
3765
|
@property
|
@@ -3742,16 +3773,25 @@ class GetMigrationDataTransferMediumDetailsV2Result(dict):
|
|
3742
3773
|
@property
|
3743
3774
|
@pulumi.getter(name="objectStorageBuckets")
|
3744
3775
|
def object_storage_buckets(self) -> Sequence['outputs.GetMigrationDataTransferMediumDetailsV2ObjectStorageBucketResult']:
|
3776
|
+
"""
|
3777
|
+
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.
|
3778
|
+
"""
|
3745
3779
|
return pulumi.get(self, "object_storage_buckets")
|
3746
3780
|
|
3747
3781
|
@property
|
3748
3782
|
@pulumi.getter
|
3749
3783
|
def region(self) -> str:
|
3784
|
+
"""
|
3785
|
+
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
|
3786
|
+
"""
|
3750
3787
|
return pulumi.get(self, "region")
|
3751
3788
|
|
3752
3789
|
@property
|
3753
3790
|
@pulumi.getter(name="secretAccessKey")
|
3754
3791
|
def secret_access_key(self) -> str:
|
3792
|
+
"""
|
3793
|
+
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
|
3794
|
+
"""
|
3755
3795
|
return pulumi.get(self, "secret_access_key")
|
3756
3796
|
|
3757
3797
|
@property
|
@@ -4032,6 +4072,7 @@ class GetMigrationDumpTransferDetailResult(dict):
|
|
4032
4072
|
sources: Sequence['outputs.GetMigrationDumpTransferDetailSourceResult'],
|
4033
4073
|
targets: Sequence['outputs.GetMigrationDumpTransferDetailTargetResult']):
|
4034
4074
|
"""
|
4075
|
+
:param str shared_storage_mount_target_id: Optional OCID of the shared storage mount target.
|
4035
4076
|
:param Sequence['GetMigrationDumpTransferDetailSourceArgs'] sources: Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
4036
4077
|
:param Sequence['GetMigrationDumpTransferDetailTargetArgs'] targets: Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
4037
4078
|
"""
|
@@ -4042,6 +4083,9 @@ class GetMigrationDumpTransferDetailResult(dict):
|
|
4042
4083
|
@property
|
4043
4084
|
@pulumi.getter(name="sharedStorageMountTargetId")
|
4044
4085
|
def shared_storage_mount_target_id(self) -> str:
|
4086
|
+
"""
|
4087
|
+
Optional OCID of the shared storage mount target.
|
4088
|
+
"""
|
4045
4089
|
return pulumi.get(self, "shared_storage_mount_target_id")
|
4046
4090
|
|
4047
4091
|
@property
|
@@ -5043,6 +5087,7 @@ class GetMigrationsMigrationCollectionItemResult(dict):
|
|
5043
5087
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
5044
5088
|
:param str credentials_secret_id: OCID of the Secret in the Oracle Cloud Infrastructure vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
|
5045
5089
|
:param Sequence['GetMigrationsMigrationCollectionItemDataTransferMediumDetailArgs'] data_transfer_medium_details: Data Transfer Medium details for the Migration.
|
5090
|
+
:param Sequence['GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2Args'] data_transfer_medium_details_v2s: Optional additional properties for dump transfer in source or target host.
|
5046
5091
|
:param Sequence['GetMigrationsMigrationCollectionItemDatapumpSettingArgs'] datapump_settings: Optional settings for Data Pump Export and Import jobs
|
5047
5092
|
:param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
5048
5093
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
@@ -5146,6 +5191,9 @@ class GetMigrationsMigrationCollectionItemResult(dict):
|
|
5146
5191
|
@property
|
5147
5192
|
@pulumi.getter(name="dataTransferMediumDetailsV2s")
|
5148
5193
|
def data_transfer_medium_details_v2s(self) -> Sequence['outputs.GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2Result']:
|
5194
|
+
"""
|
5195
|
+
Optional additional properties for dump transfer in source or target host.
|
5196
|
+
"""
|
5149
5197
|
return pulumi.get(self, "data_transfer_medium_details_v2s")
|
5150
5198
|
|
5151
5199
|
@property
|
@@ -5488,7 +5536,11 @@ class GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2Result(dict
|
|
5488
5536
|
secret_access_key: str,
|
5489
5537
|
type: str):
|
5490
5538
|
"""
|
5539
|
+
:param str access_key_id: AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
5491
5540
|
:param str name: Name of directory object in database
|
5541
|
+
:param Sequence['GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2ObjectStorageBucketArgs'] object_storage_buckets: In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
|
5542
|
+
:param str region: AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
5543
|
+
:param str secret_access_key: AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
5492
5544
|
:param str type: Migration type.
|
5493
5545
|
"""
|
5494
5546
|
pulumi.set(__self__, "access_key_id", access_key_id)
|
@@ -5501,6 +5553,9 @@ class GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2Result(dict
|
|
5501
5553
|
@property
|
5502
5554
|
@pulumi.getter(name="accessKeyId")
|
5503
5555
|
def access_key_id(self) -> str:
|
5556
|
+
"""
|
5557
|
+
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
|
5558
|
+
"""
|
5504
5559
|
return pulumi.get(self, "access_key_id")
|
5505
5560
|
|
5506
5561
|
@property
|
@@ -5514,16 +5569,25 @@ class GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2Result(dict
|
|
5514
5569
|
@property
|
5515
5570
|
@pulumi.getter(name="objectStorageBuckets")
|
5516
5571
|
def object_storage_buckets(self) -> Sequence['outputs.GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2ObjectStorageBucketResult']:
|
5572
|
+
"""
|
5573
|
+
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.
|
5574
|
+
"""
|
5517
5575
|
return pulumi.get(self, "object_storage_buckets")
|
5518
5576
|
|
5519
5577
|
@property
|
5520
5578
|
@pulumi.getter
|
5521
5579
|
def region(self) -> str:
|
5580
|
+
"""
|
5581
|
+
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
|
5582
|
+
"""
|
5522
5583
|
return pulumi.get(self, "region")
|
5523
5584
|
|
5524
5585
|
@property
|
5525
5586
|
@pulumi.getter(name="secretAccessKey")
|
5526
5587
|
def secret_access_key(self) -> str:
|
5588
|
+
"""
|
5589
|
+
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
|
5590
|
+
"""
|
5527
5591
|
return pulumi.get(self, "secret_access_key")
|
5528
5592
|
|
5529
5593
|
@property
|
@@ -5804,6 +5868,7 @@ class GetMigrationsMigrationCollectionItemDumpTransferDetailResult(dict):
|
|
5804
5868
|
sources: Sequence['outputs.GetMigrationsMigrationCollectionItemDumpTransferDetailSourceResult'],
|
5805
5869
|
targets: Sequence['outputs.GetMigrationsMigrationCollectionItemDumpTransferDetailTargetResult']):
|
5806
5870
|
"""
|
5871
|
+
:param str shared_storage_mount_target_id: Optional OCID of the shared storage mount target.
|
5807
5872
|
:param Sequence['GetMigrationsMigrationCollectionItemDumpTransferDetailSourceArgs'] sources: Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
5808
5873
|
:param Sequence['GetMigrationsMigrationCollectionItemDumpTransferDetailTargetArgs'] targets: Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
5809
5874
|
"""
|
@@ -5814,6 +5879,9 @@ class GetMigrationsMigrationCollectionItemDumpTransferDetailResult(dict):
|
|
5814
5879
|
@property
|
5815
5880
|
@pulumi.getter(name="sharedStorageMountTargetId")
|
5816
5881
|
def shared_storage_mount_target_id(self) -> str:
|
5882
|
+
"""
|
5883
|
+
Optional OCID of the shared storage mount target.
|
5884
|
+
"""
|
5817
5885
|
return pulumi.get(self, "shared_storage_mount_target_id")
|
5818
5886
|
|
5819
5887
|
@property
|
pulumi_oci/datasafe/__init__.py
CHANGED
@@ -65,6 +65,9 @@ from .get_masking_policies import *
|
|
65
65
|
from .get_masking_policies_masking_column import *
|
66
66
|
from .get_masking_policies_masking_columns import *
|
67
67
|
from .get_masking_policy import *
|
68
|
+
from .get_masking_policy_health_report import *
|
69
|
+
from .get_masking_policy_health_report_logs import *
|
70
|
+
from .get_masking_policy_health_reports import *
|
68
71
|
from .get_masking_policy_masking_objects import *
|
69
72
|
from .get_masking_policy_masking_schemas import *
|
70
73
|
from .get_masking_report import *
|
pulumi_oci/datasafe/_inputs.py
CHANGED
@@ -67,6 +67,8 @@ __all__ = [
|
|
67
67
|
'GetMaskingAnalyticsFilterArgs',
|
68
68
|
'GetMaskingPoliciesFilterArgs',
|
69
69
|
'GetMaskingPoliciesMaskingColumnsFilterArgs',
|
70
|
+
'GetMaskingPolicyHealthReportLogsFilterArgs',
|
71
|
+
'GetMaskingPolicyHealthReportsFilterArgs',
|
70
72
|
'GetMaskingPolicyMaskingObjectsFilterArgs',
|
71
73
|
'GetMaskingPolicyMaskingSchemasFilterArgs',
|
72
74
|
'GetMaskingReportMaskedColumnsFilterArgs',
|
@@ -5701,6 +5703,84 @@ class GetMaskingPoliciesMaskingColumnsFilterArgs:
|
|
5701
5703
|
pulumi.set(self, "regex", value)
|
5702
5704
|
|
5703
5705
|
|
5706
|
+
@pulumi.input_type
|
5707
|
+
class GetMaskingPolicyHealthReportLogsFilterArgs:
|
5708
|
+
def __init__(__self__, *,
|
5709
|
+
name: str,
|
5710
|
+
values: Sequence[str],
|
5711
|
+
regex: Optional[bool] = None):
|
5712
|
+
pulumi.set(__self__, "name", name)
|
5713
|
+
pulumi.set(__self__, "values", values)
|
5714
|
+
if regex is not None:
|
5715
|
+
pulumi.set(__self__, "regex", regex)
|
5716
|
+
|
5717
|
+
@property
|
5718
|
+
@pulumi.getter
|
5719
|
+
def name(self) -> str:
|
5720
|
+
return pulumi.get(self, "name")
|
5721
|
+
|
5722
|
+
@name.setter
|
5723
|
+
def name(self, value: str):
|
5724
|
+
pulumi.set(self, "name", value)
|
5725
|
+
|
5726
|
+
@property
|
5727
|
+
@pulumi.getter
|
5728
|
+
def values(self) -> Sequence[str]:
|
5729
|
+
return pulumi.get(self, "values")
|
5730
|
+
|
5731
|
+
@values.setter
|
5732
|
+
def values(self, value: Sequence[str]):
|
5733
|
+
pulumi.set(self, "values", value)
|
5734
|
+
|
5735
|
+
@property
|
5736
|
+
@pulumi.getter
|
5737
|
+
def regex(self) -> Optional[bool]:
|
5738
|
+
return pulumi.get(self, "regex")
|
5739
|
+
|
5740
|
+
@regex.setter
|
5741
|
+
def regex(self, value: Optional[bool]):
|
5742
|
+
pulumi.set(self, "regex", value)
|
5743
|
+
|
5744
|
+
|
5745
|
+
@pulumi.input_type
|
5746
|
+
class GetMaskingPolicyHealthReportsFilterArgs:
|
5747
|
+
def __init__(__self__, *,
|
5748
|
+
name: str,
|
5749
|
+
values: Sequence[str],
|
5750
|
+
regex: Optional[bool] = None):
|
5751
|
+
pulumi.set(__self__, "name", name)
|
5752
|
+
pulumi.set(__self__, "values", values)
|
5753
|
+
if regex is not None:
|
5754
|
+
pulumi.set(__self__, "regex", regex)
|
5755
|
+
|
5756
|
+
@property
|
5757
|
+
@pulumi.getter
|
5758
|
+
def name(self) -> str:
|
5759
|
+
return pulumi.get(self, "name")
|
5760
|
+
|
5761
|
+
@name.setter
|
5762
|
+
def name(self, value: str):
|
5763
|
+
pulumi.set(self, "name", value)
|
5764
|
+
|
5765
|
+
@property
|
5766
|
+
@pulumi.getter
|
5767
|
+
def values(self) -> Sequence[str]:
|
5768
|
+
return pulumi.get(self, "values")
|
5769
|
+
|
5770
|
+
@values.setter
|
5771
|
+
def values(self, value: Sequence[str]):
|
5772
|
+
pulumi.set(self, "values", value)
|
5773
|
+
|
5774
|
+
@property
|
5775
|
+
@pulumi.getter
|
5776
|
+
def regex(self) -> Optional[bool]:
|
5777
|
+
return pulumi.get(self, "regex")
|
5778
|
+
|
5779
|
+
@regex.setter
|
5780
|
+
def regex(self, value: Optional[bool]):
|
5781
|
+
pulumi.set(self, "regex", value)
|
5782
|
+
|
5783
|
+
|
5704
5784
|
@pulumi.input_type
|
5705
5785
|
class GetMaskingPolicyMaskingObjectsFilterArgs:
|
5706
5786
|
def __init__(__self__, *,
|
@@ -22,7 +22,7 @@ class GetMaskingPolicyResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getMaskingPolicy.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, add_masking_columns_from_sdm_trigger=None, column_sources=None, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, is_drop_temp_tables_enabled=None, is_redo_logging_enabled=None, is_refresh_stats_enabled=None, masking_policy_id=None, parallel_degree=None, post_masking_script=None, pre_masking_script=None, recompile=None, state=None, time_created=None, time_updated=None):
|
25
|
+
def __init__(__self__, add_masking_columns_from_sdm_trigger=None, column_sources=None, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, generate_health_report_trigger=None, id=None, is_drop_temp_tables_enabled=None, is_redo_logging_enabled=None, is_refresh_stats_enabled=None, masking_policy_id=None, parallel_degree=None, post_masking_script=None, pre_masking_script=None, recompile=None, state=None, time_created=None, time_updated=None):
|
26
26
|
if add_masking_columns_from_sdm_trigger and not isinstance(add_masking_columns_from_sdm_trigger, int):
|
27
27
|
raise TypeError("Expected argument 'add_masking_columns_from_sdm_trigger' to be a int")
|
28
28
|
pulumi.set(__self__, "add_masking_columns_from_sdm_trigger", add_masking_columns_from_sdm_trigger)
|
@@ -44,6 +44,9 @@ class GetMaskingPolicyResult:
|
|
44
44
|
if freeform_tags and not isinstance(freeform_tags, dict):
|
45
45
|
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
46
46
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
47
|
+
if generate_health_report_trigger and not isinstance(generate_health_report_trigger, int):
|
48
|
+
raise TypeError("Expected argument 'generate_health_report_trigger' to be a int")
|
49
|
+
pulumi.set(__self__, "generate_health_report_trigger", generate_health_report_trigger)
|
47
50
|
if id and not isinstance(id, str):
|
48
51
|
raise TypeError("Expected argument 'id' to be a str")
|
49
52
|
pulumi.set(__self__, "id", id)
|
@@ -134,6 +137,11 @@ class GetMaskingPolicyResult:
|
|
134
137
|
"""
|
135
138
|
return pulumi.get(self, "freeform_tags")
|
136
139
|
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="generateHealthReportTrigger")
|
142
|
+
def generate_health_report_trigger(self) -> int:
|
143
|
+
return pulumi.get(self, "generate_health_report_trigger")
|
144
|
+
|
137
145
|
@property
|
138
146
|
@pulumi.getter
|
139
147
|
def id(self) -> str:
|
@@ -241,6 +249,7 @@ class AwaitableGetMaskingPolicyResult(GetMaskingPolicyResult):
|
|
241
249
|
description=self.description,
|
242
250
|
display_name=self.display_name,
|
243
251
|
freeform_tags=self.freeform_tags,
|
252
|
+
generate_health_report_trigger=self.generate_health_report_trigger,
|
244
253
|
id=self.id,
|
245
254
|
is_drop_temp_tables_enabled=self.is_drop_temp_tables_enabled,
|
246
255
|
is_redo_logging_enabled=self.is_redo_logging_enabled,
|
@@ -287,6 +296,7 @@ def get_masking_policy(masking_policy_id: Optional[str] = None,
|
|
287
296
|
description=pulumi.get(__ret__, 'description'),
|
288
297
|
display_name=pulumi.get(__ret__, 'display_name'),
|
289
298
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
299
|
+
generate_health_report_trigger=pulumi.get(__ret__, 'generate_health_report_trigger'),
|
290
300
|
id=pulumi.get(__ret__, 'id'),
|
291
301
|
is_drop_temp_tables_enabled=pulumi.get(__ret__, 'is_drop_temp_tables_enabled'),
|
292
302
|
is_redo_logging_enabled=pulumi.get(__ret__, 'is_redo_logging_enabled'),
|
@@ -0,0 +1,235 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
|
12
|
+
__all__ = [
|
13
|
+
'GetMaskingPolicyHealthReportResult',
|
14
|
+
'AwaitableGetMaskingPolicyHealthReportResult',
|
15
|
+
'get_masking_policy_health_report',
|
16
|
+
'get_masking_policy_health_report_output',
|
17
|
+
]
|
18
|
+
|
19
|
+
@pulumi.output_type
|
20
|
+
class GetMaskingPolicyHealthReportResult:
|
21
|
+
"""
|
22
|
+
A collection of values returned by getMaskingPolicyHealthReport.
|
23
|
+
"""
|
24
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, masking_policy_health_report_id=None, masking_policy_id=None, state=None, target_id=None, time_created=None, time_updated=None):
|
25
|
+
if compartment_id and not isinstance(compartment_id, str):
|
26
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
27
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
28
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
29
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
30
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
31
|
+
if description and not isinstance(description, str):
|
32
|
+
raise TypeError("Expected argument 'description' to be a str")
|
33
|
+
pulumi.set(__self__, "description", description)
|
34
|
+
if display_name and not isinstance(display_name, str):
|
35
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
36
|
+
pulumi.set(__self__, "display_name", display_name)
|
37
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
38
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
39
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
40
|
+
if id and not isinstance(id, str):
|
41
|
+
raise TypeError("Expected argument 'id' to be a str")
|
42
|
+
pulumi.set(__self__, "id", id)
|
43
|
+
if masking_policy_health_report_id and not isinstance(masking_policy_health_report_id, str):
|
44
|
+
raise TypeError("Expected argument 'masking_policy_health_report_id' to be a str")
|
45
|
+
pulumi.set(__self__, "masking_policy_health_report_id", masking_policy_health_report_id)
|
46
|
+
if masking_policy_id and not isinstance(masking_policy_id, str):
|
47
|
+
raise TypeError("Expected argument 'masking_policy_id' to be a str")
|
48
|
+
pulumi.set(__self__, "masking_policy_id", masking_policy_id)
|
49
|
+
if state and not isinstance(state, str):
|
50
|
+
raise TypeError("Expected argument 'state' to be a str")
|
51
|
+
pulumi.set(__self__, "state", state)
|
52
|
+
if target_id and not isinstance(target_id, str):
|
53
|
+
raise TypeError("Expected argument 'target_id' to be a str")
|
54
|
+
pulumi.set(__self__, "target_id", target_id)
|
55
|
+
if time_created and not isinstance(time_created, str):
|
56
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
57
|
+
pulumi.set(__self__, "time_created", time_created)
|
58
|
+
if time_updated and not isinstance(time_updated, str):
|
59
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
60
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter(name="compartmentId")
|
64
|
+
def compartment_id(self) -> str:
|
65
|
+
"""
|
66
|
+
The OCID of the compartment that contains the health report.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "compartment_id")
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter(name="definedTags")
|
72
|
+
def defined_tags(self) -> Mapping[str, Any]:
|
73
|
+
"""
|
74
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
|
75
|
+
"""
|
76
|
+
return pulumi.get(self, "defined_tags")
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter
|
80
|
+
def description(self) -> str:
|
81
|
+
"""
|
82
|
+
The description of the masking health report.
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "description")
|
85
|
+
|
86
|
+
@property
|
87
|
+
@pulumi.getter(name="displayName")
|
88
|
+
def display_name(self) -> str:
|
89
|
+
"""
|
90
|
+
The display name of the health report.
|
91
|
+
"""
|
92
|
+
return pulumi.get(self, "display_name")
|
93
|
+
|
94
|
+
@property
|
95
|
+
@pulumi.getter(name="freeformTags")
|
96
|
+
def freeform_tags(self) -> Mapping[str, Any]:
|
97
|
+
"""
|
98
|
+
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
99
|
+
"""
|
100
|
+
return pulumi.get(self, "freeform_tags")
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter
|
104
|
+
def id(self) -> str:
|
105
|
+
"""
|
106
|
+
The provider-assigned unique ID for this managed resource.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "id")
|
109
|
+
|
110
|
+
@property
|
111
|
+
@pulumi.getter(name="maskingPolicyHealthReportId")
|
112
|
+
def masking_policy_health_report_id(self) -> str:
|
113
|
+
return pulumi.get(self, "masking_policy_health_report_id")
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="maskingPolicyId")
|
117
|
+
def masking_policy_id(self) -> str:
|
118
|
+
"""
|
119
|
+
The OCID of the masking policy.
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "masking_policy_id")
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter
|
125
|
+
def state(self) -> str:
|
126
|
+
"""
|
127
|
+
The current state of the health report.
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "state")
|
130
|
+
|
131
|
+
@property
|
132
|
+
@pulumi.getter(name="targetId")
|
133
|
+
def target_id(self) -> str:
|
134
|
+
"""
|
135
|
+
The OCID of the target database for which this report was created.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "target_id")
|
138
|
+
|
139
|
+
@property
|
140
|
+
@pulumi.getter(name="timeCreated")
|
141
|
+
def time_created(self) -> str:
|
142
|
+
"""
|
143
|
+
The date and time the report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
144
|
+
"""
|
145
|
+
return pulumi.get(self, "time_created")
|
146
|
+
|
147
|
+
@property
|
148
|
+
@pulumi.getter(name="timeUpdated")
|
149
|
+
def time_updated(self) -> str:
|
150
|
+
"""
|
151
|
+
The date and time the report was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339)
|
152
|
+
"""
|
153
|
+
return pulumi.get(self, "time_updated")
|
154
|
+
|
155
|
+
|
156
|
+
class AwaitableGetMaskingPolicyHealthReportResult(GetMaskingPolicyHealthReportResult):
|
157
|
+
# pylint: disable=using-constant-test
|
158
|
+
def __await__(self):
|
159
|
+
if False:
|
160
|
+
yield self
|
161
|
+
return GetMaskingPolicyHealthReportResult(
|
162
|
+
compartment_id=self.compartment_id,
|
163
|
+
defined_tags=self.defined_tags,
|
164
|
+
description=self.description,
|
165
|
+
display_name=self.display_name,
|
166
|
+
freeform_tags=self.freeform_tags,
|
167
|
+
id=self.id,
|
168
|
+
masking_policy_health_report_id=self.masking_policy_health_report_id,
|
169
|
+
masking_policy_id=self.masking_policy_id,
|
170
|
+
state=self.state,
|
171
|
+
target_id=self.target_id,
|
172
|
+
time_created=self.time_created,
|
173
|
+
time_updated=self.time_updated)
|
174
|
+
|
175
|
+
|
176
|
+
def get_masking_policy_health_report(masking_policy_health_report_id: Optional[str] = None,
|
177
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMaskingPolicyHealthReportResult:
|
178
|
+
"""
|
179
|
+
This data source provides details about a specific Masking Policy Health Report resource in Oracle Cloud Infrastructure Data Safe service.
|
180
|
+
|
181
|
+
Gets the details of the specified masking policy health report.
|
182
|
+
|
183
|
+
## Example Usage
|
184
|
+
|
185
|
+
```python
|
186
|
+
import pulumi
|
187
|
+
import pulumi_oci as oci
|
188
|
+
|
189
|
+
test_masking_policy_health_report = oci.DataSafe.get_masking_policy_health_report(masking_policy_health_report_id=test_masking_policy_health_report_oci_data_safe_masking_policy_health_report["id"])
|
190
|
+
```
|
191
|
+
|
192
|
+
|
193
|
+
:param str masking_policy_health_report_id: The OCID of the masking health report.
|
194
|
+
"""
|
195
|
+
__args__ = dict()
|
196
|
+
__args__['maskingPolicyHealthReportId'] = masking_policy_health_report_id
|
197
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
198
|
+
__ret__ = pulumi.runtime.invoke('oci:DataSafe/getMaskingPolicyHealthReport:getMaskingPolicyHealthReport', __args__, opts=opts, typ=GetMaskingPolicyHealthReportResult).value
|
199
|
+
|
200
|
+
return AwaitableGetMaskingPolicyHealthReportResult(
|
201
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
202
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
203
|
+
description=pulumi.get(__ret__, 'description'),
|
204
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
205
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
206
|
+
id=pulumi.get(__ret__, 'id'),
|
207
|
+
masking_policy_health_report_id=pulumi.get(__ret__, 'masking_policy_health_report_id'),
|
208
|
+
masking_policy_id=pulumi.get(__ret__, 'masking_policy_id'),
|
209
|
+
state=pulumi.get(__ret__, 'state'),
|
210
|
+
target_id=pulumi.get(__ret__, 'target_id'),
|
211
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
212
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
213
|
+
|
214
|
+
|
215
|
+
@_utilities.lift_output_func(get_masking_policy_health_report)
|
216
|
+
def get_masking_policy_health_report_output(masking_policy_health_report_id: Optional[pulumi.Input[str]] = None,
|
217
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetMaskingPolicyHealthReportResult]:
|
218
|
+
"""
|
219
|
+
This data source provides details about a specific Masking Policy Health Report resource in Oracle Cloud Infrastructure Data Safe service.
|
220
|
+
|
221
|
+
Gets the details of the specified masking policy health report.
|
222
|
+
|
223
|
+
## Example Usage
|
224
|
+
|
225
|
+
```python
|
226
|
+
import pulumi
|
227
|
+
import pulumi_oci as oci
|
228
|
+
|
229
|
+
test_masking_policy_health_report = oci.DataSafe.get_masking_policy_health_report(masking_policy_health_report_id=test_masking_policy_health_report_oci_data_safe_masking_policy_health_report["id"])
|
230
|
+
```
|
231
|
+
|
232
|
+
|
233
|
+
:param str masking_policy_health_report_id: The OCID of the masking health report.
|
234
|
+
"""
|
235
|
+
...
|