pulumi-oci 2.29.0a1744186202__py3-none-any.whl → 2.29.0a1744212348__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. pulumi_oci/__init__.py +46 -0
  2. pulumi_oci/bigdataservice/bds_instance.py +7 -7
  3. pulumi_oci/datascience/__init__.py +9 -0
  4. pulumi_oci/datascience/_inputs.py +1215 -0
  5. pulumi_oci/datascience/get_ml_application.py +254 -0
  6. pulumi_oci/datascience/get_ml_application_implementation.py +389 -0
  7. pulumi_oci/datascience/get_ml_application_implementations.py +252 -0
  8. pulumi_oci/datascience/get_ml_application_instance.py +367 -0
  9. pulumi_oci/datascience/get_ml_application_instances.py +214 -0
  10. pulumi_oci/datascience/get_ml_applications.py +230 -0
  11. pulumi_oci/datascience/ml_application.py +564 -0
  12. pulumi_oci/datascience/ml_application_implementation.py +969 -0
  13. pulumi_oci/datascience/ml_application_instance.py +832 -0
  14. pulumi_oci/datascience/outputs.py +7154 -4464
  15. pulumi_oci/lustre/__init__.py +13 -0
  16. pulumi_oci/lustre/_inputs.py +219 -0
  17. pulumi_oci/lustre/file_storage_lustre_file_system.py +1184 -0
  18. pulumi_oci/lustre/get_file_storage_lustre_file_system.py +451 -0
  19. pulumi_oci/lustre/get_file_storage_lustre_file_systems.py +222 -0
  20. pulumi_oci/lustre/outputs.py +639 -0
  21. pulumi_oci/oci/__init__.py +13 -0
  22. pulumi_oci/oci/_inputs.py +219 -0
  23. pulumi_oci/oci/get_lustre_file_storage_lustre_file_system.py +455 -0
  24. pulumi_oci/oci/get_lustre_file_storage_lustre_file_systems.py +226 -0
  25. pulumi_oci/oci/lustre_file_storage_lustre_file_system.py +1188 -0
  26. pulumi_oci/oci/outputs.py +639 -0
  27. pulumi_oci/opsi/get_operations_insights_warehouse.py +16 -2
  28. pulumi_oci/opsi/operations_insights_warehouse.py +56 -7
  29. pulumi_oci/opsi/outputs.py +13 -2
  30. pulumi_oci/pulumi-plugin.json +1 -1
  31. pulumi_oci/stackmonitoring/_inputs.py +1423 -51
  32. pulumi_oci/stackmonitoring/get_monitored_resource_task.py +16 -2
  33. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +58 -2
  34. pulumi_oci/stackmonitoring/get_monitored_resource_types.py +46 -2
  35. pulumi_oci/stackmonitoring/monitored_resource_task.py +116 -4
  36. pulumi_oci/stackmonitoring/monitored_resource_type.py +119 -7
  37. pulumi_oci/stackmonitoring/outputs.py +6195 -3496
  38. {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.29.0a1744212348.dist-info}/METADATA +1 -1
  39. {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.29.0a1744212348.dist-info}/RECORD +41 -20
  40. {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.29.0a1744212348.dist-info}/WHEEL +0 -0
  41. {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.29.0a1744212348.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,13 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins
6
+ from .. import _utilities
7
+ import typing
8
+ # Export this package's modules as members:
9
+ from .file_storage_lustre_file_system import *
10
+ from .get_file_storage_lustre_file_system import *
11
+ from .get_file_storage_lustre_file_systems import *
12
+ from ._inputs import *
13
+ from . import outputs
@@ -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
+ 'FileStorageLustreFileSystemMaintenanceWindowArgs',
20
+ 'FileStorageLustreFileSystemMaintenanceWindowArgsDict',
21
+ 'FileStorageLustreFileSystemRootSquashConfigurationArgs',
22
+ 'FileStorageLustreFileSystemRootSquashConfigurationArgsDict',
23
+ 'GetFileStorageLustreFileSystemsFilterArgs',
24
+ 'GetFileStorageLustreFileSystemsFilterArgsDict',
25
+ ]
26
+
27
+ MYPY = False
28
+
29
+ if not MYPY:
30
+ class FileStorageLustreFileSystemMaintenanceWindowArgsDict(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
+ FileStorageLustreFileSystemMaintenanceWindowArgsDict: TypeAlias = Mapping[str, Any]
41
+
42
+ @pulumi.input_type
43
+ class FileStorageLustreFileSystemMaintenanceWindowArgs:
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 FileStorageLustreFileSystemRootSquashConfigurationArgsDict(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
+ FileStorageLustreFileSystemRootSquashConfigurationArgsDict: TypeAlias = Mapping[str, Any]
101
+
102
+ @pulumi.input_type
103
+ class FileStorageLustreFileSystemRootSquashConfigurationArgs:
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 GetFileStorageLustreFileSystemsFilterArgsDict(TypedDict):
175
+ name: builtins.str
176
+ values: Sequence[builtins.str]
177
+ regex: NotRequired[builtins.bool]
178
+ elif False:
179
+ GetFileStorageLustreFileSystemsFilterArgsDict: TypeAlias = Mapping[str, Any]
180
+
181
+ @pulumi.input_type
182
+ class GetFileStorageLustreFileSystemsFilterArgs:
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
+