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.
Files changed (170) hide show
  1. pulumi_oci/__init__.py +145 -0
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/core/_inputs.py +648 -159
  6. pulumi_oci/core/cluster_network.py +7 -7
  7. pulumi_oci/core/get_instance.py +29 -1
  8. pulumi_oci/core/get_vcn.py +15 -1
  9. pulumi_oci/core/get_vnic.py +15 -1
  10. pulumi_oci/core/instance.py +87 -0
  11. pulumi_oci/core/instance_configuration.py +12 -0
  12. pulumi_oci/core/ipsec.py +183 -23
  13. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  14. pulumi_oci/core/outputs.py +709 -107
  15. pulumi_oci/core/service_gateway.py +13 -7
  16. pulumi_oci/core/vcn.py +65 -23
  17. pulumi_oci/core/virtual_network.py +35 -1
  18. pulumi_oci/core/vnic_attachment.py +2 -0
  19. pulumi_oci/database/_inputs.py +905 -27
  20. pulumi_oci/database/autonomous_database.py +48 -28
  21. pulumi_oci/database/autonomous_database_backup.py +12 -12
  22. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  23. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  24. pulumi_oci/database/backup.py +12 -12
  25. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  26. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  27. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  28. pulumi_oci/database/database.py +15 -15
  29. pulumi_oci/database/database_upgrade.py +12 -12
  30. pulumi_oci/database/db_system.py +9 -9
  31. pulumi_oci/database/exadata_infrastructure.py +2 -0
  32. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  33. pulumi_oci/database/get_autonomous_database.py +18 -4
  34. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  35. pulumi_oci/database/get_autonomous_databases.py +88 -5
  36. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  37. pulumi_oci/database/get_database.py +3 -3
  38. pulumi_oci/database/get_pluggable_database.py +12 -1
  39. pulumi_oci/database/get_vm_cluster.py +15 -1
  40. pulumi_oci/database/outputs.py +1431 -74
  41. pulumi_oci/database/pluggable_database.py +34 -0
  42. pulumi_oci/database/vm_cluster.py +71 -0
  43. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  44. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  45. pulumi_oci/datasafe/__init__.py +12 -0
  46. pulumi_oci/datasafe/_inputs.py +441 -0
  47. pulumi_oci/datasafe/get_reports.py +23 -1
  48. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  49. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  50. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  51. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  52. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  53. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  54. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  55. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  56. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  57. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  58. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  59. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  60. pulumi_oci/datasafe/outputs.py +1808 -2
  61. pulumi_oci/desktops/_inputs.py +223 -7
  62. pulumi_oci/desktops/desktop_pool.py +186 -21
  63. pulumi_oci/desktops/get_desktop_pool.py +47 -5
  64. pulumi_oci/desktops/outputs.py +480 -19
  65. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  66. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  67. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  68. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  69. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  70. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  71. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  72. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  73. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  74. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  75. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  76. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  77. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  78. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  79. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  80. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  81. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  82. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  83. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  84. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  85. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  86. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  87. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  88. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  89. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  90. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  91. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  92. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  93. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  94. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  95. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  96. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  97. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  98. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  99. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  100. pulumi_oci/fleetappsmanagement/property.py +697 -0
  101. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  102. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  103. pulumi_oci/functions/outputs.py +11 -0
  104. pulumi_oci/fusionapps/_inputs.py +21 -20
  105. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  106. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  107. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  108. pulumi_oci/fusionapps/outputs.py +11 -10
  109. pulumi_oci/integration/__init__.py +1 -0
  110. pulumi_oci/integration/_inputs.py +289 -2
  111. pulumi_oci/integration/get_integration_instance.py +65 -1
  112. pulumi_oci/integration/integration_instance.py +172 -0
  113. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  114. pulumi_oci/integration/outputs.py +587 -19
  115. pulumi_oci/loadbalancer/_inputs.py +20 -0
  116. pulumi_oci/loadbalancer/listener.py +4 -2
  117. pulumi_oci/loadbalancer/outputs.py +16 -2
  118. pulumi_oci/monitoring/_inputs.py +137 -16
  119. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  120. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  121. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  122. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  123. pulumi_oci/monitoring/outputs.py +291 -18
  124. pulumi_oci/mysql/mysql_db_system.py +7 -7
  125. pulumi_oci/objectstorage/__init__.py +3 -0
  126. pulumi_oci/objectstorage/_inputs.py +97 -0
  127. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  128. pulumi_oci/objectstorage/get_objects.py +6 -6
  129. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  130. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  131. pulumi_oci/objectstorage/outputs.py +258 -0
  132. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  133. pulumi_oci/objectstorage/storage_object.py +7 -7
  134. pulumi_oci/opsi/_inputs.py +268 -114
  135. pulumi_oci/opsi/database_insight.py +162 -21
  136. pulumi_oci/opsi/exadata_insight.py +44 -0
  137. pulumi_oci/opsi/get_database_insight.py +40 -1
  138. pulumi_oci/opsi/get_host_insights.py +2 -2
  139. pulumi_oci/opsi/host_insight.py +0 -48
  140. pulumi_oci/opsi/outputs.py +405 -109
  141. pulumi_oci/pulumi-plugin.json +1 -1
  142. pulumi_oci/securityattribute/__init__.py +15 -0
  143. pulumi_oci/securityattribute/_inputs.py +209 -0
  144. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  145. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  146. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  147. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  148. pulumi_oci/securityattribute/outputs.py +466 -0
  149. pulumi_oci/securityattribute/security_attribute.py +588 -0
  150. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  151. pulumi_oci/stackmonitoring/__init__.py +5 -0
  152. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  153. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  154. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  155. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  156. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  157. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  158. pulumi_oci/stackmonitoring/outputs.py +603 -0
  159. pulumi_oci/zpr/__init__.py +14 -0
  160. pulumi_oci/zpr/_inputs.py +79 -0
  161. pulumi_oci/zpr/configuration.py +516 -0
  162. pulumi_oci/zpr/get_configuration.py +230 -0
  163. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  164. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  165. pulumi_oci/zpr/outputs.py +203 -0
  166. pulumi_oci/zpr/zpr_policy.py +614 -0
  167. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
  168. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
  169. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
  170. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,466 @@
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
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'SecurityAttributeValidator',
20
+ 'GetSecurityAttributeNamespacesFilterResult',
21
+ 'GetSecurityAttributeNamespacesSecurityAttributeNamespaceResult',
22
+ 'GetSecurityAttributeValidatorResult',
23
+ 'GetSecurityAttributesFilterResult',
24
+ 'GetSecurityAttributesSecurityAttributeResult',
25
+ 'GetSecurityAttributesSecurityAttributeValidatorResult',
26
+ ]
27
+
28
+ @pulumi.output_type
29
+ class SecurityAttributeValidator(dict):
30
+ @staticmethod
31
+ def __key_warning(key: str):
32
+ suggest = None
33
+ if key == "validatorType":
34
+ suggest = "validator_type"
35
+
36
+ if suggest:
37
+ pulumi.log.warn(f"Key '{key}' not found in SecurityAttributeValidator. Access the value via the '{suggest}' property getter instead.")
38
+
39
+ def __getitem__(self, key: str) -> Any:
40
+ SecurityAttributeValidator.__key_warning(key)
41
+ return super().__getitem__(key)
42
+
43
+ def get(self, key: str, default = None) -> Any:
44
+ SecurityAttributeValidator.__key_warning(key)
45
+ return super().get(key, default)
46
+
47
+ def __init__(__self__, *,
48
+ validator_type: str,
49
+ values: Optional[Sequence[str]] = None):
50
+ """
51
+ :param str validator_type: (Updatable) Specifies the type of validation: a static value (no validation) or a list.
52
+ :param Sequence[str] values: (Updatable) The list of allowed values for a security attribute value.
53
+
54
+
55
+ ** IMPORTANT **
56
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
57
+ """
58
+ pulumi.set(__self__, "validator_type", validator_type)
59
+ if values is not None:
60
+ pulumi.set(__self__, "values", values)
61
+
62
+ @property
63
+ @pulumi.getter(name="validatorType")
64
+ def validator_type(self) -> str:
65
+ """
66
+ (Updatable) Specifies the type of validation: a static value (no validation) or a list.
67
+ """
68
+ return pulumi.get(self, "validator_type")
69
+
70
+ @property
71
+ @pulumi.getter
72
+ def values(self) -> Optional[Sequence[str]]:
73
+ """
74
+ (Updatable) The list of allowed values for a security attribute value.
75
+
76
+
77
+ ** IMPORTANT **
78
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
79
+ """
80
+ return pulumi.get(self, "values")
81
+
82
+
83
+ @pulumi.output_type
84
+ class GetSecurityAttributeNamespacesFilterResult(dict):
85
+ def __init__(__self__, *,
86
+ name: str,
87
+ values: Sequence[str],
88
+ regex: Optional[bool] = None):
89
+ """
90
+ :param str name: A filter to return only resources that match the entire display name given.
91
+ """
92
+ pulumi.set(__self__, "name", name)
93
+ pulumi.set(__self__, "values", values)
94
+ if regex is not None:
95
+ pulumi.set(__self__, "regex", regex)
96
+
97
+ @property
98
+ @pulumi.getter
99
+ def name(self) -> str:
100
+ """
101
+ A filter to return only resources that match the entire display name given.
102
+ """
103
+ return pulumi.get(self, "name")
104
+
105
+ @property
106
+ @pulumi.getter
107
+ def values(self) -> Sequence[str]:
108
+ return pulumi.get(self, "values")
109
+
110
+ @property
111
+ @pulumi.getter
112
+ def regex(self) -> Optional[bool]:
113
+ return pulumi.get(self, "regex")
114
+
115
+
116
+ @pulumi.output_type
117
+ class GetSecurityAttributeNamespacesSecurityAttributeNamespaceResult(dict):
118
+ def __init__(__self__, *,
119
+ compartment_id: str,
120
+ defined_tags: Mapping[str, str],
121
+ description: str,
122
+ freeform_tags: Mapping[str, str],
123
+ id: str,
124
+ is_retired: bool,
125
+ modes: Sequence[str],
126
+ name: str,
127
+ state: str,
128
+ system_tags: Mapping[str, str],
129
+ time_created: str):
130
+ """
131
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
132
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
133
+ :param str description: A description you create for the security attribute namespace to help you identify it.
134
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
135
+ :param str id: The OCID of the security attribute namespace.
136
+ :param 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).
137
+ :param Sequence[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.
138
+ :param str name: A filter to return only resources that match the entire display name given.
139
+ :param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
140
+ :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
141
+ :param 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`
142
+ """
143
+ pulumi.set(__self__, "compartment_id", compartment_id)
144
+ pulumi.set(__self__, "defined_tags", defined_tags)
145
+ pulumi.set(__self__, "description", description)
146
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
147
+ pulumi.set(__self__, "id", id)
148
+ pulumi.set(__self__, "is_retired", is_retired)
149
+ pulumi.set(__self__, "modes", modes)
150
+ pulumi.set(__self__, "name", name)
151
+ pulumi.set(__self__, "state", state)
152
+ pulumi.set(__self__, "system_tags", system_tags)
153
+ pulumi.set(__self__, "time_created", time_created)
154
+
155
+ @property
156
+ @pulumi.getter(name="compartmentId")
157
+ def compartment_id(self) -> str:
158
+ """
159
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
160
+ """
161
+ return pulumi.get(self, "compartment_id")
162
+
163
+ @property
164
+ @pulumi.getter(name="definedTags")
165
+ def defined_tags(self) -> Mapping[str, str]:
166
+ """
167
+ 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"}`
168
+ """
169
+ return pulumi.get(self, "defined_tags")
170
+
171
+ @property
172
+ @pulumi.getter
173
+ def description(self) -> str:
174
+ """
175
+ A description you create for the security attribute namespace to help you identify it.
176
+ """
177
+ return pulumi.get(self, "description")
178
+
179
+ @property
180
+ @pulumi.getter(name="freeformTags")
181
+ def freeform_tags(self) -> Mapping[str, str]:
182
+ """
183
+ 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"}`
184
+ """
185
+ return pulumi.get(self, "freeform_tags")
186
+
187
+ @property
188
+ @pulumi.getter
189
+ def id(self) -> str:
190
+ """
191
+ The OCID of the security attribute namespace.
192
+ """
193
+ return pulumi.get(self, "id")
194
+
195
+ @property
196
+ @pulumi.getter(name="isRetired")
197
+ def is_retired(self) -> bool:
198
+ """
199
+ 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).
200
+ """
201
+ return pulumi.get(self, "is_retired")
202
+
203
+ @property
204
+ @pulumi.getter
205
+ def modes(self) -> Sequence[str]:
206
+ """
207
+ 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.
208
+ """
209
+ return pulumi.get(self, "modes")
210
+
211
+ @property
212
+ @pulumi.getter
213
+ def name(self) -> str:
214
+ """
215
+ A filter to return only resources that match the entire display name given.
216
+ """
217
+ return pulumi.get(self, "name")
218
+
219
+ @property
220
+ @pulumi.getter
221
+ def state(self) -> str:
222
+ """
223
+ A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
224
+ """
225
+ return pulumi.get(self, "state")
226
+
227
+ @property
228
+ @pulumi.getter(name="systemTags")
229
+ def system_tags(self) -> Mapping[str, str]:
230
+ """
231
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
232
+ """
233
+ return pulumi.get(self, "system_tags")
234
+
235
+ @property
236
+ @pulumi.getter(name="timeCreated")
237
+ def time_created(self) -> str:
238
+ """
239
+ Date and time the security attribute namespace was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
240
+ """
241
+ return pulumi.get(self, "time_created")
242
+
243
+
244
+ @pulumi.output_type
245
+ class GetSecurityAttributeValidatorResult(dict):
246
+ def __init__(__self__, *,
247
+ validator_type: str,
248
+ values: Sequence[str]):
249
+ """
250
+ :param str validator_type: Specifies the type of validation: a static value (no validation) or a list.
251
+ :param Sequence[str] values: The list of allowed values for a security attribute value.
252
+ """
253
+ pulumi.set(__self__, "validator_type", validator_type)
254
+ pulumi.set(__self__, "values", values)
255
+
256
+ @property
257
+ @pulumi.getter(name="validatorType")
258
+ def validator_type(self) -> str:
259
+ """
260
+ Specifies the type of validation: a static value (no validation) or a list.
261
+ """
262
+ return pulumi.get(self, "validator_type")
263
+
264
+ @property
265
+ @pulumi.getter
266
+ def values(self) -> Sequence[str]:
267
+ """
268
+ The list of allowed values for a security attribute value.
269
+ """
270
+ return pulumi.get(self, "values")
271
+
272
+
273
+ @pulumi.output_type
274
+ class GetSecurityAttributesFilterResult(dict):
275
+ def __init__(__self__, *,
276
+ name: str,
277
+ values: Sequence[str],
278
+ regex: Optional[bool] = None):
279
+ """
280
+ :param str name: The name assigned to the security attribute during creation. This is the security attribute key. The name must be unique within the security attribute namespace and cannot be changed.
281
+ :param Sequence[str] values: The list of allowed values for a security attribute value.
282
+ """
283
+ pulumi.set(__self__, "name", name)
284
+ pulumi.set(__self__, "values", values)
285
+ if regex is not None:
286
+ pulumi.set(__self__, "regex", regex)
287
+
288
+ @property
289
+ @pulumi.getter
290
+ def name(self) -> str:
291
+ """
292
+ The name assigned to the security attribute during creation. This is the security attribute key. The name must be unique within the security attribute namespace and cannot be changed.
293
+ """
294
+ return pulumi.get(self, "name")
295
+
296
+ @property
297
+ @pulumi.getter
298
+ def values(self) -> Sequence[str]:
299
+ """
300
+ The list of allowed values for a security attribute value.
301
+ """
302
+ return pulumi.get(self, "values")
303
+
304
+ @property
305
+ @pulumi.getter
306
+ def regex(self) -> Optional[bool]:
307
+ return pulumi.get(self, "regex")
308
+
309
+
310
+ @pulumi.output_type
311
+ class GetSecurityAttributesSecurityAttributeResult(dict):
312
+ def __init__(__self__, *,
313
+ compartment_id: str,
314
+ description: str,
315
+ id: str,
316
+ is_retired: bool,
317
+ name: str,
318
+ security_attribute_namespace_id: str,
319
+ security_attribute_namespace_name: str,
320
+ state: str,
321
+ time_created: str,
322
+ type: str,
323
+ validators: Sequence['outputs.GetSecurityAttributesSecurityAttributeValidatorResult']):
324
+ """
325
+ :param str compartment_id: The OCID of the compartment that contains the security attribute definition.
326
+ :param str description: The description you assign to the security attribute.
327
+ :param str id: The OCID of the security attribute definition.
328
+ :param bool is_retired: Indicates whether the security attribute is retired. See [Managing Security Attribute Namespaces](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/managing-security-attribute-namespaces.htm).
329
+ :param str name: The name assigned to the security attribute during creation. This is the security attribute key. The name must be unique within the security attribute namespace and cannot be changed.
330
+ :param str security_attribute_namespace_id: The OCID of the security attribute namespace.
331
+ :param str security_attribute_namespace_name: The name of the security attribute namespace that contains the security attribute.
332
+ :param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
333
+ :param str time_created: Date and time the security attribute was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
334
+ :param str type: The data type of the security attribute.
335
+ :param Sequence['GetSecurityAttributesSecurityAttributeValidatorArgs'] validators: Validates a security attribute value. Each validator performs validation steps in addition to the standard validation for security attribute values. For more information, see [Limits on Security Attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm).
336
+ """
337
+ pulumi.set(__self__, "compartment_id", compartment_id)
338
+ pulumi.set(__self__, "description", description)
339
+ pulumi.set(__self__, "id", id)
340
+ pulumi.set(__self__, "is_retired", is_retired)
341
+ pulumi.set(__self__, "name", name)
342
+ pulumi.set(__self__, "security_attribute_namespace_id", security_attribute_namespace_id)
343
+ pulumi.set(__self__, "security_attribute_namespace_name", security_attribute_namespace_name)
344
+ pulumi.set(__self__, "state", state)
345
+ pulumi.set(__self__, "time_created", time_created)
346
+ pulumi.set(__self__, "type", type)
347
+ pulumi.set(__self__, "validators", validators)
348
+
349
+ @property
350
+ @pulumi.getter(name="compartmentId")
351
+ def compartment_id(self) -> str:
352
+ """
353
+ The OCID of the compartment that contains the security attribute definition.
354
+ """
355
+ return pulumi.get(self, "compartment_id")
356
+
357
+ @property
358
+ @pulumi.getter
359
+ def description(self) -> str:
360
+ """
361
+ The description you assign to the security attribute.
362
+ """
363
+ return pulumi.get(self, "description")
364
+
365
+ @property
366
+ @pulumi.getter
367
+ def id(self) -> str:
368
+ """
369
+ The OCID of the security attribute definition.
370
+ """
371
+ return pulumi.get(self, "id")
372
+
373
+ @property
374
+ @pulumi.getter(name="isRetired")
375
+ def is_retired(self) -> bool:
376
+ """
377
+ Indicates whether the security attribute is retired. See [Managing Security Attribute Namespaces](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/managing-security-attribute-namespaces.htm).
378
+ """
379
+ return pulumi.get(self, "is_retired")
380
+
381
+ @property
382
+ @pulumi.getter
383
+ def name(self) -> str:
384
+ """
385
+ The name assigned to the security attribute during creation. This is the security attribute key. The name must be unique within the security attribute namespace and cannot be changed.
386
+ """
387
+ return pulumi.get(self, "name")
388
+
389
+ @property
390
+ @pulumi.getter(name="securityAttributeNamespaceId")
391
+ def security_attribute_namespace_id(self) -> str:
392
+ """
393
+ The OCID of the security attribute namespace.
394
+ """
395
+ return pulumi.get(self, "security_attribute_namespace_id")
396
+
397
+ @property
398
+ @pulumi.getter(name="securityAttributeNamespaceName")
399
+ def security_attribute_namespace_name(self) -> str:
400
+ """
401
+ The name of the security attribute namespace that contains the security attribute.
402
+ """
403
+ return pulumi.get(self, "security_attribute_namespace_name")
404
+
405
+ @property
406
+ @pulumi.getter
407
+ def state(self) -> str:
408
+ """
409
+ A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
410
+ """
411
+ return pulumi.get(self, "state")
412
+
413
+ @property
414
+ @pulumi.getter(name="timeCreated")
415
+ def time_created(self) -> str:
416
+ """
417
+ Date and time the security attribute was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
418
+ """
419
+ return pulumi.get(self, "time_created")
420
+
421
+ @property
422
+ @pulumi.getter
423
+ def type(self) -> str:
424
+ """
425
+ The data type of the security attribute.
426
+ """
427
+ return pulumi.get(self, "type")
428
+
429
+ @property
430
+ @pulumi.getter
431
+ def validators(self) -> Sequence['outputs.GetSecurityAttributesSecurityAttributeValidatorResult']:
432
+ """
433
+ Validates a security attribute value. Each validator performs validation steps in addition to the standard validation for security attribute values. For more information, see [Limits on Security Attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm).
434
+ """
435
+ return pulumi.get(self, "validators")
436
+
437
+
438
+ @pulumi.output_type
439
+ class GetSecurityAttributesSecurityAttributeValidatorResult(dict):
440
+ def __init__(__self__, *,
441
+ validator_type: str,
442
+ values: Sequence[str]):
443
+ """
444
+ :param str validator_type: Specifies the type of validation: a static value (no validation) or a list.
445
+ :param Sequence[str] values: The list of allowed values for a security attribute value.
446
+ """
447
+ pulumi.set(__self__, "validator_type", validator_type)
448
+ pulumi.set(__self__, "values", values)
449
+
450
+ @property
451
+ @pulumi.getter(name="validatorType")
452
+ def validator_type(self) -> str:
453
+ """
454
+ Specifies the type of validation: a static value (no validation) or a list.
455
+ """
456
+ return pulumi.get(self, "validator_type")
457
+
458
+ @property
459
+ @pulumi.getter
460
+ def values(self) -> Sequence[str]:
461
+ """
462
+ The list of allowed values for a security attribute value.
463
+ """
464
+ return pulumi.get(self, "values")
465
+
466
+