pulumi-oci 2.29.0a1744186202__py3-none-any.whl → 2.29.0a1744212348__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.29.0a1744212348.dist-info}/METADATA +1 -1
  39. {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.29.0a1744212348.dist-info}/RECORD +41 -20
  40. {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.29.0a1744212348.dist-info}/WHEEL +0 -0
  41. {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.29.0a1744212348.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,639 @@
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
+
19
+ __all__ = [
20
+ 'FileStorageLustreFileSystemMaintenanceWindow',
21
+ 'FileStorageLustreFileSystemRootSquashConfiguration',
22
+ 'GetFileStorageLustreFileSystemMaintenanceWindowResult',
23
+ 'GetFileStorageLustreFileSystemRootSquashConfigurationResult',
24
+ 'GetFileStorageLustreFileSystemsFilterResult',
25
+ 'GetFileStorageLustreFileSystemsLustreFileSystemCollectionResult',
26
+ 'GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemResult',
27
+ 'GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemMaintenanceWindowResult',
28
+ 'GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemRootSquashConfigurationResult',
29
+ ]
30
+
31
+ @pulumi.output_type
32
+ class FileStorageLustreFileSystemMaintenanceWindow(dict):
33
+ @staticmethod
34
+ def __key_warning(key: str):
35
+ suggest = None
36
+ if key == "dayOfWeek":
37
+ suggest = "day_of_week"
38
+ elif key == "timeStart":
39
+ suggest = "time_start"
40
+
41
+ if suggest:
42
+ pulumi.log.warn(f"Key '{key}' not found in FileStorageLustreFileSystemMaintenanceWindow. Access the value via the '{suggest}' property getter instead.")
43
+
44
+ def __getitem__(self, key: str) -> Any:
45
+ FileStorageLustreFileSystemMaintenanceWindow.__key_warning(key)
46
+ return super().__getitem__(key)
47
+
48
+ def get(self, key: str, default = None) -> Any:
49
+ FileStorageLustreFileSystemMaintenanceWindow.__key_warning(key)
50
+ return super().get(key, default)
51
+
52
+ def __init__(__self__, *,
53
+ day_of_week: Optional[builtins.str] = None,
54
+ time_start: Optional[builtins.str] = None):
55
+ """
56
+ :param builtins.str day_of_week: Day of the week when the maintainence window starts.
57
+ :param builtins.str time_start: The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: `22:00`
58
+ """
59
+ if day_of_week is not None:
60
+ pulumi.set(__self__, "day_of_week", day_of_week)
61
+ if time_start is not None:
62
+ pulumi.set(__self__, "time_start", time_start)
63
+
64
+ @property
65
+ @pulumi.getter(name="dayOfWeek")
66
+ def day_of_week(self) -> Optional[builtins.str]:
67
+ """
68
+ Day of the week when the maintainence window starts.
69
+ """
70
+ return pulumi.get(self, "day_of_week")
71
+
72
+ @property
73
+ @pulumi.getter(name="timeStart")
74
+ def time_start(self) -> Optional[builtins.str]:
75
+ """
76
+ The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: `22:00`
77
+ """
78
+ return pulumi.get(self, "time_start")
79
+
80
+
81
+ @pulumi.output_type
82
+ class FileStorageLustreFileSystemRootSquashConfiguration(dict):
83
+ @staticmethod
84
+ def __key_warning(key: str):
85
+ suggest = None
86
+ if key == "clientExceptions":
87
+ suggest = "client_exceptions"
88
+ elif key == "identitySquash":
89
+ suggest = "identity_squash"
90
+ elif key == "squashGid":
91
+ suggest = "squash_gid"
92
+ elif key == "squashUid":
93
+ suggest = "squash_uid"
94
+
95
+ if suggest:
96
+ pulumi.log.warn(f"Key '{key}' not found in FileStorageLustreFileSystemRootSquashConfiguration. Access the value via the '{suggest}' property getter instead.")
97
+
98
+ def __getitem__(self, key: str) -> Any:
99
+ FileStorageLustreFileSystemRootSquashConfiguration.__key_warning(key)
100
+ return super().__getitem__(key)
101
+
102
+ def get(self, key: str, default = None) -> Any:
103
+ FileStorageLustreFileSystemRootSquashConfiguration.__key_warning(key)
104
+ return super().get(key, default)
105
+
106
+ def __init__(__self__, *,
107
+ client_exceptions: Optional[Sequence[builtins.str]] = None,
108
+ identity_squash: Optional[builtins.str] = None,
109
+ squash_gid: Optional[builtins.str] = None,
110
+ squash_uid: Optional[builtins.str] = None):
111
+ """
112
+ :param Sequence[builtins.str] client_exceptions: (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
113
+ :param builtins.str identity_squash: (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to `squashUid` and `squashGid`. If `ROOT`, only the root user and group (UID/GID 0) are remapped; if `NONE`, no remapping is done. If unspecified, defaults to `NONE`.
114
+ :param builtins.str squash_gid: (Updatable) The GID value to remap to when squashing a client GID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
115
+ :param builtins.str squash_uid: (Updatable) The UID value to remap to when squashing a client UID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
116
+ """
117
+ if client_exceptions is not None:
118
+ pulumi.set(__self__, "client_exceptions", client_exceptions)
119
+ if identity_squash is not None:
120
+ pulumi.set(__self__, "identity_squash", identity_squash)
121
+ if squash_gid is not None:
122
+ pulumi.set(__self__, "squash_gid", squash_gid)
123
+ if squash_uid is not None:
124
+ pulumi.set(__self__, "squash_uid", squash_uid)
125
+
126
+ @property
127
+ @pulumi.getter(name="clientExceptions")
128
+ def client_exceptions(self) -> Optional[Sequence[builtins.str]]:
129
+ """
130
+ (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
131
+ """
132
+ return pulumi.get(self, "client_exceptions")
133
+
134
+ @property
135
+ @pulumi.getter(name="identitySquash")
136
+ def identity_squash(self) -> Optional[builtins.str]:
137
+ """
138
+ (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to `squashUid` and `squashGid`. If `ROOT`, only the root user and group (UID/GID 0) are remapped; if `NONE`, no remapping is done. If unspecified, defaults to `NONE`.
139
+ """
140
+ return pulumi.get(self, "identity_squash")
141
+
142
+ @property
143
+ @pulumi.getter(name="squashGid")
144
+ def squash_gid(self) -> Optional[builtins.str]:
145
+ """
146
+ (Updatable) The GID value to remap to when squashing a client GID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
147
+ """
148
+ return pulumi.get(self, "squash_gid")
149
+
150
+ @property
151
+ @pulumi.getter(name="squashUid")
152
+ def squash_uid(self) -> Optional[builtins.str]:
153
+ """
154
+ (Updatable) The UID value to remap to when squashing a client UID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
155
+ """
156
+ return pulumi.get(self, "squash_uid")
157
+
158
+
159
+ @pulumi.output_type
160
+ class GetFileStorageLustreFileSystemMaintenanceWindowResult(dict):
161
+ def __init__(__self__, *,
162
+ day_of_week: builtins.str,
163
+ time_start: builtins.str):
164
+ """
165
+ :param builtins.str day_of_week: Day of the week when the maintainence window starts.
166
+ :param builtins.str time_start: The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: `22:00`
167
+ """
168
+ pulumi.set(__self__, "day_of_week", day_of_week)
169
+ pulumi.set(__self__, "time_start", time_start)
170
+
171
+ @property
172
+ @pulumi.getter(name="dayOfWeek")
173
+ def day_of_week(self) -> builtins.str:
174
+ """
175
+ Day of the week when the maintainence window starts.
176
+ """
177
+ return pulumi.get(self, "day_of_week")
178
+
179
+ @property
180
+ @pulumi.getter(name="timeStart")
181
+ def time_start(self) -> builtins.str:
182
+ """
183
+ The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: `22:00`
184
+ """
185
+ return pulumi.get(self, "time_start")
186
+
187
+
188
+ @pulumi.output_type
189
+ class GetFileStorageLustreFileSystemRootSquashConfigurationResult(dict):
190
+ def __init__(__self__, *,
191
+ client_exceptions: Sequence[builtins.str],
192
+ identity_squash: builtins.str,
193
+ squash_gid: builtins.str,
194
+ squash_uid: builtins.str):
195
+ """
196
+ :param Sequence[builtins.str] client_exceptions: A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
197
+ :param builtins.str identity_squash: Used when clients accessing the Lustre file system have their UID and GID remapped to `squashUid` and `squashGid`. If `ROOT`, only the root user and group (UID/GID 0) are remapped; if `NONE`, no remapping is done. If unspecified, defaults to `NONE`.
198
+ :param builtins.str squash_gid: The GID value to remap to when squashing a client GID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
199
+ :param builtins.str squash_uid: The UID value to remap to when squashing a client UID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
200
+ """
201
+ pulumi.set(__self__, "client_exceptions", client_exceptions)
202
+ pulumi.set(__self__, "identity_squash", identity_squash)
203
+ pulumi.set(__self__, "squash_gid", squash_gid)
204
+ pulumi.set(__self__, "squash_uid", squash_uid)
205
+
206
+ @property
207
+ @pulumi.getter(name="clientExceptions")
208
+ def client_exceptions(self) -> Sequence[builtins.str]:
209
+ """
210
+ A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
211
+ """
212
+ return pulumi.get(self, "client_exceptions")
213
+
214
+ @property
215
+ @pulumi.getter(name="identitySquash")
216
+ def identity_squash(self) -> builtins.str:
217
+ """
218
+ Used when clients accessing the Lustre file system have their UID and GID remapped to `squashUid` and `squashGid`. If `ROOT`, only the root user and group (UID/GID 0) are remapped; if `NONE`, no remapping is done. If unspecified, defaults to `NONE`.
219
+ """
220
+ return pulumi.get(self, "identity_squash")
221
+
222
+ @property
223
+ @pulumi.getter(name="squashGid")
224
+ def squash_gid(self) -> builtins.str:
225
+ """
226
+ The GID value to remap to when squashing a client GID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
227
+ """
228
+ return pulumi.get(self, "squash_gid")
229
+
230
+ @property
231
+ @pulumi.getter(name="squashUid")
232
+ def squash_uid(self) -> builtins.str:
233
+ """
234
+ The UID value to remap to when squashing a client UID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
235
+ """
236
+ return pulumi.get(self, "squash_uid")
237
+
238
+
239
+ @pulumi.output_type
240
+ class GetFileStorageLustreFileSystemsFilterResult(dict):
241
+ def __init__(__self__, *,
242
+ name: builtins.str,
243
+ values: Sequence[builtins.str],
244
+ regex: Optional[builtins.bool] = None):
245
+ pulumi.set(__self__, "name", name)
246
+ pulumi.set(__self__, "values", values)
247
+ if regex is not None:
248
+ pulumi.set(__self__, "regex", regex)
249
+
250
+ @property
251
+ @pulumi.getter
252
+ def name(self) -> builtins.str:
253
+ return pulumi.get(self, "name")
254
+
255
+ @property
256
+ @pulumi.getter
257
+ def values(self) -> Sequence[builtins.str]:
258
+ return pulumi.get(self, "values")
259
+
260
+ @property
261
+ @pulumi.getter
262
+ def regex(self) -> Optional[builtins.bool]:
263
+ return pulumi.get(self, "regex")
264
+
265
+
266
+ @pulumi.output_type
267
+ class GetFileStorageLustreFileSystemsLustreFileSystemCollectionResult(dict):
268
+ def __init__(__self__, *,
269
+ items: Sequence['outputs.GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemResult']):
270
+ pulumi.set(__self__, "items", items)
271
+
272
+ @property
273
+ @pulumi.getter
274
+ def items(self) -> Sequence['outputs.GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemResult']:
275
+ return pulumi.get(self, "items")
276
+
277
+
278
+ @pulumi.output_type
279
+ class GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemResult(dict):
280
+ def __init__(__self__, *,
281
+ availability_domain: builtins.str,
282
+ capacity_in_gbs: builtins.int,
283
+ cluster_placement_group_id: builtins.str,
284
+ compartment_id: builtins.str,
285
+ defined_tags: Mapping[str, builtins.str],
286
+ display_name: builtins.str,
287
+ file_system_description: builtins.str,
288
+ file_system_name: builtins.str,
289
+ freeform_tags: Mapping[str, builtins.str],
290
+ id: builtins.str,
291
+ kms_key_id: builtins.str,
292
+ lifecycle_details: builtins.str,
293
+ lnet: builtins.str,
294
+ maintenance_windows: Sequence['outputs.GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemMaintenanceWindowResult'],
295
+ major_version: builtins.str,
296
+ management_service_address: builtins.str,
297
+ nsg_ids: Sequence[builtins.str],
298
+ performance_tier: builtins.str,
299
+ root_squash_configurations: Sequence['outputs.GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemRootSquashConfigurationResult'],
300
+ state: builtins.str,
301
+ subnet_id: builtins.str,
302
+ system_tags: Mapping[str, builtins.str],
303
+ time_billing_cycle_end: builtins.str,
304
+ time_created: builtins.str,
305
+ time_updated: builtins.str):
306
+ """
307
+ :param builtins.str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
308
+ :param builtins.int capacity_in_gbs: Capacity of the Lustre file system in GB.
309
+ :param 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.
310
+ :param builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
311
+ :param Mapping[str, builtins.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"}`
312
+ :param builtins.str display_name: A filter to return only resources that match the given display name exactly.
313
+ :param builtins.str file_system_description: Short description of the Lustre file system. Avoid entering confidential information.
314
+ :param 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 default file system name is 'lustre'. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'.
315
+ :param Mapping[str, builtins.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"}`
316
+ :param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Lustre file system.
317
+ :param builtins.str kms_key_id: 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.
318
+ :param 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.
319
+ :param builtins.str lnet: Type of network used by clients to mount the file system. Example: `tcp`
320
+ :param Sequence['GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemMaintenanceWindowArgs'] maintenance_windows: The preferred day and time to perform maintenance.
321
+ :param builtins.str major_version: Major version of Lustre running in the Lustre file system. Example: `2.15`
322
+ :param 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'.
323
+ :param Sequence[builtins.str] nsg_ids: 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).
324
+ :param builtins.str performance_tier: The Lustre file system performance tier. A value of `MBPS_PER_TB_125` represents 125 megabytes per second per terabyte.
325
+ :param Sequence['GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemRootSquashConfigurationArgs'] root_squash_configurations: An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
326
+ :param builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
327
+ :param 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.
328
+ :param Mapping[str, 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"}`
329
+ :param 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`
330
+ :param 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`
331
+ :param 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`
332
+ """
333
+ pulumi.set(__self__, "availability_domain", availability_domain)
334
+ pulumi.set(__self__, "capacity_in_gbs", capacity_in_gbs)
335
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
336
+ pulumi.set(__self__, "compartment_id", compartment_id)
337
+ pulumi.set(__self__, "defined_tags", defined_tags)
338
+ pulumi.set(__self__, "display_name", display_name)
339
+ pulumi.set(__self__, "file_system_description", file_system_description)
340
+ pulumi.set(__self__, "file_system_name", file_system_name)
341
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
342
+ pulumi.set(__self__, "id", id)
343
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
344
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
345
+ pulumi.set(__self__, "lnet", lnet)
346
+ pulumi.set(__self__, "maintenance_windows", maintenance_windows)
347
+ pulumi.set(__self__, "major_version", major_version)
348
+ pulumi.set(__self__, "management_service_address", management_service_address)
349
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
350
+ pulumi.set(__self__, "performance_tier", performance_tier)
351
+ pulumi.set(__self__, "root_squash_configurations", root_squash_configurations)
352
+ pulumi.set(__self__, "state", state)
353
+ pulumi.set(__self__, "subnet_id", subnet_id)
354
+ pulumi.set(__self__, "system_tags", system_tags)
355
+ pulumi.set(__self__, "time_billing_cycle_end", time_billing_cycle_end)
356
+ pulumi.set(__self__, "time_created", time_created)
357
+ pulumi.set(__self__, "time_updated", time_updated)
358
+
359
+ @property
360
+ @pulumi.getter(name="availabilityDomain")
361
+ def availability_domain(self) -> builtins.str:
362
+ """
363
+ The name of the availability domain. Example: `Uocm:PHX-AD-1`
364
+ """
365
+ return pulumi.get(self, "availability_domain")
366
+
367
+ @property
368
+ @pulumi.getter(name="capacityInGbs")
369
+ def capacity_in_gbs(self) -> builtins.int:
370
+ """
371
+ Capacity of the Lustre file system in GB.
372
+ """
373
+ return pulumi.get(self, "capacity_in_gbs")
374
+
375
+ @property
376
+ @pulumi.getter(name="clusterPlacementGroupId")
377
+ def cluster_placement_group_id(self) -> builtins.str:
378
+ """
379
+ 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.
380
+ """
381
+ return pulumi.get(self, "cluster_placement_group_id")
382
+
383
+ @property
384
+ @pulumi.getter(name="compartmentId")
385
+ def compartment_id(self) -> builtins.str:
386
+ """
387
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
388
+ """
389
+ return pulumi.get(self, "compartment_id")
390
+
391
+ @property
392
+ @pulumi.getter(name="definedTags")
393
+ def defined_tags(self) -> Mapping[str, builtins.str]:
394
+ """
395
+ 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"}`
396
+ """
397
+ return pulumi.get(self, "defined_tags")
398
+
399
+ @property
400
+ @pulumi.getter(name="displayName")
401
+ def display_name(self) -> builtins.str:
402
+ """
403
+ A filter to return only resources that match the given display name exactly.
404
+ """
405
+ return pulumi.get(self, "display_name")
406
+
407
+ @property
408
+ @pulumi.getter(name="fileSystemDescription")
409
+ def file_system_description(self) -> builtins.str:
410
+ """
411
+ Short description of the Lustre file system. Avoid entering confidential information.
412
+ """
413
+ return pulumi.get(self, "file_system_description")
414
+
415
+ @property
416
+ @pulumi.getter(name="fileSystemName")
417
+ def file_system_name(self) -> builtins.str:
418
+ """
419
+ The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The default file system name is 'lustre'. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'.
420
+ """
421
+ return pulumi.get(self, "file_system_name")
422
+
423
+ @property
424
+ @pulumi.getter(name="freeformTags")
425
+ def freeform_tags(self) -> Mapping[str, builtins.str]:
426
+ """
427
+ 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"}`
428
+ """
429
+ return pulumi.get(self, "freeform_tags")
430
+
431
+ @property
432
+ @pulumi.getter
433
+ def id(self) -> builtins.str:
434
+ """
435
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Lustre file system.
436
+ """
437
+ return pulumi.get(self, "id")
438
+
439
+ @property
440
+ @pulumi.getter(name="kmsKeyId")
441
+ def kms_key_id(self) -> builtins.str:
442
+ """
443
+ 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.
444
+ """
445
+ return pulumi.get(self, "kms_key_id")
446
+
447
+ @property
448
+ @pulumi.getter(name="lifecycleDetails")
449
+ def lifecycle_details(self) -> builtins.str:
450
+ """
451
+ 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.
452
+ """
453
+ return pulumi.get(self, "lifecycle_details")
454
+
455
+ @property
456
+ @pulumi.getter
457
+ def lnet(self) -> builtins.str:
458
+ """
459
+ Type of network used by clients to mount the file system. Example: `tcp`
460
+ """
461
+ return pulumi.get(self, "lnet")
462
+
463
+ @property
464
+ @pulumi.getter(name="maintenanceWindows")
465
+ def maintenance_windows(self) -> Sequence['outputs.GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemMaintenanceWindowResult']:
466
+ """
467
+ The preferred day and time to perform maintenance.
468
+ """
469
+ return pulumi.get(self, "maintenance_windows")
470
+
471
+ @property
472
+ @pulumi.getter(name="majorVersion")
473
+ def major_version(self) -> builtins.str:
474
+ """
475
+ Major version of Lustre running in the Lustre file system. Example: `2.15`
476
+ """
477
+ return pulumi.get(self, "major_version")
478
+
479
+ @property
480
+ @pulumi.getter(name="managementServiceAddress")
481
+ def management_service_address(self) -> builtins.str:
482
+ """
483
+ The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
484
+ """
485
+ return pulumi.get(self, "management_service_address")
486
+
487
+ @property
488
+ @pulumi.getter(name="nsgIds")
489
+ def nsg_ids(self) -> Sequence[builtins.str]:
490
+ """
491
+ 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).
492
+ """
493
+ return pulumi.get(self, "nsg_ids")
494
+
495
+ @property
496
+ @pulumi.getter(name="performanceTier")
497
+ def performance_tier(self) -> builtins.str:
498
+ """
499
+ The Lustre file system performance tier. A value of `MBPS_PER_TB_125` represents 125 megabytes per second per terabyte.
500
+ """
501
+ return pulumi.get(self, "performance_tier")
502
+
503
+ @property
504
+ @pulumi.getter(name="rootSquashConfigurations")
505
+ def root_squash_configurations(self) -> Sequence['outputs.GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemRootSquashConfigurationResult']:
506
+ """
507
+ An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
508
+ """
509
+ return pulumi.get(self, "root_squash_configurations")
510
+
511
+ @property
512
+ @pulumi.getter
513
+ def state(self) -> builtins.str:
514
+ """
515
+ A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
516
+ """
517
+ return pulumi.get(self, "state")
518
+
519
+ @property
520
+ @pulumi.getter(name="subnetId")
521
+ def subnet_id(self) -> builtins.str:
522
+ """
523
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the Lustre file system is in.
524
+ """
525
+ return pulumi.get(self, "subnet_id")
526
+
527
+ @property
528
+ @pulumi.getter(name="systemTags")
529
+ def system_tags(self) -> Mapping[str, builtins.str]:
530
+ """
531
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
532
+ """
533
+ return pulumi.get(self, "system_tags")
534
+
535
+ @property
536
+ @pulumi.getter(name="timeBillingCycleEnd")
537
+ def time_billing_cycle_end(self) -> builtins.str:
538
+ """
539
+ 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`
540
+ """
541
+ return pulumi.get(self, "time_billing_cycle_end")
542
+
543
+ @property
544
+ @pulumi.getter(name="timeCreated")
545
+ def time_created(self) -> builtins.str:
546
+ """
547
+ 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`
548
+ """
549
+ return pulumi.get(self, "time_created")
550
+
551
+ @property
552
+ @pulumi.getter(name="timeUpdated")
553
+ def time_updated(self) -> builtins.str:
554
+ """
555
+ 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`
556
+ """
557
+ return pulumi.get(self, "time_updated")
558
+
559
+
560
+ @pulumi.output_type
561
+ class GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemMaintenanceWindowResult(dict):
562
+ def __init__(__self__, *,
563
+ day_of_week: builtins.str,
564
+ time_start: builtins.str):
565
+ """
566
+ :param builtins.str day_of_week: Day of the week when the maintainence window starts.
567
+ :param builtins.str time_start: The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: `22:00`
568
+ """
569
+ pulumi.set(__self__, "day_of_week", day_of_week)
570
+ pulumi.set(__self__, "time_start", time_start)
571
+
572
+ @property
573
+ @pulumi.getter(name="dayOfWeek")
574
+ def day_of_week(self) -> builtins.str:
575
+ """
576
+ Day of the week when the maintainence window starts.
577
+ """
578
+ return pulumi.get(self, "day_of_week")
579
+
580
+ @property
581
+ @pulumi.getter(name="timeStart")
582
+ def time_start(self) -> builtins.str:
583
+ """
584
+ The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: `22:00`
585
+ """
586
+ return pulumi.get(self, "time_start")
587
+
588
+
589
+ @pulumi.output_type
590
+ class GetFileStorageLustreFileSystemsLustreFileSystemCollectionItemRootSquashConfigurationResult(dict):
591
+ def __init__(__self__, *,
592
+ client_exceptions: Sequence[builtins.str],
593
+ identity_squash: builtins.str,
594
+ squash_gid: builtins.str,
595
+ squash_uid: builtins.str):
596
+ """
597
+ :param Sequence[builtins.str] client_exceptions: A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
598
+ :param builtins.str identity_squash: Used when clients accessing the Lustre file system have their UID and GID remapped to `squashUid` and `squashGid`. If `ROOT`, only the root user and group (UID/GID 0) are remapped; if `NONE`, no remapping is done. If unspecified, defaults to `NONE`.
599
+ :param builtins.str squash_gid: The GID value to remap to when squashing a client GID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
600
+ :param builtins.str squash_uid: The UID value to remap to when squashing a client UID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
601
+ """
602
+ pulumi.set(__self__, "client_exceptions", client_exceptions)
603
+ pulumi.set(__self__, "identity_squash", identity_squash)
604
+ pulumi.set(__self__, "squash_gid", squash_gid)
605
+ pulumi.set(__self__, "squash_uid", squash_uid)
606
+
607
+ @property
608
+ @pulumi.getter(name="clientExceptions")
609
+ def client_exceptions(self) -> Sequence[builtins.str]:
610
+ """
611
+ A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
612
+ """
613
+ return pulumi.get(self, "client_exceptions")
614
+
615
+ @property
616
+ @pulumi.getter(name="identitySquash")
617
+ def identity_squash(self) -> builtins.str:
618
+ """
619
+ Used when clients accessing the Lustre file system have their UID and GID remapped to `squashUid` and `squashGid`. If `ROOT`, only the root user and group (UID/GID 0) are remapped; if `NONE`, no remapping is done. If unspecified, defaults to `NONE`.
620
+ """
621
+ return pulumi.get(self, "identity_squash")
622
+
623
+ @property
624
+ @pulumi.getter(name="squashGid")
625
+ def squash_gid(self) -> builtins.str:
626
+ """
627
+ The GID value to remap to when squashing a client GID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
628
+ """
629
+ return pulumi.get(self, "squash_gid")
630
+
631
+ @property
632
+ @pulumi.getter(name="squashUid")
633
+ def squash_uid(self) -> builtins.str:
634
+ """
635
+ The UID value to remap to when squashing a client UID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
636
+ """
637
+ return pulumi.get(self, "squash_uid")
638
+
639
+
@@ -0,0 +1,13 @@
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
+ from .. import _utilities
7
+ import typing
8
+ # Export this package's modules as members:
9
+ from .get_lustre_file_storage_lustre_file_system import *
10
+ from .get_lustre_file_storage_lustre_file_systems import *
11
+ from .lustre_file_storage_lustre_file_system import *
12
+ from ._inputs import *
13
+ from . import outputs