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