pulumi-alicloud 3.68.0__py3-none-any.whl → 3.68.0a1732598392__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.
- pulumi_alicloud/__init__.py +0 -40
- pulumi_alicloud/cdn/_inputs.py +23 -3
- pulumi_alicloud/cdn/domain_new.py +51 -93
- pulumi_alicloud/cdn/outputs.py +16 -2
- pulumi_alicloud/cdn/real_time_log_delivery.py +46 -97
- pulumi_alicloud/cen/get_flowlogs.py +35 -250
- pulumi_alicloud/cen/outputs.py +17 -116
- pulumi_alicloud/cs/node_pool.py +0 -7
- pulumi_alicloud/ecs/_inputs.py +0 -92
- pulumi_alicloud/ecs/auto_snapshot_policy.py +129 -323
- pulumi_alicloud/ecs/outputs.py +0 -88
- pulumi_alicloud/ecs/snapshot_policy.py +1 -154
- pulumi_alicloud/emrv2/_inputs.py +21 -875
- pulumi_alicloud/emrv2/cluster.py +0 -47
- pulumi_alicloud/emrv2/outputs.py +14 -580
- pulumi_alicloud/gwlb/__init__.py +0 -1
- pulumi_alicloud/gwlb/_inputs.py +126 -147
- pulumi_alicloud/gwlb/listener.py +50 -50
- pulumi_alicloud/gwlb/load_balancer.py +71 -78
- pulumi_alicloud/gwlb/outputs.py +84 -139
- pulumi_alicloud/gwlb/server_group.py +113 -162
- pulumi_alicloud/kvstore/audit_log_config.py +7 -7
- pulumi_alicloud/kvstore/backup_policy.py +9 -9
- pulumi_alicloud/kvstore/get_instance_classes.py +8 -8
- pulumi_alicloud/kvstore/get_instances.py +7 -9
- pulumi_alicloud/kvstore/instance.py +21 -21
- pulumi_alicloud/kvstore/outputs.py +6 -6
- pulumi_alicloud/nas/_inputs.py +0 -148
- pulumi_alicloud/nas/file_system.py +222 -482
- pulumi_alicloud/nas/outputs.py +0 -109
- pulumi_alicloud/pai/__init__.py +0 -7
- pulumi_alicloud/pai/workspace_workspace.py +6 -6
- pulumi_alicloud/pulumi-plugin.json +1 -1
- {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/RECORD +37 -45
- pulumi_alicloud/gwlb/get_zones.py +0 -173
- pulumi_alicloud/pai/_inputs.py +0 -129
- pulumi_alicloud/pai/outputs.py +0 -83
- pulumi_alicloud/pai/workspace_code_source.py +0 -702
- pulumi_alicloud/pai/workspace_dataset.py +0 -1081
- pulumi_alicloud/pai/workspace_datasetversion.py +0 -818
- pulumi_alicloud/pai/workspace_experiment.py +0 -394
- pulumi_alicloud/pai/workspace_run.py +0 -344
- {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/top_level.txt +0 -0
|
@@ -1,344 +0,0 @@
|
|
|
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__ = ['WorkspaceRunArgs', 'WorkspaceRun']
|
|
18
|
-
|
|
19
|
-
@pulumi.input_type
|
|
20
|
-
class WorkspaceRunArgs:
|
|
21
|
-
def __init__(__self__, *,
|
|
22
|
-
experiment_id: pulumi.Input[str],
|
|
23
|
-
run_name: Optional[pulumi.Input[str]] = None,
|
|
24
|
-
source_id: Optional[pulumi.Input[str]] = None,
|
|
25
|
-
source_type: Optional[pulumi.Input[str]] = None):
|
|
26
|
-
"""
|
|
27
|
-
The set of arguments for constructing a WorkspaceRun resource.
|
|
28
|
-
:param pulumi.Input[str] experiment_id: Resource attribute field of the experiment ID to which Run belongs
|
|
29
|
-
:param pulumi.Input[str] run_name: The name of the resource
|
|
30
|
-
:param pulumi.Input[str] source_id: Attribute Resource field representing the source task ID
|
|
31
|
-
:param pulumi.Input[str] source_type: Resource attribute fields representing the source type
|
|
32
|
-
"""
|
|
33
|
-
pulumi.set(__self__, "experiment_id", experiment_id)
|
|
34
|
-
if run_name is not None:
|
|
35
|
-
pulumi.set(__self__, "run_name", run_name)
|
|
36
|
-
if source_id is not None:
|
|
37
|
-
pulumi.set(__self__, "source_id", source_id)
|
|
38
|
-
if source_type is not None:
|
|
39
|
-
pulumi.set(__self__, "source_type", source_type)
|
|
40
|
-
|
|
41
|
-
@property
|
|
42
|
-
@pulumi.getter(name="experimentId")
|
|
43
|
-
def experiment_id(self) -> pulumi.Input[str]:
|
|
44
|
-
"""
|
|
45
|
-
Resource attribute field of the experiment ID to which Run belongs
|
|
46
|
-
"""
|
|
47
|
-
return pulumi.get(self, "experiment_id")
|
|
48
|
-
|
|
49
|
-
@experiment_id.setter
|
|
50
|
-
def experiment_id(self, value: pulumi.Input[str]):
|
|
51
|
-
pulumi.set(self, "experiment_id", value)
|
|
52
|
-
|
|
53
|
-
@property
|
|
54
|
-
@pulumi.getter(name="runName")
|
|
55
|
-
def run_name(self) -> Optional[pulumi.Input[str]]:
|
|
56
|
-
"""
|
|
57
|
-
The name of the resource
|
|
58
|
-
"""
|
|
59
|
-
return pulumi.get(self, "run_name")
|
|
60
|
-
|
|
61
|
-
@run_name.setter
|
|
62
|
-
def run_name(self, value: Optional[pulumi.Input[str]]):
|
|
63
|
-
pulumi.set(self, "run_name", value)
|
|
64
|
-
|
|
65
|
-
@property
|
|
66
|
-
@pulumi.getter(name="sourceId")
|
|
67
|
-
def source_id(self) -> Optional[pulumi.Input[str]]:
|
|
68
|
-
"""
|
|
69
|
-
Attribute Resource field representing the source task ID
|
|
70
|
-
"""
|
|
71
|
-
return pulumi.get(self, "source_id")
|
|
72
|
-
|
|
73
|
-
@source_id.setter
|
|
74
|
-
def source_id(self, value: Optional[pulumi.Input[str]]):
|
|
75
|
-
pulumi.set(self, "source_id", value)
|
|
76
|
-
|
|
77
|
-
@property
|
|
78
|
-
@pulumi.getter(name="sourceType")
|
|
79
|
-
def source_type(self) -> Optional[pulumi.Input[str]]:
|
|
80
|
-
"""
|
|
81
|
-
Resource attribute fields representing the source type
|
|
82
|
-
"""
|
|
83
|
-
return pulumi.get(self, "source_type")
|
|
84
|
-
|
|
85
|
-
@source_type.setter
|
|
86
|
-
def source_type(self, value: Optional[pulumi.Input[str]]):
|
|
87
|
-
pulumi.set(self, "source_type", value)
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
@pulumi.input_type
|
|
91
|
-
class _WorkspaceRunState:
|
|
92
|
-
def __init__(__self__, *,
|
|
93
|
-
create_time: Optional[pulumi.Input[str]] = None,
|
|
94
|
-
experiment_id: Optional[pulumi.Input[str]] = None,
|
|
95
|
-
run_name: Optional[pulumi.Input[str]] = None,
|
|
96
|
-
source_id: Optional[pulumi.Input[str]] = None,
|
|
97
|
-
source_type: Optional[pulumi.Input[str]] = None):
|
|
98
|
-
"""
|
|
99
|
-
Input properties used for looking up and filtering WorkspaceRun resources.
|
|
100
|
-
:param pulumi.Input[str] create_time: The creation time of the resource
|
|
101
|
-
:param pulumi.Input[str] experiment_id: Resource attribute field of the experiment ID to which Run belongs
|
|
102
|
-
:param pulumi.Input[str] run_name: The name of the resource
|
|
103
|
-
:param pulumi.Input[str] source_id: Attribute Resource field representing the source task ID
|
|
104
|
-
:param pulumi.Input[str] source_type: Resource attribute fields representing the source type
|
|
105
|
-
"""
|
|
106
|
-
if create_time is not None:
|
|
107
|
-
pulumi.set(__self__, "create_time", create_time)
|
|
108
|
-
if experiment_id is not None:
|
|
109
|
-
pulumi.set(__self__, "experiment_id", experiment_id)
|
|
110
|
-
if run_name is not None:
|
|
111
|
-
pulumi.set(__self__, "run_name", run_name)
|
|
112
|
-
if source_id is not None:
|
|
113
|
-
pulumi.set(__self__, "source_id", source_id)
|
|
114
|
-
if source_type is not None:
|
|
115
|
-
pulumi.set(__self__, "source_type", source_type)
|
|
116
|
-
|
|
117
|
-
@property
|
|
118
|
-
@pulumi.getter(name="createTime")
|
|
119
|
-
def create_time(self) -> Optional[pulumi.Input[str]]:
|
|
120
|
-
"""
|
|
121
|
-
The creation time of the resource
|
|
122
|
-
"""
|
|
123
|
-
return pulumi.get(self, "create_time")
|
|
124
|
-
|
|
125
|
-
@create_time.setter
|
|
126
|
-
def create_time(self, value: Optional[pulumi.Input[str]]):
|
|
127
|
-
pulumi.set(self, "create_time", value)
|
|
128
|
-
|
|
129
|
-
@property
|
|
130
|
-
@pulumi.getter(name="experimentId")
|
|
131
|
-
def experiment_id(self) -> Optional[pulumi.Input[str]]:
|
|
132
|
-
"""
|
|
133
|
-
Resource attribute field of the experiment ID to which Run belongs
|
|
134
|
-
"""
|
|
135
|
-
return pulumi.get(self, "experiment_id")
|
|
136
|
-
|
|
137
|
-
@experiment_id.setter
|
|
138
|
-
def experiment_id(self, value: Optional[pulumi.Input[str]]):
|
|
139
|
-
pulumi.set(self, "experiment_id", value)
|
|
140
|
-
|
|
141
|
-
@property
|
|
142
|
-
@pulumi.getter(name="runName")
|
|
143
|
-
def run_name(self) -> Optional[pulumi.Input[str]]:
|
|
144
|
-
"""
|
|
145
|
-
The name of the resource
|
|
146
|
-
"""
|
|
147
|
-
return pulumi.get(self, "run_name")
|
|
148
|
-
|
|
149
|
-
@run_name.setter
|
|
150
|
-
def run_name(self, value: Optional[pulumi.Input[str]]):
|
|
151
|
-
pulumi.set(self, "run_name", value)
|
|
152
|
-
|
|
153
|
-
@property
|
|
154
|
-
@pulumi.getter(name="sourceId")
|
|
155
|
-
def source_id(self) -> Optional[pulumi.Input[str]]:
|
|
156
|
-
"""
|
|
157
|
-
Attribute Resource field representing the source task ID
|
|
158
|
-
"""
|
|
159
|
-
return pulumi.get(self, "source_id")
|
|
160
|
-
|
|
161
|
-
@source_id.setter
|
|
162
|
-
def source_id(self, value: Optional[pulumi.Input[str]]):
|
|
163
|
-
pulumi.set(self, "source_id", value)
|
|
164
|
-
|
|
165
|
-
@property
|
|
166
|
-
@pulumi.getter(name="sourceType")
|
|
167
|
-
def source_type(self) -> Optional[pulumi.Input[str]]:
|
|
168
|
-
"""
|
|
169
|
-
Resource attribute fields representing the source type
|
|
170
|
-
"""
|
|
171
|
-
return pulumi.get(self, "source_type")
|
|
172
|
-
|
|
173
|
-
@source_type.setter
|
|
174
|
-
def source_type(self, value: Optional[pulumi.Input[str]]):
|
|
175
|
-
pulumi.set(self, "source_type", value)
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
class WorkspaceRun(pulumi.CustomResource):
|
|
179
|
-
@overload
|
|
180
|
-
def __init__(__self__,
|
|
181
|
-
resource_name: str,
|
|
182
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
|
183
|
-
experiment_id: Optional[pulumi.Input[str]] = None,
|
|
184
|
-
run_name: Optional[pulumi.Input[str]] = None,
|
|
185
|
-
source_id: Optional[pulumi.Input[str]] = None,
|
|
186
|
-
source_type: Optional[pulumi.Input[str]] = None,
|
|
187
|
-
__props__=None):
|
|
188
|
-
"""
|
|
189
|
-
Provides a PAI Workspace Run resource.
|
|
190
|
-
|
|
191
|
-
For information about PAI Workspace Run and how to use it, see [What is Run](https://www.alibabacloud.com/help/en/).
|
|
192
|
-
|
|
193
|
-
> **NOTE:** Available since v1.236.0.
|
|
194
|
-
|
|
195
|
-
## Import
|
|
196
|
-
|
|
197
|
-
PAI Workspace Run can be imported using the id, e.g.
|
|
198
|
-
|
|
199
|
-
```sh
|
|
200
|
-
$ pulumi import alicloud:pai/workspaceRun:WorkspaceRun example <id>
|
|
201
|
-
```
|
|
202
|
-
|
|
203
|
-
:param str resource_name: The name of the resource.
|
|
204
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
205
|
-
:param pulumi.Input[str] experiment_id: Resource attribute field of the experiment ID to which Run belongs
|
|
206
|
-
:param pulumi.Input[str] run_name: The name of the resource
|
|
207
|
-
:param pulumi.Input[str] source_id: Attribute Resource field representing the source task ID
|
|
208
|
-
:param pulumi.Input[str] source_type: Resource attribute fields representing the source type
|
|
209
|
-
"""
|
|
210
|
-
...
|
|
211
|
-
@overload
|
|
212
|
-
def __init__(__self__,
|
|
213
|
-
resource_name: str,
|
|
214
|
-
args: WorkspaceRunArgs,
|
|
215
|
-
opts: Optional[pulumi.ResourceOptions] = None):
|
|
216
|
-
"""
|
|
217
|
-
Provides a PAI Workspace Run resource.
|
|
218
|
-
|
|
219
|
-
For information about PAI Workspace Run and how to use it, see [What is Run](https://www.alibabacloud.com/help/en/).
|
|
220
|
-
|
|
221
|
-
> **NOTE:** Available since v1.236.0.
|
|
222
|
-
|
|
223
|
-
## Import
|
|
224
|
-
|
|
225
|
-
PAI Workspace Run can be imported using the id, e.g.
|
|
226
|
-
|
|
227
|
-
```sh
|
|
228
|
-
$ pulumi import alicloud:pai/workspaceRun:WorkspaceRun example <id>
|
|
229
|
-
```
|
|
230
|
-
|
|
231
|
-
:param str resource_name: The name of the resource.
|
|
232
|
-
:param WorkspaceRunArgs args: The arguments to use to populate this resource's properties.
|
|
233
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
234
|
-
"""
|
|
235
|
-
...
|
|
236
|
-
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
237
|
-
resource_args, opts = _utilities.get_resource_args_opts(WorkspaceRunArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
238
|
-
if resource_args is not None:
|
|
239
|
-
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
240
|
-
else:
|
|
241
|
-
__self__._internal_init(resource_name, *args, **kwargs)
|
|
242
|
-
|
|
243
|
-
def _internal_init(__self__,
|
|
244
|
-
resource_name: str,
|
|
245
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
|
246
|
-
experiment_id: Optional[pulumi.Input[str]] = None,
|
|
247
|
-
run_name: Optional[pulumi.Input[str]] = None,
|
|
248
|
-
source_id: Optional[pulumi.Input[str]] = None,
|
|
249
|
-
source_type: Optional[pulumi.Input[str]] = None,
|
|
250
|
-
__props__=None):
|
|
251
|
-
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
252
|
-
if not isinstance(opts, pulumi.ResourceOptions):
|
|
253
|
-
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
254
|
-
if opts.id is None:
|
|
255
|
-
if __props__ is not None:
|
|
256
|
-
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
257
|
-
__props__ = WorkspaceRunArgs.__new__(WorkspaceRunArgs)
|
|
258
|
-
|
|
259
|
-
if experiment_id is None and not opts.urn:
|
|
260
|
-
raise TypeError("Missing required property 'experiment_id'")
|
|
261
|
-
__props__.__dict__["experiment_id"] = experiment_id
|
|
262
|
-
__props__.__dict__["run_name"] = run_name
|
|
263
|
-
__props__.__dict__["source_id"] = source_id
|
|
264
|
-
__props__.__dict__["source_type"] = source_type
|
|
265
|
-
__props__.__dict__["create_time"] = None
|
|
266
|
-
super(WorkspaceRun, __self__).__init__(
|
|
267
|
-
'alicloud:pai/workspaceRun:WorkspaceRun',
|
|
268
|
-
resource_name,
|
|
269
|
-
__props__,
|
|
270
|
-
opts)
|
|
271
|
-
|
|
272
|
-
@staticmethod
|
|
273
|
-
def get(resource_name: str,
|
|
274
|
-
id: pulumi.Input[str],
|
|
275
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
|
276
|
-
create_time: Optional[pulumi.Input[str]] = None,
|
|
277
|
-
experiment_id: Optional[pulumi.Input[str]] = None,
|
|
278
|
-
run_name: Optional[pulumi.Input[str]] = None,
|
|
279
|
-
source_id: Optional[pulumi.Input[str]] = None,
|
|
280
|
-
source_type: Optional[pulumi.Input[str]] = None) -> 'WorkspaceRun':
|
|
281
|
-
"""
|
|
282
|
-
Get an existing WorkspaceRun resource's state with the given name, id, and optional extra
|
|
283
|
-
properties used to qualify the lookup.
|
|
284
|
-
|
|
285
|
-
:param str resource_name: The unique name of the resulting resource.
|
|
286
|
-
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
287
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
288
|
-
:param pulumi.Input[str] create_time: The creation time of the resource
|
|
289
|
-
:param pulumi.Input[str] experiment_id: Resource attribute field of the experiment ID to which Run belongs
|
|
290
|
-
:param pulumi.Input[str] run_name: The name of the resource
|
|
291
|
-
:param pulumi.Input[str] source_id: Attribute Resource field representing the source task ID
|
|
292
|
-
:param pulumi.Input[str] source_type: Resource attribute fields representing the source type
|
|
293
|
-
"""
|
|
294
|
-
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
295
|
-
|
|
296
|
-
__props__ = _WorkspaceRunState.__new__(_WorkspaceRunState)
|
|
297
|
-
|
|
298
|
-
__props__.__dict__["create_time"] = create_time
|
|
299
|
-
__props__.__dict__["experiment_id"] = experiment_id
|
|
300
|
-
__props__.__dict__["run_name"] = run_name
|
|
301
|
-
__props__.__dict__["source_id"] = source_id
|
|
302
|
-
__props__.__dict__["source_type"] = source_type
|
|
303
|
-
return WorkspaceRun(resource_name, opts=opts, __props__=__props__)
|
|
304
|
-
|
|
305
|
-
@property
|
|
306
|
-
@pulumi.getter(name="createTime")
|
|
307
|
-
def create_time(self) -> pulumi.Output[str]:
|
|
308
|
-
"""
|
|
309
|
-
The creation time of the resource
|
|
310
|
-
"""
|
|
311
|
-
return pulumi.get(self, "create_time")
|
|
312
|
-
|
|
313
|
-
@property
|
|
314
|
-
@pulumi.getter(name="experimentId")
|
|
315
|
-
def experiment_id(self) -> pulumi.Output[str]:
|
|
316
|
-
"""
|
|
317
|
-
Resource attribute field of the experiment ID to which Run belongs
|
|
318
|
-
"""
|
|
319
|
-
return pulumi.get(self, "experiment_id")
|
|
320
|
-
|
|
321
|
-
@property
|
|
322
|
-
@pulumi.getter(name="runName")
|
|
323
|
-
def run_name(self) -> pulumi.Output[Optional[str]]:
|
|
324
|
-
"""
|
|
325
|
-
The name of the resource
|
|
326
|
-
"""
|
|
327
|
-
return pulumi.get(self, "run_name")
|
|
328
|
-
|
|
329
|
-
@property
|
|
330
|
-
@pulumi.getter(name="sourceId")
|
|
331
|
-
def source_id(self) -> pulumi.Output[Optional[str]]:
|
|
332
|
-
"""
|
|
333
|
-
Attribute Resource field representing the source task ID
|
|
334
|
-
"""
|
|
335
|
-
return pulumi.get(self, "source_id")
|
|
336
|
-
|
|
337
|
-
@property
|
|
338
|
-
@pulumi.getter(name="sourceType")
|
|
339
|
-
def source_type(self) -> pulumi.Output[Optional[str]]:
|
|
340
|
-
"""
|
|
341
|
-
Resource attribute fields representing the source type
|
|
342
|
-
"""
|
|
343
|
-
return pulumi.get(self, "source_type")
|
|
344
|
-
|
|
File without changes
|
{pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/top_level.txt
RENAMED
|
File without changes
|