pulumi-oci 3.5.0a1756327653__py3-none-any.whl → 3.5.0a1756440723__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 +80 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
- pulumi_oci/core/outputs.py +11 -0
- pulumi_oci/database/_inputs.py +257 -12
- pulumi_oci/database/data_guard_association.py +98 -0
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/db_node.py +56 -0
- pulumi_oci/database/db_system.py +108 -14
- pulumi_oci/database/exadb_vm_cluster.py +49 -0
- pulumi_oci/database/exascale_db_storage_vault.py +28 -0
- pulumi_oci/database/get_data_guard_association.py +23 -1
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_db_node.py +29 -1
- pulumi_oci/database/get_db_system_shapes.py +25 -6
- pulumi_oci/database/get_db_system_storage_performances.py +20 -3
- pulumi_oci/database/get_db_versions.py +20 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vault.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
- pulumi_oci/database/get_gi_versions.py +25 -6
- pulumi_oci/database/outputs.py +575 -8
- pulumi_oci/datasafe/__init__.py +24 -0
- pulumi_oci/datasafe/_inputs.py +3669 -1537
- pulumi_oci/datasafe/attribute_set.py +693 -0
- pulumi_oci/datasafe/audit_profile.py +356 -95
- pulumi_oci/datasafe/audit_profile_management.py +389 -129
- pulumi_oci/datasafe/audit_trail.py +47 -0
- pulumi_oci/datasafe/audit_trail_management.py +49 -0
- pulumi_oci/datasafe/get_alerts.py +2 -2
- pulumi_oci/datasafe/get_attribute_set.py +295 -0
- pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
- pulumi_oci/datasafe/get_attribute_sets.py +340 -0
- pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
- pulumi_oci/datasafe/get_audit_events.py +2 -2
- pulumi_oci/datasafe/get_audit_policies.py +20 -1
- pulumi_oci/datasafe/get_audit_profile.py +78 -8
- pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
- pulumi_oci/datasafe/get_audit_profiles.py +50 -9
- pulumi_oci/datasafe/get_audit_trail.py +15 -1
- pulumi_oci/datasafe/get_audit_trails.py +20 -1
- pulumi_oci/datasafe/get_database_security_configs.py +20 -1
- pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
- pulumi_oci/datasafe/get_masking_analytics.py +42 -1
- pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
- pulumi_oci/datasafe/get_report.py +43 -1
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_security_assessment.py +116 -2
- pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
- pulumi_oci/datasafe/get_security_assessment_findings.py +73 -6
- pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
- pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
- pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
- pulumi_oci/datasafe/get_security_assessments.py +68 -2
- pulumi_oci/datasafe/get_security_policies.py +23 -1
- pulumi_oci/datasafe/get_security_policy.py +15 -1
- pulumi_oci/datasafe/get_security_policy_config.py +296 -0
- pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
- pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collections.py +20 -1
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
- pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
- pulumi_oci/datasafe/get_target_database_group.py +296 -0
- pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
- pulumi_oci/datasafe/get_target_database_groups.py +313 -0
- pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
- pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
- pulumi_oci/datasafe/get_user_assessment.py +29 -1
- pulumi_oci/datasafe/get_user_assessments.py +45 -1
- pulumi_oci/datasafe/outputs.py +6964 -192
- pulumi_oci/datasafe/report.py +84 -0
- pulumi_oci/datasafe/report_definition.py +4 -0
- pulumi_oci/datasafe/security_assessment.py +425 -82
- pulumi_oci/datasafe/security_assessment_check.py +456 -0
- pulumi_oci/datasafe/security_assessment_finding.py +818 -0
- pulumi_oci/datasafe/security_policy.py +94 -77
- pulumi_oci/datasafe/security_policy_config.py +698 -0
- pulumi_oci/datasafe/security_policy_deployment.py +272 -67
- pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
- pulumi_oci/datasafe/security_policy_management.py +87 -30
- pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
- pulumi_oci/datasafe/target_database.py +4 -0
- pulumi_oci/datasafe/target_database_group.py +679 -0
- pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
- pulumi_oci/datasafe/unified_audit_policy.py +836 -0
- pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
- pulumi_oci/datasafe/user_assessment.py +105 -28
- pulumi_oci/disasterrecovery/_inputs.py +231 -3
- pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +446 -12
- pulumi_oci/generativeai/_inputs.py +572 -63
- pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
- pulumi_oci/generativeai/agent_data_source.py +7 -81
- pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
- pulumi_oci/generativeai/agent_tool.py +172 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
- pulumi_oci/generativeai/get_agent_data_source.py +1 -5
- pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
- pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
- pulumi_oci/generativeai/outputs.py +1128 -106
- pulumi_oci/goldengate/deployment.py +94 -0
- pulumi_oci/goldengate/get_deployment.py +29 -1
- pulumi_oci/goldengate/get_deployments.py +23 -1
- pulumi_oci/goldengate/outputs.py +35 -2
- pulumi_oci/oci/__init__.py +9 -0
- pulumi_oci/oci/_inputs.py +420 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config.py +254 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster_config.py +549 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
- pulumi_oci/oci/outputs.py +1009 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/METADATA +1 -1
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/RECORD +133 -100
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/top_level.txt +0 -0
@@ -20,6 +20,7 @@ __all__ = ['AuditTrailArgs', 'AuditTrail']
|
|
20
20
|
class AuditTrailArgs:
|
21
21
|
def __init__(__self__, *,
|
22
22
|
audit_trail_id: pulumi.Input[_builtins.str],
|
23
|
+
can_update_last_archive_time_on_target: Optional[pulumi.Input[_builtins.bool]] = None,
|
23
24
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
24
25
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
25
26
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -30,6 +31,7 @@ class AuditTrailArgs:
|
|
30
31
|
"""
|
31
32
|
The set of arguments for constructing a AuditTrail resource.
|
32
33
|
:param pulumi.Input[_builtins.str] audit_trail_id: The OCID of the audit trail.
|
34
|
+
:param pulumi.Input[_builtins.bool] can_update_last_archive_time_on_target: (Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
33
35
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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"}`
|
34
36
|
:param pulumi.Input[_builtins.str] description: (Updatable) The description of the audit trail.
|
35
37
|
:param pulumi.Input[_builtins.str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
|
@@ -43,6 +45,8 @@ class AuditTrailArgs:
|
|
43
45
|
:param pulumi.Input[_builtins.str] state: (Updatable) The target state for the Audit Trail. Could be set to `ACTIVE` or `INACTIVE`.
|
44
46
|
"""
|
45
47
|
pulumi.set(__self__, "audit_trail_id", audit_trail_id)
|
48
|
+
if can_update_last_archive_time_on_target is not None:
|
49
|
+
pulumi.set(__self__, "can_update_last_archive_time_on_target", can_update_last_archive_time_on_target)
|
46
50
|
if defined_tags is not None:
|
47
51
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
48
52
|
if description is not None:
|
@@ -70,6 +74,18 @@ class AuditTrailArgs:
|
|
70
74
|
def audit_trail_id(self, value: pulumi.Input[_builtins.str]):
|
71
75
|
pulumi.set(self, "audit_trail_id", value)
|
72
76
|
|
77
|
+
@_builtins.property
|
78
|
+
@pulumi.getter(name="canUpdateLastArchiveTimeOnTarget")
|
79
|
+
def can_update_last_archive_time_on_target(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
80
|
+
"""
|
81
|
+
(Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
82
|
+
"""
|
83
|
+
return pulumi.get(self, "can_update_last_archive_time_on_target")
|
84
|
+
|
85
|
+
@can_update_last_archive_time_on_target.setter
|
86
|
+
def can_update_last_archive_time_on_target(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
87
|
+
pulumi.set(self, "can_update_last_archive_time_on_target", value)
|
88
|
+
|
73
89
|
@_builtins.property
|
74
90
|
@pulumi.getter(name="definedTags")
|
75
91
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
@@ -165,6 +181,7 @@ class _AuditTrailState:
|
|
165
181
|
audit_collection_start_time: Optional[pulumi.Input[_builtins.str]] = None,
|
166
182
|
audit_profile_id: Optional[pulumi.Input[_builtins.str]] = None,
|
167
183
|
audit_trail_id: Optional[pulumi.Input[_builtins.str]] = None,
|
184
|
+
can_update_last_archive_time_on_target: Optional[pulumi.Input[_builtins.bool]] = None,
|
168
185
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
169
186
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
170
187
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -192,6 +209,7 @@ class _AuditTrailState:
|
|
192
209
|
:param pulumi.Input[_builtins.str] audit_collection_start_time: The date from which the audit trail must start collecting data, in the format defined by RFC3339.
|
193
210
|
:param pulumi.Input[_builtins.str] audit_profile_id: The OCID of the parent audit.
|
194
211
|
:param pulumi.Input[_builtins.str] audit_trail_id: The OCID of the audit trail.
|
212
|
+
:param pulumi.Input[_builtins.bool] can_update_last_archive_time_on_target: (Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
195
213
|
:param pulumi.Input[_builtins.str] compartment_id: The OCID of the compartment that contains the audit trail and is the same as the compartment of the audit profile resource.
|
196
214
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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"}`
|
197
215
|
:param pulumi.Input[_builtins.str] description: (Updatable) The description of the audit trail.
|
@@ -225,6 +243,8 @@ class _AuditTrailState:
|
|
225
243
|
pulumi.set(__self__, "audit_profile_id", audit_profile_id)
|
226
244
|
if audit_trail_id is not None:
|
227
245
|
pulumi.set(__self__, "audit_trail_id", audit_trail_id)
|
246
|
+
if can_update_last_archive_time_on_target is not None:
|
247
|
+
pulumi.set(__self__, "can_update_last_archive_time_on_target", can_update_last_archive_time_on_target)
|
228
248
|
if compartment_id is not None:
|
229
249
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
230
250
|
if defined_tags is not None:
|
@@ -306,6 +326,18 @@ class _AuditTrailState:
|
|
306
326
|
def audit_trail_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
307
327
|
pulumi.set(self, "audit_trail_id", value)
|
308
328
|
|
329
|
+
@_builtins.property
|
330
|
+
@pulumi.getter(name="canUpdateLastArchiveTimeOnTarget")
|
331
|
+
def can_update_last_archive_time_on_target(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
332
|
+
"""
|
333
|
+
(Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
334
|
+
"""
|
335
|
+
return pulumi.get(self, "can_update_last_archive_time_on_target")
|
336
|
+
|
337
|
+
@can_update_last_archive_time_on_target.setter
|
338
|
+
def can_update_last_archive_time_on_target(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
339
|
+
pulumi.set(self, "can_update_last_archive_time_on_target", value)
|
340
|
+
|
309
341
|
@_builtins.property
|
310
342
|
@pulumi.getter(name="compartmentId")
|
311
343
|
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -582,6 +614,7 @@ class AuditTrail(pulumi.CustomResource):
|
|
582
614
|
resource_name: str,
|
583
615
|
opts: Optional[pulumi.ResourceOptions] = None,
|
584
616
|
audit_trail_id: Optional[pulumi.Input[_builtins.str]] = None,
|
617
|
+
can_update_last_archive_time_on_target: Optional[pulumi.Input[_builtins.bool]] = None,
|
585
618
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
586
619
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
587
620
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -606,6 +639,7 @@ class AuditTrail(pulumi.CustomResource):
|
|
606
639
|
:param str resource_name: The name of the resource.
|
607
640
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
608
641
|
:param pulumi.Input[_builtins.str] audit_trail_id: The OCID of the audit trail.
|
642
|
+
:param pulumi.Input[_builtins.bool] can_update_last_archive_time_on_target: (Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
609
643
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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"}`
|
610
644
|
:param pulumi.Input[_builtins.str] description: (Updatable) The description of the audit trail.
|
611
645
|
:param pulumi.Input[_builtins.str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
|
@@ -653,6 +687,7 @@ class AuditTrail(pulumi.CustomResource):
|
|
653
687
|
resource_name: str,
|
654
688
|
opts: Optional[pulumi.ResourceOptions] = None,
|
655
689
|
audit_trail_id: Optional[pulumi.Input[_builtins.str]] = None,
|
690
|
+
can_update_last_archive_time_on_target: Optional[pulumi.Input[_builtins.bool]] = None,
|
656
691
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
657
692
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
658
693
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -672,6 +707,7 @@ class AuditTrail(pulumi.CustomResource):
|
|
672
707
|
if audit_trail_id is None and not opts.urn:
|
673
708
|
raise TypeError("Missing required property 'audit_trail_id'")
|
674
709
|
__props__.__dict__["audit_trail_id"] = audit_trail_id
|
710
|
+
__props__.__dict__["can_update_last_archive_time_on_target"] = can_update_last_archive_time_on_target
|
675
711
|
__props__.__dict__["defined_tags"] = defined_tags
|
676
712
|
__props__.__dict__["description"] = description
|
677
713
|
__props__.__dict__["display_name"] = display_name
|
@@ -709,6 +745,7 @@ class AuditTrail(pulumi.CustomResource):
|
|
709
745
|
audit_collection_start_time: Optional[pulumi.Input[_builtins.str]] = None,
|
710
746
|
audit_profile_id: Optional[pulumi.Input[_builtins.str]] = None,
|
711
747
|
audit_trail_id: Optional[pulumi.Input[_builtins.str]] = None,
|
748
|
+
can_update_last_archive_time_on_target: Optional[pulumi.Input[_builtins.bool]] = None,
|
712
749
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
713
750
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
714
751
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -741,6 +778,7 @@ class AuditTrail(pulumi.CustomResource):
|
|
741
778
|
:param pulumi.Input[_builtins.str] audit_collection_start_time: The date from which the audit trail must start collecting data, in the format defined by RFC3339.
|
742
779
|
:param pulumi.Input[_builtins.str] audit_profile_id: The OCID of the parent audit.
|
743
780
|
:param pulumi.Input[_builtins.str] audit_trail_id: The OCID of the audit trail.
|
781
|
+
:param pulumi.Input[_builtins.bool] can_update_last_archive_time_on_target: (Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
744
782
|
:param pulumi.Input[_builtins.str] compartment_id: The OCID of the compartment that contains the audit trail and is the same as the compartment of the audit profile resource.
|
745
783
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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"}`
|
746
784
|
:param pulumi.Input[_builtins.str] description: (Updatable) The description of the audit trail.
|
@@ -775,6 +813,7 @@ class AuditTrail(pulumi.CustomResource):
|
|
775
813
|
__props__.__dict__["audit_collection_start_time"] = audit_collection_start_time
|
776
814
|
__props__.__dict__["audit_profile_id"] = audit_profile_id
|
777
815
|
__props__.__dict__["audit_trail_id"] = audit_trail_id
|
816
|
+
__props__.__dict__["can_update_last_archive_time_on_target"] = can_update_last_archive_time_on_target
|
778
817
|
__props__.__dict__["compartment_id"] = compartment_id
|
779
818
|
__props__.__dict__["defined_tags"] = defined_tags
|
780
819
|
__props__.__dict__["description"] = description
|
@@ -823,6 +862,14 @@ class AuditTrail(pulumi.CustomResource):
|
|
823
862
|
"""
|
824
863
|
return pulumi.get(self, "audit_trail_id")
|
825
864
|
|
865
|
+
@_builtins.property
|
866
|
+
@pulumi.getter(name="canUpdateLastArchiveTimeOnTarget")
|
867
|
+
def can_update_last_archive_time_on_target(self) -> pulumi.Output[_builtins.bool]:
|
868
|
+
"""
|
869
|
+
(Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
870
|
+
"""
|
871
|
+
return pulumi.get(self, "can_update_last_archive_time_on_target")
|
872
|
+
|
826
873
|
@_builtins.property
|
827
874
|
@pulumi.getter(name="compartmentId")
|
828
875
|
def compartment_id(self) -> pulumi.Output[_builtins.str]:
|
@@ -20,6 +20,7 @@ __all__ = ['AuditTrailManagementArgs', 'AuditTrailManagement']
|
|
20
20
|
class AuditTrailManagementArgs:
|
21
21
|
def __init__(__self__, *,
|
22
22
|
audit_collection_start_time: Optional[pulumi.Input[_builtins.str]] = None,
|
23
|
+
can_update_last_archive_time_on_target: Optional[pulumi.Input[_builtins.bool]] = None,
|
23
24
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
24
25
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
25
26
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -39,6 +40,7 @@ class AuditTrailManagementArgs:
|
|
39
40
|
|
40
41
|
** IMPORTANT **
|
41
42
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
43
|
+
:param pulumi.Input[_builtins.bool] can_update_last_archive_time_on_target: (Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
42
44
|
:param pulumi.Input[_builtins.str] compartment_id: The OCID of the compartment that contains the target.
|
43
45
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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"}`
|
44
46
|
:param pulumi.Input[_builtins.str] description: (Updatable) The description of the audit trail.
|
@@ -54,6 +56,8 @@ class AuditTrailManagementArgs:
|
|
54
56
|
"""
|
55
57
|
if audit_collection_start_time is not None:
|
56
58
|
pulumi.set(__self__, "audit_collection_start_time", audit_collection_start_time)
|
59
|
+
if can_update_last_archive_time_on_target is not None:
|
60
|
+
pulumi.set(__self__, "can_update_last_archive_time_on_target", can_update_last_archive_time_on_target)
|
57
61
|
if compartment_id is not None:
|
58
62
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
59
63
|
if defined_tags is not None:
|
@@ -95,6 +99,18 @@ class AuditTrailManagementArgs:
|
|
95
99
|
def audit_collection_start_time(self, value: Optional[pulumi.Input[_builtins.str]]):
|
96
100
|
pulumi.set(self, "audit_collection_start_time", value)
|
97
101
|
|
102
|
+
@_builtins.property
|
103
|
+
@pulumi.getter(name="canUpdateLastArchiveTimeOnTarget")
|
104
|
+
def can_update_last_archive_time_on_target(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
105
|
+
"""
|
106
|
+
(Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "can_update_last_archive_time_on_target")
|
109
|
+
|
110
|
+
@can_update_last_archive_time_on_target.setter
|
111
|
+
def can_update_last_archive_time_on_target(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
112
|
+
pulumi.set(self, "can_update_last_archive_time_on_target", value)
|
113
|
+
|
98
114
|
@_builtins.property
|
99
115
|
@pulumi.getter(name="compartmentId")
|
100
116
|
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -245,6 +261,7 @@ class _AuditTrailManagementState:
|
|
245
261
|
def __init__(__self__, *,
|
246
262
|
audit_collection_start_time: Optional[pulumi.Input[_builtins.str]] = None,
|
247
263
|
audit_profile_id: Optional[pulumi.Input[_builtins.str]] = None,
|
264
|
+
can_update_last_archive_time_on_target: Optional[pulumi.Input[_builtins.bool]] = None,
|
248
265
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
249
266
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
250
267
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -272,6 +289,7 @@ class _AuditTrailManagementState:
|
|
272
289
|
** IMPORTANT **
|
273
290
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
274
291
|
:param pulumi.Input[_builtins.str] audit_profile_id: The OCID of the parent audit.
|
292
|
+
:param pulumi.Input[_builtins.bool] can_update_last_archive_time_on_target: (Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
275
293
|
:param pulumi.Input[_builtins.str] compartment_id: The OCID of the compartment that contains the target.
|
276
294
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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"}`
|
277
295
|
:param pulumi.Input[_builtins.str] description: (Updatable) The description of the audit trail.
|
@@ -296,6 +314,8 @@ class _AuditTrailManagementState:
|
|
296
314
|
pulumi.set(__self__, "audit_collection_start_time", audit_collection_start_time)
|
297
315
|
if audit_profile_id is not None:
|
298
316
|
pulumi.set(__self__, "audit_profile_id", audit_profile_id)
|
317
|
+
if can_update_last_archive_time_on_target is not None:
|
318
|
+
pulumi.set(__self__, "can_update_last_archive_time_on_target", can_update_last_archive_time_on_target)
|
299
319
|
if compartment_id is not None:
|
300
320
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
301
321
|
if defined_tags is not None:
|
@@ -363,6 +383,18 @@ class _AuditTrailManagementState:
|
|
363
383
|
def audit_profile_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
364
384
|
pulumi.set(self, "audit_profile_id", value)
|
365
385
|
|
386
|
+
@_builtins.property
|
387
|
+
@pulumi.getter(name="canUpdateLastArchiveTimeOnTarget")
|
388
|
+
def can_update_last_archive_time_on_target(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
389
|
+
"""
|
390
|
+
(Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
391
|
+
"""
|
392
|
+
return pulumi.get(self, "can_update_last_archive_time_on_target")
|
393
|
+
|
394
|
+
@can_update_last_archive_time_on_target.setter
|
395
|
+
def can_update_last_archive_time_on_target(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
396
|
+
pulumi.set(self, "can_update_last_archive_time_on_target", value)
|
397
|
+
|
366
398
|
@_builtins.property
|
367
399
|
@pulumi.getter(name="compartmentId")
|
368
400
|
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -599,6 +631,7 @@ class AuditTrailManagement(pulumi.CustomResource):
|
|
599
631
|
resource_name: str,
|
600
632
|
opts: Optional[pulumi.ResourceOptions] = None,
|
601
633
|
audit_collection_start_time: Optional[pulumi.Input[_builtins.str]] = None,
|
634
|
+
can_update_last_archive_time_on_target: Optional[pulumi.Input[_builtins.bool]] = None,
|
602
635
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
603
636
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
604
637
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -626,6 +659,7 @@ class AuditTrailManagement(pulumi.CustomResource):
|
|
626
659
|
test_audit_trail_management = oci.datasafe.AuditTrailManagement("test_audit_trail_management",
|
627
660
|
compartment_id=compartment_id,
|
628
661
|
target_id=test_target_database["id"],
|
662
|
+
can_update_last_archive_time_on_target=audit_trail_management_can_update_last_archive_time_on_target,
|
629
663
|
defined_tags={
|
630
664
|
"Operations.CostCenter": "42",
|
631
665
|
},
|
@@ -648,6 +682,7 @@ class AuditTrailManagement(pulumi.CustomResource):
|
|
648
682
|
|
649
683
|
** IMPORTANT **
|
650
684
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
685
|
+
:param pulumi.Input[_builtins.bool] can_update_last_archive_time_on_target: (Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
651
686
|
:param pulumi.Input[_builtins.str] compartment_id: The OCID of the compartment that contains the target.
|
652
687
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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"}`
|
653
688
|
:param pulumi.Input[_builtins.str] description: (Updatable) The description of the audit trail.
|
@@ -681,6 +716,7 @@ class AuditTrailManagement(pulumi.CustomResource):
|
|
681
716
|
test_audit_trail_management = oci.datasafe.AuditTrailManagement("test_audit_trail_management",
|
682
717
|
compartment_id=compartment_id,
|
683
718
|
target_id=test_target_database["id"],
|
719
|
+
can_update_last_archive_time_on_target=audit_trail_management_can_update_last_archive_time_on_target,
|
684
720
|
defined_tags={
|
685
721
|
"Operations.CostCenter": "42",
|
686
722
|
},
|
@@ -712,6 +748,7 @@ class AuditTrailManagement(pulumi.CustomResource):
|
|
712
748
|
resource_name: str,
|
713
749
|
opts: Optional[pulumi.ResourceOptions] = None,
|
714
750
|
audit_collection_start_time: Optional[pulumi.Input[_builtins.str]] = None,
|
751
|
+
can_update_last_archive_time_on_target: Optional[pulumi.Input[_builtins.bool]] = None,
|
715
752
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
716
753
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
717
754
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -734,6 +771,7 @@ class AuditTrailManagement(pulumi.CustomResource):
|
|
734
771
|
__props__ = AuditTrailManagementArgs.__new__(AuditTrailManagementArgs)
|
735
772
|
|
736
773
|
__props__.__dict__["audit_collection_start_time"] = audit_collection_start_time
|
774
|
+
__props__.__dict__["can_update_last_archive_time_on_target"] = can_update_last_archive_time_on_target
|
737
775
|
__props__.__dict__["compartment_id"] = compartment_id
|
738
776
|
__props__.__dict__["defined_tags"] = defined_tags
|
739
777
|
__props__.__dict__["description"] = description
|
@@ -766,6 +804,7 @@ class AuditTrailManagement(pulumi.CustomResource):
|
|
766
804
|
opts: Optional[pulumi.ResourceOptions] = None,
|
767
805
|
audit_collection_start_time: Optional[pulumi.Input[_builtins.str]] = None,
|
768
806
|
audit_profile_id: Optional[pulumi.Input[_builtins.str]] = None,
|
807
|
+
can_update_last_archive_time_on_target: Optional[pulumi.Input[_builtins.bool]] = None,
|
769
808
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
770
809
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
771
810
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -798,6 +837,7 @@ class AuditTrailManagement(pulumi.CustomResource):
|
|
798
837
|
** IMPORTANT **
|
799
838
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
800
839
|
:param pulumi.Input[_builtins.str] audit_profile_id: The OCID of the parent audit.
|
840
|
+
:param pulumi.Input[_builtins.bool] can_update_last_archive_time_on_target: (Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
801
841
|
:param pulumi.Input[_builtins.str] compartment_id: The OCID of the compartment that contains the target.
|
802
842
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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"}`
|
803
843
|
:param pulumi.Input[_builtins.str] description: (Updatable) The description of the audit trail.
|
@@ -824,6 +864,7 @@ class AuditTrailManagement(pulumi.CustomResource):
|
|
824
864
|
|
825
865
|
__props__.__dict__["audit_collection_start_time"] = audit_collection_start_time
|
826
866
|
__props__.__dict__["audit_profile_id"] = audit_profile_id
|
867
|
+
__props__.__dict__["can_update_last_archive_time_on_target"] = can_update_last_archive_time_on_target
|
827
868
|
__props__.__dict__["compartment_id"] = compartment_id
|
828
869
|
__props__.__dict__["defined_tags"] = defined_tags
|
829
870
|
__props__.__dict__["description"] = description
|
@@ -865,6 +906,14 @@ class AuditTrailManagement(pulumi.CustomResource):
|
|
865
906
|
"""
|
866
907
|
return pulumi.get(self, "audit_profile_id")
|
867
908
|
|
909
|
+
@_builtins.property
|
910
|
+
@pulumi.getter(name="canUpdateLastArchiveTimeOnTarget")
|
911
|
+
def can_update_last_archive_time_on_target(self) -> pulumi.Output[_builtins.bool]:
|
912
|
+
"""
|
913
|
+
(Updatable) Indicates if the Datasafe updates last archive time on target database. If isAutoPurgeEnabled field is enabled, this field must be true.
|
914
|
+
"""
|
915
|
+
return pulumi.get(self, "can_update_last_archive_time_on_target")
|
916
|
+
|
868
917
|
@_builtins.property
|
869
918
|
@pulumi.getter(name="compartmentId")
|
870
919
|
def compartment_id(self) -> pulumi.Output[_builtins.str]:
|
@@ -155,7 +155,7 @@ def get_alerts(access_level: Optional[_builtins.str] = None,
|
|
155
155
|
:param _builtins.str id: A filter to return alert by it's OCID.
|
156
156
|
:param _builtins.str scim_query: The scimQuery query parameter accepts filter expressions that use the syntax described in Section 3.2.2.2 of the System for Cross-Domain Identity Management (SCIM) specification, which is available at [RFC3339](https://tools.ietf.org/html/draft-ietf-scim-api-12). In SCIM filtering expressions, text, date, and time values must be enclosed in quotation marks, with date and time values using ISO-8601 format. (Numeric and boolean values should not be quoted.)
|
157
157
|
|
158
|
-
**Example:** | query=(timeCreated ge
|
158
|
+
**Example:** | query=(timeCreated ge "2021-06-04T01:00:26.000Z") and (targetNames eq "target_1") query=(featureDetails.userName eq "user") and (targetNames eq "target_1") Supported fields: severity status alertType targetIds targetNames operationTime lifecycleState displayName timeCreated timeUpdated featureDetails.* (* can be any field in nestedStrMap in Feature Attributes in Alert Summary. For example - userName,object,clientHostname,osUserName,clientIPs,clientId,commandText,commandParam,clientProgram,objectType,targetOwner)
|
159
159
|
"""
|
160
160
|
__args__ = dict()
|
161
161
|
__args__['accessLevel'] = access_level
|
@@ -212,7 +212,7 @@ def get_alerts_output(access_level: Optional[pulumi.Input[Optional[_builtins.str
|
|
212
212
|
:param _builtins.str id: A filter to return alert by it's OCID.
|
213
213
|
:param _builtins.str scim_query: The scimQuery query parameter accepts filter expressions that use the syntax described in Section 3.2.2.2 of the System for Cross-Domain Identity Management (SCIM) specification, which is available at [RFC3339](https://tools.ietf.org/html/draft-ietf-scim-api-12). In SCIM filtering expressions, text, date, and time values must be enclosed in quotation marks, with date and time values using ISO-8601 format. (Numeric and boolean values should not be quoted.)
|
214
214
|
|
215
|
-
**Example:** | query=(timeCreated ge
|
215
|
+
**Example:** | query=(timeCreated ge "2021-06-04T01:00:26.000Z") and (targetNames eq "target_1") query=(featureDetails.userName eq "user") and (targetNames eq "target_1") Supported fields: severity status alertType targetIds targetNames operationTime lifecycleState displayName timeCreated timeUpdated featureDetails.* (* can be any field in nestedStrMap in Feature Attributes in Alert Summary. For example - userName,object,clientHostname,osUserName,clientIPs,clientId,commandText,commandParam,clientProgram,objectType,targetOwner)
|
216
216
|
"""
|
217
217
|
__args__ = dict()
|
218
218
|
__args__['accessLevel'] = access_level
|
@@ -0,0 +1,295 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetAttributeSetResult',
|
19
|
+
'AwaitableGetAttributeSetResult',
|
20
|
+
'get_attribute_set',
|
21
|
+
'get_attribute_set_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetAttributeSetResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getAttributeSet.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, attribute_set_id=None, attribute_set_type=None, attribute_set_values=None, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, in_use=None, is_user_defined=None, state=None, system_tags=None, time_created=None, time_updated=None):
|
30
|
+
if attribute_set_id and not isinstance(attribute_set_id, str):
|
31
|
+
raise TypeError("Expected argument 'attribute_set_id' to be a str")
|
32
|
+
pulumi.set(__self__, "attribute_set_id", attribute_set_id)
|
33
|
+
if attribute_set_type and not isinstance(attribute_set_type, str):
|
34
|
+
raise TypeError("Expected argument 'attribute_set_type' to be a str")
|
35
|
+
pulumi.set(__self__, "attribute_set_type", attribute_set_type)
|
36
|
+
if attribute_set_values and not isinstance(attribute_set_values, list):
|
37
|
+
raise TypeError("Expected argument 'attribute_set_values' to be a list")
|
38
|
+
pulumi.set(__self__, "attribute_set_values", attribute_set_values)
|
39
|
+
if compartment_id and not isinstance(compartment_id, str):
|
40
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
41
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
42
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
43
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
44
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
45
|
+
if description and not isinstance(description, str):
|
46
|
+
raise TypeError("Expected argument 'description' to be a str")
|
47
|
+
pulumi.set(__self__, "description", description)
|
48
|
+
if display_name and not isinstance(display_name, str):
|
49
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
50
|
+
pulumi.set(__self__, "display_name", display_name)
|
51
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
52
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
53
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
54
|
+
if id and not isinstance(id, str):
|
55
|
+
raise TypeError("Expected argument 'id' to be a str")
|
56
|
+
pulumi.set(__self__, "id", id)
|
57
|
+
if in_use and not isinstance(in_use, str):
|
58
|
+
raise TypeError("Expected argument 'in_use' to be a str")
|
59
|
+
pulumi.set(__self__, "in_use", in_use)
|
60
|
+
if is_user_defined and not isinstance(is_user_defined, bool):
|
61
|
+
raise TypeError("Expected argument 'is_user_defined' to be a bool")
|
62
|
+
pulumi.set(__self__, "is_user_defined", is_user_defined)
|
63
|
+
if state and not isinstance(state, str):
|
64
|
+
raise TypeError("Expected argument 'state' to be a str")
|
65
|
+
pulumi.set(__self__, "state", state)
|
66
|
+
if system_tags and not isinstance(system_tags, dict):
|
67
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
68
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
69
|
+
if time_created and not isinstance(time_created, str):
|
70
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
71
|
+
pulumi.set(__self__, "time_created", time_created)
|
72
|
+
if time_updated and not isinstance(time_updated, str):
|
73
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
74
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
75
|
+
|
76
|
+
@_builtins.property
|
77
|
+
@pulumi.getter(name="attributeSetId")
|
78
|
+
def attribute_set_id(self) -> _builtins.str:
|
79
|
+
return pulumi.get(self, "attribute_set_id")
|
80
|
+
|
81
|
+
@_builtins.property
|
82
|
+
@pulumi.getter(name="attributeSetType")
|
83
|
+
def attribute_set_type(self) -> _builtins.str:
|
84
|
+
"""
|
85
|
+
The type of attribute set.
|
86
|
+
"""
|
87
|
+
return pulumi.get(self, "attribute_set_type")
|
88
|
+
|
89
|
+
@_builtins.property
|
90
|
+
@pulumi.getter(name="attributeSetValues")
|
91
|
+
def attribute_set_values(self) -> Sequence[_builtins.str]:
|
92
|
+
"""
|
93
|
+
The list of values in an attribute set
|
94
|
+
"""
|
95
|
+
return pulumi.get(self, "attribute_set_values")
|
96
|
+
|
97
|
+
@_builtins.property
|
98
|
+
@pulumi.getter(name="compartmentId")
|
99
|
+
def compartment_id(self) -> _builtins.str:
|
100
|
+
"""
|
101
|
+
The OCID of the compartment where the attribute set is stored.
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "compartment_id")
|
104
|
+
|
105
|
+
@_builtins.property
|
106
|
+
@pulumi.getter(name="definedTags")
|
107
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
108
|
+
"""
|
109
|
+
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"}`
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "defined_tags")
|
112
|
+
|
113
|
+
@_builtins.property
|
114
|
+
@pulumi.getter
|
115
|
+
def description(self) -> _builtins.str:
|
116
|
+
"""
|
117
|
+
Description of an attribute set.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "description")
|
120
|
+
|
121
|
+
@_builtins.property
|
122
|
+
@pulumi.getter(name="displayName")
|
123
|
+
def display_name(self) -> _builtins.str:
|
124
|
+
"""
|
125
|
+
The display name of an attribute set. The name does not have to be unique, and is changeable.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "display_name")
|
128
|
+
|
129
|
+
@_builtins.property
|
130
|
+
@pulumi.getter(name="freeformTags")
|
131
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
132
|
+
"""
|
133
|
+
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"}`
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "freeform_tags")
|
136
|
+
|
137
|
+
@_builtins.property
|
138
|
+
@pulumi.getter
|
139
|
+
def id(self) -> _builtins.str:
|
140
|
+
"""
|
141
|
+
The OCID of an attribute set.
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "id")
|
144
|
+
|
145
|
+
@_builtins.property
|
146
|
+
@pulumi.getter(name="inUse")
|
147
|
+
def in_use(self) -> _builtins.str:
|
148
|
+
"""
|
149
|
+
Indicates whether the attribute set is in use by other resource.
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "in_use")
|
152
|
+
|
153
|
+
@_builtins.property
|
154
|
+
@pulumi.getter(name="isUserDefined")
|
155
|
+
def is_user_defined(self) -> _builtins.bool:
|
156
|
+
"""
|
157
|
+
A boolean flag indicating to list user defined or seeded attribute sets.
|
158
|
+
"""
|
159
|
+
return pulumi.get(self, "is_user_defined")
|
160
|
+
|
161
|
+
@_builtins.property
|
162
|
+
@pulumi.getter
|
163
|
+
def state(self) -> _builtins.str:
|
164
|
+
"""
|
165
|
+
The current state of an attribute set.
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "state")
|
168
|
+
|
169
|
+
@_builtins.property
|
170
|
+
@pulumi.getter(name="systemTags")
|
171
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
172
|
+
"""
|
173
|
+
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"}`
|
174
|
+
"""
|
175
|
+
return pulumi.get(self, "system_tags")
|
176
|
+
|
177
|
+
@_builtins.property
|
178
|
+
@pulumi.getter(name="timeCreated")
|
179
|
+
def time_created(self) -> _builtins.str:
|
180
|
+
"""
|
181
|
+
The date and time an attribute set was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
182
|
+
"""
|
183
|
+
return pulumi.get(self, "time_created")
|
184
|
+
|
185
|
+
@_builtins.property
|
186
|
+
@pulumi.getter(name="timeUpdated")
|
187
|
+
def time_updated(self) -> _builtins.str:
|
188
|
+
"""
|
189
|
+
The date and time an attribute set was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
190
|
+
"""
|
191
|
+
return pulumi.get(self, "time_updated")
|
192
|
+
|
193
|
+
|
194
|
+
class AwaitableGetAttributeSetResult(GetAttributeSetResult):
|
195
|
+
# pylint: disable=using-constant-test
|
196
|
+
def __await__(self):
|
197
|
+
if False:
|
198
|
+
yield self
|
199
|
+
return GetAttributeSetResult(
|
200
|
+
attribute_set_id=self.attribute_set_id,
|
201
|
+
attribute_set_type=self.attribute_set_type,
|
202
|
+
attribute_set_values=self.attribute_set_values,
|
203
|
+
compartment_id=self.compartment_id,
|
204
|
+
defined_tags=self.defined_tags,
|
205
|
+
description=self.description,
|
206
|
+
display_name=self.display_name,
|
207
|
+
freeform_tags=self.freeform_tags,
|
208
|
+
id=self.id,
|
209
|
+
in_use=self.in_use,
|
210
|
+
is_user_defined=self.is_user_defined,
|
211
|
+
state=self.state,
|
212
|
+
system_tags=self.system_tags,
|
213
|
+
time_created=self.time_created,
|
214
|
+
time_updated=self.time_updated)
|
215
|
+
|
216
|
+
|
217
|
+
def get_attribute_set(attribute_set_id: Optional[_builtins.str] = None,
|
218
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAttributeSetResult:
|
219
|
+
"""
|
220
|
+
This data source provides details about a specific Attribute Set resource in Oracle Cloud Infrastructure Data Safe service.
|
221
|
+
|
222
|
+
Gets the details of the specified attribute set.
|
223
|
+
|
224
|
+
## Example Usage
|
225
|
+
|
226
|
+
```python
|
227
|
+
import pulumi
|
228
|
+
import pulumi_oci as oci
|
229
|
+
|
230
|
+
test_attribute_set = oci.DataSafe.get_attribute_set(attribute_set_id=test_attribute_set_oci_data_safe_attribute_set["id"])
|
231
|
+
```
|
232
|
+
|
233
|
+
|
234
|
+
:param _builtins.str attribute_set_id: OCID of an attribute set.
|
235
|
+
"""
|
236
|
+
__args__ = dict()
|
237
|
+
__args__['attributeSetId'] = attribute_set_id
|
238
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
239
|
+
__ret__ = pulumi.runtime.invoke('oci:DataSafe/getAttributeSet:getAttributeSet', __args__, opts=opts, typ=GetAttributeSetResult).value
|
240
|
+
|
241
|
+
return AwaitableGetAttributeSetResult(
|
242
|
+
attribute_set_id=pulumi.get(__ret__, 'attribute_set_id'),
|
243
|
+
attribute_set_type=pulumi.get(__ret__, 'attribute_set_type'),
|
244
|
+
attribute_set_values=pulumi.get(__ret__, 'attribute_set_values'),
|
245
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
246
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
247
|
+
description=pulumi.get(__ret__, 'description'),
|
248
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
249
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
250
|
+
id=pulumi.get(__ret__, 'id'),
|
251
|
+
in_use=pulumi.get(__ret__, 'in_use'),
|
252
|
+
is_user_defined=pulumi.get(__ret__, 'is_user_defined'),
|
253
|
+
state=pulumi.get(__ret__, 'state'),
|
254
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
255
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
256
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
257
|
+
def get_attribute_set_output(attribute_set_id: Optional[pulumi.Input[_builtins.str]] = None,
|
258
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAttributeSetResult]:
|
259
|
+
"""
|
260
|
+
This data source provides details about a specific Attribute Set resource in Oracle Cloud Infrastructure Data Safe service.
|
261
|
+
|
262
|
+
Gets the details of the specified attribute set.
|
263
|
+
|
264
|
+
## Example Usage
|
265
|
+
|
266
|
+
```python
|
267
|
+
import pulumi
|
268
|
+
import pulumi_oci as oci
|
269
|
+
|
270
|
+
test_attribute_set = oci.DataSafe.get_attribute_set(attribute_set_id=test_attribute_set_oci_data_safe_attribute_set["id"])
|
271
|
+
```
|
272
|
+
|
273
|
+
|
274
|
+
:param _builtins.str attribute_set_id: OCID of an attribute set.
|
275
|
+
"""
|
276
|
+
__args__ = dict()
|
277
|
+
__args__['attributeSetId'] = attribute_set_id
|
278
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
279
|
+
__ret__ = pulumi.runtime.invoke_output('oci:DataSafe/getAttributeSet:getAttributeSet', __args__, opts=opts, typ=GetAttributeSetResult)
|
280
|
+
return __ret__.apply(lambda __response__: GetAttributeSetResult(
|
281
|
+
attribute_set_id=pulumi.get(__response__, 'attribute_set_id'),
|
282
|
+
attribute_set_type=pulumi.get(__response__, 'attribute_set_type'),
|
283
|
+
attribute_set_values=pulumi.get(__response__, 'attribute_set_values'),
|
284
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
285
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
286
|
+
description=pulumi.get(__response__, 'description'),
|
287
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
288
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
289
|
+
id=pulumi.get(__response__, 'id'),
|
290
|
+
in_use=pulumi.get(__response__, 'in_use'),
|
291
|
+
is_user_defined=pulumi.get(__response__, 'is_user_defined'),
|
292
|
+
state=pulumi.get(__response__, 'state'),
|
293
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
294
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
295
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|