pulumi-alicloud 3.68.0a1732771126__py3-none-any.whl → 3.69.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.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +96 -0
- pulumi_alicloud/adb/db_cluster.py +7 -0
- pulumi_alicloud/arms/__init__.py +2 -0
- pulumi_alicloud/arms/_inputs.py +42 -4
- pulumi_alicloud/arms/alert_robot.py +421 -0
- pulumi_alicloud/arms/dispatch_rule.py +4 -0
- pulumi_alicloud/arms/get_alert_robots.py +230 -0
- pulumi_alicloud/arms/get_dispatch_rules.py +99 -6
- pulumi_alicloud/arms/outputs.py +154 -13
- pulumi_alicloud/cdn/_inputs.py +3 -23
- pulumi_alicloud/cdn/domain_new.py +93 -51
- pulumi_alicloud/cdn/outputs.py +2 -16
- pulumi_alicloud/cdn/real_time_log_delivery.py +97 -46
- pulumi_alicloud/cen/get_flowlogs.py +250 -35
- pulumi_alicloud/cen/outputs.py +116 -17
- pulumi_alicloud/cfg/rule.py +4 -4
- pulumi_alicloud/cs/autoscaling_config.py +51 -0
- pulumi_alicloud/cs/node_pool.py +7 -0
- pulumi_alicloud/dataworks/__init__.py +4 -0
- pulumi_alicloud/dataworks/_inputs.py +95 -0
- pulumi_alicloud/dataworks/data_source.py +686 -0
- pulumi_alicloud/dataworks/data_source_shared_rule.py +378 -0
- pulumi_alicloud/dataworks/outputs.py +44 -0
- pulumi_alicloud/dataworks/project.py +294 -140
- pulumi_alicloud/dataworks/project_member.py +380 -0
- pulumi_alicloud/ecs/__init__.py +1 -0
- pulumi_alicloud/ecs/_inputs.py +126 -0
- pulumi_alicloud/ecs/auto_snapshot_policy.py +323 -129
- pulumi_alicloud/ecs/disk.py +156 -14
- pulumi_alicloud/ecs/ecs_disk.py +308 -97
- pulumi_alicloud/ecs/ecs_key_pair.py +77 -49
- pulumi_alicloud/ecs/image_pipeline_execution.py +245 -0
- pulumi_alicloud/ecs/instance.py +145 -0
- pulumi_alicloud/ecs/key_pair.py +27 -7
- pulumi_alicloud/ecs/outputs.py +125 -0
- pulumi_alicloud/ecs/snapshot_policy.py +154 -1
- pulumi_alicloud/emrv2/_inputs.py +875 -21
- pulumi_alicloud/emrv2/cluster.py +47 -0
- pulumi_alicloud/emrv2/outputs.py +580 -14
- pulumi_alicloud/gwlb/__init__.py +1 -0
- pulumi_alicloud/gwlb/_inputs.py +147 -126
- pulumi_alicloud/gwlb/get_zones.py +173 -0
- pulumi_alicloud/gwlb/listener.py +50 -50
- pulumi_alicloud/gwlb/load_balancer.py +78 -71
- pulumi_alicloud/gwlb/outputs.py +139 -84
- pulumi_alicloud/gwlb/server_group.py +162 -113
- 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 +9 -7
- pulumi_alicloud/kvstore/instance.py +21 -21
- pulumi_alicloud/kvstore/outputs.py +6 -6
- pulumi_alicloud/nas/_inputs.py +148 -0
- pulumi_alicloud/nas/file_system.py +482 -222
- pulumi_alicloud/nas/outputs.py +109 -0
- pulumi_alicloud/oss/__init__.py +1 -0
- pulumi_alicloud/oss/_inputs.py +1750 -0
- pulumi_alicloud/oss/bucket_website.py +416 -0
- pulumi_alicloud/oss/outputs.py +1338 -0
- pulumi_alicloud/pai/__init__.py +7 -0
- pulumi_alicloud/pai/_inputs.py +129 -0
- pulumi_alicloud/pai/outputs.py +83 -0
- pulumi_alicloud/pai/workspace_code_source.py +702 -0
- pulumi_alicloud/pai/workspace_dataset.py +1081 -0
- pulumi_alicloud/pai/workspace_datasetversion.py +818 -0
- pulumi_alicloud/pai/workspace_experiment.py +394 -0
- pulumi_alicloud/pai/workspace_run.py +344 -0
- pulumi_alicloud/pai/workspace_workspace.py +6 -6
- pulumi_alicloud/polardb/cluster.py +7 -7
- pulumi_alicloud/polardb/get_clusters.py +1 -1
- pulumi_alicloud/polardb/outputs.py +2 -2
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/redis/tair_instance.py +63 -30
- pulumi_alicloud/sae/application.py +1 -1
- pulumi_alicloud/slb/attachment.py +2 -6
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/_inputs.py +484 -0
- pulumi_alicloud/sls/oss_export_sink.py +428 -0
- pulumi_alicloud/sls/outputs.py +346 -0
- pulumi_alicloud/vpc/network.py +7 -7
- {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.69.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.69.0.dist-info}/RECORD +84 -67
- {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.69.0.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.69.0.dist-info}/top_level.txt +0 -0
pulumi_alicloud/pai/__init__.py
CHANGED
|
@@ -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
|
+
|