pulumi-oci 2.29.0a1744186202__py3-none-any.whl → 2.30.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +46 -0
- pulumi_oci/bigdataservice/bds_instance.py +7 -7
- pulumi_oci/core/_inputs.py +21 -21
- pulumi_oci/core/get_ipv6.py +32 -2
- pulumi_oci/core/get_private_ip.py +33 -3
- pulumi_oci/core/get_private_ips.py +51 -1
- pulumi_oci/core/get_vnic.py +4 -1
- pulumi_oci/core/ipv6.py +155 -44
- pulumi_oci/core/outputs.py +71 -17
- pulumi_oci/core/private_ip.py +124 -20
- pulumi_oci/datascience/__init__.py +9 -0
- pulumi_oci/datascience/_inputs.py +1215 -0
- pulumi_oci/datascience/get_ml_application.py +254 -0
- pulumi_oci/datascience/get_ml_application_implementation.py +389 -0
- pulumi_oci/datascience/get_ml_application_implementations.py +252 -0
- pulumi_oci/datascience/get_ml_application_instance.py +367 -0
- pulumi_oci/datascience/get_ml_application_instances.py +214 -0
- pulumi_oci/datascience/get_ml_applications.py +230 -0
- pulumi_oci/datascience/ml_application.py +564 -0
- pulumi_oci/datascience/ml_application_implementation.py +969 -0
- pulumi_oci/datascience/ml_application_instance.py +832 -0
- pulumi_oci/datascience/outputs.py +7154 -4464
- pulumi_oci/functions/invoke_function.py +52 -3
- pulumi_oci/goldengate/_inputs.py +135 -1
- pulumi_oci/goldengate/get_pipeline.py +15 -1
- pulumi_oci/goldengate/get_pipeline_running_processes.py +2 -2
- pulumi_oci/goldengate/outputs.py +263 -3
- pulumi_oci/goldengate/pipeline.py +28 -0
- pulumi_oci/kms/_inputs.py +48 -0
- pulumi_oci/kms/outputs.py +48 -0
- pulumi_oci/kms/vault_verification.py +37 -1
- pulumi_oci/lustre/__init__.py +13 -0
- pulumi_oci/lustre/_inputs.py +219 -0
- pulumi_oci/lustre/file_storage_lustre_file_system.py +1184 -0
- pulumi_oci/lustre/get_file_storage_lustre_file_system.py +451 -0
- pulumi_oci/lustre/get_file_storage_lustre_file_systems.py +222 -0
- pulumi_oci/lustre/outputs.py +639 -0
- pulumi_oci/oci/__init__.py +13 -0
- pulumi_oci/oci/_inputs.py +219 -0
- pulumi_oci/oci/get_lustre_file_storage_lustre_file_system.py +455 -0
- pulumi_oci/oci/get_lustre_file_storage_lustre_file_systems.py +226 -0
- pulumi_oci/oci/lustre_file_storage_lustre_file_system.py +1188 -0
- pulumi_oci/oci/outputs.py +639 -0
- pulumi_oci/opsi/get_operations_insights_warehouse.py +16 -2
- pulumi_oci/opsi/operations_insights_warehouse.py +56 -7
- pulumi_oci/opsi/outputs.py +13 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/sch/_inputs.py +223 -1
- pulumi_oci/sch/outputs.py +472 -31
- pulumi_oci/stackmonitoring/_inputs.py +1423 -51
- pulumi_oci/stackmonitoring/get_monitored_resource_task.py +16 -2
- pulumi_oci/stackmonitoring/get_monitored_resource_type.py +58 -2
- pulumi_oci/stackmonitoring/get_monitored_resource_types.py +46 -2
- pulumi_oci/stackmonitoring/monitored_resource_task.py +116 -4
- pulumi_oci/stackmonitoring/monitored_resource_type.py +119 -7
- pulumi_oci/stackmonitoring/outputs.py +6195 -3496
- {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.30.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.30.0.dist-info}/RECORD +60 -39
- {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.30.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.30.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1188 @@
|
|
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__ = ['LustreFileStorageLustreFileSystemArgs', 'LustreFileStorageLustreFileSystem']
|
21
|
+
|
22
|
+
@pulumi.input_type
|
23
|
+
class LustreFileStorageLustreFileSystemArgs:
|
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['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs'],
|
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 LustreFileStorageLustreFileSystem 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['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs'] 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['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs']:
|
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['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs']):
|
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 _LustreFileStorageLustreFileSystemState:
|
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['LustreFileStorageLustreFileSystemMaintenanceWindowArgs']]]] = 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['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs']] = 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 LustreFileStorageLustreFileSystem 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['LustreFileStorageLustreFileSystemMaintenanceWindowArgs']]] 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['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs'] 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['LustreFileStorageLustreFileSystemMaintenanceWindowArgs']]]]:
|
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['LustreFileStorageLustreFileSystemMaintenanceWindowArgs']]]]):
|
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['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs']]:
|
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['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs']]):
|
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
|
+
warnings.warn("""oci.oci/lustrefilestoragelustrefilesystem.LustreFileStorageLustreFileSystem has been deprecated in favor of oci.lustre/filestoragelustrefilesystem.FileStorageLustreFileSystem""", DeprecationWarning)
|
672
|
+
|
673
|
+
|
674
|
+
class LustreFileStorageLustreFileSystem(pulumi.CustomResource):
|
675
|
+
warnings.warn("""oci.oci/lustrefilestoragelustrefilesystem.LustreFileStorageLustreFileSystem has been deprecated in favor of oci.lustre/filestoragelustrefilesystem.FileStorageLustreFileSystem""", DeprecationWarning)
|
676
|
+
|
677
|
+
@overload
|
678
|
+
def __init__(__self__,
|
679
|
+
resource_name: str,
|
680
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
681
|
+
availability_domain: Optional[pulumi.Input[builtins.str]] = None,
|
682
|
+
capacity_in_gbs: Optional[pulumi.Input[builtins.int]] = None,
|
683
|
+
cluster_placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
684
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
685
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
686
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
687
|
+
file_system_description: Optional[pulumi.Input[builtins.str]] = None,
|
688
|
+
file_system_name: Optional[pulumi.Input[builtins.str]] = None,
|
689
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
690
|
+
kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
|
691
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
692
|
+
performance_tier: Optional[pulumi.Input[builtins.str]] = None,
|
693
|
+
root_squash_configuration: Optional[pulumi.Input[Union['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs', 'LustreFileStorageLustreFileSystemRootSquashConfigurationArgsDict']]] = None,
|
694
|
+
subnet_id: Optional[pulumi.Input[builtins.str]] = None,
|
695
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
696
|
+
__props__=None):
|
697
|
+
"""
|
698
|
+
This resource provides the Lustre File System resource in Oracle Cloud Infrastructure Lustre File Storage service.
|
699
|
+
|
700
|
+
Creates a Lustre file system.
|
701
|
+
|
702
|
+
## Example Usage
|
703
|
+
|
704
|
+
```python
|
705
|
+
import pulumi
|
706
|
+
import pulumi_oci as oci
|
707
|
+
|
708
|
+
test_lustre_file_system = oci.lustre.FileStorageLustreFileSystem("test_lustre_file_system",
|
709
|
+
availability_domain=lustre_file_system_availability_domain,
|
710
|
+
capacity_in_gbs=lustre_file_system_capacity_in_gbs,
|
711
|
+
compartment_id=compartment_id,
|
712
|
+
file_system_name=test_file_system["name"],
|
713
|
+
performance_tier=lustre_file_system_performance_tier,
|
714
|
+
root_squash_configuration={
|
715
|
+
"client_exceptions": lustre_file_system_root_squash_configuration_client_exceptions,
|
716
|
+
"identity_squash": lustre_file_system_root_squash_configuration_identity_squash,
|
717
|
+
"squash_gid": lustre_file_system_root_squash_configuration_squash_gid,
|
718
|
+
"squash_uid": lustre_file_system_root_squash_configuration_squash_uid,
|
719
|
+
},
|
720
|
+
subnet_id=test_subnet["id"],
|
721
|
+
cluster_placement_group_id=test_cluster_placement_group["id"],
|
722
|
+
defined_tags={
|
723
|
+
"Operations.CostCenter": "42",
|
724
|
+
},
|
725
|
+
display_name=lustre_file_system_display_name,
|
726
|
+
file_system_description=lustre_file_system_file_system_description,
|
727
|
+
freeform_tags={
|
728
|
+
"Department": "Finance",
|
729
|
+
},
|
730
|
+
kms_key_id=test_key["id"],
|
731
|
+
nsg_ids=lustre_file_system_nsg_ids)
|
732
|
+
```
|
733
|
+
|
734
|
+
## Import
|
735
|
+
|
736
|
+
LustreFileSystems can be imported using the `id`, e.g.
|
737
|
+
|
738
|
+
```sh
|
739
|
+
$ pulumi import oci:oci/lustreFileStorageLustreFileSystem:LustreFileStorageLustreFileSystem test_lustre_file_system "id"
|
740
|
+
```
|
741
|
+
|
742
|
+
:param str resource_name: The name of the resource.
|
743
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
744
|
+
: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`
|
745
|
+
: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.
|
746
|
+
: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.
|
747
|
+
: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.
|
748
|
+
: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"}`
|
749
|
+
: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`
|
750
|
+
:param pulumi.Input[builtins.str] file_system_description: (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
|
751
|
+
: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.
|
752
|
+
: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"}`
|
753
|
+
: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.
|
754
|
+
: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).
|
755
|
+
: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.
|
756
|
+
:param pulumi.Input[Union['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs', 'LustreFileStorageLustreFileSystemRootSquashConfigurationArgsDict']] 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.
|
757
|
+
: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.
|
758
|
+
|
759
|
+
|
760
|
+
** IMPORTANT **
|
761
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
762
|
+
: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"}`
|
763
|
+
"""
|
764
|
+
...
|
765
|
+
@overload
|
766
|
+
def __init__(__self__,
|
767
|
+
resource_name: str,
|
768
|
+
args: LustreFileStorageLustreFileSystemArgs,
|
769
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
770
|
+
"""
|
771
|
+
This resource provides the Lustre File System resource in Oracle Cloud Infrastructure Lustre File Storage service.
|
772
|
+
|
773
|
+
Creates a Lustre file system.
|
774
|
+
|
775
|
+
## Example Usage
|
776
|
+
|
777
|
+
```python
|
778
|
+
import pulumi
|
779
|
+
import pulumi_oci as oci
|
780
|
+
|
781
|
+
test_lustre_file_system = oci.lustre.FileStorageLustreFileSystem("test_lustre_file_system",
|
782
|
+
availability_domain=lustre_file_system_availability_domain,
|
783
|
+
capacity_in_gbs=lustre_file_system_capacity_in_gbs,
|
784
|
+
compartment_id=compartment_id,
|
785
|
+
file_system_name=test_file_system["name"],
|
786
|
+
performance_tier=lustre_file_system_performance_tier,
|
787
|
+
root_squash_configuration={
|
788
|
+
"client_exceptions": lustre_file_system_root_squash_configuration_client_exceptions,
|
789
|
+
"identity_squash": lustre_file_system_root_squash_configuration_identity_squash,
|
790
|
+
"squash_gid": lustre_file_system_root_squash_configuration_squash_gid,
|
791
|
+
"squash_uid": lustre_file_system_root_squash_configuration_squash_uid,
|
792
|
+
},
|
793
|
+
subnet_id=test_subnet["id"],
|
794
|
+
cluster_placement_group_id=test_cluster_placement_group["id"],
|
795
|
+
defined_tags={
|
796
|
+
"Operations.CostCenter": "42",
|
797
|
+
},
|
798
|
+
display_name=lustre_file_system_display_name,
|
799
|
+
file_system_description=lustre_file_system_file_system_description,
|
800
|
+
freeform_tags={
|
801
|
+
"Department": "Finance",
|
802
|
+
},
|
803
|
+
kms_key_id=test_key["id"],
|
804
|
+
nsg_ids=lustre_file_system_nsg_ids)
|
805
|
+
```
|
806
|
+
|
807
|
+
## Import
|
808
|
+
|
809
|
+
LustreFileSystems can be imported using the `id`, e.g.
|
810
|
+
|
811
|
+
```sh
|
812
|
+
$ pulumi import oci:oci/lustreFileStorageLustreFileSystem:LustreFileStorageLustreFileSystem test_lustre_file_system "id"
|
813
|
+
```
|
814
|
+
|
815
|
+
:param str resource_name: The name of the resource.
|
816
|
+
:param LustreFileStorageLustreFileSystemArgs args: The arguments to use to populate this resource's properties.
|
817
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
818
|
+
"""
|
819
|
+
...
|
820
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
821
|
+
resource_args, opts = _utilities.get_resource_args_opts(LustreFileStorageLustreFileSystemArgs, pulumi.ResourceOptions, *args, **kwargs)
|
822
|
+
if resource_args is not None:
|
823
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
824
|
+
else:
|
825
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
826
|
+
|
827
|
+
def _internal_init(__self__,
|
828
|
+
resource_name: str,
|
829
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
830
|
+
availability_domain: Optional[pulumi.Input[builtins.str]] = None,
|
831
|
+
capacity_in_gbs: Optional[pulumi.Input[builtins.int]] = None,
|
832
|
+
cluster_placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
833
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
834
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
835
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
836
|
+
file_system_description: Optional[pulumi.Input[builtins.str]] = None,
|
837
|
+
file_system_name: Optional[pulumi.Input[builtins.str]] = None,
|
838
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
839
|
+
kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
|
840
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
841
|
+
performance_tier: Optional[pulumi.Input[builtins.str]] = None,
|
842
|
+
root_squash_configuration: Optional[pulumi.Input[Union['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs', 'LustreFileStorageLustreFileSystemRootSquashConfigurationArgsDict']]] = None,
|
843
|
+
subnet_id: Optional[pulumi.Input[builtins.str]] = None,
|
844
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
845
|
+
__props__=None):
|
846
|
+
pulumi.log.warn("""LustreFileStorageLustreFileSystem is deprecated: oci.oci/lustrefilestoragelustrefilesystem.LustreFileStorageLustreFileSystem has been deprecated in favor of oci.lustre/filestoragelustrefilesystem.FileStorageLustreFileSystem""")
|
847
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
848
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
849
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
850
|
+
if opts.id is None:
|
851
|
+
if __props__ is not None:
|
852
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
853
|
+
__props__ = LustreFileStorageLustreFileSystemArgs.__new__(LustreFileStorageLustreFileSystemArgs)
|
854
|
+
|
855
|
+
if availability_domain is None and not opts.urn:
|
856
|
+
raise TypeError("Missing required property 'availability_domain'")
|
857
|
+
__props__.__dict__["availability_domain"] = availability_domain
|
858
|
+
if capacity_in_gbs is None and not opts.urn:
|
859
|
+
raise TypeError("Missing required property 'capacity_in_gbs'")
|
860
|
+
__props__.__dict__["capacity_in_gbs"] = capacity_in_gbs
|
861
|
+
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
862
|
+
if compartment_id is None and not opts.urn:
|
863
|
+
raise TypeError("Missing required property 'compartment_id'")
|
864
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
865
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
866
|
+
__props__.__dict__["display_name"] = display_name
|
867
|
+
__props__.__dict__["file_system_description"] = file_system_description
|
868
|
+
if file_system_name is None and not opts.urn:
|
869
|
+
raise TypeError("Missing required property 'file_system_name'")
|
870
|
+
__props__.__dict__["file_system_name"] = file_system_name
|
871
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
872
|
+
__props__.__dict__["kms_key_id"] = kms_key_id
|
873
|
+
__props__.__dict__["nsg_ids"] = nsg_ids
|
874
|
+
if performance_tier is None and not opts.urn:
|
875
|
+
raise TypeError("Missing required property 'performance_tier'")
|
876
|
+
__props__.__dict__["performance_tier"] = performance_tier
|
877
|
+
if root_squash_configuration is None and not opts.urn:
|
878
|
+
raise TypeError("Missing required property 'root_squash_configuration'")
|
879
|
+
__props__.__dict__["root_squash_configuration"] = root_squash_configuration
|
880
|
+
if subnet_id is None and not opts.urn:
|
881
|
+
raise TypeError("Missing required property 'subnet_id'")
|
882
|
+
__props__.__dict__["subnet_id"] = subnet_id
|
883
|
+
__props__.__dict__["system_tags"] = system_tags
|
884
|
+
__props__.__dict__["lifecycle_details"] = None
|
885
|
+
__props__.__dict__["lnet"] = None
|
886
|
+
__props__.__dict__["maintenance_windows"] = None
|
887
|
+
__props__.__dict__["major_version"] = None
|
888
|
+
__props__.__dict__["management_service_address"] = None
|
889
|
+
__props__.__dict__["state"] = None
|
890
|
+
__props__.__dict__["time_billing_cycle_end"] = None
|
891
|
+
__props__.__dict__["time_created"] = None
|
892
|
+
__props__.__dict__["time_updated"] = None
|
893
|
+
super(LustreFileStorageLustreFileSystem, __self__).__init__(
|
894
|
+
'oci:oci/lustreFileStorageLustreFileSystem:LustreFileStorageLustreFileSystem',
|
895
|
+
resource_name,
|
896
|
+
__props__,
|
897
|
+
opts)
|
898
|
+
|
899
|
+
@staticmethod
|
900
|
+
def get(resource_name: str,
|
901
|
+
id: pulumi.Input[str],
|
902
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
903
|
+
availability_domain: Optional[pulumi.Input[builtins.str]] = None,
|
904
|
+
capacity_in_gbs: Optional[pulumi.Input[builtins.int]] = None,
|
905
|
+
cluster_placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
906
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
907
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
908
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
909
|
+
file_system_description: Optional[pulumi.Input[builtins.str]] = None,
|
910
|
+
file_system_name: Optional[pulumi.Input[builtins.str]] = None,
|
911
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
912
|
+
kms_key_id: Optional[pulumi.Input[builtins.str]] = None,
|
913
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
914
|
+
lnet: Optional[pulumi.Input[builtins.str]] = None,
|
915
|
+
maintenance_windows: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LustreFileStorageLustreFileSystemMaintenanceWindowArgs', 'LustreFileStorageLustreFileSystemMaintenanceWindowArgsDict']]]]] = None,
|
916
|
+
major_version: Optional[pulumi.Input[builtins.str]] = None,
|
917
|
+
management_service_address: Optional[pulumi.Input[builtins.str]] = None,
|
918
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
919
|
+
performance_tier: Optional[pulumi.Input[builtins.str]] = None,
|
920
|
+
root_squash_configuration: Optional[pulumi.Input[Union['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs', 'LustreFileStorageLustreFileSystemRootSquashConfigurationArgsDict']]] = None,
|
921
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
922
|
+
subnet_id: Optional[pulumi.Input[builtins.str]] = None,
|
923
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
924
|
+
time_billing_cycle_end: Optional[pulumi.Input[builtins.str]] = None,
|
925
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
926
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None) -> 'LustreFileStorageLustreFileSystem':
|
927
|
+
"""
|
928
|
+
Get an existing LustreFileStorageLustreFileSystem resource's state with the given name, id, and optional extra
|
929
|
+
properties used to qualify the lookup.
|
930
|
+
|
931
|
+
:param str resource_name: The unique name of the resulting resource.
|
932
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
933
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
934
|
+
: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`
|
935
|
+
: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.
|
936
|
+
: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.
|
937
|
+
: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.
|
938
|
+
: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"}`
|
939
|
+
: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`
|
940
|
+
:param pulumi.Input[builtins.str] file_system_description: (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
|
941
|
+
: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.
|
942
|
+
: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"}`
|
943
|
+
: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.
|
944
|
+
: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.
|
945
|
+
:param pulumi.Input[builtins.str] lnet: Type of network used by clients to mount the file system. Example: `tcp`
|
946
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['LustreFileStorageLustreFileSystemMaintenanceWindowArgs', 'LustreFileStorageLustreFileSystemMaintenanceWindowArgsDict']]]] maintenance_windows: The preferred day and time to perform maintenance.
|
947
|
+
:param pulumi.Input[builtins.str] major_version: Major version of Lustre running in the Lustre file system. Example: `2.15`
|
948
|
+
: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'.
|
949
|
+
: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).
|
950
|
+
: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.
|
951
|
+
:param pulumi.Input[Union['LustreFileStorageLustreFileSystemRootSquashConfigurationArgs', 'LustreFileStorageLustreFileSystemRootSquashConfigurationArgsDict']] 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.
|
952
|
+
:param pulumi.Input[builtins.str] state: The current state of the Lustre file system.
|
953
|
+
: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.
|
954
|
+
|
955
|
+
|
956
|
+
** IMPORTANT **
|
957
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
958
|
+
: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"}`
|
959
|
+
: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`
|
960
|
+
: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`
|
961
|
+
: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`
|
962
|
+
"""
|
963
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
964
|
+
|
965
|
+
__props__ = _LustreFileStorageLustreFileSystemState.__new__(_LustreFileStorageLustreFileSystemState)
|
966
|
+
|
967
|
+
__props__.__dict__["availability_domain"] = availability_domain
|
968
|
+
__props__.__dict__["capacity_in_gbs"] = capacity_in_gbs
|
969
|
+
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
970
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
971
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
972
|
+
__props__.__dict__["display_name"] = display_name
|
973
|
+
__props__.__dict__["file_system_description"] = file_system_description
|
974
|
+
__props__.__dict__["file_system_name"] = file_system_name
|
975
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
976
|
+
__props__.__dict__["kms_key_id"] = kms_key_id
|
977
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
978
|
+
__props__.__dict__["lnet"] = lnet
|
979
|
+
__props__.__dict__["maintenance_windows"] = maintenance_windows
|
980
|
+
__props__.__dict__["major_version"] = major_version
|
981
|
+
__props__.__dict__["management_service_address"] = management_service_address
|
982
|
+
__props__.__dict__["nsg_ids"] = nsg_ids
|
983
|
+
__props__.__dict__["performance_tier"] = performance_tier
|
984
|
+
__props__.__dict__["root_squash_configuration"] = root_squash_configuration
|
985
|
+
__props__.__dict__["state"] = state
|
986
|
+
__props__.__dict__["subnet_id"] = subnet_id
|
987
|
+
__props__.__dict__["system_tags"] = system_tags
|
988
|
+
__props__.__dict__["time_billing_cycle_end"] = time_billing_cycle_end
|
989
|
+
__props__.__dict__["time_created"] = time_created
|
990
|
+
__props__.__dict__["time_updated"] = time_updated
|
991
|
+
return LustreFileStorageLustreFileSystem(resource_name, opts=opts, __props__=__props__)
|
992
|
+
|
993
|
+
@property
|
994
|
+
@pulumi.getter(name="availabilityDomain")
|
995
|
+
def availability_domain(self) -> pulumi.Output[builtins.str]:
|
996
|
+
"""
|
997
|
+
The availability domain the file system is in. May be unset as a blank or NULL value. Example: `Uocm:PHX-AD-1`
|
998
|
+
"""
|
999
|
+
return pulumi.get(self, "availability_domain")
|
1000
|
+
|
1001
|
+
@property
|
1002
|
+
@pulumi.getter(name="capacityInGbs")
|
1003
|
+
def capacity_in_gbs(self) -> pulumi.Output[builtins.int]:
|
1004
|
+
"""
|
1005
|
+
(Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
|
1006
|
+
"""
|
1007
|
+
return pulumi.get(self, "capacity_in_gbs")
|
1008
|
+
|
1009
|
+
@property
|
1010
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
1011
|
+
def cluster_placement_group_id(self) -> pulumi.Output[builtins.str]:
|
1012
|
+
"""
|
1013
|
+
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.
|
1014
|
+
"""
|
1015
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
1016
|
+
|
1017
|
+
@property
|
1018
|
+
@pulumi.getter(name="compartmentId")
|
1019
|
+
def compartment_id(self) -> pulumi.Output[builtins.str]:
|
1020
|
+
"""
|
1021
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Lustre file system.
|
1022
|
+
"""
|
1023
|
+
return pulumi.get(self, "compartment_id")
|
1024
|
+
|
1025
|
+
@property
|
1026
|
+
@pulumi.getter(name="definedTags")
|
1027
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
1028
|
+
"""
|
1029
|
+
(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"}`
|
1030
|
+
"""
|
1031
|
+
return pulumi.get(self, "defined_tags")
|
1032
|
+
|
1033
|
+
@property
|
1034
|
+
@pulumi.getter(name="displayName")
|
1035
|
+
def display_name(self) -> pulumi.Output[builtins.str]:
|
1036
|
+
"""
|
1037
|
+
(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`
|
1038
|
+
"""
|
1039
|
+
return pulumi.get(self, "display_name")
|
1040
|
+
|
1041
|
+
@property
|
1042
|
+
@pulumi.getter(name="fileSystemDescription")
|
1043
|
+
def file_system_description(self) -> pulumi.Output[builtins.str]:
|
1044
|
+
"""
|
1045
|
+
(Updatable) Short description of the Lustre file system. Avoid entering confidential information.
|
1046
|
+
"""
|
1047
|
+
return pulumi.get(self, "file_system_description")
|
1048
|
+
|
1049
|
+
@property
|
1050
|
+
@pulumi.getter(name="fileSystemName")
|
1051
|
+
def file_system_name(self) -> pulumi.Output[builtins.str]:
|
1052
|
+
"""
|
1053
|
+
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.
|
1054
|
+
"""
|
1055
|
+
return pulumi.get(self, "file_system_name")
|
1056
|
+
|
1057
|
+
@property
|
1058
|
+
@pulumi.getter(name="freeformTags")
|
1059
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
1060
|
+
"""
|
1061
|
+
(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"}`
|
1062
|
+
"""
|
1063
|
+
return pulumi.get(self, "freeform_tags")
|
1064
|
+
|
1065
|
+
@property
|
1066
|
+
@pulumi.getter(name="kmsKeyId")
|
1067
|
+
def kms_key_id(self) -> pulumi.Output[builtins.str]:
|
1068
|
+
"""
|
1069
|
+
(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.
|
1070
|
+
"""
|
1071
|
+
return pulumi.get(self, "kms_key_id")
|
1072
|
+
|
1073
|
+
@property
|
1074
|
+
@pulumi.getter(name="lifecycleDetails")
|
1075
|
+
def lifecycle_details(self) -> pulumi.Output[builtins.str]:
|
1076
|
+
"""
|
1077
|
+
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.
|
1078
|
+
"""
|
1079
|
+
return pulumi.get(self, "lifecycle_details")
|
1080
|
+
|
1081
|
+
@property
|
1082
|
+
@pulumi.getter
|
1083
|
+
def lnet(self) -> pulumi.Output[builtins.str]:
|
1084
|
+
"""
|
1085
|
+
Type of network used by clients to mount the file system. Example: `tcp`
|
1086
|
+
"""
|
1087
|
+
return pulumi.get(self, "lnet")
|
1088
|
+
|
1089
|
+
@property
|
1090
|
+
@pulumi.getter(name="maintenanceWindows")
|
1091
|
+
def maintenance_windows(self) -> pulumi.Output[Sequence['outputs.LustreFileStorageLustreFileSystemMaintenanceWindow']]:
|
1092
|
+
"""
|
1093
|
+
The preferred day and time to perform maintenance.
|
1094
|
+
"""
|
1095
|
+
return pulumi.get(self, "maintenance_windows")
|
1096
|
+
|
1097
|
+
@property
|
1098
|
+
@pulumi.getter(name="majorVersion")
|
1099
|
+
def major_version(self) -> pulumi.Output[builtins.str]:
|
1100
|
+
"""
|
1101
|
+
Major version of Lustre running in the Lustre file system. Example: `2.15`
|
1102
|
+
"""
|
1103
|
+
return pulumi.get(self, "major_version")
|
1104
|
+
|
1105
|
+
@property
|
1106
|
+
@pulumi.getter(name="managementServiceAddress")
|
1107
|
+
def management_service_address(self) -> pulumi.Output[builtins.str]:
|
1108
|
+
"""
|
1109
|
+
The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
|
1110
|
+
"""
|
1111
|
+
return pulumi.get(self, "management_service_address")
|
1112
|
+
|
1113
|
+
@property
|
1114
|
+
@pulumi.getter(name="nsgIds")
|
1115
|
+
def nsg_ids(self) -> pulumi.Output[Sequence[builtins.str]]:
|
1116
|
+
"""
|
1117
|
+
(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).
|
1118
|
+
"""
|
1119
|
+
return pulumi.get(self, "nsg_ids")
|
1120
|
+
|
1121
|
+
@property
|
1122
|
+
@pulumi.getter(name="performanceTier")
|
1123
|
+
def performance_tier(self) -> pulumi.Output[builtins.str]:
|
1124
|
+
"""
|
1125
|
+
The Lustre file system performance tier. A value of `MBPS_PER_TB_125` represents 125 megabytes per second per terabyte.
|
1126
|
+
"""
|
1127
|
+
return pulumi.get(self, "performance_tier")
|
1128
|
+
|
1129
|
+
@property
|
1130
|
+
@pulumi.getter(name="rootSquashConfiguration")
|
1131
|
+
def root_squash_configuration(self) -> pulumi.Output['outputs.LustreFileStorageLustreFileSystemRootSquashConfiguration']:
|
1132
|
+
"""
|
1133
|
+
(Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
|
1134
|
+
"""
|
1135
|
+
return pulumi.get(self, "root_squash_configuration")
|
1136
|
+
|
1137
|
+
@property
|
1138
|
+
@pulumi.getter
|
1139
|
+
def state(self) -> pulumi.Output[builtins.str]:
|
1140
|
+
"""
|
1141
|
+
The current state of the Lustre file system.
|
1142
|
+
"""
|
1143
|
+
return pulumi.get(self, "state")
|
1144
|
+
|
1145
|
+
@property
|
1146
|
+
@pulumi.getter(name="subnetId")
|
1147
|
+
def subnet_id(self) -> pulumi.Output[builtins.str]:
|
1148
|
+
"""
|
1149
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the Lustre file system is in.
|
1150
|
+
|
1151
|
+
|
1152
|
+
** IMPORTANT **
|
1153
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1154
|
+
"""
|
1155
|
+
return pulumi.get(self, "subnet_id")
|
1156
|
+
|
1157
|
+
@property
|
1158
|
+
@pulumi.getter(name="systemTags")
|
1159
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
1160
|
+
"""
|
1161
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1162
|
+
"""
|
1163
|
+
return pulumi.get(self, "system_tags")
|
1164
|
+
|
1165
|
+
@property
|
1166
|
+
@pulumi.getter(name="timeBillingCycleEnd")
|
1167
|
+
def time_billing_cycle_end(self) -> pulumi.Output[builtins.str]:
|
1168
|
+
"""
|
1169
|
+
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`
|
1170
|
+
"""
|
1171
|
+
return pulumi.get(self, "time_billing_cycle_end")
|
1172
|
+
|
1173
|
+
@property
|
1174
|
+
@pulumi.getter(name="timeCreated")
|
1175
|
+
def time_created(self) -> pulumi.Output[builtins.str]:
|
1176
|
+
"""
|
1177
|
+
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`
|
1178
|
+
"""
|
1179
|
+
return pulumi.get(self, "time_created")
|
1180
|
+
|
1181
|
+
@property
|
1182
|
+
@pulumi.getter(name="timeUpdated")
|
1183
|
+
def time_updated(self) -> pulumi.Output[builtins.str]:
|
1184
|
+
"""
|
1185
|
+
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`
|
1186
|
+
"""
|
1187
|
+
return pulumi.get(self, "time_updated")
|
1188
|
+
|