pulumi-oci 3.8.0__py3-none-any.whl → 3.9.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 +24 -0
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +550 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
- pulumi_oci/database/cloud_exadata_infrastructure_configure_exascale_management.py +1308 -0
- pulumi_oci/database/cloud_vm_cluster.py +77 -0
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +29 -1
- pulumi_oci/database/outputs.py +515 -0
- pulumi_oci/datasafe/_inputs.py +180 -0
- pulumi_oci/datasafe/audit_policy_management.py +7 -7
- pulumi_oci/datasafe/audit_trail_management.py +2 -0
- pulumi_oci/datasafe/discovery_jobs_result.py +40 -0
- pulumi_oci/datasafe/get_data_safe_configuration.py +2 -2
- pulumi_oci/datasafe/get_discovery_jobs_result.py +29 -1
- pulumi_oci/datasafe/get_discovery_jobs_results.py +23 -1
- pulumi_oci/datasafe/get_masking_reports.py +20 -1
- pulumi_oci/datasafe/get_security_assessment_finding.py +16 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +26 -3
- pulumi_oci/datasafe/get_sensitive_data_models_sensitive_column.py +30 -1
- pulumi_oci/datasafe/get_sensitive_data_models_sensitive_columns.py +44 -3
- pulumi_oci/datasafe/outputs.py +400 -2
- pulumi_oci/datasafe/sensitive_data_models_sensitive_column.py +58 -0
- pulumi_oci/jms/__init__.py +16 -0
- pulumi_oci/jms/_inputs.py +2068 -29
- pulumi_oci/jms/fleet.py +56 -0
- pulumi_oci/jms/get_fleet.py +29 -1
- pulumi_oci/jms/get_fleet_containers.py +289 -0
- pulumi_oci/jms/get_fleet_export_setting.py +16 -1
- pulumi_oci/jms/get_fleet_library_applications.py +280 -0
- pulumi_oci/jms/get_fleet_library_managed_instances.py +280 -0
- pulumi_oci/jms/get_fleet_summarize_library_inventory.py +211 -0
- pulumi_oci/jms/get_fleet_uncorrelated_package_applications.py +239 -0
- pulumi_oci/jms/get_fleet_uncorrelated_package_managed_instances.py +242 -0
- pulumi_oci/jms/get_fleet_uncorrelated_packages.py +242 -0
- pulumi_oci/jms/get_java_family.py +15 -1
- pulumi_oci/jms/get_jms_plugin.py +2 -2
- pulumi_oci/jms/get_jms_plugins.py +4 -4
- pulumi_oci/jms/get_task_schedule.py +262 -0
- pulumi_oci/jms/get_task_schedules.py +218 -0
- pulumi_oci/jms/get_utils_analyze_applications_configuration.py +153 -0
- pulumi_oci/jms/get_utils_java_migration_analysi.py +316 -0
- pulumi_oci/jms/get_utils_java_migration_analysis.py +177 -0
- pulumi_oci/jms/get_utils_performance_tuning_analysi.py +274 -0
- pulumi_oci/jms/get_utils_performance_tuning_analysis.py +196 -0
- pulumi_oci/jms/get_utils_subscription_acknowledgment_configuration.py +161 -0
- pulumi_oci/jms/jms_plugin.py +36 -15
- pulumi_oci/jms/outputs.py +8500 -3920
- pulumi_oci/jms/task_schedule.py +658 -0
- pulumi_oci/marketplace/__init__.py +2 -0
- pulumi_oci/marketplace/_inputs.py +49 -0
- pulumi_oci/marketplace/get_marketplace_metadata_public_keys.py +144 -0
- pulumi_oci/marketplace/marketplace_external_attested_metadata.py +298 -0
- pulumi_oci/marketplace/outputs.py +124 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/get_redis_cluster.py +29 -1
- pulumi_oci/redis/outputs.py +22 -0
- pulumi_oci/redis/redis_cluster.py +56 -0
- {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0.dist-info}/RECORD +62 -43
- {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0.dist-info}/top_level.txt +0 -0
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
16
18
|
|
17
19
|
__all__ = ['SensitiveDataModelsSensitiveColumnArgs', 'SensitiveDataModelsSensitiveColumn']
|
18
20
|
|
@@ -243,6 +245,8 @@ class _SensitiveDataModelsSensitiveColumnState:
|
|
243
245
|
app_name: Optional[pulumi.Input[_builtins.str]] = None,
|
244
246
|
column_groups: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
245
247
|
column_name: Optional[pulumi.Input[_builtins.str]] = None,
|
248
|
+
confidence_level: Optional[pulumi.Input[_builtins.str]] = None,
|
249
|
+
confidence_level_details: Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveDataModelsSensitiveColumnConfidenceLevelDetailArgs']]]] = None,
|
246
250
|
data_type: Optional[pulumi.Input[_builtins.str]] = None,
|
247
251
|
db_defined_child_column_keys: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
248
252
|
estimated_data_value_count: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -267,6 +271,8 @@ class _SensitiveDataModelsSensitiveColumnState:
|
|
267
271
|
:param pulumi.Input[_builtins.str] app_name: The name of the application associated with the sensitive column. It's useful when the application name is different from the schema name. Otherwise, it can be ignored. If this attribute is not provided, it's automatically populated with the value provided for the schemaName attribute.
|
268
272
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] column_groups: The composite key groups to which the sensitive column belongs. If the column is part of a composite key, it's assigned a column group. It helps identify and manage referential relationships that involve composite keys.
|
269
273
|
:param pulumi.Input[_builtins.str] column_name: The name of the sensitive column.
|
274
|
+
:param pulumi.Input[_builtins.str] confidence_level: The confidence level of the sensitive column associated with the sensitive type. The confidence level of the discovered sensitive columns can be either HIGH, MEDIUM or LOW. The confidence level will be NONE for manually added sensitive columns.
|
275
|
+
:param pulumi.Input[Sequence[pulumi.Input['SensitiveDataModelsSensitiveColumnConfidenceLevelDetailArgs']]] confidence_level_details: List containing maps as values. Example: `{"Operations": [ {"CostCenter": "42"} ] }`
|
270
276
|
:param pulumi.Input[_builtins.str] data_type: (Updatable) The data type of the sensitive column.
|
271
277
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] db_defined_child_column_keys: (Updatable) Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column. This attribute can be used to establish relationship between columns in a sensitive data model. Note that the child columns must be added to the sensitive data model before their keys can be specified here. If this attribute is provided, the parentColumnKeys and relationType attributes of the child columns are automatically updated to reflect the relationship.
|
272
278
|
:param pulumi.Input[_builtins.str] estimated_data_value_count: The estimated number of data values the column has in the associated database.
|
@@ -298,6 +304,10 @@ class _SensitiveDataModelsSensitiveColumnState:
|
|
298
304
|
pulumi.set(__self__, "column_groups", column_groups)
|
299
305
|
if column_name is not None:
|
300
306
|
pulumi.set(__self__, "column_name", column_name)
|
307
|
+
if confidence_level is not None:
|
308
|
+
pulumi.set(__self__, "confidence_level", confidence_level)
|
309
|
+
if confidence_level_details is not None:
|
310
|
+
pulumi.set(__self__, "confidence_level_details", confidence_level_details)
|
301
311
|
if data_type is not None:
|
302
312
|
pulumi.set(__self__, "data_type", data_type)
|
303
313
|
if db_defined_child_column_keys is not None:
|
@@ -383,6 +393,30 @@ class _SensitiveDataModelsSensitiveColumnState:
|
|
383
393
|
def column_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
384
394
|
pulumi.set(self, "column_name", value)
|
385
395
|
|
396
|
+
@_builtins.property
|
397
|
+
@pulumi.getter(name="confidenceLevel")
|
398
|
+
def confidence_level(self) -> Optional[pulumi.Input[_builtins.str]]:
|
399
|
+
"""
|
400
|
+
The confidence level of the sensitive column associated with the sensitive type. The confidence level of the discovered sensitive columns can be either HIGH, MEDIUM or LOW. The confidence level will be NONE for manually added sensitive columns.
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "confidence_level")
|
403
|
+
|
404
|
+
@confidence_level.setter
|
405
|
+
def confidence_level(self, value: Optional[pulumi.Input[_builtins.str]]):
|
406
|
+
pulumi.set(self, "confidence_level", value)
|
407
|
+
|
408
|
+
@_builtins.property
|
409
|
+
@pulumi.getter(name="confidenceLevelDetails")
|
410
|
+
def confidence_level_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveDataModelsSensitiveColumnConfidenceLevelDetailArgs']]]]:
|
411
|
+
"""
|
412
|
+
List containing maps as values. Example: `{"Operations": [ {"CostCenter": "42"} ] }`
|
413
|
+
"""
|
414
|
+
return pulumi.get(self, "confidence_level_details")
|
415
|
+
|
416
|
+
@confidence_level_details.setter
|
417
|
+
def confidence_level_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveDataModelsSensitiveColumnConfidenceLevelDetailArgs']]]]):
|
418
|
+
pulumi.set(self, "confidence_level_details", value)
|
419
|
+
|
386
420
|
@_builtins.property
|
387
421
|
@pulumi.getter(name="dataType")
|
388
422
|
def data_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -779,6 +813,8 @@ class SensitiveDataModelsSensitiveColumn(pulumi.CustomResource):
|
|
779
813
|
__props__.__dict__["sensitive_type_id"] = sensitive_type_id
|
780
814
|
__props__.__dict__["status"] = status
|
781
815
|
__props__.__dict__["column_groups"] = None
|
816
|
+
__props__.__dict__["confidence_level"] = None
|
817
|
+
__props__.__dict__["confidence_level_details"] = None
|
782
818
|
__props__.__dict__["estimated_data_value_count"] = None
|
783
819
|
__props__.__dict__["key"] = None
|
784
820
|
__props__.__dict__["lifecycle_details"] = None
|
@@ -801,6 +837,8 @@ class SensitiveDataModelsSensitiveColumn(pulumi.CustomResource):
|
|
801
837
|
app_name: Optional[pulumi.Input[_builtins.str]] = None,
|
802
838
|
column_groups: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
803
839
|
column_name: Optional[pulumi.Input[_builtins.str]] = None,
|
840
|
+
confidence_level: Optional[pulumi.Input[_builtins.str]] = None,
|
841
|
+
confidence_level_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SensitiveDataModelsSensitiveColumnConfidenceLevelDetailArgs', 'SensitiveDataModelsSensitiveColumnConfidenceLevelDetailArgsDict']]]]] = None,
|
804
842
|
data_type: Optional[pulumi.Input[_builtins.str]] = None,
|
805
843
|
db_defined_child_column_keys: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
806
844
|
estimated_data_value_count: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -830,6 +868,8 @@ class SensitiveDataModelsSensitiveColumn(pulumi.CustomResource):
|
|
830
868
|
:param pulumi.Input[_builtins.str] app_name: The name of the application associated with the sensitive column. It's useful when the application name is different from the schema name. Otherwise, it can be ignored. If this attribute is not provided, it's automatically populated with the value provided for the schemaName attribute.
|
831
869
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] column_groups: The composite key groups to which the sensitive column belongs. If the column is part of a composite key, it's assigned a column group. It helps identify and manage referential relationships that involve composite keys.
|
832
870
|
:param pulumi.Input[_builtins.str] column_name: The name of the sensitive column.
|
871
|
+
:param pulumi.Input[_builtins.str] confidence_level: The confidence level of the sensitive column associated with the sensitive type. The confidence level of the discovered sensitive columns can be either HIGH, MEDIUM or LOW. The confidence level will be NONE for manually added sensitive columns.
|
872
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SensitiveDataModelsSensitiveColumnConfidenceLevelDetailArgs', 'SensitiveDataModelsSensitiveColumnConfidenceLevelDetailArgsDict']]]] confidence_level_details: List containing maps as values. Example: `{"Operations": [ {"CostCenter": "42"} ] }`
|
833
873
|
:param pulumi.Input[_builtins.str] data_type: (Updatable) The data type of the sensitive column.
|
834
874
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] db_defined_child_column_keys: (Updatable) Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column. This attribute can be used to establish relationship between columns in a sensitive data model. Note that the child columns must be added to the sensitive data model before their keys can be specified here. If this attribute is provided, the parentColumnKeys and relationType attributes of the child columns are automatically updated to reflect the relationship.
|
835
875
|
:param pulumi.Input[_builtins.str] estimated_data_value_count: The estimated number of data values the column has in the associated database.
|
@@ -861,6 +901,8 @@ class SensitiveDataModelsSensitiveColumn(pulumi.CustomResource):
|
|
861
901
|
__props__.__dict__["app_name"] = app_name
|
862
902
|
__props__.__dict__["column_groups"] = column_groups
|
863
903
|
__props__.__dict__["column_name"] = column_name
|
904
|
+
__props__.__dict__["confidence_level"] = confidence_level
|
905
|
+
__props__.__dict__["confidence_level_details"] = confidence_level_details
|
864
906
|
__props__.__dict__["data_type"] = data_type
|
865
907
|
__props__.__dict__["db_defined_child_column_keys"] = db_defined_child_column_keys
|
866
908
|
__props__.__dict__["estimated_data_value_count"] = estimated_data_value_count
|
@@ -913,6 +955,22 @@ class SensitiveDataModelsSensitiveColumn(pulumi.CustomResource):
|
|
913
955
|
"""
|
914
956
|
return pulumi.get(self, "column_name")
|
915
957
|
|
958
|
+
@_builtins.property
|
959
|
+
@pulumi.getter(name="confidenceLevel")
|
960
|
+
def confidence_level(self) -> pulumi.Output[_builtins.str]:
|
961
|
+
"""
|
962
|
+
The confidence level of the sensitive column associated with the sensitive type. The confidence level of the discovered sensitive columns can be either HIGH, MEDIUM or LOW. The confidence level will be NONE for manually added sensitive columns.
|
963
|
+
"""
|
964
|
+
return pulumi.get(self, "confidence_level")
|
965
|
+
|
966
|
+
@_builtins.property
|
967
|
+
@pulumi.getter(name="confidenceLevelDetails")
|
968
|
+
def confidence_level_details(self) -> pulumi.Output[Sequence['outputs.SensitiveDataModelsSensitiveColumnConfidenceLevelDetail']]:
|
969
|
+
"""
|
970
|
+
List containing maps as values. Example: `{"Operations": [ {"CostCenter": "42"} ] }`
|
971
|
+
"""
|
972
|
+
return pulumi.get(self, "confidence_level_details")
|
973
|
+
|
916
974
|
@_builtins.property
|
917
975
|
@pulumi.getter(name="dataType")
|
918
976
|
def data_type(self) -> pulumi.Output[_builtins.str]:
|
pulumi_oci/jms/__init__.py
CHANGED
@@ -13,6 +13,7 @@ from .get_announcements import *
|
|
13
13
|
from .get_fleet import *
|
14
14
|
from .get_fleet_advanced_feature_configuration import *
|
15
15
|
from .get_fleet_blocklists import *
|
16
|
+
from .get_fleet_containers import *
|
16
17
|
from .get_fleet_crypto_analysis_result import *
|
17
18
|
from .get_fleet_crypto_analysis_results import *
|
18
19
|
from .get_fleet_diagnoses import *
|
@@ -24,8 +25,14 @@ from .get_fleet_export_setting import *
|
|
24
25
|
from .get_fleet_export_status import *
|
25
26
|
from .get_fleet_java_migration_analysis_result import *
|
26
27
|
from .get_fleet_java_migration_analysis_results import *
|
28
|
+
from .get_fleet_library_applications import *
|
29
|
+
from .get_fleet_library_managed_instances import *
|
27
30
|
from .get_fleet_performance_tuning_analysis_result import *
|
28
31
|
from .get_fleet_performance_tuning_analysis_results import *
|
32
|
+
from .get_fleet_summarize_library_inventory import *
|
33
|
+
from .get_fleet_uncorrelated_package_applications import *
|
34
|
+
from .get_fleet_uncorrelated_package_managed_instances import *
|
35
|
+
from .get_fleet_uncorrelated_packages import *
|
29
36
|
from .get_fleets import *
|
30
37
|
from .get_installation_site import *
|
31
38
|
from .get_installation_sites import *
|
@@ -49,9 +56,18 @@ from .get_list_jre_usage import *
|
|
49
56
|
from .get_plugin_error_analytics import *
|
50
57
|
from .get_plugin_errors import *
|
51
58
|
from .get_summarize_resource_inventory import *
|
59
|
+
from .get_task_schedule import *
|
60
|
+
from .get_task_schedules import *
|
61
|
+
from .get_utils_analyze_applications_configuration import *
|
62
|
+
from .get_utils_java_migration_analysi import *
|
63
|
+
from .get_utils_java_migration_analysis import *
|
64
|
+
from .get_utils_performance_tuning_analysi import *
|
65
|
+
from .get_utils_performance_tuning_analysis import *
|
66
|
+
from .get_utils_subscription_acknowledgment_configuration import *
|
52
67
|
from .java_downloads_java_download_report import *
|
53
68
|
from .java_downloads_java_download_token import *
|
54
69
|
from .java_downloads_java_license_acceptance_record import *
|
55
70
|
from .jms_plugin import *
|
71
|
+
from .task_schedule import *
|
56
72
|
from ._inputs import *
|
57
73
|
from . import outputs
|