pulumi-oci 2.29.0a1744186202__py3-none-any.whl → 2.30.0a1744266639__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 (41) hide show
  1. pulumi_oci/__init__.py +46 -0
  2. pulumi_oci/bigdataservice/bds_instance.py +7 -7
  3. pulumi_oci/datascience/__init__.py +9 -0
  4. pulumi_oci/datascience/_inputs.py +1215 -0
  5. pulumi_oci/datascience/get_ml_application.py +254 -0
  6. pulumi_oci/datascience/get_ml_application_implementation.py +389 -0
  7. pulumi_oci/datascience/get_ml_application_implementations.py +252 -0
  8. pulumi_oci/datascience/get_ml_application_instance.py +367 -0
  9. pulumi_oci/datascience/get_ml_application_instances.py +214 -0
  10. pulumi_oci/datascience/get_ml_applications.py +230 -0
  11. pulumi_oci/datascience/ml_application.py +564 -0
  12. pulumi_oci/datascience/ml_application_implementation.py +969 -0
  13. pulumi_oci/datascience/ml_application_instance.py +832 -0
  14. pulumi_oci/datascience/outputs.py +7154 -4464
  15. pulumi_oci/lustre/__init__.py +13 -0
  16. pulumi_oci/lustre/_inputs.py +219 -0
  17. pulumi_oci/lustre/file_storage_lustre_file_system.py +1184 -0
  18. pulumi_oci/lustre/get_file_storage_lustre_file_system.py +451 -0
  19. pulumi_oci/lustre/get_file_storage_lustre_file_systems.py +222 -0
  20. pulumi_oci/lustre/outputs.py +639 -0
  21. pulumi_oci/oci/__init__.py +13 -0
  22. pulumi_oci/oci/_inputs.py +219 -0
  23. pulumi_oci/oci/get_lustre_file_storage_lustre_file_system.py +455 -0
  24. pulumi_oci/oci/get_lustre_file_storage_lustre_file_systems.py +226 -0
  25. pulumi_oci/oci/lustre_file_storage_lustre_file_system.py +1188 -0
  26. pulumi_oci/oci/outputs.py +639 -0
  27. pulumi_oci/opsi/get_operations_insights_warehouse.py +16 -2
  28. pulumi_oci/opsi/operations_insights_warehouse.py +56 -7
  29. pulumi_oci/opsi/outputs.py +13 -2
  30. pulumi_oci/pulumi-plugin.json +1 -1
  31. pulumi_oci/stackmonitoring/_inputs.py +1423 -51
  32. pulumi_oci/stackmonitoring/get_monitored_resource_task.py +16 -2
  33. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +58 -2
  34. pulumi_oci/stackmonitoring/get_monitored_resource_types.py +46 -2
  35. pulumi_oci/stackmonitoring/monitored_resource_task.py +116 -4
  36. pulumi_oci/stackmonitoring/monitored_resource_type.py +119 -7
  37. pulumi_oci/stackmonitoring/outputs.py +6195 -3496
  38. {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.30.0a1744266639.dist-info}/METADATA +1 -1
  39. {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.30.0a1744266639.dist-info}/RECORD +41 -20
  40. {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.30.0a1744266639.dist-info}/WHEEL +0 -0
  41. {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.30.0a1744266639.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1184 @@
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 builtins
6
+ import copy
7
+ import warnings
8
+ import sys
9
+ import pulumi
10
+ import pulumi.runtime
11
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
12
+ if sys.version_info >= (3, 11):
13
+ from typing import NotRequired, TypedDict, TypeAlias
14
+ else:
15
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
16
+ from .. import _utilities
17
+ from . import outputs
18
+ from ._inputs import *
19
+
20
+ __all__ = ['FileStorageLustreFileSystemArgs', 'FileStorageLustreFileSystem']
21
+
22
+ @pulumi.input_type
23
+ class FileStorageLustreFileSystemArgs:
24
+ def __init__(__self__, *,
25
+ availability_domain: pulumi.Input[builtins.str],
26
+ capacity_in_gbs: pulumi.Input[builtins.int],
27
+ compartment_id: pulumi.Input[builtins.str],
28
+ file_system_name: pulumi.Input[builtins.str],
29
+ performance_tier: pulumi.Input[builtins.str],
30
+ root_squash_configuration: pulumi.Input['FileStorageLustreFileSystemRootSquashConfigurationArgs'],
31
+ subnet_id: pulumi.Input[builtins.str],
32
+ cluster_placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
33
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
34
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
35
+ file_system_description: Optional[pulumi.Input[builtins.str]] = None,
36
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
37
+ kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
38
+ nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
39
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
40
+ """
41
+ The set of arguments for constructing a FileStorageLustreFileSystem resource.
42
+ :param pulumi.Input[builtins.str] availability_domain: The availability domain the file system is in. May be unset as a blank or NULL value. Example: `Uocm:PHX-AD-1`
43
+ :param pulumi.Input[builtins.int] capacity_in_gbs: (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
44
+ :param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Lustre file system.
45
+ :param pulumi.Input[builtins.str] file_system_name: The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
46
+ :param pulumi.Input[builtins.str] performance_tier: The Lustre file system performance tier. A value of `MBPS_PER_TB_125` represents 125 megabytes per second per terabyte.
47
+ :param pulumi.Input['FileStorageLustreFileSystemRootSquashConfigurationArgs'] root_squash_configuration: (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
48
+ :param pulumi.Input[builtins.str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the Lustre file system is in.
49
+
50
+
51
+ ** IMPORTANT **
52
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
53
+ :param pulumi.Input[builtins.str] cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group in which the Lustre file system exists.
54
+ :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"}`
55
+ :param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My Lustre file system`
56
+ :param pulumi.Input[builtins.str] file_system_description: (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
57
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.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"}`
58
+ :param pulumi.Input[builtins.str] kms_key_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key used to encrypt the encryption keys associated with this file system.
59
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] nsg_ids: (Updatable) A list of Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm).
60
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
61
+ """
62
+ pulumi.set(__self__, "availability_domain", availability_domain)
63
+ pulumi.set(__self__, "capacity_in_gbs", capacity_in_gbs)
64
+ pulumi.set(__self__, "compartment_id", compartment_id)
65
+ pulumi.set(__self__, "file_system_name", file_system_name)
66
+ pulumi.set(__self__, "performance_tier", performance_tier)
67
+ pulumi.set(__self__, "root_squash_configuration", root_squash_configuration)
68
+ pulumi.set(__self__, "subnet_id", subnet_id)
69
+ if cluster_placement_group_id is not None:
70
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
71
+ if defined_tags is not None:
72
+ pulumi.set(__self__, "defined_tags", defined_tags)
73
+ if display_name is not None:
74
+ pulumi.set(__self__, "display_name", display_name)
75
+ if file_system_description is not None:
76
+ pulumi.set(__self__, "file_system_description", file_system_description)
77
+ if freeform_tags is not None:
78
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
79
+ if kms_key_id is not None:
80
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
81
+ if nsg_ids is not None:
82
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
83
+ if system_tags is not None:
84
+ pulumi.set(__self__, "system_tags", system_tags)
85
+
86
+ @property
87
+ @pulumi.getter(name="availabilityDomain")
88
+ def availability_domain(self) -> pulumi.Input[builtins.str]:
89
+ """
90
+ The availability domain the file system is in. May be unset as a blank or NULL value. Example: `Uocm:PHX-AD-1`
91
+ """
92
+ return pulumi.get(self, "availability_domain")
93
+
94
+ @availability_domain.setter
95
+ def availability_domain(self, value: pulumi.Input[builtins.str]):
96
+ pulumi.set(self, "availability_domain", value)
97
+
98
+ @property
99
+ @pulumi.getter(name="capacityInGbs")
100
+ def capacity_in_gbs(self) -> pulumi.Input[builtins.int]:
101
+ """
102
+ (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
103
+ """
104
+ return pulumi.get(self, "capacity_in_gbs")
105
+
106
+ @capacity_in_gbs.setter
107
+ def capacity_in_gbs(self, value: pulumi.Input[builtins.int]):
108
+ pulumi.set(self, "capacity_in_gbs", value)
109
+
110
+ @property
111
+ @pulumi.getter(name="compartmentId")
112
+ def compartment_id(self) -> pulumi.Input[builtins.str]:
113
+ """
114
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Lustre file system.
115
+ """
116
+ return pulumi.get(self, "compartment_id")
117
+
118
+ @compartment_id.setter
119
+ def compartment_id(self, value: pulumi.Input[builtins.str]):
120
+ pulumi.set(self, "compartment_id", value)
121
+
122
+ @property
123
+ @pulumi.getter(name="fileSystemName")
124
+ def file_system_name(self) -> pulumi.Input[builtins.str]:
125
+ """
126
+ The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
127
+ """
128
+ return pulumi.get(self, "file_system_name")
129
+
130
+ @file_system_name.setter
131
+ def file_system_name(self, value: pulumi.Input[builtins.str]):
132
+ pulumi.set(self, "file_system_name", value)
133
+
134
+ @property
135
+ @pulumi.getter(name="performanceTier")
136
+ def performance_tier(self) -> pulumi.Input[builtins.str]:
137
+ """
138
+ The Lustre file system performance tier. A value of `MBPS_PER_TB_125` represents 125 megabytes per second per terabyte.
139
+ """
140
+ return pulumi.get(self, "performance_tier")
141
+
142
+ @performance_tier.setter
143
+ def performance_tier(self, value: pulumi.Input[builtins.str]):
144
+ pulumi.set(self, "performance_tier", value)
145
+
146
+ @property
147
+ @pulumi.getter(name="rootSquashConfiguration")
148
+ def root_squash_configuration(self) -> pulumi.Input['FileStorageLustreFileSystemRootSquashConfigurationArgs']:
149
+ """
150
+ (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
151
+ """
152
+ return pulumi.get(self, "root_squash_configuration")
153
+
154
+ @root_squash_configuration.setter
155
+ def root_squash_configuration(self, value: pulumi.Input['FileStorageLustreFileSystemRootSquashConfigurationArgs']):
156
+ pulumi.set(self, "root_squash_configuration", value)
157
+
158
+ @property
159
+ @pulumi.getter(name="subnetId")
160
+ def subnet_id(self) -> pulumi.Input[builtins.str]:
161
+ """
162
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the Lustre file system is in.
163
+
164
+
165
+ ** IMPORTANT **
166
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
167
+ """
168
+ return pulumi.get(self, "subnet_id")
169
+
170
+ @subnet_id.setter
171
+ def subnet_id(self, value: pulumi.Input[builtins.str]):
172
+ pulumi.set(self, "subnet_id", value)
173
+
174
+ @property
175
+ @pulumi.getter(name="clusterPlacementGroupId")
176
+ def cluster_placement_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
177
+ """
178
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group in which the Lustre file system exists.
179
+ """
180
+ return pulumi.get(self, "cluster_placement_group_id")
181
+
182
+ @cluster_placement_group_id.setter
183
+ def cluster_placement_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
184
+ pulumi.set(self, "cluster_placement_group_id", value)
185
+
186
+ @property
187
+ @pulumi.getter(name="definedTags")
188
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
189
+ """
190
+ (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"}`
191
+ """
192
+ return pulumi.get(self, "defined_tags")
193
+
194
+ @defined_tags.setter
195
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
196
+ pulumi.set(self, "defined_tags", value)
197
+
198
+ @property
199
+ @pulumi.getter(name="displayName")
200
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
201
+ """
202
+ (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My Lustre file system`
203
+ """
204
+ return pulumi.get(self, "display_name")
205
+
206
+ @display_name.setter
207
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
208
+ pulumi.set(self, "display_name", value)
209
+
210
+ @property
211
+ @pulumi.getter(name="fileSystemDescription")
212
+ def file_system_description(self) -> Optional[pulumi.Input[builtins.str]]:
213
+ """
214
+ (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
215
+ """
216
+ return pulumi.get(self, "file_system_description")
217
+
218
+ @file_system_description.setter
219
+ def file_system_description(self, value: Optional[pulumi.Input[builtins.str]]):
220
+ pulumi.set(self, "file_system_description", value)
221
+
222
+ @property
223
+ @pulumi.getter(name="freeformTags")
224
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
225
+ """
226
+ (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"}`
227
+ """
228
+ return pulumi.get(self, "freeform_tags")
229
+
230
+ @freeform_tags.setter
231
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
232
+ pulumi.set(self, "freeform_tags", value)
233
+
234
+ @property
235
+ @pulumi.getter(name="kmsKeyId")
236
+ def kms_key_id(self) -> Optional[pulumi.Input[builtins.str]]:
237
+ """
238
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key used to encrypt the encryption keys associated with this file system.
239
+ """
240
+ return pulumi.get(self, "kms_key_id")
241
+
242
+ @kms_key_id.setter
243
+ def kms_key_id(self, value: Optional[pulumi.Input[builtins.str]]):
244
+ pulumi.set(self, "kms_key_id", value)
245
+
246
+ @property
247
+ @pulumi.getter(name="nsgIds")
248
+ def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
249
+ """
250
+ (Updatable) A list of Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm).
251
+ """
252
+ return pulumi.get(self, "nsg_ids")
253
+
254
+ @nsg_ids.setter
255
+ def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
256
+ pulumi.set(self, "nsg_ids", value)
257
+
258
+ @property
259
+ @pulumi.getter(name="systemTags")
260
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
261
+ """
262
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
263
+ """
264
+ return pulumi.get(self, "system_tags")
265
+
266
+ @system_tags.setter
267
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
268
+ pulumi.set(self, "system_tags", value)
269
+
270
+
271
+ @pulumi.input_type
272
+ class _FileStorageLustreFileSystemState:
273
+ def __init__(__self__, *,
274
+ availability_domain: Optional[pulumi.Input[builtins.str]] = None,
275
+ capacity_in_gbs: Optional[pulumi.Input[builtins.int]] = None,
276
+ cluster_placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
277
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
278
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
279
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
280
+ file_system_description: Optional[pulumi.Input[builtins.str]] = None,
281
+ file_system_name: Optional[pulumi.Input[builtins.str]] = None,
282
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
283
+ kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
284
+ lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
285
+ lnet: Optional[pulumi.Input[builtins.str]] = None,
286
+ maintenance_windows: Optional[pulumi.Input[Sequence[pulumi.Input['FileStorageLustreFileSystemMaintenanceWindowArgs']]]] = None,
287
+ major_version: Optional[pulumi.Input[builtins.str]] = None,
288
+ management_service_address: Optional[pulumi.Input[builtins.str]] = None,
289
+ nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
290
+ performance_tier: Optional[pulumi.Input[builtins.str]] = None,
291
+ root_squash_configuration: Optional[pulumi.Input['FileStorageLustreFileSystemRootSquashConfigurationArgs']] = None,
292
+ state: Optional[pulumi.Input[builtins.str]] = None,
293
+ subnet_id: Optional[pulumi.Input[builtins.str]] = None,
294
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
295
+ time_billing_cycle_end: Optional[pulumi.Input[builtins.str]] = None,
296
+ time_created: Optional[pulumi.Input[builtins.str]] = None,
297
+ time_updated: Optional[pulumi.Input[builtins.str]] = None):
298
+ """
299
+ Input properties used for looking up and filtering FileStorageLustreFileSystem resources.
300
+ :param pulumi.Input[builtins.str] availability_domain: The availability domain the file system is in. May be unset as a blank or NULL value. Example: `Uocm:PHX-AD-1`
301
+ :param pulumi.Input[builtins.int] capacity_in_gbs: (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
302
+ :param pulumi.Input[builtins.str] cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group in which the Lustre file system exists.
303
+ :param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Lustre file system.
304
+ :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"}`
305
+ :param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My Lustre file system`
306
+ :param pulumi.Input[builtins.str] file_system_description: (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
307
+ :param pulumi.Input[builtins.str] file_system_name: The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
308
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.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"}`
309
+ :param pulumi.Input[builtins.str] kms_key_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key used to encrypt the encryption keys associated with this file system.
310
+ :param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
311
+ :param pulumi.Input[builtins.str] lnet: Type of network used by clients to mount the file system. Example: `tcp`
312
+ :param pulumi.Input[Sequence[pulumi.Input['FileStorageLustreFileSystemMaintenanceWindowArgs']]] maintenance_windows: The preferred day and time to perform maintenance.
313
+ :param pulumi.Input[builtins.str] major_version: Major version of Lustre running in the Lustre file system. Example: `2.15`
314
+ :param pulumi.Input[builtins.str] management_service_address: The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
315
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] nsg_ids: (Updatable) A list of Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm).
316
+ :param pulumi.Input[builtins.str] performance_tier: The Lustre file system performance tier. A value of `MBPS_PER_TB_125` represents 125 megabytes per second per terabyte.
317
+ :param pulumi.Input['FileStorageLustreFileSystemRootSquashConfigurationArgs'] root_squash_configuration: (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
318
+ :param pulumi.Input[builtins.str] state: The current state of the Lustre file system.
319
+ :param pulumi.Input[builtins.str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the Lustre file system is in.
320
+
321
+
322
+ ** IMPORTANT **
323
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
324
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
325
+ :param pulumi.Input[builtins.str] time_billing_cycle_end: The date and time that the current billing cycle for the file system will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: `2016-08-25T21:10:29.600Z`
326
+ :param pulumi.Input[builtins.str] time_created: The date and time the Lustre file system was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2024-04-25T21:10:29.600Z`
327
+ :param pulumi.Input[builtins.str] time_updated: The date and time the Lustre file system was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2024-04-25T21:10:29.600Z`
328
+ """
329
+ if availability_domain is not None:
330
+ pulumi.set(__self__, "availability_domain", availability_domain)
331
+ if capacity_in_gbs is not None:
332
+ pulumi.set(__self__, "capacity_in_gbs", capacity_in_gbs)
333
+ if cluster_placement_group_id is not None:
334
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
335
+ if compartment_id is not None:
336
+ pulumi.set(__self__, "compartment_id", compartment_id)
337
+ if defined_tags is not None:
338
+ pulumi.set(__self__, "defined_tags", defined_tags)
339
+ if display_name is not None:
340
+ pulumi.set(__self__, "display_name", display_name)
341
+ if file_system_description is not None:
342
+ pulumi.set(__self__, "file_system_description", file_system_description)
343
+ if file_system_name is not None:
344
+ pulumi.set(__self__, "file_system_name", file_system_name)
345
+ if freeform_tags is not None:
346
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
347
+ if kms_key_id is not None:
348
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
349
+ if lifecycle_details is not None:
350
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
351
+ if lnet is not None:
352
+ pulumi.set(__self__, "lnet", lnet)
353
+ if maintenance_windows is not None:
354
+ pulumi.set(__self__, "maintenance_windows", maintenance_windows)
355
+ if major_version is not None:
356
+ pulumi.set(__self__, "major_version", major_version)
357
+ if management_service_address is not None:
358
+ pulumi.set(__self__, "management_service_address", management_service_address)
359
+ if nsg_ids is not None:
360
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
361
+ if performance_tier is not None:
362
+ pulumi.set(__self__, "performance_tier", performance_tier)
363
+ if root_squash_configuration is not None:
364
+ pulumi.set(__self__, "root_squash_configuration", root_squash_configuration)
365
+ if state is not None:
366
+ pulumi.set(__self__, "state", state)
367
+ if subnet_id is not None:
368
+ pulumi.set(__self__, "subnet_id", subnet_id)
369
+ if system_tags is not None:
370
+ pulumi.set(__self__, "system_tags", system_tags)
371
+ if time_billing_cycle_end is not None:
372
+ pulumi.set(__self__, "time_billing_cycle_end", time_billing_cycle_end)
373
+ if time_created is not None:
374
+ pulumi.set(__self__, "time_created", time_created)
375
+ if time_updated is not None:
376
+ pulumi.set(__self__, "time_updated", time_updated)
377
+
378
+ @property
379
+ @pulumi.getter(name="availabilityDomain")
380
+ def availability_domain(self) -> Optional[pulumi.Input[builtins.str]]:
381
+ """
382
+ The availability domain the file system is in. May be unset as a blank or NULL value. Example: `Uocm:PHX-AD-1`
383
+ """
384
+ return pulumi.get(self, "availability_domain")
385
+
386
+ @availability_domain.setter
387
+ def availability_domain(self, value: Optional[pulumi.Input[builtins.str]]):
388
+ pulumi.set(self, "availability_domain", value)
389
+
390
+ @property
391
+ @pulumi.getter(name="capacityInGbs")
392
+ def capacity_in_gbs(self) -> Optional[pulumi.Input[builtins.int]]:
393
+ """
394
+ (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
395
+ """
396
+ return pulumi.get(self, "capacity_in_gbs")
397
+
398
+ @capacity_in_gbs.setter
399
+ def capacity_in_gbs(self, value: Optional[pulumi.Input[builtins.int]]):
400
+ pulumi.set(self, "capacity_in_gbs", value)
401
+
402
+ @property
403
+ @pulumi.getter(name="clusterPlacementGroupId")
404
+ def cluster_placement_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
405
+ """
406
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group in which the Lustre file system exists.
407
+ """
408
+ return pulumi.get(self, "cluster_placement_group_id")
409
+
410
+ @cluster_placement_group_id.setter
411
+ def cluster_placement_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
412
+ pulumi.set(self, "cluster_placement_group_id", value)
413
+
414
+ @property
415
+ @pulumi.getter(name="compartmentId")
416
+ def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
417
+ """
418
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Lustre file system.
419
+ """
420
+ return pulumi.get(self, "compartment_id")
421
+
422
+ @compartment_id.setter
423
+ def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
424
+ pulumi.set(self, "compartment_id", value)
425
+
426
+ @property
427
+ @pulumi.getter(name="definedTags")
428
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
429
+ """
430
+ (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"}`
431
+ """
432
+ return pulumi.get(self, "defined_tags")
433
+
434
+ @defined_tags.setter
435
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
436
+ pulumi.set(self, "defined_tags", value)
437
+
438
+ @property
439
+ @pulumi.getter(name="displayName")
440
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
441
+ """
442
+ (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My Lustre file system`
443
+ """
444
+ return pulumi.get(self, "display_name")
445
+
446
+ @display_name.setter
447
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
448
+ pulumi.set(self, "display_name", value)
449
+
450
+ @property
451
+ @pulumi.getter(name="fileSystemDescription")
452
+ def file_system_description(self) -> Optional[pulumi.Input[builtins.str]]:
453
+ """
454
+ (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
455
+ """
456
+ return pulumi.get(self, "file_system_description")
457
+
458
+ @file_system_description.setter
459
+ def file_system_description(self, value: Optional[pulumi.Input[builtins.str]]):
460
+ pulumi.set(self, "file_system_description", value)
461
+
462
+ @property
463
+ @pulumi.getter(name="fileSystemName")
464
+ def file_system_name(self) -> Optional[pulumi.Input[builtins.str]]:
465
+ """
466
+ The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
467
+ """
468
+ return pulumi.get(self, "file_system_name")
469
+
470
+ @file_system_name.setter
471
+ def file_system_name(self, value: Optional[pulumi.Input[builtins.str]]):
472
+ pulumi.set(self, "file_system_name", value)
473
+
474
+ @property
475
+ @pulumi.getter(name="freeformTags")
476
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
477
+ """
478
+ (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"}`
479
+ """
480
+ return pulumi.get(self, "freeform_tags")
481
+
482
+ @freeform_tags.setter
483
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
484
+ pulumi.set(self, "freeform_tags", value)
485
+
486
+ @property
487
+ @pulumi.getter(name="kmsKeyId")
488
+ def kms_key_id(self) -> Optional[pulumi.Input[builtins.str]]:
489
+ """
490
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key used to encrypt the encryption keys associated with this file system.
491
+ """
492
+ return pulumi.get(self, "kms_key_id")
493
+
494
+ @kms_key_id.setter
495
+ def kms_key_id(self, value: Optional[pulumi.Input[builtins.str]]):
496
+ pulumi.set(self, "kms_key_id", value)
497
+
498
+ @property
499
+ @pulumi.getter(name="lifecycleDetails")
500
+ def lifecycle_details(self) -> Optional[pulumi.Input[builtins.str]]:
501
+ """
502
+ A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
503
+ """
504
+ return pulumi.get(self, "lifecycle_details")
505
+
506
+ @lifecycle_details.setter
507
+ def lifecycle_details(self, value: Optional[pulumi.Input[builtins.str]]):
508
+ pulumi.set(self, "lifecycle_details", value)
509
+
510
+ @property
511
+ @pulumi.getter
512
+ def lnet(self) -> Optional[pulumi.Input[builtins.str]]:
513
+ """
514
+ Type of network used by clients to mount the file system. Example: `tcp`
515
+ """
516
+ return pulumi.get(self, "lnet")
517
+
518
+ @lnet.setter
519
+ def lnet(self, value: Optional[pulumi.Input[builtins.str]]):
520
+ pulumi.set(self, "lnet", value)
521
+
522
+ @property
523
+ @pulumi.getter(name="maintenanceWindows")
524
+ def maintenance_windows(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FileStorageLustreFileSystemMaintenanceWindowArgs']]]]:
525
+ """
526
+ The preferred day and time to perform maintenance.
527
+ """
528
+ return pulumi.get(self, "maintenance_windows")
529
+
530
+ @maintenance_windows.setter
531
+ def maintenance_windows(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FileStorageLustreFileSystemMaintenanceWindowArgs']]]]):
532
+ pulumi.set(self, "maintenance_windows", value)
533
+
534
+ @property
535
+ @pulumi.getter(name="majorVersion")
536
+ def major_version(self) -> Optional[pulumi.Input[builtins.str]]:
537
+ """
538
+ Major version of Lustre running in the Lustre file system. Example: `2.15`
539
+ """
540
+ return pulumi.get(self, "major_version")
541
+
542
+ @major_version.setter
543
+ def major_version(self, value: Optional[pulumi.Input[builtins.str]]):
544
+ pulumi.set(self, "major_version", value)
545
+
546
+ @property
547
+ @pulumi.getter(name="managementServiceAddress")
548
+ def management_service_address(self) -> Optional[pulumi.Input[builtins.str]]:
549
+ """
550
+ The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
551
+ """
552
+ return pulumi.get(self, "management_service_address")
553
+
554
+ @management_service_address.setter
555
+ def management_service_address(self, value: Optional[pulumi.Input[builtins.str]]):
556
+ pulumi.set(self, "management_service_address", value)
557
+
558
+ @property
559
+ @pulumi.getter(name="nsgIds")
560
+ def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
561
+ """
562
+ (Updatable) A list of Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm).
563
+ """
564
+ return pulumi.get(self, "nsg_ids")
565
+
566
+ @nsg_ids.setter
567
+ def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
568
+ pulumi.set(self, "nsg_ids", value)
569
+
570
+ @property
571
+ @pulumi.getter(name="performanceTier")
572
+ def performance_tier(self) -> Optional[pulumi.Input[builtins.str]]:
573
+ """
574
+ The Lustre file system performance tier. A value of `MBPS_PER_TB_125` represents 125 megabytes per second per terabyte.
575
+ """
576
+ return pulumi.get(self, "performance_tier")
577
+
578
+ @performance_tier.setter
579
+ def performance_tier(self, value: Optional[pulumi.Input[builtins.str]]):
580
+ pulumi.set(self, "performance_tier", value)
581
+
582
+ @property
583
+ @pulumi.getter(name="rootSquashConfiguration")
584
+ def root_squash_configuration(self) -> Optional[pulumi.Input['FileStorageLustreFileSystemRootSquashConfigurationArgs']]:
585
+ """
586
+ (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
587
+ """
588
+ return pulumi.get(self, "root_squash_configuration")
589
+
590
+ @root_squash_configuration.setter
591
+ def root_squash_configuration(self, value: Optional[pulumi.Input['FileStorageLustreFileSystemRootSquashConfigurationArgs']]):
592
+ pulumi.set(self, "root_squash_configuration", value)
593
+
594
+ @property
595
+ @pulumi.getter
596
+ def state(self) -> Optional[pulumi.Input[builtins.str]]:
597
+ """
598
+ The current state of the Lustre file system.
599
+ """
600
+ return pulumi.get(self, "state")
601
+
602
+ @state.setter
603
+ def state(self, value: Optional[pulumi.Input[builtins.str]]):
604
+ pulumi.set(self, "state", value)
605
+
606
+ @property
607
+ @pulumi.getter(name="subnetId")
608
+ def subnet_id(self) -> Optional[pulumi.Input[builtins.str]]:
609
+ """
610
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the Lustre file system is in.
611
+
612
+
613
+ ** IMPORTANT **
614
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
615
+ """
616
+ return pulumi.get(self, "subnet_id")
617
+
618
+ @subnet_id.setter
619
+ def subnet_id(self, value: Optional[pulumi.Input[builtins.str]]):
620
+ pulumi.set(self, "subnet_id", value)
621
+
622
+ @property
623
+ @pulumi.getter(name="systemTags")
624
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
625
+ """
626
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
627
+ """
628
+ return pulumi.get(self, "system_tags")
629
+
630
+ @system_tags.setter
631
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
632
+ pulumi.set(self, "system_tags", value)
633
+
634
+ @property
635
+ @pulumi.getter(name="timeBillingCycleEnd")
636
+ def time_billing_cycle_end(self) -> Optional[pulumi.Input[builtins.str]]:
637
+ """
638
+ The date and time that the current billing cycle for the file system will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: `2016-08-25T21:10:29.600Z`
639
+ """
640
+ return pulumi.get(self, "time_billing_cycle_end")
641
+
642
+ @time_billing_cycle_end.setter
643
+ def time_billing_cycle_end(self, value: Optional[pulumi.Input[builtins.str]]):
644
+ pulumi.set(self, "time_billing_cycle_end", value)
645
+
646
+ @property
647
+ @pulumi.getter(name="timeCreated")
648
+ def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
649
+ """
650
+ The date and time the Lustre file system was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2024-04-25T21:10:29.600Z`
651
+ """
652
+ return pulumi.get(self, "time_created")
653
+
654
+ @time_created.setter
655
+ def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
656
+ pulumi.set(self, "time_created", value)
657
+
658
+ @property
659
+ @pulumi.getter(name="timeUpdated")
660
+ def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
661
+ """
662
+ The date and time the Lustre file system was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2024-04-25T21:10:29.600Z`
663
+ """
664
+ return pulumi.get(self, "time_updated")
665
+
666
+ @time_updated.setter
667
+ def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
668
+ pulumi.set(self, "time_updated", value)
669
+
670
+
671
+ class FileStorageLustreFileSystem(pulumi.CustomResource):
672
+ @overload
673
+ def __init__(__self__,
674
+ resource_name: str,
675
+ opts: Optional[pulumi.ResourceOptions] = None,
676
+ availability_domain: Optional[pulumi.Input[builtins.str]] = None,
677
+ capacity_in_gbs: Optional[pulumi.Input[builtins.int]] = None,
678
+ cluster_placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
679
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
680
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
681
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
682
+ file_system_description: Optional[pulumi.Input[builtins.str]] = None,
683
+ file_system_name: Optional[pulumi.Input[builtins.str]] = None,
684
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
685
+ kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
686
+ nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
687
+ performance_tier: Optional[pulumi.Input[builtins.str]] = None,
688
+ root_squash_configuration: Optional[pulumi.Input[Union['FileStorageLustreFileSystemRootSquashConfigurationArgs', 'FileStorageLustreFileSystemRootSquashConfigurationArgsDict']]] = None,
689
+ subnet_id: Optional[pulumi.Input[builtins.str]] = None,
690
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
691
+ __props__=None):
692
+ """
693
+ This resource provides the Lustre File System resource in Oracle Cloud Infrastructure Lustre File Storage service.
694
+
695
+ Creates a Lustre file system.
696
+
697
+ ## Example Usage
698
+
699
+ ```python
700
+ import pulumi
701
+ import pulumi_oci as oci
702
+
703
+ test_lustre_file_system = oci.lustre.FileStorageLustreFileSystem("test_lustre_file_system",
704
+ availability_domain=lustre_file_system_availability_domain,
705
+ capacity_in_gbs=lustre_file_system_capacity_in_gbs,
706
+ compartment_id=compartment_id,
707
+ file_system_name=test_file_system["name"],
708
+ performance_tier=lustre_file_system_performance_tier,
709
+ root_squash_configuration={
710
+ "client_exceptions": lustre_file_system_root_squash_configuration_client_exceptions,
711
+ "identity_squash": lustre_file_system_root_squash_configuration_identity_squash,
712
+ "squash_gid": lustre_file_system_root_squash_configuration_squash_gid,
713
+ "squash_uid": lustre_file_system_root_squash_configuration_squash_uid,
714
+ },
715
+ subnet_id=test_subnet["id"],
716
+ cluster_placement_group_id=test_cluster_placement_group["id"],
717
+ defined_tags={
718
+ "Operations.CostCenter": "42",
719
+ },
720
+ display_name=lustre_file_system_display_name,
721
+ file_system_description=lustre_file_system_file_system_description,
722
+ freeform_tags={
723
+ "Department": "Finance",
724
+ },
725
+ kms_key_id=test_key["id"],
726
+ nsg_ids=lustre_file_system_nsg_ids)
727
+ ```
728
+
729
+ ## Import
730
+
731
+ LustreFileSystems can be imported using the `id`, e.g.
732
+
733
+ ```sh
734
+ $ pulumi import oci:Lustre/fileStorageLustreFileSystem:FileStorageLustreFileSystem test_lustre_file_system "id"
735
+ ```
736
+
737
+ :param str resource_name: The name of the resource.
738
+ :param pulumi.ResourceOptions opts: Options for the resource.
739
+ :param pulumi.Input[builtins.str] availability_domain: The availability domain the file system is in. May be unset as a blank or NULL value. Example: `Uocm:PHX-AD-1`
740
+ :param pulumi.Input[builtins.int] capacity_in_gbs: (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
741
+ :param pulumi.Input[builtins.str] cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group in which the Lustre file system exists.
742
+ :param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Lustre file system.
743
+ :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"}`
744
+ :param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My Lustre file system`
745
+ :param pulumi.Input[builtins.str] file_system_description: (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
746
+ :param pulumi.Input[builtins.str] file_system_name: The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
747
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.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"}`
748
+ :param pulumi.Input[builtins.str] kms_key_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key used to encrypt the encryption keys associated with this file system.
749
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] nsg_ids: (Updatable) A list of Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm).
750
+ :param pulumi.Input[builtins.str] performance_tier: The Lustre file system performance tier. A value of `MBPS_PER_TB_125` represents 125 megabytes per second per terabyte.
751
+ :param pulumi.Input[Union['FileStorageLustreFileSystemRootSquashConfigurationArgs', 'FileStorageLustreFileSystemRootSquashConfigurationArgsDict']] root_squash_configuration: (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
752
+ :param pulumi.Input[builtins.str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the Lustre file system is in.
753
+
754
+
755
+ ** IMPORTANT **
756
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
757
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
758
+ """
759
+ ...
760
+ @overload
761
+ def __init__(__self__,
762
+ resource_name: str,
763
+ args: FileStorageLustreFileSystemArgs,
764
+ opts: Optional[pulumi.ResourceOptions] = None):
765
+ """
766
+ This resource provides the Lustre File System resource in Oracle Cloud Infrastructure Lustre File Storage service.
767
+
768
+ Creates a Lustre file system.
769
+
770
+ ## Example Usage
771
+
772
+ ```python
773
+ import pulumi
774
+ import pulumi_oci as oci
775
+
776
+ test_lustre_file_system = oci.lustre.FileStorageLustreFileSystem("test_lustre_file_system",
777
+ availability_domain=lustre_file_system_availability_domain,
778
+ capacity_in_gbs=lustre_file_system_capacity_in_gbs,
779
+ compartment_id=compartment_id,
780
+ file_system_name=test_file_system["name"],
781
+ performance_tier=lustre_file_system_performance_tier,
782
+ root_squash_configuration={
783
+ "client_exceptions": lustre_file_system_root_squash_configuration_client_exceptions,
784
+ "identity_squash": lustre_file_system_root_squash_configuration_identity_squash,
785
+ "squash_gid": lustre_file_system_root_squash_configuration_squash_gid,
786
+ "squash_uid": lustre_file_system_root_squash_configuration_squash_uid,
787
+ },
788
+ subnet_id=test_subnet["id"],
789
+ cluster_placement_group_id=test_cluster_placement_group["id"],
790
+ defined_tags={
791
+ "Operations.CostCenter": "42",
792
+ },
793
+ display_name=lustre_file_system_display_name,
794
+ file_system_description=lustre_file_system_file_system_description,
795
+ freeform_tags={
796
+ "Department": "Finance",
797
+ },
798
+ kms_key_id=test_key["id"],
799
+ nsg_ids=lustre_file_system_nsg_ids)
800
+ ```
801
+
802
+ ## Import
803
+
804
+ LustreFileSystems can be imported using the `id`, e.g.
805
+
806
+ ```sh
807
+ $ pulumi import oci:Lustre/fileStorageLustreFileSystem:FileStorageLustreFileSystem test_lustre_file_system "id"
808
+ ```
809
+
810
+ :param str resource_name: The name of the resource.
811
+ :param FileStorageLustreFileSystemArgs args: The arguments to use to populate this resource's properties.
812
+ :param pulumi.ResourceOptions opts: Options for the resource.
813
+ """
814
+ ...
815
+ def __init__(__self__, resource_name: str, *args, **kwargs):
816
+ resource_args, opts = _utilities.get_resource_args_opts(FileStorageLustreFileSystemArgs, pulumi.ResourceOptions, *args, **kwargs)
817
+ if resource_args is not None:
818
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
819
+ else:
820
+ __self__._internal_init(resource_name, *args, **kwargs)
821
+
822
+ def _internal_init(__self__,
823
+ resource_name: str,
824
+ opts: Optional[pulumi.ResourceOptions] = None,
825
+ availability_domain: Optional[pulumi.Input[builtins.str]] = None,
826
+ capacity_in_gbs: Optional[pulumi.Input[builtins.int]] = None,
827
+ cluster_placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
828
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
829
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
830
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
831
+ file_system_description: Optional[pulumi.Input[builtins.str]] = None,
832
+ file_system_name: Optional[pulumi.Input[builtins.str]] = None,
833
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
834
+ kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
835
+ nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
836
+ performance_tier: Optional[pulumi.Input[builtins.str]] = None,
837
+ root_squash_configuration: Optional[pulumi.Input[Union['FileStorageLustreFileSystemRootSquashConfigurationArgs', 'FileStorageLustreFileSystemRootSquashConfigurationArgsDict']]] = None,
838
+ subnet_id: Optional[pulumi.Input[builtins.str]] = None,
839
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
840
+ __props__=None):
841
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
842
+ if not isinstance(opts, pulumi.ResourceOptions):
843
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
844
+ if opts.id is None:
845
+ if __props__ is not None:
846
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
847
+ __props__ = FileStorageLustreFileSystemArgs.__new__(FileStorageLustreFileSystemArgs)
848
+
849
+ if availability_domain is None and not opts.urn:
850
+ raise TypeError("Missing required property 'availability_domain'")
851
+ __props__.__dict__["availability_domain"] = availability_domain
852
+ if capacity_in_gbs is None and not opts.urn:
853
+ raise TypeError("Missing required property 'capacity_in_gbs'")
854
+ __props__.__dict__["capacity_in_gbs"] = capacity_in_gbs
855
+ __props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
856
+ if compartment_id is None and not opts.urn:
857
+ raise TypeError("Missing required property 'compartment_id'")
858
+ __props__.__dict__["compartment_id"] = compartment_id
859
+ __props__.__dict__["defined_tags"] = defined_tags
860
+ __props__.__dict__["display_name"] = display_name
861
+ __props__.__dict__["file_system_description"] = file_system_description
862
+ if file_system_name is None and not opts.urn:
863
+ raise TypeError("Missing required property 'file_system_name'")
864
+ __props__.__dict__["file_system_name"] = file_system_name
865
+ __props__.__dict__["freeform_tags"] = freeform_tags
866
+ __props__.__dict__["kms_key_id"] = kms_key_id
867
+ __props__.__dict__["nsg_ids"] = nsg_ids
868
+ if performance_tier is None and not opts.urn:
869
+ raise TypeError("Missing required property 'performance_tier'")
870
+ __props__.__dict__["performance_tier"] = performance_tier
871
+ if root_squash_configuration is None and not opts.urn:
872
+ raise TypeError("Missing required property 'root_squash_configuration'")
873
+ __props__.__dict__["root_squash_configuration"] = root_squash_configuration
874
+ if subnet_id is None and not opts.urn:
875
+ raise TypeError("Missing required property 'subnet_id'")
876
+ __props__.__dict__["subnet_id"] = subnet_id
877
+ __props__.__dict__["system_tags"] = system_tags
878
+ __props__.__dict__["lifecycle_details"] = None
879
+ __props__.__dict__["lnet"] = None
880
+ __props__.__dict__["maintenance_windows"] = None
881
+ __props__.__dict__["major_version"] = None
882
+ __props__.__dict__["management_service_address"] = None
883
+ __props__.__dict__["state"] = None
884
+ __props__.__dict__["time_billing_cycle_end"] = None
885
+ __props__.__dict__["time_created"] = None
886
+ __props__.__dict__["time_updated"] = None
887
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="oci:oci/lustreFileStorageLustreFileSystem:LustreFileStorageLustreFileSystem")])
888
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
889
+ super(FileStorageLustreFileSystem, __self__).__init__(
890
+ 'oci:Lustre/fileStorageLustreFileSystem:FileStorageLustreFileSystem',
891
+ resource_name,
892
+ __props__,
893
+ opts)
894
+
895
+ @staticmethod
896
+ def get(resource_name: str,
897
+ id: pulumi.Input[str],
898
+ opts: Optional[pulumi.ResourceOptions] = None,
899
+ availability_domain: Optional[pulumi.Input[builtins.str]] = None,
900
+ capacity_in_gbs: Optional[pulumi.Input[builtins.int]] = None,
901
+ cluster_placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
902
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
903
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
904
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
905
+ file_system_description: Optional[pulumi.Input[builtins.str]] = None,
906
+ file_system_name: Optional[pulumi.Input[builtins.str]] = None,
907
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
908
+ kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
909
+ lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
910
+ lnet: Optional[pulumi.Input[builtins.str]] = None,
911
+ maintenance_windows: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FileStorageLustreFileSystemMaintenanceWindowArgs', 'FileStorageLustreFileSystemMaintenanceWindowArgsDict']]]]] = None,
912
+ major_version: Optional[pulumi.Input[builtins.str]] = None,
913
+ management_service_address: Optional[pulumi.Input[builtins.str]] = None,
914
+ nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
915
+ performance_tier: Optional[pulumi.Input[builtins.str]] = None,
916
+ root_squash_configuration: Optional[pulumi.Input[Union['FileStorageLustreFileSystemRootSquashConfigurationArgs', 'FileStorageLustreFileSystemRootSquashConfigurationArgsDict']]] = None,
917
+ state: Optional[pulumi.Input[builtins.str]] = None,
918
+ subnet_id: Optional[pulumi.Input[builtins.str]] = None,
919
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
920
+ time_billing_cycle_end: Optional[pulumi.Input[builtins.str]] = None,
921
+ time_created: Optional[pulumi.Input[builtins.str]] = None,
922
+ time_updated: Optional[pulumi.Input[builtins.str]] = None) -> 'FileStorageLustreFileSystem':
923
+ """
924
+ Get an existing FileStorageLustreFileSystem resource's state with the given name, id, and optional extra
925
+ properties used to qualify the lookup.
926
+
927
+ :param str resource_name: The unique name of the resulting resource.
928
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
929
+ :param pulumi.ResourceOptions opts: Options for the resource.
930
+ :param pulumi.Input[builtins.str] availability_domain: The availability domain the file system is in. May be unset as a blank or NULL value. Example: `Uocm:PHX-AD-1`
931
+ :param pulumi.Input[builtins.int] capacity_in_gbs: (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
932
+ :param pulumi.Input[builtins.str] cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group in which the Lustre file system exists.
933
+ :param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Lustre file system.
934
+ :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"}`
935
+ :param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My Lustre file system`
936
+ :param pulumi.Input[builtins.str] file_system_description: (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
937
+ :param pulumi.Input[builtins.str] file_system_name: The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
938
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.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"}`
939
+ :param pulumi.Input[builtins.str] kms_key_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key used to encrypt the encryption keys associated with this file system.
940
+ :param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
941
+ :param pulumi.Input[builtins.str] lnet: Type of network used by clients to mount the file system. Example: `tcp`
942
+ :param pulumi.Input[Sequence[pulumi.Input[Union['FileStorageLustreFileSystemMaintenanceWindowArgs', 'FileStorageLustreFileSystemMaintenanceWindowArgsDict']]]] maintenance_windows: The preferred day and time to perform maintenance.
943
+ :param pulumi.Input[builtins.str] major_version: Major version of Lustre running in the Lustre file system. Example: `2.15`
944
+ :param pulumi.Input[builtins.str] management_service_address: The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
945
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] nsg_ids: (Updatable) A list of Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm).
946
+ :param pulumi.Input[builtins.str] performance_tier: The Lustre file system performance tier. A value of `MBPS_PER_TB_125` represents 125 megabytes per second per terabyte.
947
+ :param pulumi.Input[Union['FileStorageLustreFileSystemRootSquashConfigurationArgs', 'FileStorageLustreFileSystemRootSquashConfigurationArgsDict']] root_squash_configuration: (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
948
+ :param pulumi.Input[builtins.str] state: The current state of the Lustre file system.
949
+ :param pulumi.Input[builtins.str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the Lustre file system is in.
950
+
951
+
952
+ ** IMPORTANT **
953
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
954
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
955
+ :param pulumi.Input[builtins.str] time_billing_cycle_end: The date and time that the current billing cycle for the file system will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: `2016-08-25T21:10:29.600Z`
956
+ :param pulumi.Input[builtins.str] time_created: The date and time the Lustre file system was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2024-04-25T21:10:29.600Z`
957
+ :param pulumi.Input[builtins.str] time_updated: The date and time the Lustre file system was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2024-04-25T21:10:29.600Z`
958
+ """
959
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
960
+
961
+ __props__ = _FileStorageLustreFileSystemState.__new__(_FileStorageLustreFileSystemState)
962
+
963
+ __props__.__dict__["availability_domain"] = availability_domain
964
+ __props__.__dict__["capacity_in_gbs"] = capacity_in_gbs
965
+ __props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
966
+ __props__.__dict__["compartment_id"] = compartment_id
967
+ __props__.__dict__["defined_tags"] = defined_tags
968
+ __props__.__dict__["display_name"] = display_name
969
+ __props__.__dict__["file_system_description"] = file_system_description
970
+ __props__.__dict__["file_system_name"] = file_system_name
971
+ __props__.__dict__["freeform_tags"] = freeform_tags
972
+ __props__.__dict__["kms_key_id"] = kms_key_id
973
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
974
+ __props__.__dict__["lnet"] = lnet
975
+ __props__.__dict__["maintenance_windows"] = maintenance_windows
976
+ __props__.__dict__["major_version"] = major_version
977
+ __props__.__dict__["management_service_address"] = management_service_address
978
+ __props__.__dict__["nsg_ids"] = nsg_ids
979
+ __props__.__dict__["performance_tier"] = performance_tier
980
+ __props__.__dict__["root_squash_configuration"] = root_squash_configuration
981
+ __props__.__dict__["state"] = state
982
+ __props__.__dict__["subnet_id"] = subnet_id
983
+ __props__.__dict__["system_tags"] = system_tags
984
+ __props__.__dict__["time_billing_cycle_end"] = time_billing_cycle_end
985
+ __props__.__dict__["time_created"] = time_created
986
+ __props__.__dict__["time_updated"] = time_updated
987
+ return FileStorageLustreFileSystem(resource_name, opts=opts, __props__=__props__)
988
+
989
+ @property
990
+ @pulumi.getter(name="availabilityDomain")
991
+ def availability_domain(self) -> pulumi.Output[builtins.str]:
992
+ """
993
+ The availability domain the file system is in. May be unset as a blank or NULL value. Example: `Uocm:PHX-AD-1`
994
+ """
995
+ return pulumi.get(self, "availability_domain")
996
+
997
+ @property
998
+ @pulumi.getter(name="capacityInGbs")
999
+ def capacity_in_gbs(self) -> pulumi.Output[builtins.int]:
1000
+ """
1001
+ (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
1002
+ """
1003
+ return pulumi.get(self, "capacity_in_gbs")
1004
+
1005
+ @property
1006
+ @pulumi.getter(name="clusterPlacementGroupId")
1007
+ def cluster_placement_group_id(self) -> pulumi.Output[builtins.str]:
1008
+ """
1009
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group in which the Lustre file system exists.
1010
+ """
1011
+ return pulumi.get(self, "cluster_placement_group_id")
1012
+
1013
+ @property
1014
+ @pulumi.getter(name="compartmentId")
1015
+ def compartment_id(self) -> pulumi.Output[builtins.str]:
1016
+ """
1017
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Lustre file system.
1018
+ """
1019
+ return pulumi.get(self, "compartment_id")
1020
+
1021
+ @property
1022
+ @pulumi.getter(name="definedTags")
1023
+ def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
1024
+ """
1025
+ (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"}`
1026
+ """
1027
+ return pulumi.get(self, "defined_tags")
1028
+
1029
+ @property
1030
+ @pulumi.getter(name="displayName")
1031
+ def display_name(self) -> pulumi.Output[builtins.str]:
1032
+ """
1033
+ (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My Lustre file system`
1034
+ """
1035
+ return pulumi.get(self, "display_name")
1036
+
1037
+ @property
1038
+ @pulumi.getter(name="fileSystemDescription")
1039
+ def file_system_description(self) -> pulumi.Output[builtins.str]:
1040
+ """
1041
+ (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
1042
+ """
1043
+ return pulumi.get(self, "file_system_description")
1044
+
1045
+ @property
1046
+ @pulumi.getter(name="fileSystemName")
1047
+ def file_system_name(self) -> pulumi.Output[builtins.str]:
1048
+ """
1049
+ The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
1050
+ """
1051
+ return pulumi.get(self, "file_system_name")
1052
+
1053
+ @property
1054
+ @pulumi.getter(name="freeformTags")
1055
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
1056
+ """
1057
+ (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"}`
1058
+ """
1059
+ return pulumi.get(self, "freeform_tags")
1060
+
1061
+ @property
1062
+ @pulumi.getter(name="kmsKeyId")
1063
+ def kms_key_id(self) -> pulumi.Output[builtins.str]:
1064
+ """
1065
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key used to encrypt the encryption keys associated with this file system.
1066
+ """
1067
+ return pulumi.get(self, "kms_key_id")
1068
+
1069
+ @property
1070
+ @pulumi.getter(name="lifecycleDetails")
1071
+ def lifecycle_details(self) -> pulumi.Output[builtins.str]:
1072
+ """
1073
+ A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
1074
+ """
1075
+ return pulumi.get(self, "lifecycle_details")
1076
+
1077
+ @property
1078
+ @pulumi.getter
1079
+ def lnet(self) -> pulumi.Output[builtins.str]:
1080
+ """
1081
+ Type of network used by clients to mount the file system. Example: `tcp`
1082
+ """
1083
+ return pulumi.get(self, "lnet")
1084
+
1085
+ @property
1086
+ @pulumi.getter(name="maintenanceWindows")
1087
+ def maintenance_windows(self) -> pulumi.Output[Sequence['outputs.FileStorageLustreFileSystemMaintenanceWindow']]:
1088
+ """
1089
+ The preferred day and time to perform maintenance.
1090
+ """
1091
+ return pulumi.get(self, "maintenance_windows")
1092
+
1093
+ @property
1094
+ @pulumi.getter(name="majorVersion")
1095
+ def major_version(self) -> pulumi.Output[builtins.str]:
1096
+ """
1097
+ Major version of Lustre running in the Lustre file system. Example: `2.15`
1098
+ """
1099
+ return pulumi.get(self, "major_version")
1100
+
1101
+ @property
1102
+ @pulumi.getter(name="managementServiceAddress")
1103
+ def management_service_address(self) -> pulumi.Output[builtins.str]:
1104
+ """
1105
+ The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
1106
+ """
1107
+ return pulumi.get(self, "management_service_address")
1108
+
1109
+ @property
1110
+ @pulumi.getter(name="nsgIds")
1111
+ def nsg_ids(self) -> pulumi.Output[Sequence[builtins.str]]:
1112
+ """
1113
+ (Updatable) A list of Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm).
1114
+ """
1115
+ return pulumi.get(self, "nsg_ids")
1116
+
1117
+ @property
1118
+ @pulumi.getter(name="performanceTier")
1119
+ def performance_tier(self) -> pulumi.Output[builtins.str]:
1120
+ """
1121
+ The Lustre file system performance tier. A value of `MBPS_PER_TB_125` represents 125 megabytes per second per terabyte.
1122
+ """
1123
+ return pulumi.get(self, "performance_tier")
1124
+
1125
+ @property
1126
+ @pulumi.getter(name="rootSquashConfiguration")
1127
+ def root_squash_configuration(self) -> pulumi.Output['outputs.FileStorageLustreFileSystemRootSquashConfiguration']:
1128
+ """
1129
+ (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
1130
+ """
1131
+ return pulumi.get(self, "root_squash_configuration")
1132
+
1133
+ @property
1134
+ @pulumi.getter
1135
+ def state(self) -> pulumi.Output[builtins.str]:
1136
+ """
1137
+ The current state of the Lustre file system.
1138
+ """
1139
+ return pulumi.get(self, "state")
1140
+
1141
+ @property
1142
+ @pulumi.getter(name="subnetId")
1143
+ def subnet_id(self) -> pulumi.Output[builtins.str]:
1144
+ """
1145
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the Lustre file system is in.
1146
+
1147
+
1148
+ ** IMPORTANT **
1149
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1150
+ """
1151
+ return pulumi.get(self, "subnet_id")
1152
+
1153
+ @property
1154
+ @pulumi.getter(name="systemTags")
1155
+ def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
1156
+ """
1157
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1158
+ """
1159
+ return pulumi.get(self, "system_tags")
1160
+
1161
+ @property
1162
+ @pulumi.getter(name="timeBillingCycleEnd")
1163
+ def time_billing_cycle_end(self) -> pulumi.Output[builtins.str]:
1164
+ """
1165
+ The date and time that the current billing cycle for the file system will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: `2016-08-25T21:10:29.600Z`
1166
+ """
1167
+ return pulumi.get(self, "time_billing_cycle_end")
1168
+
1169
+ @property
1170
+ @pulumi.getter(name="timeCreated")
1171
+ def time_created(self) -> pulumi.Output[builtins.str]:
1172
+ """
1173
+ The date and time the Lustre file system was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2024-04-25T21:10:29.600Z`
1174
+ """
1175
+ return pulumi.get(self, "time_created")
1176
+
1177
+ @property
1178
+ @pulumi.getter(name="timeUpdated")
1179
+ def time_updated(self) -> pulumi.Output[builtins.str]:
1180
+ """
1181
+ The date and time the Lustre file system was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2024-04-25T21:10:29.600Z`
1182
+ """
1183
+ return pulumi.get(self, "time_updated")
1184
+