pulumi-alicloud 3.65.1a1731504533__py3-none-any.whl → 3.66.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 +94 -0
- pulumi_alicloud/alikafka/instance.py +112 -0
- pulumi_alicloud/cloudsso/_inputs.py +9 -9
- pulumi_alicloud/cloudsso/access_configuration.py +100 -34
- pulumi_alicloud/cloudsso/outputs.py +6 -6
- pulumi_alicloud/esa/__init__.py +9 -0
- pulumi_alicloud/esa/rate_plan_instance.py +626 -0
- pulumi_alicloud/esa/site.py +533 -0
- pulumi_alicloud/fc/_inputs.py +243 -135
- pulumi_alicloud/fc/outputs.py +173 -90
- pulumi_alicloud/fc/v3_alias.py +28 -0
- pulumi_alicloud/fc/v3_async_invoke_config.py +56 -0
- pulumi_alicloud/fc/v3_concurrency_config.py +28 -0
- pulumi_alicloud/fc/v3_custom_domain.py +118 -6
- pulumi_alicloud/fc/v3_function.py +308 -0
- pulumi_alicloud/fc/v3_function_version.py +30 -2
- pulumi_alicloud/fc/v3_layer_version.py +104 -1
- pulumi_alicloud/fc/v3_provision_config.py +86 -2
- pulumi_alicloud/fc/v3_trigger.py +114 -0
- pulumi_alicloud/gwlb/__init__.py +12 -0
- pulumi_alicloud/gwlb/_inputs.py +673 -0
- pulumi_alicloud/gwlb/listener.py +434 -0
- pulumi_alicloud/gwlb/load_balancer.py +537 -0
- pulumi_alicloud/gwlb/outputs.py +533 -0
- pulumi_alicloud/gwlb/server_group.py +780 -0
- pulumi_alicloud/oss/__init__.py +2 -0
- pulumi_alicloud/oss/_inputs.py +194 -0
- pulumi_alicloud/oss/bucket_cname.py +509 -0
- pulumi_alicloud/oss/bucket_cname_token.py +239 -0
- pulumi_alicloud/oss/outputs.py +141 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/quotas/_inputs.py +6 -6
- pulumi_alicloud/quotas/outputs.py +4 -4
- pulumi_alicloud/quotas/quota_application.py +21 -28
- pulumi_alicloud/redis/tair_instance.py +21 -77
- pulumi_alicloud/vpc/__init__.py +4 -0
- pulumi_alicloud/vpc/ipam_ipam.py +531 -0
- pulumi_alicloud/vpc/ipam_ipam_pool.py +850 -0
- pulumi_alicloud/vpc/ipam_ipam_pool_cidr.py +313 -0
- pulumi_alicloud/vpc/ipam_ipam_scope.py +537 -0
- {pulumi_alicloud-3.65.1a1731504533.dist-info → pulumi_alicloud-3.66.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.65.1a1731504533.dist-info → pulumi_alicloud-3.66.0.dist-info}/RECORD +44 -29
- {pulumi_alicloud-3.65.1a1731504533.dist-info → pulumi_alicloud-3.66.0.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.65.1a1731504533.dist-info → pulumi_alicloud-3.66.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,239 @@
|
|
|
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__ = ['BucketCnameTokenArgs', 'BucketCnameToken']
|
|
18
|
+
|
|
19
|
+
@pulumi.input_type
|
|
20
|
+
class BucketCnameTokenArgs:
|
|
21
|
+
def __init__(__self__, *,
|
|
22
|
+
bucket: pulumi.Input[str],
|
|
23
|
+
domain: pulumi.Input[str]):
|
|
24
|
+
"""
|
|
25
|
+
The set of arguments for constructing a BucketCnameToken resource.
|
|
26
|
+
:param pulumi.Input[str] bucket: The name of the bucket
|
|
27
|
+
:param pulumi.Input[str] domain: The custom domain
|
|
28
|
+
"""
|
|
29
|
+
pulumi.set(__self__, "bucket", bucket)
|
|
30
|
+
pulumi.set(__self__, "domain", domain)
|
|
31
|
+
|
|
32
|
+
@property
|
|
33
|
+
@pulumi.getter
|
|
34
|
+
def bucket(self) -> pulumi.Input[str]:
|
|
35
|
+
"""
|
|
36
|
+
The name of the bucket
|
|
37
|
+
"""
|
|
38
|
+
return pulumi.get(self, "bucket")
|
|
39
|
+
|
|
40
|
+
@bucket.setter
|
|
41
|
+
def bucket(self, value: pulumi.Input[str]):
|
|
42
|
+
pulumi.set(self, "bucket", value)
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
@pulumi.getter
|
|
46
|
+
def domain(self) -> pulumi.Input[str]:
|
|
47
|
+
"""
|
|
48
|
+
The custom domain
|
|
49
|
+
"""
|
|
50
|
+
return pulumi.get(self, "domain")
|
|
51
|
+
|
|
52
|
+
@domain.setter
|
|
53
|
+
def domain(self, value: pulumi.Input[str]):
|
|
54
|
+
pulumi.set(self, "domain", value)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
@pulumi.input_type
|
|
58
|
+
class _BucketCnameTokenState:
|
|
59
|
+
def __init__(__self__, *,
|
|
60
|
+
bucket: Optional[pulumi.Input[str]] = None,
|
|
61
|
+
domain: Optional[pulumi.Input[str]] = None,
|
|
62
|
+
token: Optional[pulumi.Input[str]] = None):
|
|
63
|
+
"""
|
|
64
|
+
Input properties used for looking up and filtering BucketCnameToken resources.
|
|
65
|
+
:param pulumi.Input[str] bucket: The name of the bucket
|
|
66
|
+
:param pulumi.Input[str] domain: The custom domain
|
|
67
|
+
:param pulumi.Input[str] token: Token used to verify domain ownership
|
|
68
|
+
"""
|
|
69
|
+
if bucket is not None:
|
|
70
|
+
pulumi.set(__self__, "bucket", bucket)
|
|
71
|
+
if domain is not None:
|
|
72
|
+
pulumi.set(__self__, "domain", domain)
|
|
73
|
+
if token is not None:
|
|
74
|
+
pulumi.set(__self__, "token", token)
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter
|
|
78
|
+
def bucket(self) -> Optional[pulumi.Input[str]]:
|
|
79
|
+
"""
|
|
80
|
+
The name of the bucket
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "bucket")
|
|
83
|
+
|
|
84
|
+
@bucket.setter
|
|
85
|
+
def bucket(self, value: Optional[pulumi.Input[str]]):
|
|
86
|
+
pulumi.set(self, "bucket", value)
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter
|
|
90
|
+
def domain(self) -> Optional[pulumi.Input[str]]:
|
|
91
|
+
"""
|
|
92
|
+
The custom domain
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "domain")
|
|
95
|
+
|
|
96
|
+
@domain.setter
|
|
97
|
+
def domain(self, value: Optional[pulumi.Input[str]]):
|
|
98
|
+
pulumi.set(self, "domain", value)
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
@pulumi.getter
|
|
102
|
+
def token(self) -> Optional[pulumi.Input[str]]:
|
|
103
|
+
"""
|
|
104
|
+
Token used to verify domain ownership
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "token")
|
|
107
|
+
|
|
108
|
+
@token.setter
|
|
109
|
+
def token(self, value: Optional[pulumi.Input[str]]):
|
|
110
|
+
pulumi.set(self, "token", value)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
class BucketCnameToken(pulumi.CustomResource):
|
|
114
|
+
@overload
|
|
115
|
+
def __init__(__self__,
|
|
116
|
+
resource_name: str,
|
|
117
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
118
|
+
bucket: Optional[pulumi.Input[str]] = None,
|
|
119
|
+
domain: Optional[pulumi.Input[str]] = None,
|
|
120
|
+
__props__=None):
|
|
121
|
+
"""
|
|
122
|
+
## Import
|
|
123
|
+
|
|
124
|
+
OSS Bucket Cname Token can be imported using the id, e.g.
|
|
125
|
+
|
|
126
|
+
```sh
|
|
127
|
+
$ pulumi import alicloud:oss/bucketCnameToken:BucketCnameToken example <bucket>:<domain>
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
:param str resource_name: The name of the resource.
|
|
131
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
132
|
+
:param pulumi.Input[str] bucket: The name of the bucket
|
|
133
|
+
:param pulumi.Input[str] domain: The custom domain
|
|
134
|
+
"""
|
|
135
|
+
...
|
|
136
|
+
@overload
|
|
137
|
+
def __init__(__self__,
|
|
138
|
+
resource_name: str,
|
|
139
|
+
args: BucketCnameTokenArgs,
|
|
140
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
141
|
+
"""
|
|
142
|
+
## Import
|
|
143
|
+
|
|
144
|
+
OSS Bucket Cname Token can be imported using the id, e.g.
|
|
145
|
+
|
|
146
|
+
```sh
|
|
147
|
+
$ pulumi import alicloud:oss/bucketCnameToken:BucketCnameToken example <bucket>:<domain>
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
:param str resource_name: The name of the resource.
|
|
151
|
+
:param BucketCnameTokenArgs args: The arguments to use to populate this resource's properties.
|
|
152
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
153
|
+
"""
|
|
154
|
+
...
|
|
155
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
156
|
+
resource_args, opts = _utilities.get_resource_args_opts(BucketCnameTokenArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
157
|
+
if resource_args is not None:
|
|
158
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
159
|
+
else:
|
|
160
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
161
|
+
|
|
162
|
+
def _internal_init(__self__,
|
|
163
|
+
resource_name: str,
|
|
164
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
165
|
+
bucket: Optional[pulumi.Input[str]] = None,
|
|
166
|
+
domain: Optional[pulumi.Input[str]] = None,
|
|
167
|
+
__props__=None):
|
|
168
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
169
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
170
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
171
|
+
if opts.id is None:
|
|
172
|
+
if __props__ is not None:
|
|
173
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
174
|
+
__props__ = BucketCnameTokenArgs.__new__(BucketCnameTokenArgs)
|
|
175
|
+
|
|
176
|
+
if bucket is None and not opts.urn:
|
|
177
|
+
raise TypeError("Missing required property 'bucket'")
|
|
178
|
+
__props__.__dict__["bucket"] = bucket
|
|
179
|
+
if domain is None and not opts.urn:
|
|
180
|
+
raise TypeError("Missing required property 'domain'")
|
|
181
|
+
__props__.__dict__["domain"] = domain
|
|
182
|
+
__props__.__dict__["token"] = None
|
|
183
|
+
super(BucketCnameToken, __self__).__init__(
|
|
184
|
+
'alicloud:oss/bucketCnameToken:BucketCnameToken',
|
|
185
|
+
resource_name,
|
|
186
|
+
__props__,
|
|
187
|
+
opts)
|
|
188
|
+
|
|
189
|
+
@staticmethod
|
|
190
|
+
def get(resource_name: str,
|
|
191
|
+
id: pulumi.Input[str],
|
|
192
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
193
|
+
bucket: Optional[pulumi.Input[str]] = None,
|
|
194
|
+
domain: Optional[pulumi.Input[str]] = None,
|
|
195
|
+
token: Optional[pulumi.Input[str]] = None) -> 'BucketCnameToken':
|
|
196
|
+
"""
|
|
197
|
+
Get an existing BucketCnameToken resource's state with the given name, id, and optional extra
|
|
198
|
+
properties used to qualify the lookup.
|
|
199
|
+
|
|
200
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
201
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
202
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
203
|
+
:param pulumi.Input[str] bucket: The name of the bucket
|
|
204
|
+
:param pulumi.Input[str] domain: The custom domain
|
|
205
|
+
:param pulumi.Input[str] token: Token used to verify domain ownership
|
|
206
|
+
"""
|
|
207
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
208
|
+
|
|
209
|
+
__props__ = _BucketCnameTokenState.__new__(_BucketCnameTokenState)
|
|
210
|
+
|
|
211
|
+
__props__.__dict__["bucket"] = bucket
|
|
212
|
+
__props__.__dict__["domain"] = domain
|
|
213
|
+
__props__.__dict__["token"] = token
|
|
214
|
+
return BucketCnameToken(resource_name, opts=opts, __props__=__props__)
|
|
215
|
+
|
|
216
|
+
@property
|
|
217
|
+
@pulumi.getter
|
|
218
|
+
def bucket(self) -> pulumi.Output[str]:
|
|
219
|
+
"""
|
|
220
|
+
The name of the bucket
|
|
221
|
+
"""
|
|
222
|
+
return pulumi.get(self, "bucket")
|
|
223
|
+
|
|
224
|
+
@property
|
|
225
|
+
@pulumi.getter
|
|
226
|
+
def domain(self) -> pulumi.Output[str]:
|
|
227
|
+
"""
|
|
228
|
+
The custom domain
|
|
229
|
+
"""
|
|
230
|
+
return pulumi.get(self, "domain")
|
|
231
|
+
|
|
232
|
+
@property
|
|
233
|
+
@pulumi.getter
|
|
234
|
+
def token(self) -> pulumi.Output[str]:
|
|
235
|
+
"""
|
|
236
|
+
Token used to verify domain ownership
|
|
237
|
+
"""
|
|
238
|
+
return pulumi.get(self, "token")
|
|
239
|
+
|
pulumi_alicloud/oss/outputs.py
CHANGED
|
@@ -17,6 +17,7 @@ from . import outputs
|
|
|
17
17
|
|
|
18
18
|
__all__ = [
|
|
19
19
|
'BucketAccessMonitor',
|
|
20
|
+
'BucketCnameCertificate',
|
|
20
21
|
'BucketCorsCorsRule',
|
|
21
22
|
'BucketCorsRule',
|
|
22
23
|
'BucketLifecycleRule',
|
|
@@ -76,6 +77,146 @@ class BucketAccessMonitor(dict):
|
|
|
76
77
|
return pulumi.get(self, "status")
|
|
77
78
|
|
|
78
79
|
|
|
80
|
+
@pulumi.output_type
|
|
81
|
+
class BucketCnameCertificate(dict):
|
|
82
|
+
@staticmethod
|
|
83
|
+
def __key_warning(key: str):
|
|
84
|
+
suggest = None
|
|
85
|
+
if key == "certId":
|
|
86
|
+
suggest = "cert_id"
|
|
87
|
+
elif key == "creationDate":
|
|
88
|
+
suggest = "creation_date"
|
|
89
|
+
elif key == "privateKey":
|
|
90
|
+
suggest = "private_key"
|
|
91
|
+
elif key == "validEndDate":
|
|
92
|
+
suggest = "valid_end_date"
|
|
93
|
+
elif key == "validStartDate":
|
|
94
|
+
suggest = "valid_start_date"
|
|
95
|
+
|
|
96
|
+
if suggest:
|
|
97
|
+
pulumi.log.warn(f"Key '{key}' not found in BucketCnameCertificate. Access the value via the '{suggest}' property getter instead.")
|
|
98
|
+
|
|
99
|
+
def __getitem__(self, key: str) -> Any:
|
|
100
|
+
BucketCnameCertificate.__key_warning(key)
|
|
101
|
+
return super().__getitem__(key)
|
|
102
|
+
|
|
103
|
+
def get(self, key: str, default = None) -> Any:
|
|
104
|
+
BucketCnameCertificate.__key_warning(key)
|
|
105
|
+
return super().get(key, default)
|
|
106
|
+
|
|
107
|
+
def __init__(__self__, *,
|
|
108
|
+
cert_id: Optional[str] = None,
|
|
109
|
+
certificate: Optional[str] = None,
|
|
110
|
+
creation_date: Optional[str] = None,
|
|
111
|
+
fingerprint: Optional[str] = None,
|
|
112
|
+
private_key: Optional[str] = None,
|
|
113
|
+
status: Optional[str] = None,
|
|
114
|
+
type: Optional[str] = None,
|
|
115
|
+
valid_end_date: Optional[str] = None,
|
|
116
|
+
valid_start_date: Optional[str] = None):
|
|
117
|
+
"""
|
|
118
|
+
:param str cert_id: Certificate Identifier
|
|
119
|
+
:param str certificate: The certificate public key.
|
|
120
|
+
:param str creation_date: Certificate creation time
|
|
121
|
+
:param str fingerprint: Certificate Fingerprint
|
|
122
|
+
:param str private_key: The certificate private key.
|
|
123
|
+
:param str status: Cname status
|
|
124
|
+
:param str type: Certificate Type
|
|
125
|
+
:param str valid_end_date: Certificate validity period end time
|
|
126
|
+
:param str valid_start_date: Certificate validity period start time
|
|
127
|
+
"""
|
|
128
|
+
if cert_id is not None:
|
|
129
|
+
pulumi.set(__self__, "cert_id", cert_id)
|
|
130
|
+
if certificate is not None:
|
|
131
|
+
pulumi.set(__self__, "certificate", certificate)
|
|
132
|
+
if creation_date is not None:
|
|
133
|
+
pulumi.set(__self__, "creation_date", creation_date)
|
|
134
|
+
if fingerprint is not None:
|
|
135
|
+
pulumi.set(__self__, "fingerprint", fingerprint)
|
|
136
|
+
if private_key is not None:
|
|
137
|
+
pulumi.set(__self__, "private_key", private_key)
|
|
138
|
+
if status is not None:
|
|
139
|
+
pulumi.set(__self__, "status", status)
|
|
140
|
+
if type is not None:
|
|
141
|
+
pulumi.set(__self__, "type", type)
|
|
142
|
+
if valid_end_date is not None:
|
|
143
|
+
pulumi.set(__self__, "valid_end_date", valid_end_date)
|
|
144
|
+
if valid_start_date is not None:
|
|
145
|
+
pulumi.set(__self__, "valid_start_date", valid_start_date)
|
|
146
|
+
|
|
147
|
+
@property
|
|
148
|
+
@pulumi.getter(name="certId")
|
|
149
|
+
def cert_id(self) -> Optional[str]:
|
|
150
|
+
"""
|
|
151
|
+
Certificate Identifier
|
|
152
|
+
"""
|
|
153
|
+
return pulumi.get(self, "cert_id")
|
|
154
|
+
|
|
155
|
+
@property
|
|
156
|
+
@pulumi.getter
|
|
157
|
+
def certificate(self) -> Optional[str]:
|
|
158
|
+
"""
|
|
159
|
+
The certificate public key.
|
|
160
|
+
"""
|
|
161
|
+
return pulumi.get(self, "certificate")
|
|
162
|
+
|
|
163
|
+
@property
|
|
164
|
+
@pulumi.getter(name="creationDate")
|
|
165
|
+
def creation_date(self) -> Optional[str]:
|
|
166
|
+
"""
|
|
167
|
+
Certificate creation time
|
|
168
|
+
"""
|
|
169
|
+
return pulumi.get(self, "creation_date")
|
|
170
|
+
|
|
171
|
+
@property
|
|
172
|
+
@pulumi.getter
|
|
173
|
+
def fingerprint(self) -> Optional[str]:
|
|
174
|
+
"""
|
|
175
|
+
Certificate Fingerprint
|
|
176
|
+
"""
|
|
177
|
+
return pulumi.get(self, "fingerprint")
|
|
178
|
+
|
|
179
|
+
@property
|
|
180
|
+
@pulumi.getter(name="privateKey")
|
|
181
|
+
def private_key(self) -> Optional[str]:
|
|
182
|
+
"""
|
|
183
|
+
The certificate private key.
|
|
184
|
+
"""
|
|
185
|
+
return pulumi.get(self, "private_key")
|
|
186
|
+
|
|
187
|
+
@property
|
|
188
|
+
@pulumi.getter
|
|
189
|
+
def status(self) -> Optional[str]:
|
|
190
|
+
"""
|
|
191
|
+
Cname status
|
|
192
|
+
"""
|
|
193
|
+
return pulumi.get(self, "status")
|
|
194
|
+
|
|
195
|
+
@property
|
|
196
|
+
@pulumi.getter
|
|
197
|
+
def type(self) -> Optional[str]:
|
|
198
|
+
"""
|
|
199
|
+
Certificate Type
|
|
200
|
+
"""
|
|
201
|
+
return pulumi.get(self, "type")
|
|
202
|
+
|
|
203
|
+
@property
|
|
204
|
+
@pulumi.getter(name="validEndDate")
|
|
205
|
+
def valid_end_date(self) -> Optional[str]:
|
|
206
|
+
"""
|
|
207
|
+
Certificate validity period end time
|
|
208
|
+
"""
|
|
209
|
+
return pulumi.get(self, "valid_end_date")
|
|
210
|
+
|
|
211
|
+
@property
|
|
212
|
+
@pulumi.getter(name="validStartDate")
|
|
213
|
+
def valid_start_date(self) -> Optional[str]:
|
|
214
|
+
"""
|
|
215
|
+
Certificate validity period start time
|
|
216
|
+
"""
|
|
217
|
+
return pulumi.get(self, "valid_start_date")
|
|
218
|
+
|
|
219
|
+
|
|
79
220
|
@pulumi.output_type
|
|
80
221
|
class BucketCorsCorsRule(dict):
|
|
81
222
|
@staticmethod
|
|
@@ -133,11 +133,11 @@ if not MYPY:
|
|
|
133
133
|
class QuotaApplicationDimensionArgsDict(TypedDict):
|
|
134
134
|
key: NotRequired[pulumi.Input[str]]
|
|
135
135
|
"""
|
|
136
|
-
|
|
136
|
+
The key of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
|
|
137
137
|
"""
|
|
138
138
|
value: NotRequired[pulumi.Input[str]]
|
|
139
139
|
"""
|
|
140
|
-
|
|
140
|
+
The value of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
|
|
141
141
|
"""
|
|
142
142
|
elif False:
|
|
143
143
|
QuotaApplicationDimensionArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -148,8 +148,8 @@ class QuotaApplicationDimensionArgs:
|
|
|
148
148
|
key: Optional[pulumi.Input[str]] = None,
|
|
149
149
|
value: Optional[pulumi.Input[str]] = None):
|
|
150
150
|
"""
|
|
151
|
-
:param pulumi.Input[str] key:
|
|
152
|
-
:param pulumi.Input[str] value:
|
|
151
|
+
:param pulumi.Input[str] key: The key of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
|
|
152
|
+
:param pulumi.Input[str] value: The value of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
|
|
153
153
|
"""
|
|
154
154
|
if key is not None:
|
|
155
155
|
pulumi.set(__self__, "key", key)
|
|
@@ -160,7 +160,7 @@ class QuotaApplicationDimensionArgs:
|
|
|
160
160
|
@pulumi.getter
|
|
161
161
|
def key(self) -> Optional[pulumi.Input[str]]:
|
|
162
162
|
"""
|
|
163
|
-
|
|
163
|
+
The key of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
|
|
164
164
|
"""
|
|
165
165
|
return pulumi.get(self, "key")
|
|
166
166
|
|
|
@@ -172,7 +172,7 @@ class QuotaApplicationDimensionArgs:
|
|
|
172
172
|
@pulumi.getter
|
|
173
173
|
def value(self) -> Optional[pulumi.Input[str]]:
|
|
174
174
|
"""
|
|
175
|
-
|
|
175
|
+
The value of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
|
|
176
176
|
"""
|
|
177
177
|
return pulumi.get(self, "value")
|
|
178
178
|
|
|
@@ -97,8 +97,8 @@ class QuotaApplicationDimension(dict):
|
|
|
97
97
|
key: Optional[str] = None,
|
|
98
98
|
value: Optional[str] = None):
|
|
99
99
|
"""
|
|
100
|
-
:param str key:
|
|
101
|
-
:param str value:
|
|
100
|
+
:param str key: The key of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
|
|
101
|
+
:param str value: The value of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
|
|
102
102
|
"""
|
|
103
103
|
if key is not None:
|
|
104
104
|
pulumi.set(__self__, "key", key)
|
|
@@ -109,7 +109,7 @@ class QuotaApplicationDimension(dict):
|
|
|
109
109
|
@pulumi.getter
|
|
110
110
|
def key(self) -> Optional[str]:
|
|
111
111
|
"""
|
|
112
|
-
|
|
112
|
+
The key of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
|
|
113
113
|
"""
|
|
114
114
|
return pulumi.get(self, "key")
|
|
115
115
|
|
|
@@ -117,7 +117,7 @@ class QuotaApplicationDimension(dict):
|
|
|
117
117
|
@pulumi.getter
|
|
118
118
|
def value(self) -> Optional[str]:
|
|
119
119
|
"""
|
|
120
|
-
|
|
120
|
+
The value of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
|
|
121
121
|
"""
|
|
122
122
|
return pulumi.get(self, "value")
|
|
123
123
|
|
|
@@ -38,10 +38,9 @@ class QuotaApplicationArgs:
|
|
|
38
38
|
:param pulumi.Input[str] product_code: The product code.
|
|
39
39
|
:param pulumi.Input[str] quota_action_code: The ID of quota action.
|
|
40
40
|
:param pulumi.Input[str] reason: The reason of the quota application.
|
|
41
|
-
:param pulumi.Input[str] audit_mode:
|
|
42
|
-
- Sync:
|
|
43
|
-
- Async:
|
|
44
|
-
> **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
|
|
41
|
+
:param pulumi.Input[str] audit_mode: This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
|
|
42
|
+
- Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
|
|
43
|
+
- Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
|
|
45
44
|
:param pulumi.Input[Sequence[pulumi.Input['QuotaApplicationDimensionArgs']]] dimensions: QuotaDimensions. See `dimensions` below.
|
|
46
45
|
:param pulumi.Input[str] effective_time: The effective time of the quota application.
|
|
47
46
|
:param pulumi.Input[str] env_language: The language of the quota alert notification. Value:
|
|
@@ -125,10 +124,9 @@ class QuotaApplicationArgs:
|
|
|
125
124
|
@pulumi.getter(name="auditMode")
|
|
126
125
|
def audit_mode(self) -> Optional[pulumi.Input[str]]:
|
|
127
126
|
"""
|
|
128
|
-
|
|
129
|
-
- Sync:
|
|
130
|
-
- Async:
|
|
131
|
-
> **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
|
|
127
|
+
This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
|
|
128
|
+
- Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
|
|
129
|
+
- Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
|
|
132
130
|
"""
|
|
133
131
|
return pulumi.get(self, "audit_mode")
|
|
134
132
|
|
|
@@ -238,10 +236,9 @@ class _QuotaApplicationState:
|
|
|
238
236
|
"""
|
|
239
237
|
Input properties used for looking up and filtering QuotaApplication resources.
|
|
240
238
|
:param pulumi.Input[str] approve_value: The approve value of the quota application.
|
|
241
|
-
:param pulumi.Input[str] audit_mode:
|
|
242
|
-
- Sync:
|
|
243
|
-
- Async:
|
|
244
|
-
> **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
|
|
239
|
+
:param pulumi.Input[str] audit_mode: This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
|
|
240
|
+
- Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
|
|
241
|
+
- Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
|
|
245
242
|
:param pulumi.Input[str] audit_reason: The audit reason.
|
|
246
243
|
:param pulumi.Input[str] create_time: Resource attribute field representing creation time.
|
|
247
244
|
:param pulumi.Input[float] desire_value: The desire value of the quota application.
|
|
@@ -321,10 +318,9 @@ class _QuotaApplicationState:
|
|
|
321
318
|
@pulumi.getter(name="auditMode")
|
|
322
319
|
def audit_mode(self) -> Optional[pulumi.Input[str]]:
|
|
323
320
|
"""
|
|
324
|
-
|
|
325
|
-
- Sync:
|
|
326
|
-
- Async:
|
|
327
|
-
> **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
|
|
321
|
+
This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
|
|
322
|
+
- Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
|
|
323
|
+
- Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
|
|
328
324
|
"""
|
|
329
325
|
return pulumi.get(self, "audit_mode")
|
|
330
326
|
|
|
@@ -562,10 +558,9 @@ class QuotaApplication(pulumi.CustomResource):
|
|
|
562
558
|
|
|
563
559
|
:param str resource_name: The name of the resource.
|
|
564
560
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
565
|
-
:param pulumi.Input[str] audit_mode:
|
|
566
|
-
- Sync:
|
|
567
|
-
- Async:
|
|
568
|
-
> **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
|
|
561
|
+
:param pulumi.Input[str] audit_mode: This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
|
|
562
|
+
- Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
|
|
563
|
+
- Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
|
|
569
564
|
:param pulumi.Input[float] desire_value: The desire value of the quota application.
|
|
570
565
|
:param pulumi.Input[Sequence[pulumi.Input[Union['QuotaApplicationDimensionArgs', 'QuotaApplicationDimensionArgsDict']]]] dimensions: QuotaDimensions. See `dimensions` below.
|
|
571
566
|
:param pulumi.Input[str] effective_time: The effective time of the quota application.
|
|
@@ -694,10 +689,9 @@ class QuotaApplication(pulumi.CustomResource):
|
|
|
694
689
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
695
690
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
696
691
|
:param pulumi.Input[str] approve_value: The approve value of the quota application.
|
|
697
|
-
:param pulumi.Input[str] audit_mode:
|
|
698
|
-
- Sync:
|
|
699
|
-
- Async:
|
|
700
|
-
> **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
|
|
692
|
+
:param pulumi.Input[str] audit_mode: This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
|
|
693
|
+
- Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
|
|
694
|
+
- Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
|
|
701
695
|
:param pulumi.Input[str] audit_reason: The audit reason.
|
|
702
696
|
:param pulumi.Input[str] create_time: Resource attribute field representing creation time.
|
|
703
697
|
:param pulumi.Input[float] desire_value: The desire value of the quota application.
|
|
@@ -760,10 +754,9 @@ class QuotaApplication(pulumi.CustomResource):
|
|
|
760
754
|
@pulumi.getter(name="auditMode")
|
|
761
755
|
def audit_mode(self) -> pulumi.Output[str]:
|
|
762
756
|
"""
|
|
763
|
-
|
|
764
|
-
- Sync:
|
|
765
|
-
- Async:
|
|
766
|
-
> **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
|
|
757
|
+
This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
|
|
758
|
+
- Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
|
|
759
|
+
- Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
|
|
767
760
|
"""
|
|
768
761
|
return pulumi.get(self, "audit_mode")
|
|
769
762
|
|