pulumi-alicloud 3.68.0a1732771126__py3-none-any.whl → 3.68.0a1733143327__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.

Potentially problematic release.


This version of pulumi-alicloud might be problematic. Click here for more details.

Files changed (45) hide show
  1. pulumi_alicloud/__init__.py +40 -0
  2. pulumi_alicloud/cdn/_inputs.py +3 -23
  3. pulumi_alicloud/cdn/domain_new.py +93 -51
  4. pulumi_alicloud/cdn/outputs.py +2 -16
  5. pulumi_alicloud/cdn/real_time_log_delivery.py +97 -46
  6. pulumi_alicloud/cen/get_flowlogs.py +250 -35
  7. pulumi_alicloud/cen/outputs.py +116 -17
  8. pulumi_alicloud/cs/node_pool.py +7 -0
  9. pulumi_alicloud/ecs/_inputs.py +92 -0
  10. pulumi_alicloud/ecs/auto_snapshot_policy.py +323 -129
  11. pulumi_alicloud/ecs/outputs.py +88 -0
  12. pulumi_alicloud/ecs/snapshot_policy.py +154 -1
  13. pulumi_alicloud/emrv2/_inputs.py +875 -21
  14. pulumi_alicloud/emrv2/cluster.py +47 -0
  15. pulumi_alicloud/emrv2/outputs.py +580 -14
  16. pulumi_alicloud/gwlb/__init__.py +1 -0
  17. pulumi_alicloud/gwlb/_inputs.py +147 -126
  18. pulumi_alicloud/gwlb/get_zones.py +173 -0
  19. pulumi_alicloud/gwlb/listener.py +50 -50
  20. pulumi_alicloud/gwlb/load_balancer.py +78 -71
  21. pulumi_alicloud/gwlb/outputs.py +139 -84
  22. pulumi_alicloud/gwlb/server_group.py +162 -113
  23. pulumi_alicloud/kvstore/audit_log_config.py +7 -7
  24. pulumi_alicloud/kvstore/backup_policy.py +9 -9
  25. pulumi_alicloud/kvstore/get_instance_classes.py +8 -8
  26. pulumi_alicloud/kvstore/get_instances.py +9 -7
  27. pulumi_alicloud/kvstore/instance.py +21 -21
  28. pulumi_alicloud/kvstore/outputs.py +6 -6
  29. pulumi_alicloud/nas/_inputs.py +148 -0
  30. pulumi_alicloud/nas/file_system.py +482 -222
  31. pulumi_alicloud/nas/outputs.py +109 -0
  32. pulumi_alicloud/pai/__init__.py +7 -0
  33. pulumi_alicloud/pai/_inputs.py +129 -0
  34. pulumi_alicloud/pai/outputs.py +83 -0
  35. pulumi_alicloud/pai/workspace_code_source.py +702 -0
  36. pulumi_alicloud/pai/workspace_dataset.py +1081 -0
  37. pulumi_alicloud/pai/workspace_datasetversion.py +818 -0
  38. pulumi_alicloud/pai/workspace_experiment.py +394 -0
  39. pulumi_alicloud/pai/workspace_run.py +344 -0
  40. pulumi_alicloud/pai/workspace_workspace.py +6 -6
  41. pulumi_alicloud/pulumi-plugin.json +1 -1
  42. {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.68.0a1733143327.dist-info}/METADATA +1 -1
  43. {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.68.0a1733143327.dist-info}/RECORD +45 -37
  44. {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.68.0a1733143327.dist-info}/WHEEL +0 -0
  45. {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.68.0a1733143327.dist-info}/top_level.txt +0 -0
