pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__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 +145 -0
- pulumi_oci/analytics/analytics_instance.py +54 -5
- pulumi_oci/analytics/get_analytics_instance.py +18 -4
- pulumi_oci/analytics/outputs.py +12 -1
- pulumi_oci/core/_inputs.py +648 -159
- pulumi_oci/core/cluster_network.py +7 -7
- pulumi_oci/core/get_instance.py +29 -1
- pulumi_oci/core/get_vcn.py +15 -1
- pulumi_oci/core/get_vnic.py +15 -1
- pulumi_oci/core/instance.py +87 -0
- pulumi_oci/core/instance_configuration.py +12 -0
- pulumi_oci/core/ipsec.py +183 -23
- pulumi_oci/core/network_security_group_security_rule.py +2 -2
- pulumi_oci/core/outputs.py +709 -107
- pulumi_oci/core/service_gateway.py +13 -7
- pulumi_oci/core/vcn.py +65 -23
- pulumi_oci/core/virtual_network.py +35 -1
- pulumi_oci/core/vnic_attachment.py +2 -0
- pulumi_oci/database/_inputs.py +905 -27
- pulumi_oci/database/autonomous_database.py +48 -28
- pulumi_oci/database/autonomous_database_backup.py +12 -12
- pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
- pulumi_oci/database/autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/backup.py +12 -12
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
- pulumi_oci/database/cloud_vm_cluster.py +71 -0
- pulumi_oci/database/database.py +15 -15
- pulumi_oci/database/database_upgrade.py +12 -12
- pulumi_oci/database/db_system.py +9 -9
- pulumi_oci/database/exadata_infrastructure.py +2 -0
- pulumi_oci/database/get_autonomous_container_database.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +18 -4
- pulumi_oci/database/get_autonomous_database_backup.py +3 -3
- pulumi_oci/database/get_autonomous_databases.py +88 -5
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_database.py +3 -3
- pulumi_oci/database/get_pluggable_database.py +12 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/outputs.py +1431 -74
- pulumi_oci/database/pluggable_database.py +34 -0
- pulumi_oci/database/vm_cluster.py +71 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +12 -0
- pulumi_oci/datasafe/_inputs.py +441 -0
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_sql_collection.py +392 -0
- pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
- pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
- pulumi_oci/datasafe/get_sql_collections.py +364 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
- pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
- pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
- pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
- pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
- pulumi_oci/datasafe/outputs.py +1808 -2
- pulumi_oci/desktops/_inputs.py +223 -7
- pulumi_oci/desktops/desktop_pool.py +186 -21
- pulumi_oci/desktops/get_desktop_pool.py +47 -5
- pulumi_oci/desktops/outputs.py +480 -19
- pulumi_oci/fleetappsmanagement/__init__.py +43 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
- pulumi_oci/fleetappsmanagement/fleet.py +955 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
- pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
- pulumi_oci/fleetappsmanagement/get_property.py +323 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
- pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
- pulumi_oci/fleetappsmanagement/property.py +697 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
- pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
- pulumi_oci/functions/outputs.py +11 -0
- pulumi_oci/fusionapps/_inputs.py +21 -20
- pulumi_oci/fusionapps/fusion_environment.py +2 -2
- pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
- pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
- pulumi_oci/fusionapps/outputs.py +11 -10
- pulumi_oci/integration/__init__.py +1 -0
- pulumi_oci/integration/_inputs.py +289 -2
- pulumi_oci/integration/get_integration_instance.py +65 -1
- pulumi_oci/integration/integration_instance.py +172 -0
- pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
- pulumi_oci/integration/outputs.py +587 -19
- pulumi_oci/loadbalancer/_inputs.py +20 -0
- pulumi_oci/loadbalancer/listener.py +4 -2
- pulumi_oci/loadbalancer/outputs.py +16 -2
- pulumi_oci/monitoring/_inputs.py +137 -16
- pulumi_oci/monitoring/alarm_suppression.py +164 -35
- pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
- pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
- pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
- pulumi_oci/monitoring/outputs.py +291 -18
- pulumi_oci/mysql/mysql_db_system.py +7 -7
- pulumi_oci/objectstorage/__init__.py +3 -0
- pulumi_oci/objectstorage/_inputs.py +97 -0
- pulumi_oci/objectstorage/get_object_versions.py +6 -6
- pulumi_oci/objectstorage/get_objects.py +6 -6
- pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
- pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
- pulumi_oci/objectstorage/outputs.py +258 -0
- pulumi_oci/objectstorage/private_endpoint.py +630 -0
- pulumi_oci/objectstorage/storage_object.py +7 -7
- pulumi_oci/opsi/_inputs.py +268 -114
- pulumi_oci/opsi/database_insight.py +162 -21
- pulumi_oci/opsi/exadata_insight.py +44 -0
- pulumi_oci/opsi/get_database_insight.py +40 -1
- pulumi_oci/opsi/get_host_insights.py +2 -2
- pulumi_oci/opsi/host_insight.py +0 -48
- pulumi_oci/opsi/outputs.py +405 -109
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/securityattribute/__init__.py +15 -0
- pulumi_oci/securityattribute/_inputs.py +209 -0
- pulumi_oci/securityattribute/get_security_attribute.py +262 -0
- pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
- pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
- pulumi_oci/securityattribute/get_security_attributes.py +169 -0
- pulumi_oci/securityattribute/outputs.py +466 -0
- pulumi_oci/securityattribute/security_attribute.py +588 -0
- pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
- pulumi_oci/stackmonitoring/__init__.py +5 -0
- pulumi_oci/stackmonitoring/_inputs.py +330 -0
- pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
- pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
- pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
- pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
- pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
- pulumi_oci/stackmonitoring/outputs.py +603 -0
- pulumi_oci/zpr/__init__.py +14 -0
- pulumi_oci/zpr/_inputs.py +79 -0
- pulumi_oci/zpr/configuration.py +516 -0
- pulumi_oci/zpr/get_configuration.py +230 -0
- pulumi_oci/zpr/get_zpr_policies.py +191 -0
- pulumi_oci/zpr/get_zpr_policy.py +264 -0
- pulumi_oci/zpr/outputs.py +203 -0
- pulumi_oci/zpr/zpr_policy.py +614 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,609 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import 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__ = ['SecurityAttributeNamespaceArgs', 'SecurityAttributeNamespace']
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class SecurityAttributeNamespaceArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
compartment_id: pulumi.Input[str],
|
23
|
+
description: pulumi.Input[str],
|
24
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
25
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
26
|
+
is_retired: Optional[pulumi.Input[bool]] = None,
|
27
|
+
name: Optional[pulumi.Input[str]] = None):
|
28
|
+
"""
|
29
|
+
The set of arguments for constructing a SecurityAttributeNamespace resource.
|
30
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the tenancy containing the security attribute namespace.
|
31
|
+
:param pulumi.Input[str] description: (Updatable) The description you assign to the security attribute namespace during creation.
|
32
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[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"}`
|
33
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
34
|
+
:param pulumi.Input[bool] is_retired: Indicates whether the security attribute namespace is retired. See [Managing Security Attribute Namespaces](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/managing-security-attribute-namespaces.htm).
|
35
|
+
:param pulumi.Input[str] name: The name you assign to the security attribute namespace during creation. The name must be unique across all namespaces in the tenancy and cannot be changed.
|
36
|
+
|
37
|
+
|
38
|
+
** IMPORTANT **
|
39
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
40
|
+
"""
|
41
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
42
|
+
pulumi.set(__self__, "description", description)
|
43
|
+
if defined_tags is not None:
|
44
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
45
|
+
if freeform_tags is not None:
|
46
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
47
|
+
if is_retired is not None:
|
48
|
+
pulumi.set(__self__, "is_retired", is_retired)
|
49
|
+
if name is not None:
|
50
|
+
pulumi.set(__self__, "name", name)
|
51
|
+
|
52
|
+
@property
|
53
|
+
@pulumi.getter(name="compartmentId")
|
54
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
55
|
+
"""
|
56
|
+
(Updatable) The OCID of the tenancy containing the security attribute namespace.
|
57
|
+
"""
|
58
|
+
return pulumi.get(self, "compartment_id")
|
59
|
+
|
60
|
+
@compartment_id.setter
|
61
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
62
|
+
pulumi.set(self, "compartment_id", value)
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter
|
66
|
+
def description(self) -> pulumi.Input[str]:
|
67
|
+
"""
|
68
|
+
(Updatable) The description you assign to the security attribute namespace during creation.
|
69
|
+
"""
|
70
|
+
return pulumi.get(self, "description")
|
71
|
+
|
72
|
+
@description.setter
|
73
|
+
def description(self, value: pulumi.Input[str]):
|
74
|
+
pulumi.set(self, "description", value)
|
75
|
+
|
76
|
+
@property
|
77
|
+
@pulumi.getter(name="definedTags")
|
78
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
79
|
+
"""
|
80
|
+
(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"}`
|
81
|
+
"""
|
82
|
+
return pulumi.get(self, "defined_tags")
|
83
|
+
|
84
|
+
@defined_tags.setter
|
85
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
86
|
+
pulumi.set(self, "defined_tags", value)
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter(name="freeformTags")
|
90
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
91
|
+
"""
|
92
|
+
(Updatable) 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"}`
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "freeform_tags")
|
95
|
+
|
96
|
+
@freeform_tags.setter
|
97
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
98
|
+
pulumi.set(self, "freeform_tags", value)
|
99
|
+
|
100
|
+
@property
|
101
|
+
@pulumi.getter(name="isRetired")
|
102
|
+
def is_retired(self) -> Optional[pulumi.Input[bool]]:
|
103
|
+
"""
|
104
|
+
Indicates whether the security attribute namespace is retired. See [Managing Security Attribute Namespaces](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/managing-security-attribute-namespaces.htm).
|
105
|
+
"""
|
106
|
+
return pulumi.get(self, "is_retired")
|
107
|
+
|
108
|
+
@is_retired.setter
|
109
|
+
def is_retired(self, value: Optional[pulumi.Input[bool]]):
|
110
|
+
pulumi.set(self, "is_retired", value)
|
111
|
+
|
112
|
+
@property
|
113
|
+
@pulumi.getter
|
114
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
115
|
+
"""
|
116
|
+
The name you assign to the security attribute namespace during creation. The name must be unique across all namespaces in the tenancy and cannot be changed.
|
117
|
+
|
118
|
+
|
119
|
+
** IMPORTANT **
|
120
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
121
|
+
"""
|
122
|
+
return pulumi.get(self, "name")
|
123
|
+
|
124
|
+
@name.setter
|
125
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
126
|
+
pulumi.set(self, "name", value)
|
127
|
+
|
128
|
+
|
129
|
+
@pulumi.input_type
|
130
|
+
class _SecurityAttributeNamespaceState:
|
131
|
+
def __init__(__self__, *,
|
132
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
133
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
134
|
+
description: Optional[pulumi.Input[str]] = None,
|
135
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
136
|
+
is_retired: Optional[pulumi.Input[bool]] = None,
|
137
|
+
modes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
138
|
+
name: Optional[pulumi.Input[str]] = None,
|
139
|
+
state: Optional[pulumi.Input[str]] = None,
|
140
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
141
|
+
time_created: Optional[pulumi.Input[str]] = None):
|
142
|
+
"""
|
143
|
+
Input properties used for looking up and filtering SecurityAttributeNamespace resources.
|
144
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the tenancy containing the security attribute namespace.
|
145
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[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"}`
|
146
|
+
:param pulumi.Input[str] description: (Updatable) The description you assign to the security attribute namespace during creation.
|
147
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
148
|
+
:param pulumi.Input[bool] is_retired: Indicates whether the security attribute namespace is retired. See [Managing Security Attribute Namespaces](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/managing-security-attribute-namespaces.htm).
|
149
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] modes: Indicates possible modes the security attributes in this namespace can be set to. This is not accepted from the user. Currently the supported values are enforce and audit.
|
150
|
+
:param pulumi.Input[str] name: The name you assign to the security attribute namespace during creation. The name must be unique across all namespaces in the tenancy and cannot be changed.
|
151
|
+
|
152
|
+
|
153
|
+
** IMPORTANT **
|
154
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
155
|
+
:param pulumi.Input[str] state: The security attribute namespace's current state. After creating a security attribute namespace, make sure its `lifecycleState` is ACTIVE before using it. After retiring a security attribute namespace, make sure its `lifecycleState` is INACTIVE.
|
156
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
157
|
+
:param pulumi.Input[str] time_created: Date and time the security attribute namespace was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
|
158
|
+
"""
|
159
|
+
if compartment_id is not None:
|
160
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
161
|
+
if defined_tags is not None:
|
162
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
163
|
+
if description is not None:
|
164
|
+
pulumi.set(__self__, "description", description)
|
165
|
+
if freeform_tags is not None:
|
166
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
167
|
+
if is_retired is not None:
|
168
|
+
pulumi.set(__self__, "is_retired", is_retired)
|
169
|
+
if modes is not None:
|
170
|
+
pulumi.set(__self__, "modes", modes)
|
171
|
+
if name is not None:
|
172
|
+
pulumi.set(__self__, "name", name)
|
173
|
+
if state is not None:
|
174
|
+
pulumi.set(__self__, "state", state)
|
175
|
+
if system_tags is not None:
|
176
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
177
|
+
if time_created is not None:
|
178
|
+
pulumi.set(__self__, "time_created", time_created)
|
179
|
+
|
180
|
+
@property
|
181
|
+
@pulumi.getter(name="compartmentId")
|
182
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
183
|
+
"""
|
184
|
+
(Updatable) The OCID of the tenancy containing the security attribute namespace.
|
185
|
+
"""
|
186
|
+
return pulumi.get(self, "compartment_id")
|
187
|
+
|
188
|
+
@compartment_id.setter
|
189
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
190
|
+
pulumi.set(self, "compartment_id", value)
|
191
|
+
|
192
|
+
@property
|
193
|
+
@pulumi.getter(name="definedTags")
|
194
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
195
|
+
"""
|
196
|
+
(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
|
+
"""
|
198
|
+
return pulumi.get(self, "defined_tags")
|
199
|
+
|
200
|
+
@defined_tags.setter
|
201
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
202
|
+
pulumi.set(self, "defined_tags", value)
|
203
|
+
|
204
|
+
@property
|
205
|
+
@pulumi.getter
|
206
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
207
|
+
"""
|
208
|
+
(Updatable) The description you assign to the security attribute namespace during creation.
|
209
|
+
"""
|
210
|
+
return pulumi.get(self, "description")
|
211
|
+
|
212
|
+
@description.setter
|
213
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
214
|
+
pulumi.set(self, "description", value)
|
215
|
+
|
216
|
+
@property
|
217
|
+
@pulumi.getter(name="freeformTags")
|
218
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
219
|
+
"""
|
220
|
+
(Updatable) 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"}`
|
221
|
+
"""
|
222
|
+
return pulumi.get(self, "freeform_tags")
|
223
|
+
|
224
|
+
@freeform_tags.setter
|
225
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
226
|
+
pulumi.set(self, "freeform_tags", value)
|
227
|
+
|
228
|
+
@property
|
229
|
+
@pulumi.getter(name="isRetired")
|
230
|
+
def is_retired(self) -> Optional[pulumi.Input[bool]]:
|
231
|
+
"""
|
232
|
+
Indicates whether the security attribute namespace is retired. See [Managing Security Attribute Namespaces](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/managing-security-attribute-namespaces.htm).
|
233
|
+
"""
|
234
|
+
return pulumi.get(self, "is_retired")
|
235
|
+
|
236
|
+
@is_retired.setter
|
237
|
+
def is_retired(self, value: Optional[pulumi.Input[bool]]):
|
238
|
+
pulumi.set(self, "is_retired", value)
|
239
|
+
|
240
|
+
@property
|
241
|
+
@pulumi.getter
|
242
|
+
def modes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
243
|
+
"""
|
244
|
+
Indicates possible modes the security attributes in this namespace can be set to. This is not accepted from the user. Currently the supported values are enforce and audit.
|
245
|
+
"""
|
246
|
+
return pulumi.get(self, "modes")
|
247
|
+
|
248
|
+
@modes.setter
|
249
|
+
def modes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
250
|
+
pulumi.set(self, "modes", value)
|
251
|
+
|
252
|
+
@property
|
253
|
+
@pulumi.getter
|
254
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
255
|
+
"""
|
256
|
+
The name you assign to the security attribute namespace during creation. The name must be unique across all namespaces in the tenancy and cannot be changed.
|
257
|
+
|
258
|
+
|
259
|
+
** IMPORTANT **
|
260
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
261
|
+
"""
|
262
|
+
return pulumi.get(self, "name")
|
263
|
+
|
264
|
+
@name.setter
|
265
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
266
|
+
pulumi.set(self, "name", value)
|
267
|
+
|
268
|
+
@property
|
269
|
+
@pulumi.getter
|
270
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
271
|
+
"""
|
272
|
+
The security attribute namespace's current state. After creating a security attribute namespace, make sure its `lifecycleState` is ACTIVE before using it. After retiring a security attribute namespace, make sure its `lifecycleState` is INACTIVE.
|
273
|
+
"""
|
274
|
+
return pulumi.get(self, "state")
|
275
|
+
|
276
|
+
@state.setter
|
277
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
278
|
+
pulumi.set(self, "state", value)
|
279
|
+
|
280
|
+
@property
|
281
|
+
@pulumi.getter(name="systemTags")
|
282
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
283
|
+
"""
|
284
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
285
|
+
"""
|
286
|
+
return pulumi.get(self, "system_tags")
|
287
|
+
|
288
|
+
@system_tags.setter
|
289
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
290
|
+
pulumi.set(self, "system_tags", value)
|
291
|
+
|
292
|
+
@property
|
293
|
+
@pulumi.getter(name="timeCreated")
|
294
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
295
|
+
"""
|
296
|
+
Date and time the security attribute namespace was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
|
297
|
+
"""
|
298
|
+
return pulumi.get(self, "time_created")
|
299
|
+
|
300
|
+
@time_created.setter
|
301
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
302
|
+
pulumi.set(self, "time_created", value)
|
303
|
+
|
304
|
+
|
305
|
+
class SecurityAttributeNamespace(pulumi.CustomResource):
|
306
|
+
@overload
|
307
|
+
def __init__(__self__,
|
308
|
+
resource_name: str,
|
309
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
310
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
311
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
312
|
+
description: Optional[pulumi.Input[str]] = None,
|
313
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
314
|
+
is_retired: Optional[pulumi.Input[bool]] = None,
|
315
|
+
name: Optional[pulumi.Input[str]] = None,
|
316
|
+
__props__=None):
|
317
|
+
"""
|
318
|
+
This resource provides the Security Attribute Namespace resource in Oracle Cloud Infrastructure Security Attribute service.
|
319
|
+
|
320
|
+
Creates a new security attribute namespace in the specified compartment.
|
321
|
+
|
322
|
+
You must specify the compartment ID in the request object (remember that the tenancy is simply the root
|
323
|
+
compartment).
|
324
|
+
|
325
|
+
You must also specify a *name* for the namespace, which must be unique across all namespaces in your tenancy
|
326
|
+
and cannot be changed. The only valid characters for security attribute names are: 0-9, A-Z, a-z, -, _ characters.
|
327
|
+
Names are case insensitive. That means, for example, "myNamespace" and "mynamespace" are not allowed
|
328
|
+
in the same tenancy. Once you created a namespace, you cannot change the name.
|
329
|
+
If you specify a name that's already in use in the tenancy, a 409 error is returned.
|
330
|
+
|
331
|
+
You must also specify a *description* for the namespace.
|
332
|
+
It does not have to be unique, and you can change it with
|
333
|
+
[UpdateSecurityAttributeNamespace](https://docs.cloud.oracle.com/iaas/api/#/en/securityattribute/latest/SecurityAttribute/SecurityAttributeNamespace).
|
334
|
+
|
335
|
+
## Example Usage
|
336
|
+
|
337
|
+
```python
|
338
|
+
import pulumi
|
339
|
+
import pulumi_oci as oci
|
340
|
+
|
341
|
+
test_security_attribute_namespace = oci.security_attribute.SecurityAttributeNamespace("test_security_attribute_namespace",
|
342
|
+
compartment_id=compartment_id,
|
343
|
+
description=security_attribute_namespace_description,
|
344
|
+
name=security_attribute_namespace_name,
|
345
|
+
defined_tags={
|
346
|
+
"Operations.CostCenter": "42",
|
347
|
+
},
|
348
|
+
freeform_tags={
|
349
|
+
"Department": "Finance",
|
350
|
+
})
|
351
|
+
```
|
352
|
+
|
353
|
+
## Import
|
354
|
+
|
355
|
+
SecurityAttributeNamespaces can be imported using the `id`, e.g.
|
356
|
+
|
357
|
+
```sh
|
358
|
+
$ pulumi import oci:SecurityAttribute/securityAttributeNamespace:SecurityAttributeNamespace test_security_attribute_namespace "id"
|
359
|
+
```
|
360
|
+
|
361
|
+
:param str resource_name: The name of the resource.
|
362
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
363
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the tenancy containing the security attribute namespace.
|
364
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[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"}`
|
365
|
+
:param pulumi.Input[str] description: (Updatable) The description you assign to the security attribute namespace during creation.
|
366
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
367
|
+
:param pulumi.Input[bool] is_retired: Indicates whether the security attribute namespace is retired. See [Managing Security Attribute Namespaces](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/managing-security-attribute-namespaces.htm).
|
368
|
+
:param pulumi.Input[str] name: The name you assign to the security attribute namespace during creation. The name must be unique across all namespaces in the tenancy and cannot be changed.
|
369
|
+
|
370
|
+
|
371
|
+
** IMPORTANT **
|
372
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
373
|
+
"""
|
374
|
+
...
|
375
|
+
@overload
|
376
|
+
def __init__(__self__,
|
377
|
+
resource_name: str,
|
378
|
+
args: SecurityAttributeNamespaceArgs,
|
379
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
380
|
+
"""
|
381
|
+
This resource provides the Security Attribute Namespace resource in Oracle Cloud Infrastructure Security Attribute service.
|
382
|
+
|
383
|
+
Creates a new security attribute namespace in the specified compartment.
|
384
|
+
|
385
|
+
You must specify the compartment ID in the request object (remember that the tenancy is simply the root
|
386
|
+
compartment).
|
387
|
+
|
388
|
+
You must also specify a *name* for the namespace, which must be unique across all namespaces in your tenancy
|
389
|
+
and cannot be changed. The only valid characters for security attribute names are: 0-9, A-Z, a-z, -, _ characters.
|
390
|
+
Names are case insensitive. That means, for example, "myNamespace" and "mynamespace" are not allowed
|
391
|
+
in the same tenancy. Once you created a namespace, you cannot change the name.
|
392
|
+
If you specify a name that's already in use in the tenancy, a 409 error is returned.
|
393
|
+
|
394
|
+
You must also specify a *description* for the namespace.
|
395
|
+
It does not have to be unique, and you can change it with
|
396
|
+
[UpdateSecurityAttributeNamespace](https://docs.cloud.oracle.com/iaas/api/#/en/securityattribute/latest/SecurityAttribute/SecurityAttributeNamespace).
|
397
|
+
|
398
|
+
## Example Usage
|
399
|
+
|
400
|
+
```python
|
401
|
+
import pulumi
|
402
|
+
import pulumi_oci as oci
|
403
|
+
|
404
|
+
test_security_attribute_namespace = oci.security_attribute.SecurityAttributeNamespace("test_security_attribute_namespace",
|
405
|
+
compartment_id=compartment_id,
|
406
|
+
description=security_attribute_namespace_description,
|
407
|
+
name=security_attribute_namespace_name,
|
408
|
+
defined_tags={
|
409
|
+
"Operations.CostCenter": "42",
|
410
|
+
},
|
411
|
+
freeform_tags={
|
412
|
+
"Department": "Finance",
|
413
|
+
})
|
414
|
+
```
|
415
|
+
|
416
|
+
## Import
|
417
|
+
|
418
|
+
SecurityAttributeNamespaces can be imported using the `id`, e.g.
|
419
|
+
|
420
|
+
```sh
|
421
|
+
$ pulumi import oci:SecurityAttribute/securityAttributeNamespace:SecurityAttributeNamespace test_security_attribute_namespace "id"
|
422
|
+
```
|
423
|
+
|
424
|
+
:param str resource_name: The name of the resource.
|
425
|
+
:param SecurityAttributeNamespaceArgs args: The arguments to use to populate this resource's properties.
|
426
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
427
|
+
"""
|
428
|
+
...
|
429
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
430
|
+
resource_args, opts = _utilities.get_resource_args_opts(SecurityAttributeNamespaceArgs, pulumi.ResourceOptions, *args, **kwargs)
|
431
|
+
if resource_args is not None:
|
432
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
433
|
+
else:
|
434
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
435
|
+
|
436
|
+
def _internal_init(__self__,
|
437
|
+
resource_name: str,
|
438
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
439
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
440
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
441
|
+
description: Optional[pulumi.Input[str]] = None,
|
442
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
443
|
+
is_retired: Optional[pulumi.Input[bool]] = None,
|
444
|
+
name: Optional[pulumi.Input[str]] = None,
|
445
|
+
__props__=None):
|
446
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
447
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
448
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
449
|
+
if opts.id is None:
|
450
|
+
if __props__ is not None:
|
451
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
452
|
+
__props__ = SecurityAttributeNamespaceArgs.__new__(SecurityAttributeNamespaceArgs)
|
453
|
+
|
454
|
+
if compartment_id is None and not opts.urn:
|
455
|
+
raise TypeError("Missing required property 'compartment_id'")
|
456
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
457
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
458
|
+
if description is None and not opts.urn:
|
459
|
+
raise TypeError("Missing required property 'description'")
|
460
|
+
__props__.__dict__["description"] = description
|
461
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
462
|
+
__props__.__dict__["is_retired"] = is_retired
|
463
|
+
__props__.__dict__["name"] = name
|
464
|
+
__props__.__dict__["modes"] = None
|
465
|
+
__props__.__dict__["state"] = None
|
466
|
+
__props__.__dict__["system_tags"] = None
|
467
|
+
__props__.__dict__["time_created"] = None
|
468
|
+
super(SecurityAttributeNamespace, __self__).__init__(
|
469
|
+
'oci:SecurityAttribute/securityAttributeNamespace:SecurityAttributeNamespace',
|
470
|
+
resource_name,
|
471
|
+
__props__,
|
472
|
+
opts)
|
473
|
+
|
474
|
+
@staticmethod
|
475
|
+
def get(resource_name: str,
|
476
|
+
id: pulumi.Input[str],
|
477
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
478
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
479
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
480
|
+
description: Optional[pulumi.Input[str]] = None,
|
481
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
482
|
+
is_retired: Optional[pulumi.Input[bool]] = None,
|
483
|
+
modes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
484
|
+
name: Optional[pulumi.Input[str]] = None,
|
485
|
+
state: Optional[pulumi.Input[str]] = None,
|
486
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
487
|
+
time_created: Optional[pulumi.Input[str]] = None) -> 'SecurityAttributeNamespace':
|
488
|
+
"""
|
489
|
+
Get an existing SecurityAttributeNamespace resource's state with the given name, id, and optional extra
|
490
|
+
properties used to qualify the lookup.
|
491
|
+
|
492
|
+
:param str resource_name: The unique name of the resulting resource.
|
493
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
494
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
495
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the tenancy containing the security attribute namespace.
|
496
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[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"}`
|
497
|
+
:param pulumi.Input[str] description: (Updatable) The description you assign to the security attribute namespace during creation.
|
498
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
499
|
+
:param pulumi.Input[bool] is_retired: Indicates whether the security attribute namespace is retired. See [Managing Security Attribute Namespaces](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/managing-security-attribute-namespaces.htm).
|
500
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] modes: Indicates possible modes the security attributes in this namespace can be set to. This is not accepted from the user. Currently the supported values are enforce and audit.
|
501
|
+
:param pulumi.Input[str] name: The name you assign to the security attribute namespace during creation. The name must be unique across all namespaces in the tenancy and cannot be changed.
|
502
|
+
|
503
|
+
|
504
|
+
** IMPORTANT **
|
505
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
506
|
+
:param pulumi.Input[str] state: The security attribute namespace's current state. After creating a security attribute namespace, make sure its `lifecycleState` is ACTIVE before using it. After retiring a security attribute namespace, make sure its `lifecycleState` is INACTIVE.
|
507
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
508
|
+
:param pulumi.Input[str] time_created: Date and time the security attribute namespace was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
|
509
|
+
"""
|
510
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
511
|
+
|
512
|
+
__props__ = _SecurityAttributeNamespaceState.__new__(_SecurityAttributeNamespaceState)
|
513
|
+
|
514
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
515
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
516
|
+
__props__.__dict__["description"] = description
|
517
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
518
|
+
__props__.__dict__["is_retired"] = is_retired
|
519
|
+
__props__.__dict__["modes"] = modes
|
520
|
+
__props__.__dict__["name"] = name
|
521
|
+
__props__.__dict__["state"] = state
|
522
|
+
__props__.__dict__["system_tags"] = system_tags
|
523
|
+
__props__.__dict__["time_created"] = time_created
|
524
|
+
return SecurityAttributeNamespace(resource_name, opts=opts, __props__=__props__)
|
525
|
+
|
526
|
+
@property
|
527
|
+
@pulumi.getter(name="compartmentId")
|
528
|
+
def compartment_id(self) -> pulumi.Output[str]:
|
529
|
+
"""
|
530
|
+
(Updatable) The OCID of the tenancy containing the security attribute namespace.
|
531
|
+
"""
|
532
|
+
return pulumi.get(self, "compartment_id")
|
533
|
+
|
534
|
+
@property
|
535
|
+
@pulumi.getter(name="definedTags")
|
536
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
537
|
+
"""
|
538
|
+
(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"}`
|
539
|
+
"""
|
540
|
+
return pulumi.get(self, "defined_tags")
|
541
|
+
|
542
|
+
@property
|
543
|
+
@pulumi.getter
|
544
|
+
def description(self) -> pulumi.Output[str]:
|
545
|
+
"""
|
546
|
+
(Updatable) The description you assign to the security attribute namespace during creation.
|
547
|
+
"""
|
548
|
+
return pulumi.get(self, "description")
|
549
|
+
|
550
|
+
@property
|
551
|
+
@pulumi.getter(name="freeformTags")
|
552
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
553
|
+
"""
|
554
|
+
(Updatable) 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"}`
|
555
|
+
"""
|
556
|
+
return pulumi.get(self, "freeform_tags")
|
557
|
+
|
558
|
+
@property
|
559
|
+
@pulumi.getter(name="isRetired")
|
560
|
+
def is_retired(self) -> pulumi.Output[bool]:
|
561
|
+
"""
|
562
|
+
Indicates whether the security attribute namespace is retired. See [Managing Security Attribute Namespaces](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/managing-security-attribute-namespaces.htm).
|
563
|
+
"""
|
564
|
+
return pulumi.get(self, "is_retired")
|
565
|
+
|
566
|
+
@property
|
567
|
+
@pulumi.getter
|
568
|
+
def modes(self) -> pulumi.Output[Sequence[str]]:
|
569
|
+
"""
|
570
|
+
Indicates possible modes the security attributes in this namespace can be set to. This is not accepted from the user. Currently the supported values are enforce and audit.
|
571
|
+
"""
|
572
|
+
return pulumi.get(self, "modes")
|
573
|
+
|
574
|
+
@property
|
575
|
+
@pulumi.getter
|
576
|
+
def name(self) -> pulumi.Output[str]:
|
577
|
+
"""
|
578
|
+
The name you assign to the security attribute namespace during creation. The name must be unique across all namespaces in the tenancy and cannot be changed.
|
579
|
+
|
580
|
+
|
581
|
+
** IMPORTANT **
|
582
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
583
|
+
"""
|
584
|
+
return pulumi.get(self, "name")
|
585
|
+
|
586
|
+
@property
|
587
|
+
@pulumi.getter
|
588
|
+
def state(self) -> pulumi.Output[str]:
|
589
|
+
"""
|
590
|
+
The security attribute namespace's current state. After creating a security attribute namespace, make sure its `lifecycleState` is ACTIVE before using it. After retiring a security attribute namespace, make sure its `lifecycleState` is INACTIVE.
|
591
|
+
"""
|
592
|
+
return pulumi.get(self, "state")
|
593
|
+
|
594
|
+
@property
|
595
|
+
@pulumi.getter(name="systemTags")
|
596
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
597
|
+
"""
|
598
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
599
|
+
"""
|
600
|
+
return pulumi.get(self, "system_tags")
|
601
|
+
|
602
|
+
@property
|
603
|
+
@pulumi.getter(name="timeCreated")
|
604
|
+
def time_created(self) -> pulumi.Output[str]:
|
605
|
+
"""
|
606
|
+
Date and time the security attribute namespace was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
|
607
|
+
"""
|
608
|
+
return pulumi.get(self, "time_created")
|
609
|
+
|
@@ -16,6 +16,8 @@ from .get_configs import *
|
|
16
16
|
from .get_discovery_job import *
|
17
17
|
from .get_discovery_job_logs import *
|
18
18
|
from .get_discovery_jobs import *
|
19
|
+
from .get_maintenance_window import *
|
20
|
+
from .get_maintenance_windows import *
|
19
21
|
from .get_metric_extension import *
|
20
22
|
from .get_metric_extensions import *
|
21
23
|
from .get_monitored_resource import *
|
@@ -26,6 +28,9 @@ from .get_monitored_resource_types import *
|
|
26
28
|
from .get_monitored_resources import *
|
27
29
|
from .get_process_set import *
|
28
30
|
from .get_process_sets import *
|
31
|
+
from .maintenance_window import *
|
32
|
+
from .maintenance_windows_retry_failed_operation import *
|
33
|
+
from .maintenance_windows_stop import *
|
29
34
|
from .metric_extension import *
|
30
35
|
from .metric_extension_metric_extension_on_given_resources_management import *
|
31
36
|
from .metric_extensions_test_management import *
|