pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.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 +211 -0
- pulumi_oci/containerengine/_inputs.py +43 -44
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +128 -43
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +168 -33
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +595 -21
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +4116 -1225
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +3831 -267
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/RECORD +206 -150
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/top_level.txt +0 -0
pulumi_oci/datasafe/outputs.py
CHANGED
@@ -50,6 +50,8 @@ __all__ = [
|
|
50
50
|
'SensitiveDataModelReferentialRelationChild',
|
51
51
|
'SensitiveDataModelReferentialRelationParent',
|
52
52
|
'SensitiveDataModelTablesForDiscovery',
|
53
|
+
'SensitiveTypeGroupGroupedSensitiveTypeItem',
|
54
|
+
'SensitiveTypeGroupGroupedSensitiveTypePatchOperation',
|
53
55
|
'TargetDatabaseConnectionOption',
|
54
56
|
'TargetDatabaseCredentials',
|
55
57
|
'TargetDatabaseDatabaseDetails',
|
@@ -184,6 +186,9 @@ __all__ = [
|
|
184
186
|
'GetMaskingReportMaskedColumnsFilterResult',
|
185
187
|
'GetMaskingReportMaskedColumnsMaskedColumnCollectionResult',
|
186
188
|
'GetMaskingReportMaskedColumnsMaskedColumnCollectionItemResult',
|
189
|
+
'GetMaskingReportMaskingErrorsFilterResult',
|
190
|
+
'GetMaskingReportMaskingErrorsMaskingErrorCollectionResult',
|
191
|
+
'GetMaskingReportMaskingErrorsMaskingErrorCollectionItemResult',
|
187
192
|
'GetMaskingReportsFilterResult',
|
188
193
|
'GetMaskingReportsMaskedColumnItemResult',
|
189
194
|
'GetMaskingReportsMaskingReportCollectionResult',
|
@@ -307,6 +312,10 @@ __all__ = [
|
|
307
312
|
'GetSecurityPolicyReportsFilterResult',
|
308
313
|
'GetSecurityPolicyReportsSecurityPolicyReportCollectionResult',
|
309
314
|
'GetSecurityPolicyReportsSecurityPolicyReportCollectionItemResult',
|
315
|
+
'GetSensitiveColumnAnalyticsFilterResult',
|
316
|
+
'GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionResult',
|
317
|
+
'GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionItemResult',
|
318
|
+
'GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionItemDimensionResult',
|
310
319
|
'GetSensitiveDataModelReferentialRelationChildResult',
|
311
320
|
'GetSensitiveDataModelReferentialRelationParentResult',
|
312
321
|
'GetSensitiveDataModelReferentialRelationsFilterResult',
|
@@ -331,6 +340,14 @@ __all__ = [
|
|
331
340
|
'GetSensitiveDataModelsSensitiveDataModelCollectionResult',
|
332
341
|
'GetSensitiveDataModelsSensitiveDataModelCollectionItemResult',
|
333
342
|
'GetSensitiveDataModelsSensitiveDataModelCollectionItemTablesForDiscoveryResult',
|
343
|
+
'GetSensitiveTypeGroupGroupedSensitiveTypesFilterResult',
|
344
|
+
'GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionResult',
|
345
|
+
'GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemResult',
|
346
|
+
'GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemItemResult',
|
347
|
+
'GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemPatchOperationResult',
|
348
|
+
'GetSensitiveTypeGroupsFilterResult',
|
349
|
+
'GetSensitiveTypeGroupsSensitiveTypeGroupCollectionResult',
|
350
|
+
'GetSensitiveTypeGroupsSensitiveTypeGroupCollectionItemResult',
|
334
351
|
'GetSensitiveTypesExportsFilterResult',
|
335
352
|
'GetSensitiveTypesExportsSensitiveTypesExportCollectionResult',
|
336
353
|
'GetSensitiveTypesExportsSensitiveTypesExportCollectionItemResult',
|
@@ -4471,6 +4488,82 @@ class SensitiveDataModelTablesForDiscovery(dict):
|
|
4471
4488
|
return pulumi.get(self, "table_names")
|
4472
4489
|
|
4473
4490
|
|
4491
|
+
@pulumi.output_type
|
4492
|
+
class SensitiveTypeGroupGroupedSensitiveTypeItem(dict):
|
4493
|
+
@staticmethod
|
4494
|
+
def __key_warning(key: str):
|
4495
|
+
suggest = None
|
4496
|
+
if key == "sensitiveTypeId":
|
4497
|
+
suggest = "sensitive_type_id"
|
4498
|
+
|
4499
|
+
if suggest:
|
4500
|
+
pulumi.log.warn(f"Key '{key}' not found in SensitiveTypeGroupGroupedSensitiveTypeItem. Access the value via the '{suggest}' property getter instead.")
|
4501
|
+
|
4502
|
+
def __getitem__(self, key: str) -> Any:
|
4503
|
+
SensitiveTypeGroupGroupedSensitiveTypeItem.__key_warning(key)
|
4504
|
+
return super().__getitem__(key)
|
4505
|
+
|
4506
|
+
def get(self, key: str, default = None) -> Any:
|
4507
|
+
SensitiveTypeGroupGroupedSensitiveTypeItem.__key_warning(key)
|
4508
|
+
return super().get(key, default)
|
4509
|
+
|
4510
|
+
def __init__(__self__, *,
|
4511
|
+
sensitive_type_id: Optional[str] = None):
|
4512
|
+
"""
|
4513
|
+
:param str sensitive_type_id: The OCID of the sensitive type.
|
4514
|
+
"""
|
4515
|
+
if sensitive_type_id is not None:
|
4516
|
+
pulumi.set(__self__, "sensitive_type_id", sensitive_type_id)
|
4517
|
+
|
4518
|
+
@property
|
4519
|
+
@pulumi.getter(name="sensitiveTypeId")
|
4520
|
+
def sensitive_type_id(self) -> Optional[str]:
|
4521
|
+
"""
|
4522
|
+
The OCID of the sensitive type.
|
4523
|
+
"""
|
4524
|
+
return pulumi.get(self, "sensitive_type_id")
|
4525
|
+
|
4526
|
+
|
4527
|
+
@pulumi.output_type
|
4528
|
+
class SensitiveTypeGroupGroupedSensitiveTypePatchOperation(dict):
|
4529
|
+
def __init__(__self__, *,
|
4530
|
+
operation: str,
|
4531
|
+
selection: str,
|
4532
|
+
value: Mapping[str, str]):
|
4533
|
+
"""
|
4534
|
+
:param str operation: (Updatable) The operation can be one of these values: `INSERT`, `MERGE`, `REMOVE`
|
4535
|
+
:param str selection: (Updatable)
|
4536
|
+
:param Mapping[str, str] value: (Updatable)
|
4537
|
+
"""
|
4538
|
+
pulumi.set(__self__, "operation", operation)
|
4539
|
+
pulumi.set(__self__, "selection", selection)
|
4540
|
+
pulumi.set(__self__, "value", value)
|
4541
|
+
|
4542
|
+
@property
|
4543
|
+
@pulumi.getter
|
4544
|
+
def operation(self) -> str:
|
4545
|
+
"""
|
4546
|
+
(Updatable) The operation can be one of these values: `INSERT`, `MERGE`, `REMOVE`
|
4547
|
+
"""
|
4548
|
+
return pulumi.get(self, "operation")
|
4549
|
+
|
4550
|
+
@property
|
4551
|
+
@pulumi.getter
|
4552
|
+
def selection(self) -> str:
|
4553
|
+
"""
|
4554
|
+
(Updatable)
|
4555
|
+
"""
|
4556
|
+
return pulumi.get(self, "selection")
|
4557
|
+
|
4558
|
+
@property
|
4559
|
+
@pulumi.getter
|
4560
|
+
def value(self) -> Mapping[str, str]:
|
4561
|
+
"""
|
4562
|
+
(Updatable)
|
4563
|
+
"""
|
4564
|
+
return pulumi.get(self, "value")
|
4565
|
+
|
4566
|
+
|
4474
4567
|
@pulumi.output_type
|
4475
4568
|
class TargetDatabaseConnectionOption(dict):
|
4476
4569
|
@staticmethod
|
@@ -14446,6 +14539,102 @@ class GetMaskingReportMaskedColumnsMaskedColumnCollectionItemResult(dict):
|
|
14446
14539
|
return pulumi.get(self, "total_masked_values")
|
14447
14540
|
|
14448
14541
|
|
14542
|
+
@pulumi.output_type
|
14543
|
+
class GetMaskingReportMaskingErrorsFilterResult(dict):
|
14544
|
+
def __init__(__self__, *,
|
14545
|
+
name: str,
|
14546
|
+
values: Sequence[str],
|
14547
|
+
regex: Optional[bool] = None):
|
14548
|
+
pulumi.set(__self__, "name", name)
|
14549
|
+
pulumi.set(__self__, "values", values)
|
14550
|
+
if regex is not None:
|
14551
|
+
pulumi.set(__self__, "regex", regex)
|
14552
|
+
|
14553
|
+
@property
|
14554
|
+
@pulumi.getter
|
14555
|
+
def name(self) -> str:
|
14556
|
+
return pulumi.get(self, "name")
|
14557
|
+
|
14558
|
+
@property
|
14559
|
+
@pulumi.getter
|
14560
|
+
def values(self) -> Sequence[str]:
|
14561
|
+
return pulumi.get(self, "values")
|
14562
|
+
|
14563
|
+
@property
|
14564
|
+
@pulumi.getter
|
14565
|
+
def regex(self) -> Optional[bool]:
|
14566
|
+
return pulumi.get(self, "regex")
|
14567
|
+
|
14568
|
+
|
14569
|
+
@pulumi.output_type
|
14570
|
+
class GetMaskingReportMaskingErrorsMaskingErrorCollectionResult(dict):
|
14571
|
+
def __init__(__self__, *,
|
14572
|
+
items: Sequence['outputs.GetMaskingReportMaskingErrorsMaskingErrorCollectionItemResult']):
|
14573
|
+
"""
|
14574
|
+
:param Sequence['GetMaskingReportMaskingErrorsMaskingErrorCollectionItemArgs'] items: An array of masking error objects.
|
14575
|
+
"""
|
14576
|
+
pulumi.set(__self__, "items", items)
|
14577
|
+
|
14578
|
+
@property
|
14579
|
+
@pulumi.getter
|
14580
|
+
def items(self) -> Sequence['outputs.GetMaskingReportMaskingErrorsMaskingErrorCollectionItemResult']:
|
14581
|
+
"""
|
14582
|
+
An array of masking error objects.
|
14583
|
+
"""
|
14584
|
+
return pulumi.get(self, "items")
|
14585
|
+
|
14586
|
+
|
14587
|
+
@pulumi.output_type
|
14588
|
+
class GetMaskingReportMaskingErrorsMaskingErrorCollectionItemResult(dict):
|
14589
|
+
def __init__(__self__, *,
|
14590
|
+
error: str,
|
14591
|
+
failed_statement: str,
|
14592
|
+
step_name: str,
|
14593
|
+
time_created: str):
|
14594
|
+
"""
|
14595
|
+
:param str error: The text of the masking error.
|
14596
|
+
:param str failed_statement: The statement resulting into the error.
|
14597
|
+
:param str step_name: A filter to return only masking errors that match the specified step name.
|
14598
|
+
:param str time_created: The date and time the error entry was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
14599
|
+
"""
|
14600
|
+
pulumi.set(__self__, "error", error)
|
14601
|
+
pulumi.set(__self__, "failed_statement", failed_statement)
|
14602
|
+
pulumi.set(__self__, "step_name", step_name)
|
14603
|
+
pulumi.set(__self__, "time_created", time_created)
|
14604
|
+
|
14605
|
+
@property
|
14606
|
+
@pulumi.getter
|
14607
|
+
def error(self) -> str:
|
14608
|
+
"""
|
14609
|
+
The text of the masking error.
|
14610
|
+
"""
|
14611
|
+
return pulumi.get(self, "error")
|
14612
|
+
|
14613
|
+
@property
|
14614
|
+
@pulumi.getter(name="failedStatement")
|
14615
|
+
def failed_statement(self) -> str:
|
14616
|
+
"""
|
14617
|
+
The statement resulting into the error.
|
14618
|
+
"""
|
14619
|
+
return pulumi.get(self, "failed_statement")
|
14620
|
+
|
14621
|
+
@property
|
14622
|
+
@pulumi.getter(name="stepName")
|
14623
|
+
def step_name(self) -> str:
|
14624
|
+
"""
|
14625
|
+
A filter to return only masking errors that match the specified step name.
|
14626
|
+
"""
|
14627
|
+
return pulumi.get(self, "step_name")
|
14628
|
+
|
14629
|
+
@property
|
14630
|
+
@pulumi.getter(name="timeCreated")
|
14631
|
+
def time_created(self) -> str:
|
14632
|
+
"""
|
14633
|
+
The date and time the error entry was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
14634
|
+
"""
|
14635
|
+
return pulumi.get(self, "time_created")
|
14636
|
+
|
14637
|
+
|
14449
14638
|
@pulumi.output_type
|
14450
14639
|
class GetMaskingReportsFilterResult(dict):
|
14451
14640
|
def __init__(__self__, *,
|
@@ -14611,6 +14800,7 @@ class GetMaskingReportsMaskingReportCollectionItemResult(dict):
|
|
14611
14800
|
is_redo_logging_enabled: bool,
|
14612
14801
|
is_refresh_stats_enabled: bool,
|
14613
14802
|
masking_policy_id: str,
|
14803
|
+
masking_status: str,
|
14614
14804
|
masking_work_request_id: str,
|
14615
14805
|
parallel_degree: str,
|
14616
14806
|
recompile: str,
|
@@ -14623,7 +14813,9 @@ class GetMaskingReportsMaskingReportCollectionItemResult(dict):
|
|
14623
14813
|
total_masked_objects: str,
|
14624
14814
|
total_masked_schemas: str,
|
14625
14815
|
total_masked_sensitive_types: str,
|
14626
|
-
total_masked_values: str
|
14816
|
+
total_masked_values: str,
|
14817
|
+
total_post_masking_script_errors: str,
|
14818
|
+
total_pre_masking_script_errors: str):
|
14627
14819
|
"""
|
14628
14820
|
:param str compartment_id: A filter to return only resources that match the specified compartment OCID.
|
14629
14821
|
:param str id: The OCID of the masking report.
|
@@ -14631,6 +14823,7 @@ class GetMaskingReportsMaskingReportCollectionItemResult(dict):
|
|
14631
14823
|
:param bool is_redo_logging_enabled: Indicates if redo logging was enabled during the masking operation.
|
14632
14824
|
:param bool is_refresh_stats_enabled: Indicates if statistics gathering was enabled during the masking operation.
|
14633
14825
|
:param str masking_policy_id: A filter to return only the resources that match the specified masking policy OCID.
|
14826
|
+
:param str masking_status: The status of the masking job.
|
14634
14827
|
:param str masking_work_request_id: The OCID of the masking work request that resulted in this masking report.
|
14635
14828
|
:param str parallel_degree: Indicates if parallel execution was enabled during the masking operation.
|
14636
14829
|
:param str recompile: Indicates how invalid objects were recompiled post the masking operation.
|
@@ -14644,6 +14837,8 @@ class GetMaskingReportsMaskingReportCollectionItemResult(dict):
|
|
14644
14837
|
:param str total_masked_schemas: The total number of unique schemas that contain the masked columns.
|
14645
14838
|
:param str total_masked_sensitive_types: The total number of unique sensitive types associated with the masked columns.
|
14646
14839
|
:param str total_masked_values: The total number of masked values.
|
14840
|
+
:param str total_post_masking_script_errors: The total number of errors in post-masking script.
|
14841
|
+
:param str total_pre_masking_script_errors: The total number of errors in pre-masking script.
|
14647
14842
|
"""
|
14648
14843
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
14649
14844
|
pulumi.set(__self__, "id", id)
|
@@ -14651,6 +14846,7 @@ class GetMaskingReportsMaskingReportCollectionItemResult(dict):
|
|
14651
14846
|
pulumi.set(__self__, "is_redo_logging_enabled", is_redo_logging_enabled)
|
14652
14847
|
pulumi.set(__self__, "is_refresh_stats_enabled", is_refresh_stats_enabled)
|
14653
14848
|
pulumi.set(__self__, "masking_policy_id", masking_policy_id)
|
14849
|
+
pulumi.set(__self__, "masking_status", masking_status)
|
14654
14850
|
pulumi.set(__self__, "masking_work_request_id", masking_work_request_id)
|
14655
14851
|
pulumi.set(__self__, "parallel_degree", parallel_degree)
|
14656
14852
|
pulumi.set(__self__, "recompile", recompile)
|
@@ -14664,6 +14860,8 @@ class GetMaskingReportsMaskingReportCollectionItemResult(dict):
|
|
14664
14860
|
pulumi.set(__self__, "total_masked_schemas", total_masked_schemas)
|
14665
14861
|
pulumi.set(__self__, "total_masked_sensitive_types", total_masked_sensitive_types)
|
14666
14862
|
pulumi.set(__self__, "total_masked_values", total_masked_values)
|
14863
|
+
pulumi.set(__self__, "total_post_masking_script_errors", total_post_masking_script_errors)
|
14864
|
+
pulumi.set(__self__, "total_pre_masking_script_errors", total_pre_masking_script_errors)
|
14667
14865
|
|
14668
14866
|
@property
|
14669
14867
|
@pulumi.getter(name="compartmentId")
|
@@ -14713,6 +14911,14 @@ class GetMaskingReportsMaskingReportCollectionItemResult(dict):
|
|
14713
14911
|
"""
|
14714
14912
|
return pulumi.get(self, "masking_policy_id")
|
14715
14913
|
|
14914
|
+
@property
|
14915
|
+
@pulumi.getter(name="maskingStatus")
|
14916
|
+
def masking_status(self) -> str:
|
14917
|
+
"""
|
14918
|
+
The status of the masking job.
|
14919
|
+
"""
|
14920
|
+
return pulumi.get(self, "masking_status")
|
14921
|
+
|
14716
14922
|
@property
|
14717
14923
|
@pulumi.getter(name="maskingWorkRequestId")
|
14718
14924
|
def masking_work_request_id(self) -> str:
|
@@ -14817,6 +15023,22 @@ class GetMaskingReportsMaskingReportCollectionItemResult(dict):
|
|
14817
15023
|
"""
|
14818
15024
|
return pulumi.get(self, "total_masked_values")
|
14819
15025
|
|
15026
|
+
@property
|
15027
|
+
@pulumi.getter(name="totalPostMaskingScriptErrors")
|
15028
|
+
def total_post_masking_script_errors(self) -> str:
|
15029
|
+
"""
|
15030
|
+
The total number of errors in post-masking script.
|
15031
|
+
"""
|
15032
|
+
return pulumi.get(self, "total_post_masking_script_errors")
|
15033
|
+
|
15034
|
+
@property
|
15035
|
+
@pulumi.getter(name="totalPreMaskingScriptErrors")
|
15036
|
+
def total_pre_masking_script_errors(self) -> str:
|
15037
|
+
"""
|
15038
|
+
The total number of errors in pre-masking script.
|
15039
|
+
"""
|
15040
|
+
return pulumi.get(self, "total_pre_masking_script_errors")
|
15041
|
+
|
14820
15042
|
|
14821
15043
|
@pulumi.output_type
|
14822
15044
|
class GetOnpremConnectorsFilterResult(dict):
|
@@ -21017,7 +21239,7 @@ class GetSecurityAssessmentFindingsFindingResult(dict):
|
|
21017
21239
|
:param str lifecycle_details: Details about the current state of the finding.
|
21018
21240
|
:param str oneline: Provides a recommended approach to take to remediate the finding reported.
|
21019
21241
|
:param str oracle_defined_severity: The severity of the finding as determined by security assessment. This cannot be modified by user.
|
21020
|
-
:param Sequence['GetSecurityAssessmentFindingsFindingReferenceArgs'] references: An optional filter to return only findings
|
21242
|
+
:param Sequence['GetSecurityAssessmentFindingsFindingReferenceArgs'] references: An optional filter to return only findings that match the specified reference.
|
21021
21243
|
:param str remarks: The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
|
21022
21244
|
:param str severity: A filter to return only findings of a particular risk level.
|
21023
21245
|
:param str state: A filter to return only the findings that match the specified lifecycle states.
|
@@ -21131,7 +21353,7 @@ class GetSecurityAssessmentFindingsFindingResult(dict):
|
|
21131
21353
|
@pulumi.getter
|
21132
21354
|
def references(self) -> Sequence['outputs.GetSecurityAssessmentFindingsFindingReferenceResult']:
|
21133
21355
|
"""
|
21134
|
-
An optional filter to return only findings
|
21356
|
+
An optional filter to return only findings that match the specified reference.
|
21135
21357
|
"""
|
21136
21358
|
return pulumi.get(self, "references")
|
21137
21359
|
|
@@ -24824,6 +25046,153 @@ class GetSecurityPolicyReportsSecurityPolicyReportCollectionItemResult(dict):
|
|
24824
25046
|
return pulumi.get(self, "time_updated")
|
24825
25047
|
|
24826
25048
|
|
25049
|
+
@pulumi.output_type
|
25050
|
+
class GetSensitiveColumnAnalyticsFilterResult(dict):
|
25051
|
+
def __init__(__self__, *,
|
25052
|
+
name: str,
|
25053
|
+
values: Sequence[str],
|
25054
|
+
regex: Optional[bool] = None):
|
25055
|
+
pulumi.set(__self__, "name", name)
|
25056
|
+
pulumi.set(__self__, "values", values)
|
25057
|
+
if regex is not None:
|
25058
|
+
pulumi.set(__self__, "regex", regex)
|
25059
|
+
|
25060
|
+
@property
|
25061
|
+
@pulumi.getter
|
25062
|
+
def name(self) -> str:
|
25063
|
+
return pulumi.get(self, "name")
|
25064
|
+
|
25065
|
+
@property
|
25066
|
+
@pulumi.getter
|
25067
|
+
def values(self) -> Sequence[str]:
|
25068
|
+
return pulumi.get(self, "values")
|
25069
|
+
|
25070
|
+
@property
|
25071
|
+
@pulumi.getter
|
25072
|
+
def regex(self) -> Optional[bool]:
|
25073
|
+
return pulumi.get(self, "regex")
|
25074
|
+
|
25075
|
+
|
25076
|
+
@pulumi.output_type
|
25077
|
+
class GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionResult(dict):
|
25078
|
+
def __init__(__self__, *,
|
25079
|
+
items: Sequence['outputs.GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionItemResult']):
|
25080
|
+
"""
|
25081
|
+
:param Sequence['GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionItemArgs'] items: An array of sensitive column analytics summary objects.
|
25082
|
+
"""
|
25083
|
+
pulumi.set(__self__, "items", items)
|
25084
|
+
|
25085
|
+
@property
|
25086
|
+
@pulumi.getter
|
25087
|
+
def items(self) -> Sequence['outputs.GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionItemResult']:
|
25088
|
+
"""
|
25089
|
+
An array of sensitive column analytics summary objects.
|
25090
|
+
"""
|
25091
|
+
return pulumi.get(self, "items")
|
25092
|
+
|
25093
|
+
|
25094
|
+
@pulumi.output_type
|
25095
|
+
class GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionItemResult(dict):
|
25096
|
+
def __init__(__self__, *,
|
25097
|
+
dimensions: Sequence['outputs.GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionItemDimensionResult'],
|
25098
|
+
sensitive_column_analytic_count: str):
|
25099
|
+
"""
|
25100
|
+
:param Sequence['GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionItemDimensionArgs'] dimensions: The dimensions available for sensitive column analytics.
|
25101
|
+
:param str sensitive_column_analytic_count: The total count for the aggregation metric.
|
25102
|
+
"""
|
25103
|
+
pulumi.set(__self__, "dimensions", dimensions)
|
25104
|
+
pulumi.set(__self__, "sensitive_column_analytic_count", sensitive_column_analytic_count)
|
25105
|
+
|
25106
|
+
@property
|
25107
|
+
@pulumi.getter
|
25108
|
+
def dimensions(self) -> Sequence['outputs.GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionItemDimensionResult']:
|
25109
|
+
"""
|
25110
|
+
The dimensions available for sensitive column analytics.
|
25111
|
+
"""
|
25112
|
+
return pulumi.get(self, "dimensions")
|
25113
|
+
|
25114
|
+
@property
|
25115
|
+
@pulumi.getter(name="sensitiveColumnAnalyticCount")
|
25116
|
+
def sensitive_column_analytic_count(self) -> str:
|
25117
|
+
"""
|
25118
|
+
The total count for the aggregation metric.
|
25119
|
+
"""
|
25120
|
+
return pulumi.get(self, "sensitive_column_analytic_count")
|
25121
|
+
|
25122
|
+
|
25123
|
+
@pulumi.output_type
|
25124
|
+
class GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionItemDimensionResult(dict):
|
25125
|
+
def __init__(__self__, *,
|
25126
|
+
column_name: str,
|
25127
|
+
object: str,
|
25128
|
+
schema_name: str,
|
25129
|
+
sensitive_data_model_id: str,
|
25130
|
+
sensitive_type_id: str,
|
25131
|
+
target_id: str):
|
25132
|
+
"""
|
25133
|
+
:param str column_name: A filter to return only a specific column based on column name.
|
25134
|
+
:param str object: A filter to return only items related to a specific object name.
|
25135
|
+
:param str schema_name: A filter to return only items related to specific schema name.
|
25136
|
+
:param str sensitive_data_model_id: A filter to return only the resources that match the specified sensitive data model OCID.
|
25137
|
+
:param str sensitive_type_id: A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
|
25138
|
+
:param str target_id: A filter to return only items related to a specific target OCID.
|
25139
|
+
"""
|
25140
|
+
pulumi.set(__self__, "column_name", column_name)
|
25141
|
+
pulumi.set(__self__, "object", object)
|
25142
|
+
pulumi.set(__self__, "schema_name", schema_name)
|
25143
|
+
pulumi.set(__self__, "sensitive_data_model_id", sensitive_data_model_id)
|
25144
|
+
pulumi.set(__self__, "sensitive_type_id", sensitive_type_id)
|
25145
|
+
pulumi.set(__self__, "target_id", target_id)
|
25146
|
+
|
25147
|
+
@property
|
25148
|
+
@pulumi.getter(name="columnName")
|
25149
|
+
def column_name(self) -> str:
|
25150
|
+
"""
|
25151
|
+
A filter to return only a specific column based on column name.
|
25152
|
+
"""
|
25153
|
+
return pulumi.get(self, "column_name")
|
25154
|
+
|
25155
|
+
@property
|
25156
|
+
@pulumi.getter
|
25157
|
+
def object(self) -> str:
|
25158
|
+
"""
|
25159
|
+
A filter to return only items related to a specific object name.
|
25160
|
+
"""
|
25161
|
+
return pulumi.get(self, "object")
|
25162
|
+
|
25163
|
+
@property
|
25164
|
+
@pulumi.getter(name="schemaName")
|
25165
|
+
def schema_name(self) -> str:
|
25166
|
+
"""
|
25167
|
+
A filter to return only items related to specific schema name.
|
25168
|
+
"""
|
25169
|
+
return pulumi.get(self, "schema_name")
|
25170
|
+
|
25171
|
+
@property
|
25172
|
+
@pulumi.getter(name="sensitiveDataModelId")
|
25173
|
+
def sensitive_data_model_id(self) -> str:
|
25174
|
+
"""
|
25175
|
+
A filter to return only the resources that match the specified sensitive data model OCID.
|
25176
|
+
"""
|
25177
|
+
return pulumi.get(self, "sensitive_data_model_id")
|
25178
|
+
|
25179
|
+
@property
|
25180
|
+
@pulumi.getter(name="sensitiveTypeId")
|
25181
|
+
def sensitive_type_id(self) -> str:
|
25182
|
+
"""
|
25183
|
+
A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
|
25184
|
+
"""
|
25185
|
+
return pulumi.get(self, "sensitive_type_id")
|
25186
|
+
|
25187
|
+
@property
|
25188
|
+
@pulumi.getter(name="targetId")
|
25189
|
+
def target_id(self) -> str:
|
25190
|
+
"""
|
25191
|
+
A filter to return only items related to a specific target OCID.
|
25192
|
+
"""
|
25193
|
+
return pulumi.get(self, "target_id")
|
25194
|
+
|
25195
|
+
|
24827
25196
|
@pulumi.output_type
|
24828
25197
|
class GetSensitiveDataModelReferentialRelationChildResult(dict):
|
24829
25198
|
def __init__(__self__, *,
|
@@ -25832,6 +26201,7 @@ class GetSensitiveDataModelsSensitiveDataModelCollectionItemResult(dict):
|
|
25832
26201
|
is_include_all_sensitive_types: bool,
|
25833
26202
|
is_sample_data_collection_enabled: bool,
|
25834
26203
|
schemas_for_discoveries: Sequence[str],
|
26204
|
+
sensitive_type_group_ids_for_discoveries: Sequence[str],
|
25835
26205
|
sensitive_type_ids_for_discoveries: Sequence[str],
|
25836
26206
|
state: str,
|
25837
26207
|
system_tags: Mapping[str, str],
|
@@ -25852,6 +26222,7 @@ class GetSensitiveDataModelsSensitiveDataModelCollectionItemResult(dict):
|
|
25852
26222
|
:param bool is_include_all_sensitive_types: Indicates if all the existing sensitive types should be used by data discovery jobs.If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used for data discovery.
|
25853
26223
|
:param bool is_sample_data_collection_enabled: Indicates if data discovery jobs should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.
|
25854
26224
|
:param Sequence[str] schemas_for_discoveries: The schemas to be scanned by data discovery jobs.
|
26225
|
+
:param Sequence[str] sensitive_type_group_ids_for_discoveries: The OCIDs of the sensitive type groups to be used by data discovery jobs.
|
25855
26226
|
:param Sequence[str] sensitive_type_ids_for_discoveries: The OCIDs of the sensitive types to be used by data discovery jobs.
|
25856
26227
|
:param str state: A filter to return only the resources that match the specified lifecycle state.
|
25857
26228
|
:param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
@@ -25872,6 +26243,7 @@ class GetSensitiveDataModelsSensitiveDataModelCollectionItemResult(dict):
|
|
25872
26243
|
pulumi.set(__self__, "is_include_all_sensitive_types", is_include_all_sensitive_types)
|
25873
26244
|
pulumi.set(__self__, "is_sample_data_collection_enabled", is_sample_data_collection_enabled)
|
25874
26245
|
pulumi.set(__self__, "schemas_for_discoveries", schemas_for_discoveries)
|
26246
|
+
pulumi.set(__self__, "sensitive_type_group_ids_for_discoveries", sensitive_type_group_ids_for_discoveries)
|
25875
26247
|
pulumi.set(__self__, "sensitive_type_ids_for_discoveries", sensitive_type_ids_for_discoveries)
|
25876
26248
|
pulumi.set(__self__, "state", state)
|
25877
26249
|
pulumi.set(__self__, "system_tags", system_tags)
|
@@ -25976,6 +26348,14 @@ class GetSensitiveDataModelsSensitiveDataModelCollectionItemResult(dict):
|
|
25976
26348
|
"""
|
25977
26349
|
return pulumi.get(self, "schemas_for_discoveries")
|
25978
26350
|
|
26351
|
+
@property
|
26352
|
+
@pulumi.getter(name="sensitiveTypeGroupIdsForDiscoveries")
|
26353
|
+
def sensitive_type_group_ids_for_discoveries(self) -> Sequence[str]:
|
26354
|
+
"""
|
26355
|
+
The OCIDs of the sensitive type groups to be used by data discovery jobs.
|
26356
|
+
"""
|
26357
|
+
return pulumi.get(self, "sensitive_type_group_ids_for_discoveries")
|
26358
|
+
|
25979
26359
|
@property
|
25980
26360
|
@pulumi.getter(name="sensitiveTypeIdsForDiscoveries")
|
25981
26361
|
def sensitive_type_ids_for_discoveries(self) -> Sequence[str]:
|
@@ -26062,6 +26442,299 @@ class GetSensitiveDataModelsSensitiveDataModelCollectionItemTablesForDiscoveryRe
|
|
26062
26442
|
return pulumi.get(self, "table_names")
|
26063
26443
|
|
26064
26444
|
|
26445
|
+
@pulumi.output_type
|
26446
|
+
class GetSensitiveTypeGroupGroupedSensitiveTypesFilterResult(dict):
|
26447
|
+
def __init__(__self__, *,
|
26448
|
+
name: str,
|
26449
|
+
values: Sequence[str],
|
26450
|
+
regex: Optional[bool] = None):
|
26451
|
+
pulumi.set(__self__, "name", name)
|
26452
|
+
pulumi.set(__self__, "values", values)
|
26453
|
+
if regex is not None:
|
26454
|
+
pulumi.set(__self__, "regex", regex)
|
26455
|
+
|
26456
|
+
@property
|
26457
|
+
@pulumi.getter
|
26458
|
+
def name(self) -> str:
|
26459
|
+
return pulumi.get(self, "name")
|
26460
|
+
|
26461
|
+
@property
|
26462
|
+
@pulumi.getter
|
26463
|
+
def values(self) -> Sequence[str]:
|
26464
|
+
return pulumi.get(self, "values")
|
26465
|
+
|
26466
|
+
@property
|
26467
|
+
@pulumi.getter
|
26468
|
+
def regex(self) -> Optional[bool]:
|
26469
|
+
return pulumi.get(self, "regex")
|
26470
|
+
|
26471
|
+
|
26472
|
+
@pulumi.output_type
|
26473
|
+
class GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionResult(dict):
|
26474
|
+
def __init__(__self__, *,
|
26475
|
+
items: Sequence['outputs.GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemResult']):
|
26476
|
+
"""
|
26477
|
+
:param Sequence['GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemArgs'] items: List of sensitive type id summary objects present in the sensitive type group.
|
26478
|
+
"""
|
26479
|
+
pulumi.set(__self__, "items", items)
|
26480
|
+
|
26481
|
+
@property
|
26482
|
+
@pulumi.getter
|
26483
|
+
def items(self) -> Sequence['outputs.GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemResult']:
|
26484
|
+
"""
|
26485
|
+
List of sensitive type id summary objects present in the sensitive type group.
|
26486
|
+
"""
|
26487
|
+
return pulumi.get(self, "items")
|
26488
|
+
|
26489
|
+
|
26490
|
+
@pulumi.output_type
|
26491
|
+
class GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemResult(dict):
|
26492
|
+
def __init__(__self__, *,
|
26493
|
+
items: Sequence['outputs.GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemItemResult'],
|
26494
|
+
sensitive_type_group_id: str,
|
26495
|
+
patch_operations: Optional[Sequence['outputs.GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemPatchOperationResult']] = None):
|
26496
|
+
"""
|
26497
|
+
:param Sequence['GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemItemArgs'] items: List of sensitive type id summary objects present in the sensitive type group.
|
26498
|
+
:param str sensitive_type_group_id: The OCID of the sensitive type group.
|
26499
|
+
"""
|
26500
|
+
pulumi.set(__self__, "items", items)
|
26501
|
+
pulumi.set(__self__, "sensitive_type_group_id", sensitive_type_group_id)
|
26502
|
+
if patch_operations is not None:
|
26503
|
+
pulumi.set(__self__, "patch_operations", patch_operations)
|
26504
|
+
|
26505
|
+
@property
|
26506
|
+
@pulumi.getter
|
26507
|
+
def items(self) -> Sequence['outputs.GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemItemResult']:
|
26508
|
+
"""
|
26509
|
+
List of sensitive type id summary objects present in the sensitive type group.
|
26510
|
+
"""
|
26511
|
+
return pulumi.get(self, "items")
|
26512
|
+
|
26513
|
+
@property
|
26514
|
+
@pulumi.getter(name="sensitiveTypeGroupId")
|
26515
|
+
def sensitive_type_group_id(self) -> str:
|
26516
|
+
"""
|
26517
|
+
The OCID of the sensitive type group.
|
26518
|
+
"""
|
26519
|
+
return pulumi.get(self, "sensitive_type_group_id")
|
26520
|
+
|
26521
|
+
@property
|
26522
|
+
@pulumi.getter(name="patchOperations")
|
26523
|
+
def patch_operations(self) -> Optional[Sequence['outputs.GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemPatchOperationResult']]:
|
26524
|
+
return pulumi.get(self, "patch_operations")
|
26525
|
+
|
26526
|
+
|
26527
|
+
@pulumi.output_type
|
26528
|
+
class GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemItemResult(dict):
|
26529
|
+
def __init__(__self__, *,
|
26530
|
+
sensitive_type_id: str):
|
26531
|
+
"""
|
26532
|
+
:param str sensitive_type_id: A filter to return only items related to a specific sensitive type OCID.
|
26533
|
+
"""
|
26534
|
+
pulumi.set(__self__, "sensitive_type_id", sensitive_type_id)
|
26535
|
+
|
26536
|
+
@property
|
26537
|
+
@pulumi.getter(name="sensitiveTypeId")
|
26538
|
+
def sensitive_type_id(self) -> str:
|
26539
|
+
"""
|
26540
|
+
A filter to return only items related to a specific sensitive type OCID.
|
26541
|
+
"""
|
26542
|
+
return pulumi.get(self, "sensitive_type_id")
|
26543
|
+
|
26544
|
+
|
26545
|
+
@pulumi.output_type
|
26546
|
+
class GetSensitiveTypeGroupGroupedSensitiveTypesGroupedSensitiveTypeCollectionItemPatchOperationResult(dict):
|
26547
|
+
def __init__(__self__, *,
|
26548
|
+
operation: str,
|
26549
|
+
selection: str,
|
26550
|
+
value: Mapping[str, str]):
|
26551
|
+
pulumi.set(__self__, "operation", operation)
|
26552
|
+
pulumi.set(__self__, "selection", selection)
|
26553
|
+
pulumi.set(__self__, "value", value)
|
26554
|
+
|
26555
|
+
@property
|
26556
|
+
@pulumi.getter
|
26557
|
+
def operation(self) -> str:
|
26558
|
+
return pulumi.get(self, "operation")
|
26559
|
+
|
26560
|
+
@property
|
26561
|
+
@pulumi.getter
|
26562
|
+
def selection(self) -> str:
|
26563
|
+
return pulumi.get(self, "selection")
|
26564
|
+
|
26565
|
+
@property
|
26566
|
+
@pulumi.getter
|
26567
|
+
def value(self) -> Mapping[str, str]:
|
26568
|
+
return pulumi.get(self, "value")
|
26569
|
+
|
26570
|
+
|
26571
|
+
@pulumi.output_type
|
26572
|
+
class GetSensitiveTypeGroupsFilterResult(dict):
|
26573
|
+
def __init__(__self__, *,
|
26574
|
+
name: str,
|
26575
|
+
values: Sequence[str],
|
26576
|
+
regex: Optional[bool] = None):
|
26577
|
+
pulumi.set(__self__, "name", name)
|
26578
|
+
pulumi.set(__self__, "values", values)
|
26579
|
+
if regex is not None:
|
26580
|
+
pulumi.set(__self__, "regex", regex)
|
26581
|
+
|
26582
|
+
@property
|
26583
|
+
@pulumi.getter
|
26584
|
+
def name(self) -> str:
|
26585
|
+
return pulumi.get(self, "name")
|
26586
|
+
|
26587
|
+
@property
|
26588
|
+
@pulumi.getter
|
26589
|
+
def values(self) -> Sequence[str]:
|
26590
|
+
return pulumi.get(self, "values")
|
26591
|
+
|
26592
|
+
@property
|
26593
|
+
@pulumi.getter
|
26594
|
+
def regex(self) -> Optional[bool]:
|
26595
|
+
return pulumi.get(self, "regex")
|
26596
|
+
|
26597
|
+
|
26598
|
+
@pulumi.output_type
|
26599
|
+
class GetSensitiveTypeGroupsSensitiveTypeGroupCollectionResult(dict):
|
26600
|
+
def __init__(__self__, *,
|
26601
|
+
items: Sequence['outputs.GetSensitiveTypeGroupsSensitiveTypeGroupCollectionItemResult']):
|
26602
|
+
pulumi.set(__self__, "items", items)
|
26603
|
+
|
26604
|
+
@property
|
26605
|
+
@pulumi.getter
|
26606
|
+
def items(self) -> Sequence['outputs.GetSensitiveTypeGroupsSensitiveTypeGroupCollectionItemResult']:
|
26607
|
+
return pulumi.get(self, "items")
|
26608
|
+
|
26609
|
+
|
26610
|
+
@pulumi.output_type
|
26611
|
+
class GetSensitiveTypeGroupsSensitiveTypeGroupCollectionItemResult(dict):
|
26612
|
+
def __init__(__self__, *,
|
26613
|
+
compartment_id: str,
|
26614
|
+
defined_tags: Mapping[str, str],
|
26615
|
+
description: str,
|
26616
|
+
display_name: str,
|
26617
|
+
freeform_tags: Mapping[str, str],
|
26618
|
+
id: str,
|
26619
|
+
sensitive_type_count: int,
|
26620
|
+
state: str,
|
26621
|
+
system_tags: Mapping[str, str],
|
26622
|
+
time_created: str,
|
26623
|
+
time_updated: str):
|
26624
|
+
"""
|
26625
|
+
:param str compartment_id: A filter to return only resources that match the specified compartment OCID.
|
26626
|
+
:param Mapping[str, str] defined_tags: 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"}`
|
26627
|
+
:param str description: The description of the sensitive type group.
|
26628
|
+
:param str display_name: A filter to return only resources that match the specified display name.
|
26629
|
+
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
26630
|
+
:param str id: The OCID of the sensitive type group.
|
26631
|
+
:param int sensitive_type_count: The number of sensitive types in the specified sensitive type group.
|
26632
|
+
:param str state: A filter to return only the resources that match the specified lifecycle state.
|
26633
|
+
:param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
26634
|
+
:param str time_created: The date and time the sensitive type group was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
26635
|
+
:param str time_updated: The date and time the sensitive type group was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
26636
|
+
"""
|
26637
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
26638
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
26639
|
+
pulumi.set(__self__, "description", description)
|
26640
|
+
pulumi.set(__self__, "display_name", display_name)
|
26641
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
26642
|
+
pulumi.set(__self__, "id", id)
|
26643
|
+
pulumi.set(__self__, "sensitive_type_count", sensitive_type_count)
|
26644
|
+
pulumi.set(__self__, "state", state)
|
26645
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
26646
|
+
pulumi.set(__self__, "time_created", time_created)
|
26647
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
26648
|
+
|
26649
|
+
@property
|
26650
|
+
@pulumi.getter(name="compartmentId")
|
26651
|
+
def compartment_id(self) -> str:
|
26652
|
+
"""
|
26653
|
+
A filter to return only resources that match the specified compartment OCID.
|
26654
|
+
"""
|
26655
|
+
return pulumi.get(self, "compartment_id")
|
26656
|
+
|
26657
|
+
@property
|
26658
|
+
@pulumi.getter(name="definedTags")
|
26659
|
+
def defined_tags(self) -> Mapping[str, str]:
|
26660
|
+
"""
|
26661
|
+
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"}`
|
26662
|
+
"""
|
26663
|
+
return pulumi.get(self, "defined_tags")
|
26664
|
+
|
26665
|
+
@property
|
26666
|
+
@pulumi.getter
|
26667
|
+
def description(self) -> str:
|
26668
|
+
"""
|
26669
|
+
The description of the sensitive type group.
|
26670
|
+
"""
|
26671
|
+
return pulumi.get(self, "description")
|
26672
|
+
|
26673
|
+
@property
|
26674
|
+
@pulumi.getter(name="displayName")
|
26675
|
+
def display_name(self) -> str:
|
26676
|
+
"""
|
26677
|
+
A filter to return only resources that match the specified display name.
|
26678
|
+
"""
|
26679
|
+
return pulumi.get(self, "display_name")
|
26680
|
+
|
26681
|
+
@property
|
26682
|
+
@pulumi.getter(name="freeformTags")
|
26683
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
26684
|
+
"""
|
26685
|
+
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"}`
|
26686
|
+
"""
|
26687
|
+
return pulumi.get(self, "freeform_tags")
|
26688
|
+
|
26689
|
+
@property
|
26690
|
+
@pulumi.getter
|
26691
|
+
def id(self) -> str:
|
26692
|
+
"""
|
26693
|
+
The OCID of the sensitive type group.
|
26694
|
+
"""
|
26695
|
+
return pulumi.get(self, "id")
|
26696
|
+
|
26697
|
+
@property
|
26698
|
+
@pulumi.getter(name="sensitiveTypeCount")
|
26699
|
+
def sensitive_type_count(self) -> int:
|
26700
|
+
"""
|
26701
|
+
The number of sensitive types in the specified sensitive type group.
|
26702
|
+
"""
|
26703
|
+
return pulumi.get(self, "sensitive_type_count")
|
26704
|
+
|
26705
|
+
@property
|
26706
|
+
@pulumi.getter
|
26707
|
+
def state(self) -> str:
|
26708
|
+
"""
|
26709
|
+
A filter to return only the resources that match the specified lifecycle state.
|
26710
|
+
"""
|
26711
|
+
return pulumi.get(self, "state")
|
26712
|
+
|
26713
|
+
@property
|
26714
|
+
@pulumi.getter(name="systemTags")
|
26715
|
+
def system_tags(self) -> Mapping[str, str]:
|
26716
|
+
"""
|
26717
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
26718
|
+
"""
|
26719
|
+
return pulumi.get(self, "system_tags")
|
26720
|
+
|
26721
|
+
@property
|
26722
|
+
@pulumi.getter(name="timeCreated")
|
26723
|
+
def time_created(self) -> str:
|
26724
|
+
"""
|
26725
|
+
The date and time the sensitive type group was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
26726
|
+
"""
|
26727
|
+
return pulumi.get(self, "time_created")
|
26728
|
+
|
26729
|
+
@property
|
26730
|
+
@pulumi.getter(name="timeUpdated")
|
26731
|
+
def time_updated(self) -> str:
|
26732
|
+
"""
|
26733
|
+
The date and time the sensitive type group was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
26734
|
+
"""
|
26735
|
+
return pulumi.get(self, "time_updated")
|
26736
|
+
|
26737
|
+
|
26065
26738
|
@pulumi.output_type
|
26066
26739
|
class GetSensitiveTypesExportsFilterResult(dict):
|
26067
26740
|
def __init__(__self__, *,
|