pulumi-alicloud 3.73.0a1736850863__py3-none-any.whl → 3.73.0a1736949061__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 +59 -0
- pulumi_alicloud/alb/__init__.py +1 -0
- pulumi_alicloud/alb/_inputs.py +6 -6
- pulumi_alicloud/alb/a_script.py +116 -98
- pulumi_alicloud/alb/load_balancer_access_log_config_attachment.py +303 -0
- pulumi_alicloud/alb/outputs.py +4 -4
- pulumi_alicloud/alikafka/instance.py +188 -70
- pulumi_alicloud/amqp/instance.py +77 -28
- pulumi_alicloud/bastionhost/_inputs.py +40 -38
- pulumi_alicloud/bastionhost/get_instances.py +6 -22
- pulumi_alicloud/bastionhost/outputs.py +60 -49
- pulumi_alicloud/cen/instance_grant.py +4 -0
- pulumi_alicloud/cloudcontrol/__init__.py +12 -0
- pulumi_alicloud/cloudcontrol/get_prices.py +199 -0
- pulumi_alicloud/cloudcontrol/get_products.py +187 -0
- pulumi_alicloud/cloudcontrol/get_resource_types.py +178 -0
- pulumi_alicloud/cloudcontrol/outputs.py +688 -0
- pulumi_alicloud/cloudcontrol/resource.py +407 -0
- pulumi_alicloud/cms/_inputs.py +21 -15
- pulumi_alicloud/cms/alarm.py +7 -7
- pulumi_alicloud/cms/outputs.py +14 -10
- pulumi_alicloud/cs/get_edge_kubernetes_clusters.py +4 -2
- pulumi_alicloud/cs/get_managed_kubernetes_clusters.py +2 -0
- pulumi_alicloud/cs/kubernetes.py +14 -14
- pulumi_alicloud/cs/managed_kubernetes.py +137 -47
- pulumi_alicloud/dataworks/__init__.py +4 -0
- pulumi_alicloud/dataworks/_inputs.py +1534 -0
- pulumi_alicloud/dataworks/di_alarm_rule.py +708 -0
- pulumi_alicloud/dataworks/di_job.py +1005 -0
- pulumi_alicloud/dataworks/dw_resource_group.py +703 -0
- pulumi_alicloud/dataworks/network.py +331 -0
- pulumi_alicloud/dataworks/outputs.py +1247 -0
- pulumi_alicloud/dcdn/waf_rule.py +14 -14
- pulumi_alicloud/dns/get_alidns_domains.py +7 -2
- pulumi_alicloud/dns/outputs.py +8 -0
- pulumi_alicloud/ecs/ecs_launch_template.py +122 -0
- pulumi_alicloud/ecs/ecs_network_interface.py +14 -14
- pulumi_alicloud/ecs/ecs_session_manager_status.py +18 -18
- pulumi_alicloud/ecs/instance.py +7 -7
- pulumi_alicloud/ecs/launch_template.py +88 -0
- pulumi_alicloud/fc/custom_domain.py +2 -2
- pulumi_alicloud/fc/function.py +32 -4
- pulumi_alicloud/fc/v2_function.py +20 -0
- pulumi_alicloud/hbr/__init__.py +1 -0
- pulumi_alicloud/hbr/cross_account.py +338 -0
- pulumi_alicloud/ims/oidc_provider.py +28 -0
- pulumi_alicloud/log/resource_record.py +42 -26
- pulumi_alicloud/message/service_queue.py +106 -59
- pulumi_alicloud/message/service_topic.py +182 -37
- pulumi_alicloud/mongodb/account.py +138 -163
- pulumi_alicloud/oos/secret_parameter.py +84 -9
- pulumi_alicloud/oss/bucket.py +1 -1
- pulumi_alicloud/oss/bucket_policy.py +2 -4
- pulumi_alicloud/oss/bucket_referer.py +2 -4
- pulumi_alicloud/oss/get_buckets.py +16 -2
- pulumi_alicloud/oss/outputs.py +18 -17
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/sae/application.py +84 -7
- pulumi_alicloud/sls/collection_policy.py +2 -2
- pulumi_alicloud/vpc/__init__.py +5 -0
- pulumi_alicloud/vpc/get_ipam_ipam_pool_allocations.py +295 -0
- pulumi_alicloud/vpc/get_ipam_ipam_pool_cidrs.py +196 -0
- pulumi_alicloud/vpc/get_ipam_ipam_pools.py +353 -0
- pulumi_alicloud/vpc/get_ipam_ipam_scopes.py +333 -0
- pulumi_alicloud/vpc/get_ipam_ipams.py +291 -0
- pulumi_alicloud/vpc/get_networks.py +3 -0
- pulumi_alicloud/vpc/nat_gateway.py +145 -7
- pulumi_alicloud/vpc/outputs.py +777 -0
- pulumi_alicloud/vpc/snat_entry.py +107 -48
- pulumi_alicloud/vpn/_inputs.py +96 -72
- pulumi_alicloud/vpn/connection.py +24 -28
- pulumi_alicloud/vpn/outputs.py +64 -48
- pulumi_alicloud/yundun/_inputs.py +26 -24
- pulumi_alicloud/yundun/outputs.py +37 -22
- {pulumi_alicloud-3.73.0a1736850863.dist-info → pulumi_alicloud-3.73.0a1736949061.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.73.0a1736850863.dist-info → pulumi_alicloud-3.73.0a1736949061.dist-info}/RECORD +78 -61
- {pulumi_alicloud-3.73.0a1736850863.dist-info → pulumi_alicloud-3.73.0a1736949061.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.73.0a1736850863.dist-info → pulumi_alicloud-3.73.0a1736949061.dist-info}/top_level.txt +0 -0
|
@@ -23,6 +23,7 @@ class SecretParameterArgs:
|
|
|
23
23
|
value: pulumi.Input[str],
|
|
24
24
|
constraints: Optional[pulumi.Input[str]] = None,
|
|
25
25
|
description: Optional[pulumi.Input[str]] = None,
|
|
26
|
+
dkms_instance_id: Optional[pulumi.Input[str]] = None,
|
|
26
27
|
key_id: Optional[pulumi.Input[str]] = None,
|
|
27
28
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
28
29
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
@@ -37,6 +38,7 @@ class SecretParameterArgs:
|
|
|
37
38
|
* `MinLength`: The minimum length of the encryption parameter.
|
|
38
39
|
* `MaxLength`: The maximum length of the encryption parameter.
|
|
39
40
|
:param pulumi.Input[str] description: The description of the encryption parameter. The description must be `1` to `200` characters in length.
|
|
41
|
+
:param pulumi.Input[str] dkms_instance_id: The ID of the KMS instance.
|
|
40
42
|
:param pulumi.Input[str] key_id: The Customer Master Key (CMK) of Key Management Service (KMS) that is used to encrypt the parameter.
|
|
41
43
|
:param pulumi.Input[str] resource_group_id: The ID of the Resource Group.
|
|
42
44
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
|
|
@@ -48,6 +50,8 @@ class SecretParameterArgs:
|
|
|
48
50
|
pulumi.set(__self__, "constraints", constraints)
|
|
49
51
|
if description is not None:
|
|
50
52
|
pulumi.set(__self__, "description", description)
|
|
53
|
+
if dkms_instance_id is not None:
|
|
54
|
+
pulumi.set(__self__, "dkms_instance_id", dkms_instance_id)
|
|
51
55
|
if key_id is not None:
|
|
52
56
|
pulumi.set(__self__, "key_id", key_id)
|
|
53
57
|
if resource_group_id is not None:
|
|
@@ -109,6 +113,18 @@ class SecretParameterArgs:
|
|
|
109
113
|
def description(self, value: Optional[pulumi.Input[str]]):
|
|
110
114
|
pulumi.set(self, "description", value)
|
|
111
115
|
|
|
116
|
+
@property
|
|
117
|
+
@pulumi.getter(name="dkmsInstanceId")
|
|
118
|
+
def dkms_instance_id(self) -> Optional[pulumi.Input[str]]:
|
|
119
|
+
"""
|
|
120
|
+
The ID of the KMS instance.
|
|
121
|
+
"""
|
|
122
|
+
return pulumi.get(self, "dkms_instance_id")
|
|
123
|
+
|
|
124
|
+
@dkms_instance_id.setter
|
|
125
|
+
def dkms_instance_id(self, value: Optional[pulumi.Input[str]]):
|
|
126
|
+
pulumi.set(self, "dkms_instance_id", value)
|
|
127
|
+
|
|
112
128
|
@property
|
|
113
129
|
@pulumi.getter(name="keyId")
|
|
114
130
|
def key_id(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -162,7 +178,9 @@ class SecretParameterArgs:
|
|
|
162
178
|
class _SecretParameterState:
|
|
163
179
|
def __init__(__self__, *,
|
|
164
180
|
constraints: Optional[pulumi.Input[str]] = None,
|
|
181
|
+
create_time: Optional[pulumi.Input[str]] = None,
|
|
165
182
|
description: Optional[pulumi.Input[str]] = None,
|
|
183
|
+
dkms_instance_id: Optional[pulumi.Input[str]] = None,
|
|
166
184
|
key_id: Optional[pulumi.Input[str]] = None,
|
|
167
185
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
168
186
|
secret_parameter_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -176,7 +194,9 @@ class _SecretParameterState:
|
|
|
176
194
|
* `AllowedPattern`: The pattern that is allowed for the encryption parameter. It must be a regular expression.
|
|
177
195
|
* `MinLength`: The minimum length of the encryption parameter.
|
|
178
196
|
* `MaxLength`: The maximum length of the encryption parameter.
|
|
197
|
+
:param pulumi.Input[str] create_time: Parameter creation time
|
|
179
198
|
:param pulumi.Input[str] description: The description of the encryption parameter. The description must be `1` to `200` characters in length.
|
|
199
|
+
:param pulumi.Input[str] dkms_instance_id: The ID of the KMS instance.
|
|
180
200
|
:param pulumi.Input[str] key_id: The Customer Master Key (CMK) of Key Management Service (KMS) that is used to encrypt the parameter.
|
|
181
201
|
:param pulumi.Input[str] resource_group_id: The ID of the Resource Group.
|
|
182
202
|
:param pulumi.Input[str] secret_parameter_name: The name of the encryption parameter. The name must be `2` to `180` characters in length, and can contain letters, digits, hyphens (-), forward slashes (/) and underscores (_). It cannot start with `ALIYUN`, `ACS`, `ALIBABA`, `ALICLOUD`, or `OOS`.
|
|
@@ -186,8 +206,12 @@ class _SecretParameterState:
|
|
|
186
206
|
"""
|
|
187
207
|
if constraints is not None:
|
|
188
208
|
pulumi.set(__self__, "constraints", constraints)
|
|
209
|
+
if create_time is not None:
|
|
210
|
+
pulumi.set(__self__, "create_time", create_time)
|
|
189
211
|
if description is not None:
|
|
190
212
|
pulumi.set(__self__, "description", description)
|
|
213
|
+
if dkms_instance_id is not None:
|
|
214
|
+
pulumi.set(__self__, "dkms_instance_id", dkms_instance_id)
|
|
191
215
|
if key_id is not None:
|
|
192
216
|
pulumi.set(__self__, "key_id", key_id)
|
|
193
217
|
if resource_group_id is not None:
|
|
@@ -217,6 +241,18 @@ class _SecretParameterState:
|
|
|
217
241
|
def constraints(self, value: Optional[pulumi.Input[str]]):
|
|
218
242
|
pulumi.set(self, "constraints", value)
|
|
219
243
|
|
|
244
|
+
@property
|
|
245
|
+
@pulumi.getter(name="createTime")
|
|
246
|
+
def create_time(self) -> Optional[pulumi.Input[str]]:
|
|
247
|
+
"""
|
|
248
|
+
Parameter creation time
|
|
249
|
+
"""
|
|
250
|
+
return pulumi.get(self, "create_time")
|
|
251
|
+
|
|
252
|
+
@create_time.setter
|
|
253
|
+
def create_time(self, value: Optional[pulumi.Input[str]]):
|
|
254
|
+
pulumi.set(self, "create_time", value)
|
|
255
|
+
|
|
220
256
|
@property
|
|
221
257
|
@pulumi.getter
|
|
222
258
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -229,6 +265,18 @@ class _SecretParameterState:
|
|
|
229
265
|
def description(self, value: Optional[pulumi.Input[str]]):
|
|
230
266
|
pulumi.set(self, "description", value)
|
|
231
267
|
|
|
268
|
+
@property
|
|
269
|
+
@pulumi.getter(name="dkmsInstanceId")
|
|
270
|
+
def dkms_instance_id(self) -> Optional[pulumi.Input[str]]:
|
|
271
|
+
"""
|
|
272
|
+
The ID of the KMS instance.
|
|
273
|
+
"""
|
|
274
|
+
return pulumi.get(self, "dkms_instance_id")
|
|
275
|
+
|
|
276
|
+
@dkms_instance_id.setter
|
|
277
|
+
def dkms_instance_id(self, value: Optional[pulumi.Input[str]]):
|
|
278
|
+
pulumi.set(self, "dkms_instance_id", value)
|
|
279
|
+
|
|
232
280
|
@property
|
|
233
281
|
@pulumi.getter(name="keyId")
|
|
234
282
|
def key_id(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -309,6 +357,7 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
309
357
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
310
358
|
constraints: Optional[pulumi.Input[str]] = None,
|
|
311
359
|
description: Optional[pulumi.Input[str]] = None,
|
|
360
|
+
dkms_instance_id: Optional[pulumi.Input[str]] = None,
|
|
312
361
|
key_id: Optional[pulumi.Input[str]] = None,
|
|
313
362
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
314
363
|
secret_parameter_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -317,9 +366,9 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
317
366
|
value: Optional[pulumi.Input[str]] = None,
|
|
318
367
|
__props__=None):
|
|
319
368
|
"""
|
|
320
|
-
Provides a OOS Secret Parameter resource.
|
|
369
|
+
Provides a Operation Orchestration Service (OOS) Secret Parameter resource.
|
|
321
370
|
|
|
322
|
-
For information about OOS Secret Parameter and how to use it, see [What is Secret Parameter](https://www.alibabacloud.com/help/en/doc-detail/183418.html).
|
|
371
|
+
For information about Operation Orchestration Service (OOS) Secret Parameter and how to use it, see [What is Secret Parameter](https://www.alibabacloud.com/help/en/doc-detail/183418.html).
|
|
323
372
|
|
|
324
373
|
> **NOTE:** Available since v1.147.0+.
|
|
325
374
|
|
|
@@ -351,10 +400,10 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
351
400
|
|
|
352
401
|
## Import
|
|
353
402
|
|
|
354
|
-
OOS Secret Parameter can be imported using the id, e.g.
|
|
403
|
+
Operation Orchestration Service (OOS) Secret Parameter can be imported using the id, e.g.
|
|
355
404
|
|
|
356
405
|
```sh
|
|
357
|
-
$ pulumi import alicloud:oos/secretParameter:SecretParameter example <
|
|
406
|
+
$ pulumi import alicloud:oos/secretParameter:SecretParameter example <id>
|
|
358
407
|
```
|
|
359
408
|
|
|
360
409
|
:param str resource_name: The name of the resource.
|
|
@@ -365,6 +414,7 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
365
414
|
* `MinLength`: The minimum length of the encryption parameter.
|
|
366
415
|
* `MaxLength`: The maximum length of the encryption parameter.
|
|
367
416
|
:param pulumi.Input[str] description: The description of the encryption parameter. The description must be `1` to `200` characters in length.
|
|
417
|
+
:param pulumi.Input[str] dkms_instance_id: The ID of the KMS instance.
|
|
368
418
|
:param pulumi.Input[str] key_id: The Customer Master Key (CMK) of Key Management Service (KMS) that is used to encrypt the parameter.
|
|
369
419
|
:param pulumi.Input[str] resource_group_id: The ID of the Resource Group.
|
|
370
420
|
:param pulumi.Input[str] secret_parameter_name: The name of the encryption parameter. The name must be `2` to `180` characters in length, and can contain letters, digits, hyphens (-), forward slashes (/) and underscores (_). It cannot start with `ALIYUN`, `ACS`, `ALIBABA`, `ALICLOUD`, or `OOS`.
|
|
@@ -379,9 +429,9 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
379
429
|
args: SecretParameterArgs,
|
|
380
430
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
381
431
|
"""
|
|
382
|
-
Provides a OOS Secret Parameter resource.
|
|
432
|
+
Provides a Operation Orchestration Service (OOS) Secret Parameter resource.
|
|
383
433
|
|
|
384
|
-
For information about OOS Secret Parameter and how to use it, see [What is Secret Parameter](https://www.alibabacloud.com/help/en/doc-detail/183418.html).
|
|
434
|
+
For information about Operation Orchestration Service (OOS) Secret Parameter and how to use it, see [What is Secret Parameter](https://www.alibabacloud.com/help/en/doc-detail/183418.html).
|
|
385
435
|
|
|
386
436
|
> **NOTE:** Available since v1.147.0+.
|
|
387
437
|
|
|
@@ -413,10 +463,10 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
413
463
|
|
|
414
464
|
## Import
|
|
415
465
|
|
|
416
|
-
OOS Secret Parameter can be imported using the id, e.g.
|
|
466
|
+
Operation Orchestration Service (OOS) Secret Parameter can be imported using the id, e.g.
|
|
417
467
|
|
|
418
468
|
```sh
|
|
419
|
-
$ pulumi import alicloud:oos/secretParameter:SecretParameter example <
|
|
469
|
+
$ pulumi import alicloud:oos/secretParameter:SecretParameter example <id>
|
|
420
470
|
```
|
|
421
471
|
|
|
422
472
|
:param str resource_name: The name of the resource.
|
|
@@ -436,6 +486,7 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
436
486
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
437
487
|
constraints: Optional[pulumi.Input[str]] = None,
|
|
438
488
|
description: Optional[pulumi.Input[str]] = None,
|
|
489
|
+
dkms_instance_id: Optional[pulumi.Input[str]] = None,
|
|
439
490
|
key_id: Optional[pulumi.Input[str]] = None,
|
|
440
491
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
441
492
|
secret_parameter_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -453,6 +504,7 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
453
504
|
|
|
454
505
|
__props__.__dict__["constraints"] = constraints
|
|
455
506
|
__props__.__dict__["description"] = description
|
|
507
|
+
__props__.__dict__["dkms_instance_id"] = dkms_instance_id
|
|
456
508
|
__props__.__dict__["key_id"] = key_id
|
|
457
509
|
__props__.__dict__["resource_group_id"] = resource_group_id
|
|
458
510
|
if secret_parameter_name is None and not opts.urn:
|
|
@@ -463,6 +515,7 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
463
515
|
if value is None and not opts.urn:
|
|
464
516
|
raise TypeError("Missing required property 'value'")
|
|
465
517
|
__props__.__dict__["value"] = None if value is None else pulumi.Output.secret(value)
|
|
518
|
+
__props__.__dict__["create_time"] = None
|
|
466
519
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["value"])
|
|
467
520
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
468
521
|
super(SecretParameter, __self__).__init__(
|
|
@@ -476,7 +529,9 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
476
529
|
id: pulumi.Input[str],
|
|
477
530
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
478
531
|
constraints: Optional[pulumi.Input[str]] = None,
|
|
532
|
+
create_time: Optional[pulumi.Input[str]] = None,
|
|
479
533
|
description: Optional[pulumi.Input[str]] = None,
|
|
534
|
+
dkms_instance_id: Optional[pulumi.Input[str]] = None,
|
|
480
535
|
key_id: Optional[pulumi.Input[str]] = None,
|
|
481
536
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
482
537
|
secret_parameter_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -495,7 +550,9 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
495
550
|
* `AllowedPattern`: The pattern that is allowed for the encryption parameter. It must be a regular expression.
|
|
496
551
|
* `MinLength`: The minimum length of the encryption parameter.
|
|
497
552
|
* `MaxLength`: The maximum length of the encryption parameter.
|
|
553
|
+
:param pulumi.Input[str] create_time: Parameter creation time
|
|
498
554
|
:param pulumi.Input[str] description: The description of the encryption parameter. The description must be `1` to `200` characters in length.
|
|
555
|
+
:param pulumi.Input[str] dkms_instance_id: The ID of the KMS instance.
|
|
499
556
|
:param pulumi.Input[str] key_id: The Customer Master Key (CMK) of Key Management Service (KMS) that is used to encrypt the parameter.
|
|
500
557
|
:param pulumi.Input[str] resource_group_id: The ID of the Resource Group.
|
|
501
558
|
:param pulumi.Input[str] secret_parameter_name: The name of the encryption parameter. The name must be `2` to `180` characters in length, and can contain letters, digits, hyphens (-), forward slashes (/) and underscores (_). It cannot start with `ALIYUN`, `ACS`, `ALIBABA`, `ALICLOUD`, or `OOS`.
|
|
@@ -508,7 +565,9 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
508
565
|
__props__ = _SecretParameterState.__new__(_SecretParameterState)
|
|
509
566
|
|
|
510
567
|
__props__.__dict__["constraints"] = constraints
|
|
568
|
+
__props__.__dict__["create_time"] = create_time
|
|
511
569
|
__props__.__dict__["description"] = description
|
|
570
|
+
__props__.__dict__["dkms_instance_id"] = dkms_instance_id
|
|
512
571
|
__props__.__dict__["key_id"] = key_id
|
|
513
572
|
__props__.__dict__["resource_group_id"] = resource_group_id
|
|
514
573
|
__props__.__dict__["secret_parameter_name"] = secret_parameter_name
|
|
@@ -529,6 +588,14 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
529
588
|
"""
|
|
530
589
|
return pulumi.get(self, "constraints")
|
|
531
590
|
|
|
591
|
+
@property
|
|
592
|
+
@pulumi.getter(name="createTime")
|
|
593
|
+
def create_time(self) -> pulumi.Output[str]:
|
|
594
|
+
"""
|
|
595
|
+
Parameter creation time
|
|
596
|
+
"""
|
|
597
|
+
return pulumi.get(self, "create_time")
|
|
598
|
+
|
|
532
599
|
@property
|
|
533
600
|
@pulumi.getter
|
|
534
601
|
def description(self) -> pulumi.Output[Optional[str]]:
|
|
@@ -537,6 +604,14 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
537
604
|
"""
|
|
538
605
|
return pulumi.get(self, "description")
|
|
539
606
|
|
|
607
|
+
@property
|
|
608
|
+
@pulumi.getter(name="dkmsInstanceId")
|
|
609
|
+
def dkms_instance_id(self) -> pulumi.Output[Optional[str]]:
|
|
610
|
+
"""
|
|
611
|
+
The ID of the KMS instance.
|
|
612
|
+
"""
|
|
613
|
+
return pulumi.get(self, "dkms_instance_id")
|
|
614
|
+
|
|
540
615
|
@property
|
|
541
616
|
@pulumi.getter(name="keyId")
|
|
542
617
|
def key_id(self) -> pulumi.Output[Optional[str]]:
|
|
@@ -563,7 +638,7 @@ class SecretParameter(pulumi.CustomResource):
|
|
|
563
638
|
|
|
564
639
|
@property
|
|
565
640
|
@pulumi.getter
|
|
566
|
-
def tags(self) -> pulumi.Output[
|
|
641
|
+
def tags(self) -> pulumi.Output[Mapping[str, str]]:
|
|
567
642
|
"""
|
|
568
643
|
A mapping of tags to assign to the resource.
|
|
569
644
|
"""
|
pulumi_alicloud/oss/bucket.py
CHANGED
|
@@ -142,8 +142,7 @@ class BucketPolicy(pulumi.CustomResource):
|
|
|
142
142
|
"Resource": ["acs:oss:*:1234567890:*/*"],
|
|
143
143
|
}],
|
|
144
144
|
}),
|
|
145
|
-
bucket=create_bucket.bucket
|
|
146
|
-
opts = pulumi.ResourceOptions(depends_on=[create_bucket]))
|
|
145
|
+
bucket=create_bucket.bucket)
|
|
147
146
|
```
|
|
148
147
|
|
|
149
148
|
## Import
|
|
@@ -205,8 +204,7 @@ class BucketPolicy(pulumi.CustomResource):
|
|
|
205
204
|
"Resource": ["acs:oss:*:1234567890:*/*"],
|
|
206
205
|
}],
|
|
207
206
|
}),
|
|
208
|
-
bucket=create_bucket.bucket
|
|
209
|
-
opts = pulumi.ResourceOptions(depends_on=[create_bucket]))
|
|
207
|
+
bucket=create_bucket.bucket)
|
|
210
208
|
```
|
|
211
209
|
|
|
212
210
|
## Import
|
|
@@ -269,8 +269,7 @@ class BucketReferer(pulumi.CustomResource):
|
|
|
269
269
|
referer_lists=[
|
|
270
270
|
"*.aliyun.com",
|
|
271
271
|
"*.example.com",
|
|
272
|
-
]
|
|
273
|
-
opts = pulumi.ResourceOptions(depends_on=[create_bucket]))
|
|
272
|
+
])
|
|
274
273
|
```
|
|
275
274
|
|
|
276
275
|
## Import
|
|
@@ -331,8 +330,7 @@ class BucketReferer(pulumi.CustomResource):
|
|
|
331
330
|
referer_lists=[
|
|
332
331
|
"*.aliyun.com",
|
|
333
332
|
"*.example.com",
|
|
334
|
-
]
|
|
335
|
-
opts = pulumi.ResourceOptions(depends_on=[create_bucket]))
|
|
333
|
+
])
|
|
336
334
|
```
|
|
337
335
|
|
|
338
336
|
## Import
|
|
@@ -98,13 +98,20 @@ def get_buckets(name_regex: Optional[str] = None,
|
|
|
98
98
|
"""
|
|
99
99
|
This data source provides the OSS buckets of the current Alibaba Cloud user.
|
|
100
100
|
|
|
101
|
+
> **NOTE:** Available since v1.17.0.
|
|
102
|
+
|
|
101
103
|
## Example Usage
|
|
102
104
|
|
|
103
105
|
```python
|
|
104
106
|
import pulumi
|
|
105
107
|
import pulumi_alicloud as alicloud
|
|
108
|
+
import pulumi_random as random
|
|
106
109
|
|
|
107
|
-
|
|
110
|
+
default = random.index.Integer("default",
|
|
111
|
+
max=99999,
|
|
112
|
+
min=10000)
|
|
113
|
+
bucket = alicloud.oss.Bucket("bucket", bucket=f"oss-tf-example-{default['result']}")
|
|
114
|
+
oss_buckets_ds = alicloud.oss.get_buckets_output(name_regex=bucket.bucket)
|
|
108
115
|
pulumi.export("firstOssBucketName", oss_buckets_ds.buckets[0].name)
|
|
109
116
|
```
|
|
110
117
|
|
|
@@ -130,13 +137,20 @@ def get_buckets_output(name_regex: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
130
137
|
"""
|
|
131
138
|
This data source provides the OSS buckets of the current Alibaba Cloud user.
|
|
132
139
|
|
|
140
|
+
> **NOTE:** Available since v1.17.0.
|
|
141
|
+
|
|
133
142
|
## Example Usage
|
|
134
143
|
|
|
135
144
|
```python
|
|
136
145
|
import pulumi
|
|
137
146
|
import pulumi_alicloud as alicloud
|
|
147
|
+
import pulumi_random as random
|
|
138
148
|
|
|
139
|
-
|
|
149
|
+
default = random.index.Integer("default",
|
|
150
|
+
max=99999,
|
|
151
|
+
min=10000)
|
|
152
|
+
bucket = alicloud.oss.Bucket("bucket", bucket=f"oss-tf-example-{default['result']}")
|
|
153
|
+
oss_buckets_ds = alicloud.oss.get_buckets_output(name_regex=bucket.bucket)
|
|
140
154
|
pulumi.export("firstOssBucketName", oss_buckets_ds.buckets[0].name)
|
|
141
155
|
```
|
|
142
156
|
|
pulumi_alicloud/oss/outputs.py
CHANGED
|
@@ -3024,14 +3024,14 @@ class GetBucketsBucketResult(dict):
|
|
|
3024
3024
|
logging: 'outputs.GetBucketsBucketLoggingResult',
|
|
3025
3025
|
name: str,
|
|
3026
3026
|
owner: str,
|
|
3027
|
+
policy: str,
|
|
3027
3028
|
redundancy_type: str,
|
|
3028
3029
|
referer_config: 'outputs.GetBucketsBucketRefererConfigResult',
|
|
3029
3030
|
server_side_encryption_rule: 'outputs.GetBucketsBucketServerSideEncryptionRuleResult',
|
|
3030
3031
|
storage_class: str,
|
|
3031
3032
|
tags: Mapping[str, str],
|
|
3032
3033
|
versioning: 'outputs.GetBucketsBucketVersioningResult',
|
|
3033
|
-
website: 'outputs.GetBucketsBucketWebsiteResult'
|
|
3034
|
-
policy: Optional[str] = None):
|
|
3034
|
+
website: 'outputs.GetBucketsBucketWebsiteResult'):
|
|
3035
3035
|
"""
|
|
3036
3036
|
:param str acl: Bucket access control list. Possible values: `private`, `public-read` and `public-read-write`.
|
|
3037
3037
|
:param Sequence['GetBucketsBucketCorsRuleArgs'] cors_rules: A list of CORS rule configurations. Each element contains the following attributes:
|
|
@@ -3043,6 +3043,7 @@ class GetBucketsBucketResult(dict):
|
|
|
3043
3043
|
:param 'GetBucketsBucketLoggingArgs' logging: A list of one element containing configuration parameters used for storing access log information. It contains the following attributes:
|
|
3044
3044
|
:param str name: Bucket name.
|
|
3045
3045
|
:param str owner: Bucket owner.
|
|
3046
|
+
:param str policy: The policies configured for a specified bucket.
|
|
3046
3047
|
:param str redundancy_type: Redundancy type. Possible values: `LRS`, and `ZRS`.
|
|
3047
3048
|
:param 'GetBucketsBucketRefererConfigArgs' referer_config: A list of one element containing referer configuration. It contains the following attributes:
|
|
3048
3049
|
:param 'GetBucketsBucketServerSideEncryptionRuleArgs' server_side_encryption_rule: A configuration of default encryption for a bucket. It contains the following attributes:
|
|
@@ -3061,6 +3062,7 @@ class GetBucketsBucketResult(dict):
|
|
|
3061
3062
|
pulumi.set(__self__, "logging", logging)
|
|
3062
3063
|
pulumi.set(__self__, "name", name)
|
|
3063
3064
|
pulumi.set(__self__, "owner", owner)
|
|
3065
|
+
pulumi.set(__self__, "policy", policy)
|
|
3064
3066
|
pulumi.set(__self__, "redundancy_type", redundancy_type)
|
|
3065
3067
|
pulumi.set(__self__, "referer_config", referer_config)
|
|
3066
3068
|
pulumi.set(__self__, "server_side_encryption_rule", server_side_encryption_rule)
|
|
@@ -3068,8 +3070,6 @@ class GetBucketsBucketResult(dict):
|
|
|
3068
3070
|
pulumi.set(__self__, "tags", tags)
|
|
3069
3071
|
pulumi.set(__self__, "versioning", versioning)
|
|
3070
3072
|
pulumi.set(__self__, "website", website)
|
|
3071
|
-
if policy is not None:
|
|
3072
|
-
pulumi.set(__self__, "policy", policy)
|
|
3073
3073
|
|
|
3074
3074
|
@property
|
|
3075
3075
|
@pulumi.getter
|
|
@@ -3151,6 +3151,14 @@ class GetBucketsBucketResult(dict):
|
|
|
3151
3151
|
"""
|
|
3152
3152
|
return pulumi.get(self, "owner")
|
|
3153
3153
|
|
|
3154
|
+
@property
|
|
3155
|
+
@pulumi.getter
|
|
3156
|
+
def policy(self) -> str:
|
|
3157
|
+
"""
|
|
3158
|
+
The policies configured for a specified bucket.
|
|
3159
|
+
"""
|
|
3160
|
+
return pulumi.get(self, "policy")
|
|
3161
|
+
|
|
3154
3162
|
@property
|
|
3155
3163
|
@pulumi.getter(name="redundancyType")
|
|
3156
3164
|
def redundancy_type(self) -> str:
|
|
@@ -3207,11 +3215,6 @@ class GetBucketsBucketResult(dict):
|
|
|
3207
3215
|
"""
|
|
3208
3216
|
return pulumi.get(self, "website")
|
|
3209
3217
|
|
|
3210
|
-
@property
|
|
3211
|
-
@pulumi.getter
|
|
3212
|
-
def policy(self) -> Optional[str]:
|
|
3213
|
-
return pulumi.get(self, "policy")
|
|
3214
|
-
|
|
3215
3218
|
|
|
3216
3219
|
@pulumi.output_type
|
|
3217
3220
|
class GetBucketsBucketCorsRuleResult(dict):
|
|
@@ -3329,20 +3332,18 @@ class GetBucketsBucketLifecycleRuleResult(dict):
|
|
|
3329
3332
|
@pulumi.output_type
|
|
3330
3333
|
class GetBucketsBucketLifecycleRuleExpirationResult(dict):
|
|
3331
3334
|
def __init__(__self__, *,
|
|
3332
|
-
date:
|
|
3333
|
-
days:
|
|
3335
|
+
date: str,
|
|
3336
|
+
days: int):
|
|
3334
3337
|
"""
|
|
3335
3338
|
:param str date: Date after which the rule to take effect. The format is like 2017-03-09.
|
|
3336
3339
|
:param int days: Indicate the number of days after the last object update until the rules take effect.
|
|
3337
3340
|
"""
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
if days is not None:
|
|
3341
|
-
pulumi.set(__self__, "days", days)
|
|
3341
|
+
pulumi.set(__self__, "date", date)
|
|
3342
|
+
pulumi.set(__self__, "days", days)
|
|
3342
3343
|
|
|
3343
3344
|
@property
|
|
3344
3345
|
@pulumi.getter
|
|
3345
|
-
def date(self) ->
|
|
3346
|
+
def date(self) -> str:
|
|
3346
3347
|
"""
|
|
3347
3348
|
Date after which the rule to take effect. The format is like 2017-03-09.
|
|
3348
3349
|
"""
|
|
@@ -3350,7 +3351,7 @@ class GetBucketsBucketLifecycleRuleExpirationResult(dict):
|
|
|
3350
3351
|
|
|
3351
3352
|
@property
|
|
3352
3353
|
@pulumi.getter
|
|
3353
|
-
def days(self) ->
|
|
3354
|
+
def days(self) -> int:
|
|
3354
3355
|
"""
|
|
3355
3356
|
Indicate the number of days after the last object update until the rules take effect.
|
|
3356
3357
|
"""
|
|
@@ -152,7 +152,18 @@ class ApplicationArgs:
|
|
|
152
152
|
**NOTE:** Field `readiness` has been deprecated from provider version 1.211.0. New field `readiness_v2` instead.
|
|
153
153
|
:param pulumi.Input['ApplicationReadinessV2Args'] readiness_v2: The readiness check settings of the container. If a container fails this health check multiple times, the container is stopped and then restarted. See `readiness_v2` below.
|
|
154
154
|
:param pulumi.Input[str] security_group_id: Security group ID.
|
|
155
|
-
:param pulumi.Input[str] sls_configs: SLS
|
|
155
|
+
:param pulumi.Input[str] sls_configs: Configuration for log collection to SLS. Valid parameter descriptions are as follows:
|
|
156
|
+
* `projectName`: Configures the project name on SLS.
|
|
157
|
+
* `logDir`: Path to the logs.
|
|
158
|
+
* `logType`: Type of logs. stdout indicates container standard output logs, and only one can be set; if not set, it means collecting file logs.
|
|
159
|
+
* `logstoreName`: Configures the log store name on SLS.
|
|
160
|
+
* `logtailName`: Configures the log tail name on SLS; if not specified, it means creating a new log tail.
|
|
161
|
+
|
|
162
|
+
If you no longer need to use the SLS collection feature, you should set the value of this field to an empty string. There are two examples:
|
|
163
|
+
- Using SAE automatically created SLS resources: [{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}].
|
|
164
|
+
- Using custom SLS resources: [{"projectName":"test-sls","logType":"stdout","logDir":"","logstoreName":"sae","logtailName":""},{"projectName":"test","logDir":"/tmp/a.log","logstoreName":"sae","logtailName":""}].
|
|
165
|
+
|
|
166
|
+
**NOTE:** Projects that are automatically created with applications will be deleted along with the application deletion. Therefore, when selecting existing projects, you cannot choose projects automatically created by SAE.
|
|
156
167
|
:param pulumi.Input[str] status: The status of the resource. Valid values: `RUNNING`, `STOPPED`, `UNKNOWN`.
|
|
157
168
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
|
|
158
169
|
:param pulumi.Input[int] termination_grace_period_seconds: Graceful offline timeout, the default is 30, the unit is seconds. The value range is 1~60. Valid values: [1,60].
|
|
@@ -1021,7 +1032,18 @@ class ApplicationArgs:
|
|
|
1021
1032
|
@pulumi.getter(name="slsConfigs")
|
|
1022
1033
|
def sls_configs(self) -> Optional[pulumi.Input[str]]:
|
|
1023
1034
|
"""
|
|
1024
|
-
SLS
|
|
1035
|
+
Configuration for log collection to SLS. Valid parameter descriptions are as follows:
|
|
1036
|
+
* `projectName`: Configures the project name on SLS.
|
|
1037
|
+
* `logDir`: Path to the logs.
|
|
1038
|
+
* `logType`: Type of logs. stdout indicates container standard output logs, and only one can be set; if not set, it means collecting file logs.
|
|
1039
|
+
* `logstoreName`: Configures the log store name on SLS.
|
|
1040
|
+
* `logtailName`: Configures the log tail name on SLS; if not specified, it means creating a new log tail.
|
|
1041
|
+
|
|
1042
|
+
If you no longer need to use the SLS collection feature, you should set the value of this field to an empty string. There are two examples:
|
|
1043
|
+
- Using SAE automatically created SLS resources: [{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}].
|
|
1044
|
+
- Using custom SLS resources: [{"projectName":"test-sls","logType":"stdout","logDir":"","logstoreName":"sae","logtailName":""},{"projectName":"test","logDir":"/tmp/a.log","logstoreName":"sae","logtailName":""}].
|
|
1045
|
+
|
|
1046
|
+
**NOTE:** Projects that are automatically created with applications will be deleted along with the application deletion. Therefore, when selecting existing projects, you cannot choose projects automatically created by SAE.
|
|
1025
1047
|
"""
|
|
1026
1048
|
return pulumi.get(self, "sls_configs")
|
|
1027
1049
|
|
|
@@ -1311,7 +1333,18 @@ class _ApplicationState:
|
|
|
1311
1333
|
:param pulumi.Input['ApplicationReadinessV2Args'] readiness_v2: The readiness check settings of the container. If a container fails this health check multiple times, the container is stopped and then restarted. See `readiness_v2` below.
|
|
1312
1334
|
:param pulumi.Input[int] replicas: Initial number of instances.
|
|
1313
1335
|
:param pulumi.Input[str] security_group_id: Security group ID.
|
|
1314
|
-
:param pulumi.Input[str] sls_configs: SLS
|
|
1336
|
+
:param pulumi.Input[str] sls_configs: Configuration for log collection to SLS. Valid parameter descriptions are as follows:
|
|
1337
|
+
* `projectName`: Configures the project name on SLS.
|
|
1338
|
+
* `logDir`: Path to the logs.
|
|
1339
|
+
* `logType`: Type of logs. stdout indicates container standard output logs, and only one can be set; if not set, it means collecting file logs.
|
|
1340
|
+
* `logstoreName`: Configures the log store name on SLS.
|
|
1341
|
+
* `logtailName`: Configures the log tail name on SLS; if not specified, it means creating a new log tail.
|
|
1342
|
+
|
|
1343
|
+
If you no longer need to use the SLS collection feature, you should set the value of this field to an empty string. There are two examples:
|
|
1344
|
+
- Using SAE automatically created SLS resources: [{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}].
|
|
1345
|
+
- Using custom SLS resources: [{"projectName":"test-sls","logType":"stdout","logDir":"","logstoreName":"sae","logtailName":""},{"projectName":"test","logDir":"/tmp/a.log","logstoreName":"sae","logtailName":""}].
|
|
1346
|
+
|
|
1347
|
+
**NOTE:** Projects that are automatically created with applications will be deleted along with the application deletion. Therefore, when selecting existing projects, you cannot choose projects automatically created by SAE.
|
|
1315
1348
|
:param pulumi.Input[str] status: The status of the resource. Valid values: `RUNNING`, `STOPPED`, `UNKNOWN`.
|
|
1316
1349
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
|
|
1317
1350
|
:param pulumi.Input[int] termination_grace_period_seconds: Graceful offline timeout, the default is 30, the unit is seconds. The value range is 1~60. Valid values: [1,60].
|
|
@@ -2183,7 +2216,18 @@ class _ApplicationState:
|
|
|
2183
2216
|
@pulumi.getter(name="slsConfigs")
|
|
2184
2217
|
def sls_configs(self) -> Optional[pulumi.Input[str]]:
|
|
2185
2218
|
"""
|
|
2186
|
-
SLS
|
|
2219
|
+
Configuration for log collection to SLS. Valid parameter descriptions are as follows:
|
|
2220
|
+
* `projectName`: Configures the project name on SLS.
|
|
2221
|
+
* `logDir`: Path to the logs.
|
|
2222
|
+
* `logType`: Type of logs. stdout indicates container standard output logs, and only one can be set; if not set, it means collecting file logs.
|
|
2223
|
+
* `logstoreName`: Configures the log store name on SLS.
|
|
2224
|
+
* `logtailName`: Configures the log tail name on SLS; if not specified, it means creating a new log tail.
|
|
2225
|
+
|
|
2226
|
+
If you no longer need to use the SLS collection feature, you should set the value of this field to an empty string. There are two examples:
|
|
2227
|
+
- Using SAE automatically created SLS resources: [{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}].
|
|
2228
|
+
- Using custom SLS resources: [{"projectName":"test-sls","logType":"stdout","logDir":"","logstoreName":"sae","logtailName":""},{"projectName":"test","logDir":"/tmp/a.log","logstoreName":"sae","logtailName":""}].
|
|
2229
|
+
|
|
2230
|
+
**NOTE:** Projects that are automatically created with applications will be deleted along with the application deletion. Therefore, when selecting existing projects, you cannot choose projects automatically created by SAE.
|
|
2187
2231
|
"""
|
|
2188
2232
|
return pulumi.get(self, "sls_configs")
|
|
2189
2233
|
|
|
@@ -2541,7 +2585,18 @@ class Application(pulumi.CustomResource):
|
|
|
2541
2585
|
:param pulumi.Input[Union['ApplicationReadinessV2Args', 'ApplicationReadinessV2ArgsDict']] readiness_v2: The readiness check settings of the container. If a container fails this health check multiple times, the container is stopped and then restarted. See `readiness_v2` below.
|
|
2542
2586
|
:param pulumi.Input[int] replicas: Initial number of instances.
|
|
2543
2587
|
:param pulumi.Input[str] security_group_id: Security group ID.
|
|
2544
|
-
:param pulumi.Input[str] sls_configs: SLS
|
|
2588
|
+
:param pulumi.Input[str] sls_configs: Configuration for log collection to SLS. Valid parameter descriptions are as follows:
|
|
2589
|
+
* `projectName`: Configures the project name on SLS.
|
|
2590
|
+
* `logDir`: Path to the logs.
|
|
2591
|
+
* `logType`: Type of logs. stdout indicates container standard output logs, and only one can be set; if not set, it means collecting file logs.
|
|
2592
|
+
* `logstoreName`: Configures the log store name on SLS.
|
|
2593
|
+
* `logtailName`: Configures the log tail name on SLS; if not specified, it means creating a new log tail.
|
|
2594
|
+
|
|
2595
|
+
If you no longer need to use the SLS collection feature, you should set the value of this field to an empty string. There are two examples:
|
|
2596
|
+
- Using SAE automatically created SLS resources: [{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}].
|
|
2597
|
+
- Using custom SLS resources: [{"projectName":"test-sls","logType":"stdout","logDir":"","logstoreName":"sae","logtailName":""},{"projectName":"test","logDir":"/tmp/a.log","logstoreName":"sae","logtailName":""}].
|
|
2598
|
+
|
|
2599
|
+
**NOTE:** Projects that are automatically created with applications will be deleted along with the application deletion. Therefore, when selecting existing projects, you cannot choose projects automatically created by SAE.
|
|
2545
2600
|
:param pulumi.Input[str] status: The status of the resource. Valid values: `RUNNING`, `STOPPED`, `UNKNOWN`.
|
|
2546
2601
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
|
|
2547
2602
|
:param pulumi.Input[int] termination_grace_period_seconds: Graceful offline timeout, the default is 30, the unit is seconds. The value range is 1~60. Valid values: [1,60].
|
|
@@ -2943,7 +2998,18 @@ class Application(pulumi.CustomResource):
|
|
|
2943
2998
|
:param pulumi.Input[Union['ApplicationReadinessV2Args', 'ApplicationReadinessV2ArgsDict']] readiness_v2: The readiness check settings of the container. If a container fails this health check multiple times, the container is stopped and then restarted. See `readiness_v2` below.
|
|
2944
2999
|
:param pulumi.Input[int] replicas: Initial number of instances.
|
|
2945
3000
|
:param pulumi.Input[str] security_group_id: Security group ID.
|
|
2946
|
-
:param pulumi.Input[str] sls_configs: SLS
|
|
3001
|
+
:param pulumi.Input[str] sls_configs: Configuration for log collection to SLS. Valid parameter descriptions are as follows:
|
|
3002
|
+
* `projectName`: Configures the project name on SLS.
|
|
3003
|
+
* `logDir`: Path to the logs.
|
|
3004
|
+
* `logType`: Type of logs. stdout indicates container standard output logs, and only one can be set; if not set, it means collecting file logs.
|
|
3005
|
+
* `logstoreName`: Configures the log store name on SLS.
|
|
3006
|
+
* `logtailName`: Configures the log tail name on SLS; if not specified, it means creating a new log tail.
|
|
3007
|
+
|
|
3008
|
+
If you no longer need to use the SLS collection feature, you should set the value of this field to an empty string. There are two examples:
|
|
3009
|
+
- Using SAE automatically created SLS resources: [{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}].
|
|
3010
|
+
- Using custom SLS resources: [{"projectName":"test-sls","logType":"stdout","logDir":"","logstoreName":"sae","logtailName":""},{"projectName":"test","logDir":"/tmp/a.log","logstoreName":"sae","logtailName":""}].
|
|
3011
|
+
|
|
3012
|
+
**NOTE:** Projects that are automatically created with applications will be deleted along with the application deletion. Therefore, when selecting existing projects, you cannot choose projects automatically created by SAE.
|
|
2947
3013
|
:param pulumi.Input[str] status: The status of the resource. Valid values: `RUNNING`, `STOPPED`, `UNKNOWN`.
|
|
2948
3014
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
|
|
2949
3015
|
:param pulumi.Input[int] termination_grace_period_seconds: Graceful offline timeout, the default is 30, the unit is seconds. The value range is 1~60. Valid values: [1,60].
|
|
@@ -3497,7 +3563,18 @@ class Application(pulumi.CustomResource):
|
|
|
3497
3563
|
@pulumi.getter(name="slsConfigs")
|
|
3498
3564
|
def sls_configs(self) -> pulumi.Output[Optional[str]]:
|
|
3499
3565
|
"""
|
|
3500
|
-
SLS
|
|
3566
|
+
Configuration for log collection to SLS. Valid parameter descriptions are as follows:
|
|
3567
|
+
* `projectName`: Configures the project name on SLS.
|
|
3568
|
+
* `logDir`: Path to the logs.
|
|
3569
|
+
* `logType`: Type of logs. stdout indicates container standard output logs, and only one can be set; if not set, it means collecting file logs.
|
|
3570
|
+
* `logstoreName`: Configures the log store name on SLS.
|
|
3571
|
+
* `logtailName`: Configures the log tail name on SLS; if not specified, it means creating a new log tail.
|
|
3572
|
+
|
|
3573
|
+
If you no longer need to use the SLS collection feature, you should set the value of this field to an empty string. There are two examples:
|
|
3574
|
+
- Using SAE automatically created SLS resources: [{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}].
|
|
3575
|
+
- Using custom SLS resources: [{"projectName":"test-sls","logType":"stdout","logDir":"","logstoreName":"sae","logtailName":""},{"projectName":"test","logDir":"/tmp/a.log","logstoreName":"sae","logtailName":""}].
|
|
3576
|
+
|
|
3577
|
+
**NOTE:** Projects that are automatically created with applications will be deleted along with the application deletion. Therefore, when selecting existing projects, you cannot choose projects automatically created by SAE.
|
|
3501
3578
|
"""
|
|
3502
3579
|
return pulumi.get(self, "sls_configs")
|
|
3503
3580
|
|
|
@@ -337,7 +337,7 @@ class CollectionPolicy(pulumi.CustomResource):
|
|
|
337
337
|
|
|
338
338
|
Orchestration policies for cloud product log collection.
|
|
339
339
|
|
|
340
|
-
For information about SLS Collection Policy and how to use it, see [What is Collection Policy](https://www.alibabacloud.com/help/
|
|
340
|
+
For information about SLS Collection Policy and how to use it, see [What is Collection Policy](https://www.alibabacloud.com/help/zh/sls/developer-reference/api-sls-2020-12-30-upsertcollectionpolicy).
|
|
341
341
|
|
|
342
342
|
> **NOTE:** Available since v1.232.0.
|
|
343
343
|
|
|
@@ -372,7 +372,7 @@ class CollectionPolicy(pulumi.CustomResource):
|
|
|
372
372
|
|
|
373
373
|
Orchestration policies for cloud product log collection.
|
|
374
374
|
|
|
375
|
-
For information about SLS Collection Policy and how to use it, see [What is Collection Policy](https://www.alibabacloud.com/help/
|
|
375
|
+
For information about SLS Collection Policy and how to use it, see [What is Collection Policy](https://www.alibabacloud.com/help/zh/sls/developer-reference/api-sls-2020-12-30-upsertcollectionpolicy).
|
|
376
376
|
|
|
377
377
|
> **NOTE:** Available since v1.232.0.
|
|
378
378
|
|
pulumi_alicloud/vpc/__init__.py
CHANGED
|
@@ -26,6 +26,11 @@ from .get_enhanced_nat_available_zones import *
|
|
|
26
26
|
from .get_flow_log_service import *
|
|
27
27
|
from .get_forward_entries import *
|
|
28
28
|
from .get_havips import *
|
|
29
|
+
from .get_ipam_ipam_pool_allocations import *
|
|
30
|
+
from .get_ipam_ipam_pool_cidrs import *
|
|
31
|
+
from .get_ipam_ipam_pools import *
|
|
32
|
+
from .get_ipam_ipam_scopes import *
|
|
33
|
+
from .get_ipam_ipams import *
|
|
29
34
|
from .get_ipsec_servers import *
|
|
30
35
|
from .get_ipv4_gateways import *
|
|
31
36
|
from .get_ipv6_addresses import *
|