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,219 @@
|
|
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
|
+
|
18
|
+
__all__ = [
|
19
|
+
'LustreFileStorageLustreFileSystemMaintenanceWindowArgs',
|
20
|
+
'LustreFileStorageLustreFileSystemMaintenanceWindowArgsDict',
|
21
|
+
'LustreFileStorageLustreFileSystemRootSquashConfigurationArgs',
|
22
|
+
'LustreFileStorageLustreFileSystemRootSquashConfigurationArgsDict',
|
23
|
+
'GetLustreFileStorageLustreFileSystemsFilterArgs',
|
24
|
+
'GetLustreFileStorageLustreFileSystemsFilterArgsDict',
|
25
|
+
]
|
26
|
+
|
27
|
+
MYPY = False
|
28
|
+
|
29
|
+
if not MYPY:
|
30
|
+
class LustreFileStorageLustreFileSystemMaintenanceWindowArgsDict(TypedDict):
|
31
|
+
day_of_week: NotRequired[pulumi.Input[builtins.str]]
|
32
|
+
"""
|
33
|
+
Day of the week when the maintainence window starts.
|
34
|
+
"""
|
35
|
+
time_start: NotRequired[pulumi.Input[builtins.str]]
|
36
|
+
"""
|
37
|
+
The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: `22:00`
|
38
|
+
"""
|
39
|
+
elif False:
|
40
|
+
LustreFileStorageLustreFileSystemMaintenanceWindowArgsDict: TypeAlias = Mapping[str, Any]
|
41
|
+
|
42
|
+
@pulumi.input_type
|
43
|
+
class LustreFileStorageLustreFileSystemMaintenanceWindowArgs:
|
44
|
+
def __init__(__self__, *,
|
45
|
+
day_of_week: Optional[pulumi.Input[builtins.str]] = None,
|
46
|
+
time_start: Optional[pulumi.Input[builtins.str]] = None):
|
47
|
+
"""
|
48
|
+
:param pulumi.Input[builtins.str] day_of_week: Day of the week when the maintainence window starts.
|
49
|
+
:param pulumi.Input[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`
|
50
|
+
"""
|
51
|
+
if day_of_week is not None:
|
52
|
+
pulumi.set(__self__, "day_of_week", day_of_week)
|
53
|
+
if time_start is not None:
|
54
|
+
pulumi.set(__self__, "time_start", time_start)
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter(name="dayOfWeek")
|
58
|
+
def day_of_week(self) -> Optional[pulumi.Input[builtins.str]]:
|
59
|
+
"""
|
60
|
+
Day of the week when the maintainence window starts.
|
61
|
+
"""
|
62
|
+
return pulumi.get(self, "day_of_week")
|
63
|
+
|
64
|
+
@day_of_week.setter
|
65
|
+
def day_of_week(self, value: Optional[pulumi.Input[builtins.str]]):
|
66
|
+
pulumi.set(self, "day_of_week", value)
|
67
|
+
|
68
|
+
@property
|
69
|
+
@pulumi.getter(name="timeStart")
|
70
|
+
def time_start(self) -> Optional[pulumi.Input[builtins.str]]:
|
71
|
+
"""
|
72
|
+
The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: `22:00`
|
73
|
+
"""
|
74
|
+
return pulumi.get(self, "time_start")
|
75
|
+
|
76
|
+
@time_start.setter
|
77
|
+
def time_start(self, value: Optional[pulumi.Input[builtins.str]]):
|
78
|
+
pulumi.set(self, "time_start", value)
|
79
|
+
|
80
|
+
|
81
|
+
if not MYPY:
|
82
|
+
class LustreFileStorageLustreFileSystemRootSquashConfigurationArgsDict(TypedDict):
|
83
|
+
client_exceptions: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
84
|
+
"""
|
85
|
+
(Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
|
86
|
+
"""
|
87
|
+
identity_squash: NotRequired[pulumi.Input[builtins.str]]
|
88
|
+
"""
|
89
|
+
(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`.
|
90
|
+
"""
|
91
|
+
squash_gid: NotRequired[pulumi.Input[builtins.str]]
|
92
|
+
"""
|
93
|
+
(Updatable) The GID value to remap to when squashing a client GID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
|
94
|
+
"""
|
95
|
+
squash_uid: NotRequired[pulumi.Input[builtins.str]]
|
96
|
+
"""
|
97
|
+
(Updatable) The UID value to remap to when squashing a client UID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
|
98
|
+
"""
|
99
|
+
elif False:
|
100
|
+
LustreFileStorageLustreFileSystemRootSquashConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
101
|
+
|
102
|
+
@pulumi.input_type
|
103
|
+
class LustreFileStorageLustreFileSystemRootSquashConfigurationArgs:
|
104
|
+
def __init__(__self__, *,
|
105
|
+
client_exceptions: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
106
|
+
identity_squash: Optional[pulumi.Input[builtins.str]] = None,
|
107
|
+
squash_gid: Optional[pulumi.Input[builtins.str]] = None,
|
108
|
+
squash_uid: Optional[pulumi.Input[builtins.str]] = None):
|
109
|
+
"""
|
110
|
+
:param pulumi.Input[Sequence[pulumi.Input[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.
|
111
|
+
:param pulumi.Input[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`.
|
112
|
+
:param pulumi.Input[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`.
|
113
|
+
:param pulumi.Input[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`.
|
114
|
+
"""
|
115
|
+
if client_exceptions is not None:
|
116
|
+
pulumi.set(__self__, "client_exceptions", client_exceptions)
|
117
|
+
if identity_squash is not None:
|
118
|
+
pulumi.set(__self__, "identity_squash", identity_squash)
|
119
|
+
if squash_gid is not None:
|
120
|
+
pulumi.set(__self__, "squash_gid", squash_gid)
|
121
|
+
if squash_uid is not None:
|
122
|
+
pulumi.set(__self__, "squash_uid", squash_uid)
|
123
|
+
|
124
|
+
@property
|
125
|
+
@pulumi.getter(name="clientExceptions")
|
126
|
+
def client_exceptions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
127
|
+
"""
|
128
|
+
(Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
|
129
|
+
"""
|
130
|
+
return pulumi.get(self, "client_exceptions")
|
131
|
+
|
132
|
+
@client_exceptions.setter
|
133
|
+
def client_exceptions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
134
|
+
pulumi.set(self, "client_exceptions", value)
|
135
|
+
|
136
|
+
@property
|
137
|
+
@pulumi.getter(name="identitySquash")
|
138
|
+
def identity_squash(self) -> Optional[pulumi.Input[builtins.str]]:
|
139
|
+
"""
|
140
|
+
(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`.
|
141
|
+
"""
|
142
|
+
return pulumi.get(self, "identity_squash")
|
143
|
+
|
144
|
+
@identity_squash.setter
|
145
|
+
def identity_squash(self, value: Optional[pulumi.Input[builtins.str]]):
|
146
|
+
pulumi.set(self, "identity_squash", value)
|
147
|
+
|
148
|
+
@property
|
149
|
+
@pulumi.getter(name="squashGid")
|
150
|
+
def squash_gid(self) -> Optional[pulumi.Input[builtins.str]]:
|
151
|
+
"""
|
152
|
+
(Updatable) The GID value to remap to when squashing a client GID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "squash_gid")
|
155
|
+
|
156
|
+
@squash_gid.setter
|
157
|
+
def squash_gid(self, value: Optional[pulumi.Input[builtins.str]]):
|
158
|
+
pulumi.set(self, "squash_gid", value)
|
159
|
+
|
160
|
+
@property
|
161
|
+
@pulumi.getter(name="squashUid")
|
162
|
+
def squash_uid(self) -> Optional[pulumi.Input[builtins.str]]:
|
163
|
+
"""
|
164
|
+
(Updatable) The UID value to remap to when squashing a client UID. See `identitySquash` for more details. If unspecified, defaults to `65534`.
|
165
|
+
"""
|
166
|
+
return pulumi.get(self, "squash_uid")
|
167
|
+
|
168
|
+
@squash_uid.setter
|
169
|
+
def squash_uid(self, value: Optional[pulumi.Input[builtins.str]]):
|
170
|
+
pulumi.set(self, "squash_uid", value)
|
171
|
+
|
172
|
+
|
173
|
+
if not MYPY:
|
174
|
+
class GetLustreFileStorageLustreFileSystemsFilterArgsDict(TypedDict):
|
175
|
+
name: builtins.str
|
176
|
+
values: Sequence[builtins.str]
|
177
|
+
regex: NotRequired[builtins.bool]
|
178
|
+
elif False:
|
179
|
+
GetLustreFileStorageLustreFileSystemsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
180
|
+
|
181
|
+
@pulumi.input_type
|
182
|
+
class GetLustreFileStorageLustreFileSystemsFilterArgs:
|
183
|
+
def __init__(__self__, *,
|
184
|
+
name: builtins.str,
|
185
|
+
values: Sequence[builtins.str],
|
186
|
+
regex: Optional[builtins.bool] = None):
|
187
|
+
pulumi.set(__self__, "name", name)
|
188
|
+
pulumi.set(__self__, "values", values)
|
189
|
+
if regex is not None:
|
190
|
+
pulumi.set(__self__, "regex", regex)
|
191
|
+
|
192
|
+
@property
|
193
|
+
@pulumi.getter
|
194
|
+
def name(self) -> builtins.str:
|
195
|
+
return pulumi.get(self, "name")
|
196
|
+
|
197
|
+
@name.setter
|
198
|
+
def name(self, value: builtins.str):
|
199
|
+
pulumi.set(self, "name", value)
|
200
|
+
|
201
|
+
@property
|
202
|
+
@pulumi.getter
|
203
|
+
def values(self) -> Sequence[builtins.str]:
|
204
|
+
return pulumi.get(self, "values")
|
205
|
+
|
206
|
+
@values.setter
|
207
|
+
def values(self, value: Sequence[builtins.str]):
|
208
|
+
pulumi.set(self, "values", value)
|
209
|
+
|
210
|
+
@property
|
211
|
+
@pulumi.getter
|
212
|
+
def regex(self) -> Optional[builtins.bool]:
|
213
|
+
return pulumi.get(self, "regex")
|
214
|
+
|
215
|
+
@regex.setter
|
216
|
+
def regex(self, value: Optional[builtins.bool]):
|
217
|
+
pulumi.set(self, "regex", value)
|
218
|
+
|
219
|
+
|
@@ -0,0 +1,455 @@
|
|
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
|
+
'GetLustreFileStorageLustreFileSystemResult',
|
21
|
+
'AwaitableGetLustreFileStorageLustreFileSystemResult',
|
22
|
+
'get_lustre_file_storage_lustre_file_system',
|
23
|
+
'get_lustre_file_storage_lustre_file_system_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
warnings.warn("""oci.oci/getlustrefilestoragelustrefilesystem.getLustreFileStorageLustreFileSystem has been deprecated in favor of oci.lustre/getfilestoragelustrefilesystem.getFileStorageLustreFileSystem""", DeprecationWarning)
|
27
|
+
|
28
|
+
@pulumi.output_type
|
29
|
+
class GetLustreFileStorageLustreFileSystemResult:
|
30
|
+
"""
|
31
|
+
A collection of values returned by getLustreFileStorageLustreFileSystem.
|
32
|
+
"""
|
33
|
+
def __init__(__self__, availability_domain=None, capacity_in_gbs=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, display_name=None, file_system_description=None, file_system_name=None, freeform_tags=None, id=None, kms_key_id=None, lifecycle_details=None, lnet=None, lustre_file_system_id=None, maintenance_windows=None, major_version=None, management_service_address=None, nsg_ids=None, performance_tier=None, root_squash_configurations=None, state=None, subnet_id=None, system_tags=None, time_billing_cycle_end=None, time_created=None, time_updated=None):
|
34
|
+
if availability_domain and not isinstance(availability_domain, str):
|
35
|
+
raise TypeError("Expected argument 'availability_domain' to be a str")
|
36
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
37
|
+
if capacity_in_gbs and not isinstance(capacity_in_gbs, int):
|
38
|
+
raise TypeError("Expected argument 'capacity_in_gbs' to be a int")
|
39
|
+
pulumi.set(__self__, "capacity_in_gbs", capacity_in_gbs)
|
40
|
+
if cluster_placement_group_id and not isinstance(cluster_placement_group_id, str):
|
41
|
+
raise TypeError("Expected argument 'cluster_placement_group_id' to be a str")
|
42
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
43
|
+
if compartment_id and not isinstance(compartment_id, str):
|
44
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
45
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
46
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
47
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
48
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
49
|
+
if display_name and not isinstance(display_name, str):
|
50
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
51
|
+
pulumi.set(__self__, "display_name", display_name)
|
52
|
+
if file_system_description and not isinstance(file_system_description, str):
|
53
|
+
raise TypeError("Expected argument 'file_system_description' to be a str")
|
54
|
+
pulumi.set(__self__, "file_system_description", file_system_description)
|
55
|
+
if file_system_name and not isinstance(file_system_name, str):
|
56
|
+
raise TypeError("Expected argument 'file_system_name' to be a str")
|
57
|
+
pulumi.set(__self__, "file_system_name", file_system_name)
|
58
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
59
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
60
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
61
|
+
if id and not isinstance(id, str):
|
62
|
+
raise TypeError("Expected argument 'id' to be a str")
|
63
|
+
pulumi.set(__self__, "id", id)
|
64
|
+
if kms_key_id and not isinstance(kms_key_id, str):
|
65
|
+
raise TypeError("Expected argument 'kms_key_id' to be a str")
|
66
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
67
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
68
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
69
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
70
|
+
if lnet and not isinstance(lnet, str):
|
71
|
+
raise TypeError("Expected argument 'lnet' to be a str")
|
72
|
+
pulumi.set(__self__, "lnet", lnet)
|
73
|
+
if lustre_file_system_id and not isinstance(lustre_file_system_id, str):
|
74
|
+
raise TypeError("Expected argument 'lustre_file_system_id' to be a str")
|
75
|
+
pulumi.set(__self__, "lustre_file_system_id", lustre_file_system_id)
|
76
|
+
if maintenance_windows and not isinstance(maintenance_windows, list):
|
77
|
+
raise TypeError("Expected argument 'maintenance_windows' to be a list")
|
78
|
+
pulumi.set(__self__, "maintenance_windows", maintenance_windows)
|
79
|
+
if major_version and not isinstance(major_version, str):
|
80
|
+
raise TypeError("Expected argument 'major_version' to be a str")
|
81
|
+
pulumi.set(__self__, "major_version", major_version)
|
82
|
+
if management_service_address and not isinstance(management_service_address, str):
|
83
|
+
raise TypeError("Expected argument 'management_service_address' to be a str")
|
84
|
+
pulumi.set(__self__, "management_service_address", management_service_address)
|
85
|
+
if nsg_ids and not isinstance(nsg_ids, list):
|
86
|
+
raise TypeError("Expected argument 'nsg_ids' to be a list")
|
87
|
+
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
88
|
+
if performance_tier and not isinstance(performance_tier, str):
|
89
|
+
raise TypeError("Expected argument 'performance_tier' to be a str")
|
90
|
+
pulumi.set(__self__, "performance_tier", performance_tier)
|
91
|
+
if root_squash_configurations and not isinstance(root_squash_configurations, list):
|
92
|
+
raise TypeError("Expected argument 'root_squash_configurations' to be a list")
|
93
|
+
pulumi.set(__self__, "root_squash_configurations", root_squash_configurations)
|
94
|
+
if state and not isinstance(state, str):
|
95
|
+
raise TypeError("Expected argument 'state' to be a str")
|
96
|
+
pulumi.set(__self__, "state", state)
|
97
|
+
if subnet_id and not isinstance(subnet_id, str):
|
98
|
+
raise TypeError("Expected argument 'subnet_id' to be a str")
|
99
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
100
|
+
if system_tags and not isinstance(system_tags, dict):
|
101
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
102
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
103
|
+
if time_billing_cycle_end and not isinstance(time_billing_cycle_end, str):
|
104
|
+
raise TypeError("Expected argument 'time_billing_cycle_end' to be a str")
|
105
|
+
pulumi.set(__self__, "time_billing_cycle_end", time_billing_cycle_end)
|
106
|
+
if time_created and not isinstance(time_created, str):
|
107
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
108
|
+
pulumi.set(__self__, "time_created", time_created)
|
109
|
+
if time_updated and not isinstance(time_updated, str):
|
110
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
111
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="availabilityDomain")
|
115
|
+
def availability_domain(self) -> builtins.str:
|
116
|
+
"""
|
117
|
+
The availability domain the file system is in. May be unset as a blank or NULL value. Example: `Uocm:PHX-AD-1`
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "availability_domain")
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter(name="capacityInGbs")
|
123
|
+
def capacity_in_gbs(self) -> builtins.int:
|
124
|
+
"""
|
125
|
+
Capacity of the Lustre file system in GB.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "capacity_in_gbs")
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
131
|
+
def cluster_placement_group_id(self) -> builtins.str:
|
132
|
+
"""
|
133
|
+
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.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
136
|
+
|
137
|
+
@property
|
138
|
+
@pulumi.getter(name="compartmentId")
|
139
|
+
def compartment_id(self) -> builtins.str:
|
140
|
+
"""
|
141
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Lustre file system.
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "compartment_id")
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter(name="definedTags")
|
147
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
148
|
+
"""
|
149
|
+
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"}`
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "defined_tags")
|
152
|
+
|
153
|
+
@property
|
154
|
+
@pulumi.getter(name="displayName")
|
155
|
+
def display_name(self) -> builtins.str:
|
156
|
+
"""
|
157
|
+
A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My Lustre file system`
|
158
|
+
"""
|
159
|
+
return pulumi.get(self, "display_name")
|
160
|
+
|
161
|
+
@property
|
162
|
+
@pulumi.getter(name="fileSystemDescription")
|
163
|
+
def file_system_description(self) -> builtins.str:
|
164
|
+
"""
|
165
|
+
Short description of the Lustre file system. Avoid entering confidential information.
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "file_system_description")
|
168
|
+
|
169
|
+
@property
|
170
|
+
@pulumi.getter(name="fileSystemName")
|
171
|
+
def file_system_name(self) -> builtins.str:
|
172
|
+
"""
|
173
|
+
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 '_'.
|
174
|
+
"""
|
175
|
+
return pulumi.get(self, "file_system_name")
|
176
|
+
|
177
|
+
@property
|
178
|
+
@pulumi.getter(name="freeformTags")
|
179
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
180
|
+
"""
|
181
|
+
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"}`
|
182
|
+
"""
|
183
|
+
return pulumi.get(self, "freeform_tags")
|
184
|
+
|
185
|
+
@property
|
186
|
+
@pulumi.getter
|
187
|
+
def id(self) -> builtins.str:
|
188
|
+
"""
|
189
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Lustre file system.
|
190
|
+
"""
|
191
|
+
return pulumi.get(self, "id")
|
192
|
+
|
193
|
+
@property
|
194
|
+
@pulumi.getter(name="kmsKeyId")
|
195
|
+
def kms_key_id(self) -> builtins.str:
|
196
|
+
"""
|
197
|
+
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.
|
198
|
+
"""
|
199
|
+
return pulumi.get(self, "kms_key_id")
|
200
|
+
|
201
|
+
@property
|
202
|
+
@pulumi.getter(name="lifecycleDetails")
|
203
|
+
def lifecycle_details(self) -> builtins.str:
|
204
|
+
"""
|
205
|
+
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.
|
206
|
+
"""
|
207
|
+
return pulumi.get(self, "lifecycle_details")
|
208
|
+
|
209
|
+
@property
|
210
|
+
@pulumi.getter
|
211
|
+
def lnet(self) -> builtins.str:
|
212
|
+
"""
|
213
|
+
Type of network used by clients to mount the file system. Example: `tcp`
|
214
|
+
"""
|
215
|
+
return pulumi.get(self, "lnet")
|
216
|
+
|
217
|
+
@property
|
218
|
+
@pulumi.getter(name="lustreFileSystemId")
|
219
|
+
def lustre_file_system_id(self) -> builtins.str:
|
220
|
+
return pulumi.get(self, "lustre_file_system_id")
|
221
|
+
|
222
|
+
@property
|
223
|
+
@pulumi.getter(name="maintenanceWindows")
|
224
|
+
def maintenance_windows(self) -> Sequence['outputs.GetLustreFileStorageLustreFileSystemMaintenanceWindowResult']:
|
225
|
+
"""
|
226
|
+
The preferred day and time to perform maintenance.
|
227
|
+
"""
|
228
|
+
return pulumi.get(self, "maintenance_windows")
|
229
|
+
|
230
|
+
@property
|
231
|
+
@pulumi.getter(name="majorVersion")
|
232
|
+
def major_version(self) -> builtins.str:
|
233
|
+
"""
|
234
|
+
Major version of Lustre running in the Lustre file system. Example: `2.15`
|
235
|
+
"""
|
236
|
+
return pulumi.get(self, "major_version")
|
237
|
+
|
238
|
+
@property
|
239
|
+
@pulumi.getter(name="managementServiceAddress")
|
240
|
+
def management_service_address(self) -> builtins.str:
|
241
|
+
"""
|
242
|
+
The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
|
243
|
+
"""
|
244
|
+
return pulumi.get(self, "management_service_address")
|
245
|
+
|
246
|
+
@property
|
247
|
+
@pulumi.getter(name="nsgIds")
|
248
|
+
def nsg_ids(self) -> Sequence[builtins.str]:
|
249
|
+
"""
|
250
|
+
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
|
+
@property
|
255
|
+
@pulumi.getter(name="performanceTier")
|
256
|
+
def performance_tier(self) -> builtins.str:
|
257
|
+
"""
|
258
|
+
The Lustre file system performance tier. A value of `MBPS_PER_TB_125` represents 125 megabytes per second per terabyte.
|
259
|
+
"""
|
260
|
+
return pulumi.get(self, "performance_tier")
|
261
|
+
|
262
|
+
@property
|
263
|
+
@pulumi.getter(name="rootSquashConfigurations")
|
264
|
+
def root_squash_configurations(self) -> Sequence['outputs.GetLustreFileStorageLustreFileSystemRootSquashConfigurationResult']:
|
265
|
+
"""
|
266
|
+
An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
|
267
|
+
"""
|
268
|
+
return pulumi.get(self, "root_squash_configurations")
|
269
|
+
|
270
|
+
@property
|
271
|
+
@pulumi.getter
|
272
|
+
def state(self) -> builtins.str:
|
273
|
+
"""
|
274
|
+
The current state of the Lustre file system.
|
275
|
+
"""
|
276
|
+
return pulumi.get(self, "state")
|
277
|
+
|
278
|
+
@property
|
279
|
+
@pulumi.getter(name="subnetId")
|
280
|
+
def subnet_id(self) -> builtins.str:
|
281
|
+
"""
|
282
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the Lustre file system is in.
|
283
|
+
"""
|
284
|
+
return pulumi.get(self, "subnet_id")
|
285
|
+
|
286
|
+
@property
|
287
|
+
@pulumi.getter(name="systemTags")
|
288
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
289
|
+
"""
|
290
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
291
|
+
"""
|
292
|
+
return pulumi.get(self, "system_tags")
|
293
|
+
|
294
|
+
@property
|
295
|
+
@pulumi.getter(name="timeBillingCycleEnd")
|
296
|
+
def time_billing_cycle_end(self) -> builtins.str:
|
297
|
+
"""
|
298
|
+
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`
|
299
|
+
"""
|
300
|
+
return pulumi.get(self, "time_billing_cycle_end")
|
301
|
+
|
302
|
+
@property
|
303
|
+
@pulumi.getter(name="timeCreated")
|
304
|
+
def time_created(self) -> builtins.str:
|
305
|
+
"""
|
306
|
+
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`
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "time_created")
|
309
|
+
|
310
|
+
@property
|
311
|
+
@pulumi.getter(name="timeUpdated")
|
312
|
+
def time_updated(self) -> builtins.str:
|
313
|
+
"""
|
314
|
+
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`
|
315
|
+
"""
|
316
|
+
return pulumi.get(self, "time_updated")
|
317
|
+
|
318
|
+
|
319
|
+
class AwaitableGetLustreFileStorageLustreFileSystemResult(GetLustreFileStorageLustreFileSystemResult):
|
320
|
+
# pylint: disable=using-constant-test
|
321
|
+
def __await__(self):
|
322
|
+
if False:
|
323
|
+
yield self
|
324
|
+
return GetLustreFileStorageLustreFileSystemResult(
|
325
|
+
availability_domain=self.availability_domain,
|
326
|
+
capacity_in_gbs=self.capacity_in_gbs,
|
327
|
+
cluster_placement_group_id=self.cluster_placement_group_id,
|
328
|
+
compartment_id=self.compartment_id,
|
329
|
+
defined_tags=self.defined_tags,
|
330
|
+
display_name=self.display_name,
|
331
|
+
file_system_description=self.file_system_description,
|
332
|
+
file_system_name=self.file_system_name,
|
333
|
+
freeform_tags=self.freeform_tags,
|
334
|
+
id=self.id,
|
335
|
+
kms_key_id=self.kms_key_id,
|
336
|
+
lifecycle_details=self.lifecycle_details,
|
337
|
+
lnet=self.lnet,
|
338
|
+
lustre_file_system_id=self.lustre_file_system_id,
|
339
|
+
maintenance_windows=self.maintenance_windows,
|
340
|
+
major_version=self.major_version,
|
341
|
+
management_service_address=self.management_service_address,
|
342
|
+
nsg_ids=self.nsg_ids,
|
343
|
+
performance_tier=self.performance_tier,
|
344
|
+
root_squash_configurations=self.root_squash_configurations,
|
345
|
+
state=self.state,
|
346
|
+
subnet_id=self.subnet_id,
|
347
|
+
system_tags=self.system_tags,
|
348
|
+
time_billing_cycle_end=self.time_billing_cycle_end,
|
349
|
+
time_created=self.time_created,
|
350
|
+
time_updated=self.time_updated)
|
351
|
+
|
352
|
+
|
353
|
+
def get_lustre_file_storage_lustre_file_system(lustre_file_system_id: Optional[builtins.str] = None,
|
354
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLustreFileStorageLustreFileSystemResult:
|
355
|
+
"""
|
356
|
+
This data source provides details about a specific Lustre File System resource in Oracle Cloud Infrastructure Lustre File Storage service.
|
357
|
+
|
358
|
+
Gets information about a Lustre file system.
|
359
|
+
|
360
|
+
## Example Usage
|
361
|
+
|
362
|
+
```python
|
363
|
+
import pulumi
|
364
|
+
import pulumi_oci as oci
|
365
|
+
|
366
|
+
test_lustre_file_system = oci.Lustre.get_file_storage_lustre_file_system(lustre_file_system_id=test_lustre_file_system_oci_lustre_file_storage_lustre_file_system["id"])
|
367
|
+
```
|
368
|
+
|
369
|
+
|
370
|
+
:param builtins.str lustre_file_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Lustre file system.
|
371
|
+
"""
|
372
|
+
pulumi.log.warn("""get_lustre_file_storage_lustre_file_system is deprecated: oci.oci/getlustrefilestoragelustrefilesystem.getLustreFileStorageLustreFileSystem has been deprecated in favor of oci.lustre/getfilestoragelustrefilesystem.getFileStorageLustreFileSystem""")
|
373
|
+
__args__ = dict()
|
374
|
+
__args__['lustreFileSystemId'] = lustre_file_system_id
|
375
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
376
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getLustreFileStorageLustreFileSystem:getLustreFileStorageLustreFileSystem', __args__, opts=opts, typ=GetLustreFileStorageLustreFileSystemResult).value
|
377
|
+
|
378
|
+
return AwaitableGetLustreFileStorageLustreFileSystemResult(
|
379
|
+
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
380
|
+
capacity_in_gbs=pulumi.get(__ret__, 'capacity_in_gbs'),
|
381
|
+
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
382
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
383
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
384
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
385
|
+
file_system_description=pulumi.get(__ret__, 'file_system_description'),
|
386
|
+
file_system_name=pulumi.get(__ret__, 'file_system_name'),
|
387
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
388
|
+
id=pulumi.get(__ret__, 'id'),
|
389
|
+
kms_key_id=pulumi.get(__ret__, 'kms_key_id'),
|
390
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
391
|
+
lnet=pulumi.get(__ret__, 'lnet'),
|
392
|
+
lustre_file_system_id=pulumi.get(__ret__, 'lustre_file_system_id'),
|
393
|
+
maintenance_windows=pulumi.get(__ret__, 'maintenance_windows'),
|
394
|
+
major_version=pulumi.get(__ret__, 'major_version'),
|
395
|
+
management_service_address=pulumi.get(__ret__, 'management_service_address'),
|
396
|
+
nsg_ids=pulumi.get(__ret__, 'nsg_ids'),
|
397
|
+
performance_tier=pulumi.get(__ret__, 'performance_tier'),
|
398
|
+
root_squash_configurations=pulumi.get(__ret__, 'root_squash_configurations'),
|
399
|
+
state=pulumi.get(__ret__, 'state'),
|
400
|
+
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
401
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
402
|
+
time_billing_cycle_end=pulumi.get(__ret__, 'time_billing_cycle_end'),
|
403
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
404
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
405
|
+
def get_lustre_file_storage_lustre_file_system_output(lustre_file_system_id: Optional[pulumi.Input[builtins.str]] = None,
|
406
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetLustreFileStorageLustreFileSystemResult]:
|
407
|
+
"""
|
408
|
+
This data source provides details about a specific Lustre File System resource in Oracle Cloud Infrastructure Lustre File Storage service.
|
409
|
+
|
410
|
+
Gets information about a Lustre file system.
|
411
|
+
|
412
|
+
## Example Usage
|
413
|
+
|
414
|
+
```python
|
415
|
+
import pulumi
|
416
|
+
import pulumi_oci as oci
|
417
|
+
|
418
|
+
test_lustre_file_system = oci.Lustre.get_file_storage_lustre_file_system(lustre_file_system_id=test_lustre_file_system_oci_lustre_file_storage_lustre_file_system["id"])
|
419
|
+
```
|
420
|
+
|
421
|
+
|
422
|
+
:param builtins.str lustre_file_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Lustre file system.
|
423
|
+
"""
|
424
|
+
pulumi.log.warn("""get_lustre_file_storage_lustre_file_system is deprecated: oci.oci/getlustrefilestoragelustrefilesystem.getLustreFileStorageLustreFileSystem has been deprecated in favor of oci.lustre/getfilestoragelustrefilesystem.getFileStorageLustreFileSystem""")
|
425
|
+
__args__ = dict()
|
426
|
+
__args__['lustreFileSystemId'] = lustre_file_system_id
|
427
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
428
|
+
__ret__ = pulumi.runtime.invoke_output('oci:oci/getLustreFileStorageLustreFileSystem:getLustreFileStorageLustreFileSystem', __args__, opts=opts, typ=GetLustreFileStorageLustreFileSystemResult)
|
429
|
+
return __ret__.apply(lambda __response__: GetLustreFileStorageLustreFileSystemResult(
|
430
|
+
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
431
|
+
capacity_in_gbs=pulumi.get(__response__, 'capacity_in_gbs'),
|
432
|
+
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
433
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
434
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
435
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
436
|
+
file_system_description=pulumi.get(__response__, 'file_system_description'),
|
437
|
+
file_system_name=pulumi.get(__response__, 'file_system_name'),
|
438
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
439
|
+
id=pulumi.get(__response__, 'id'),
|
440
|
+
kms_key_id=pulumi.get(__response__, 'kms_key_id'),
|
441
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
442
|
+
lnet=pulumi.get(__response__, 'lnet'),
|
443
|
+
lustre_file_system_id=pulumi.get(__response__, 'lustre_file_system_id'),
|
444
|
+
maintenance_windows=pulumi.get(__response__, 'maintenance_windows'),
|
445
|
+
major_version=pulumi.get(__response__, 'major_version'),
|
446
|
+
management_service_address=pulumi.get(__response__, 'management_service_address'),
|
447
|
+
nsg_ids=pulumi.get(__response__, 'nsg_ids'),
|
448
|
+
performance_tier=pulumi.get(__response__, 'performance_tier'),
|
449
|
+
root_squash_configurations=pulumi.get(__response__, 'root_squash_configurations'),
|
450
|
+
state=pulumi.get(__response__, 'state'),
|
451
|
+
subnet_id=pulumi.get(__response__, 'subnet_id'),
|
452
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
453
|
+
time_billing_cycle_end=pulumi.get(__response__, 'time_billing_cycle_end'),
|
454
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
455
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|