@@ -18,6 +18,8 @@ from . import outputs
18
18
  __all__ = [
19
19
  'AccessPointPosixUser',
20
20
  'AccessPointRootPathPermission',
21
+ 'FileSystemNfsAcl',
22
+ 'FileSystemRecycleBin',
21
23
  'GetAccessGroupsGroupResult',
22
24
  'GetAccessRulesRuleResult',
23
25
  'GetAutoSnapshotPoliciesPolicyResult',
@@ -157,6 +159,113 @@ class AccessPointRootPathPermission(dict):
157
159
  return pulumi.get(self, "permission")
158
160
 
159
161
 
162
+ @pulumi.output_type
163
+ class FileSystemNfsAcl(dict):
164
+ def __init__(__self__, *,
165
+ enabled: Optional[bool] = None):
166
+ """
167
+ :param bool enabled: Specifies whether to enable the NFS ACL feature. Default value: `false`. Valid values:
168
+ """
169
+ if enabled is not None:
170
+ pulumi.set(__self__, "enabled", enabled)
171
+
172
+ @property
173
+ @pulumi.getter
174
+ def enabled(self) -> Optional[bool]:
175
+ """
176
+ Specifies whether to enable the NFS ACL feature. Default value: `false`. Valid values:
177
+ """
178
+ return pulumi.get(self, "enabled")
179
+
180
+
181
+ @pulumi.output_type
182
+ class FileSystemRecycleBin(dict):
183
+ @staticmethod
184
+ def __key_warning(key: str):
185
+ suggest = None
186
+ if key == "enableTime":
187
+ suggest = "enable_time"
188
+ elif key == "reservedDays":
189
+ suggest = "reserved_days"
190
+ elif key == "secondarySize":
191
+ suggest = "secondary_size"
192
+
193
+ if suggest:
194
+ pulumi.log.warn(f"Key '{key}' not found in FileSystemRecycleBin. Access the value via the '{suggest}' property getter instead.")
195
+
196
+ def __getitem__(self, key: str) -> Any:
197
+ FileSystemRecycleBin.__key_warning(key)
198
+ return super().__getitem__(key)
199
+
200
+ def get(self, key: str, default = None) -> Any:
201
+ FileSystemRecycleBin.__key_warning(key)
202
+ return super().get(key, default)
203
+
204
+ def __init__(__self__, *,
205
+ enable_time: Optional[str] = None,
206
+ reserved_days: Optional[int] = None,
207
+ secondary_size: Optional[int] = None,
208
+ size: Optional[int] = None,
209
+ status: Optional[str] = None):
210
+ """
211
+ :param str enable_time: The time at which the recycle bin was enabled.
212
+ :param int reserved_days: The retention period of the files in the recycle bin. Unit: days. Default value: `3`. Valid values: `1` to `180`. **NOTE:** `reserved_days` takes effect only if `status` is set to `Enable`.
213
+ :param int secondary_size: The size of the Infrequent Access (IA) data that is dumped to the recycle bin.
214
+ :param int size: The size of the files that are dumped to the recycle bin.
215
+ :param str status: Specifies whether to enable the recycle bin feature. Default value: `Disable`. Valid values: `Enable`, `Disable`.
216
+ """
217
+ if enable_time is not None:
218
+ pulumi.set(__self__, "enable_time", enable_time)
219
+ if reserved_days is not None:
220
+ pulumi.set(__self__, "reserved_days", reserved_days)
221
+ if secondary_size is not None:
222
+ pulumi.set(__self__, "secondary_size", secondary_size)
223
+ if size is not None:
224
+ pulumi.set(__self__, "size", size)
225
+ if status is not None:
226
+ pulumi.set(__self__, "status", status)
227
+
228
+ @property
229
+ @pulumi.getter(name="enableTime")
230
+ def enable_time(self) -> Optional[str]:
231
+ """
232
+ The time at which the recycle bin was enabled.
233
+ """
234
+ return pulumi.get(self, "enable_time")
235
+
236
+ @property
237
+ @pulumi.getter(name="reservedDays")
238
+ def reserved_days(self) -> Optional[int]:
239
+ """
240
+ The retention period of the files in the recycle bin. Unit: days. Default value: `3`. Valid values: `1` to `180`. **NOTE:** `reserved_days` takes effect only if `status` is set to `Enable`.
241
+ """
242
+ return pulumi.get(self, "reserved_days")
243
+
244
+ @property
245
+ @pulumi.getter(name="secondarySize")
246
+ def secondary_size(self) -> Optional[int]:
247
+ """
248
+ The size of the Infrequent Access (IA) data that is dumped to the recycle bin.
249
+ """
250
+ return pulumi.get(self, "secondary_size")
251
+
252
+ @property
253
+ @pulumi.getter
254
+ def size(self) -> Optional[int]:
255
+ """
256
+ The size of the files that are dumped to the recycle bin.
257
+ """
258
+ return pulumi.get(self, "size")
259
+
260
+ @property
261
+ @pulumi.getter
262
+ def status(self) -> Optional[str]:
263
+ """
264
+ Specifies whether to enable the recycle bin feature. Default value: `Disable`. Valid values: `Enable`, `Disable`.
265
+ """
266
+ return pulumi.get(self, "status")
267
+
268
+
160
269
  @pulumi.output_type
161
270
  class GetAccessGroupsGroupResult(dict):
162
271
  def __init__(__self__, *,
@@ -5,4 +5,11 @@
5
5
  from .. import _utilities
6
6
  import typing
7
7
  # Export this package's modules as members:
8
+ from .workspace_code_source import *
9
+ from .workspace_dataset import *
10
+ from .workspace_datasetversion import *
11
+ from .workspace_experiment import *
12
+ from .workspace_run import *
8
13
  from .workspace_workspace import *
14
+ from ._inputs import *
15
+ from . import outputs
@@ -0,0 +1,129 @@
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 copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = [
18
+ 'WorkspaceDatasetLabelArgs',
19
+ 'WorkspaceDatasetLabelArgsDict',
20
+ 'WorkspaceDatasetversionLabelArgs',
21
+ 'WorkspaceDatasetversionLabelArgsDict',
22
+ ]
23
+
24
+ MYPY = False
25
+
26
+ if not MYPY:
27
+ class WorkspaceDatasetLabelArgsDict(TypedDict):
28
+ key: NotRequired[pulumi.Input[str]]
29
+ """
30
+ The key of the tag. The length is limited to 128 bytes. "=" and "," are not supported.
31
+ """
32
+ value: NotRequired[pulumi.Input[str]]
33
+ """
34
+ The value of the tag. The length is limited to 128 bytes. "=" and "," are not supported.
35
+ """
36
+ elif False:
37
+ WorkspaceDatasetLabelArgsDict: TypeAlias = Mapping[str, Any]
38
+
39
+ @pulumi.input_type
40
+ class WorkspaceDatasetLabelArgs:
41
+ def __init__(__self__, *,
42
+ key: Optional[pulumi.Input[str]] = None,
43
+ value: Optional[pulumi.Input[str]] = None):
44
+ """
45
+ :param pulumi.Input[str] key: The key of the tag. The length is limited to 128 bytes. "=" and "," are not supported.
46
+ :param pulumi.Input[str] value: The value of the tag. The length is limited to 128 bytes. "=" and "," are not supported.
47
+ """
48
+ if key is not None:
49
+ pulumi.set(__self__, "key", key)
50
+ if value is not None:
51
+ pulumi.set(__self__, "value", value)
52
+
53
+ @property
54
+ @pulumi.getter
55
+ def key(self) -> Optional[pulumi.Input[str]]:
56
+ """
57
+ The key of the tag. The length is limited to 128 bytes. "=" and "," are not supported.
58
+ """
59
+ return pulumi.get(self, "key")
60
+
61
+ @key.setter
62
+ def key(self, value: Optional[pulumi.Input[str]]):
63
+ pulumi.set(self, "key", value)
64
+
65
+ @property
66
+ @pulumi.getter
67
+ def value(self) -> Optional[pulumi.Input[str]]:
68
+ """
69
+ The value of the tag. The length is limited to 128 bytes. "=" and "," are not supported.
70
+ """
71
+ return pulumi.get(self, "value")
72
+
73
+ @value.setter
74
+ def value(self, value: Optional[pulumi.Input[str]]):
75
+ pulumi.set(self, "value", value)
76
+
77
+
78
+ if not MYPY:
79
+ class WorkspaceDatasetversionLabelArgsDict(TypedDict):
80
+ key: NotRequired[pulumi.Input[str]]
81
+ """
82
+ The key of the tags
83
+ """
84
+ value: NotRequired[pulumi.Input[str]]
85
+ """
86
+ The value of the tags
87
+ """
88
+ elif False:
89
+ WorkspaceDatasetversionLabelArgsDict: TypeAlias = Mapping[str, Any]
90
+
91
+ @pulumi.input_type
92
+ class WorkspaceDatasetversionLabelArgs:
93
+ def __init__(__self__, *,
94
+ key: Optional[pulumi.Input[str]] = None,
95
+ value: Optional[pulumi.Input[str]] = None):
96
+ """
97
+ :param pulumi.Input[str] key: The key of the tags
98
+ :param pulumi.Input[str] value: The value of the tags
99
+ """
100
+ if key is not None:
101
+ pulumi.set(__self__, "key", key)
102
+ if value is not None:
103
+ pulumi.set(__self__, "value", value)
104
+
105
+ @property
106
+ @pulumi.getter
107
+ def key(self) -> Optional[pulumi.Input[str]]:
108
+ """
109
+ The key of the tags
110
+ """
111
+ return pulumi.get(self, "key")
112
+
113
+ @key.setter
114
+ def key(self, value: Optional[pulumi.Input[str]]):
115
+ pulumi.set(self, "key", value)
116
+
117
+ @property
118
+ @pulumi.getter
119
+ def value(self) -> Optional[pulumi.Input[str]]:
120
+ """
121
+ The value of the tags
122
+ """
123
+ return pulumi.get(self, "value")
124
+
125
+ @value.setter
126
+ def value(self, value: Optional[pulumi.Input[str]]):
127
+ pulumi.set(self, "value", value)
128
+
129
+
@@ -0,0 +1,83 @@
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 copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = [
18
+ 'WorkspaceDatasetLabel',
19
+ 'WorkspaceDatasetversionLabel',
20
+ ]
21
+
22
+ @pulumi.output_type
23
+ class WorkspaceDatasetLabel(dict):
24
+ def __init__(__self__, *,
25
+ key: Optional[str] = None,
26
+ value: Optional[str] = None):
27
+ """
28
+ :param str key: The key of the tag. The length is limited to 128 bytes. "=" and "," are not supported.
29
+ :param str value: The value of the tag. The length is limited to 128 bytes. "=" and "," are not supported.
30
+ """
31
+ if key is not None:
32
+ pulumi.set(__self__, "key", key)
33
+ if value is not None:
34
+ pulumi.set(__self__, "value", value)
35
+
36
+ @property
37
+ @pulumi.getter
38
+ def key(self) -> Optional[str]:
39
+ """
40
+ The key of the tag. The length is limited to 128 bytes. "=" and "," are not supported.
41
+ """
42
+ return pulumi.get(self, "key")
43
+
44
+ @property
45
+ @pulumi.getter
46
+ def value(self) -> Optional[str]:
47
+ """
48
+ The value of the tag. The length is limited to 128 bytes. "=" and "," are not supported.
49
+ """
50
+ return pulumi.get(self, "value")
51
+
52
+
53
+ @pulumi.output_type
54
+ class WorkspaceDatasetversionLabel(dict):
55
+ def __init__(__self__, *,
56
+ key: Optional[str] = None,
57
+ value: Optional[str] = None):
58
+ """
59
+ :param str key: The key of the tags
60
+ :param str value: The value of the tags
61
+ """
62
+ if key is not None:
63
+ pulumi.set(__self__, "key", key)
64
+ if value is not None:
65
+ pulumi.set(__self__, "value", value)
66
+
67
+ @property
68
+ @pulumi.getter
69
+ def key(self) -> Optional[str]:
70
+ """
71
+ The key of the tags
72
+ """
73
+ return pulumi.get(self, "key")
74
+
75
+ @property
76
+ @pulumi.getter
77
+ def value(self) -> Optional[str]:
78
+ """
79
+ The value of the tags
80
+ """
81
+ return pulumi.get(self, "value")
82
+
83
+