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.

Files changed (45) hide show
  1. pulumi_alicloud/__init__.py +0 -40
  2. pulumi_alicloud/cdn/_inputs.py +23 -3
  3. pulumi_alicloud/cdn/domain_new.py +51 -93
  4. pulumi_alicloud/cdn/outputs.py +16 -2
  5. pulumi_alicloud/cdn/real_time_log_delivery.py +46 -97
  6. pulumi_alicloud/cen/get_flowlogs.py +35 -250
  7. pulumi_alicloud/cen/outputs.py +17 -116
  8. pulumi_alicloud/cs/node_pool.py +0 -7
  9. pulumi_alicloud/ecs/_inputs.py +0 -92
  10. pulumi_alicloud/ecs/auto_snapshot_policy.py +129 -323
  11. pulumi_alicloud/ecs/outputs.py +0 -88
  12. pulumi_alicloud/ecs/snapshot_policy.py +1 -154
  13. pulumi_alicloud/emrv2/_inputs.py +21 -875
  14. pulumi_alicloud/emrv2/cluster.py +0 -47
  15. pulumi_alicloud/emrv2/outputs.py +14 -580
  16. pulumi_alicloud/gwlb/__init__.py +0 -1
  17. pulumi_alicloud/gwlb/_inputs.py +126 -147
  18. pulumi_alicloud/gwlb/listener.py +50 -50
  19. pulumi_alicloud/gwlb/load_balancer.py +71 -78
  20. pulumi_alicloud/gwlb/outputs.py +84 -139
  21. pulumi_alicloud/gwlb/server_group.py +113 -162
  22. pulumi_alicloud/kvstore/audit_log_config.py +7 -7
  23. pulumi_alicloud/kvstore/backup_policy.py +9 -9
  24. pulumi_alicloud/kvstore/get_instance_classes.py +8 -8
  25. pulumi_alicloud/kvstore/get_instances.py +7 -9
  26. pulumi_alicloud/kvstore/instance.py +21 -21
  27. pulumi_alicloud/kvstore/outputs.py +6 -6
  28. pulumi_alicloud/nas/_inputs.py +0 -148
  29. pulumi_alicloud/nas/file_system.py +222 -482
  30. pulumi_alicloud/nas/outputs.py +0 -109
  31. pulumi_alicloud/pai/__init__.py +0 -7
  32. pulumi_alicloud/pai/workspace_workspace.py +6 -6
  33. pulumi_alicloud/pulumi-plugin.json +1 -1
  34. {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/METADATA +1 -1
  35. {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/RECORD +37 -45
  36. pulumi_alicloud/gwlb/get_zones.py +0 -173
  37. pulumi_alicloud/pai/_inputs.py +0 -129
  38. pulumi_alicloud/pai/outputs.py +0 -83
  39. pulumi_alicloud/pai/workspace_code_source.py +0 -702
  40. pulumi_alicloud/pai/workspace_dataset.py +0 -1081
  41. pulumi_alicloud/pai/workspace_datasetversion.py +0 -818
  42. pulumi_alicloud/pai/workspace_experiment.py +0 -394
  43. pulumi_alicloud/pai/workspace_run.py +0 -344
  44. {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/WHEEL +0 -0
  45. {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/top_level.txt +0 -0
@@ -1,129 +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__ = [
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
-
@@ -1,83 +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__ = [
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
-