pulumi-alicloud 3.88.0a1761582647__py3-none-any.whl → 3.88.0a1761969289__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/cfg/_inputs.py +27 -24
- pulumi_alicloud/cfg/aggregator.py +142 -53
- pulumi_alicloud/cfg/outputs.py +18 -15
- pulumi_alicloud/cloudfirewall/__init__.py +1 -0
- pulumi_alicloud/cloudfirewall/get_tls_inspect_ca_certificates.py +214 -0
- pulumi_alicloud/cloudfirewall/outputs.py +30 -0
- pulumi_alicloud/cms/_inputs.py +870 -10
- pulumi_alicloud/cms/get_site_monitors.py +2 -2
- pulumi_alicloud/cms/outputs.py +606 -6
- pulumi_alicloud/cms/site_monitor.py +360 -89
- pulumi_alicloud/cr/registry_enterprise_instance.py +63 -0
- pulumi_alicloud/dts/instance.py +14 -14
- pulumi_alicloud/eci/container_group.py +47 -0
- pulumi_alicloud/ecs/security_group_rule.py +7 -7
- pulumi_alicloud/ens/load_balancer.py +8 -4
- pulumi_alicloud/esa/__init__.py +1 -0
- pulumi_alicloud/esa/_inputs.py +611 -0
- pulumi_alicloud/esa/cache_rule.py +47 -0
- pulumi_alicloud/esa/certificate.py +21 -54
- pulumi_alicloud/esa/compression_rule.py +47 -0
- pulumi_alicloud/esa/load_balancer.py +999 -0
- pulumi_alicloud/esa/outputs.py +469 -0
- pulumi_alicloud/eventbridge/event_source.py +57 -57
- pulumi_alicloud/ga/_inputs.py +56 -16
- pulumi_alicloud/ga/outputs.py +39 -11
- pulumi_alicloud/lindorm/instance_v2.py +358 -70
- pulumi_alicloud/oss/_inputs.py +53 -0
- pulumi_alicloud/oss/bucket_logging.py +80 -29
- pulumi_alicloud/oss/bucket_replication.py +55 -8
- pulumi_alicloud/oss/outputs.py +31 -0
- pulumi_alicloud/polardb/__init__.py +2 -0
- pulumi_alicloud/polardb/cluster.py +14 -14
- pulumi_alicloud/polardb/zonal_account.py +449 -0
- pulumi_alicloud/polardb/zonal_db_cluster.py +2 -2
- pulumi_alicloud/polardb/zonal_endpoint.py +865 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/policy.py +2 -2
- pulumi_alicloud/resourcemanager/__init__.py +2 -0
- pulumi_alicloud/resourcemanager/_inputs.py +745 -0
- pulumi_alicloud/resourcemanager/delivery_channel.py +449 -0
- pulumi_alicloud/resourcemanager/multi_account_delivery_channel.py +470 -0
- pulumi_alicloud/resourcemanager/outputs.py +643 -0
- pulumi_alicloud/sae/_inputs.py +60 -0
- pulumi_alicloud/sae/application.py +1 -1
- pulumi_alicloud/sae/outputs.py +42 -0
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/get_indexs.py +304 -0
- pulumi_alicloud/sls/outputs.py +148 -0
- pulumi_alicloud/star_rocks_instance.py +8 -2
- pulumi_alicloud/starrocks/__init__.py +12 -0
- pulumi_alicloud/starrocks/_inputs.py +656 -0
- pulumi_alicloud/starrocks/instance.py +1427 -0
- pulumi_alicloud/starrocks/node_group.py +1298 -0
- pulumi_alicloud/starrocks/outputs.py +508 -0
- pulumi_alicloud/vpc/_inputs.py +84 -0
- pulumi_alicloud/vpc/gateway_endpoint.py +8 -8
- pulumi_alicloud/vpc/network_acl_entries.py +16 -20
- pulumi_alicloud/vpc/outputs.py +48 -0
- pulumi_alicloud/wafv3/_inputs.py +396 -0
- pulumi_alicloud/wafv3/defense_rule.py +40 -110
- pulumi_alicloud/wafv3/outputs.py +303 -0
- {pulumi_alicloud-3.88.0a1761582647.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.88.0a1761582647.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/RECORD +66 -54
- {pulumi_alicloud-3.88.0a1761582647.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.88.0a1761582647.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/top_level.txt +0 -0
|
@@ -41,19 +41,28 @@ class RegistryEnterpriseInstanceArgs:
|
|
|
41
41
|
- `Basic`: Basic instance
|
|
42
42
|
- `Standard`: Standard instance
|
|
43
43
|
- `Advanced`: Advanced Edition Instance
|
|
44
|
+
|
|
45
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
44
46
|
:param pulumi.Input[_builtins.str] payment_type: Payment type, value:
|
|
45
47
|
- Subscription: Prepaid.
|
|
46
48
|
:param pulumi.Input[_builtins.str] custom_oss_bucket: Custom OSS Bucket name
|
|
49
|
+
|
|
50
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
47
51
|
:param pulumi.Input[_builtins.str] default_oss_bucket: Whether to use the default OSS Bucket. Value:
|
|
48
52
|
:param pulumi.Input[_builtins.str] image_scanner: The security scan engine used by the Enterprise Edition of Container Image Service. Value:
|
|
49
53
|
- `ACR`: Uses the Trivy scan engine provided by default.
|
|
50
54
|
- `SAS`: uses the enhanced cloud security scan engine.
|
|
55
|
+
|
|
56
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
51
57
|
:param pulumi.Input[_builtins.str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored.
|
|
52
58
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
|
|
53
59
|
:param pulumi.Input[_builtins.str] password: Login password, 8-32 digits, must contain at least two letters, symbols, or numbers
|
|
54
60
|
:param pulumi.Input[_builtins.int] period: Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
|
|
55
61
|
|
|
56
62
|
> **NOTE:** must be set when creating a prepaid instance.
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
57
66
|
:param pulumi.Input[_builtins.int] renew_period: Automatic renewal cycle, in months.
|
|
58
67
|
|
|
59
68
|
> **NOTE:** When `RenewalStatus` is set to `AutoRenewal`, it must be set.
|
|
@@ -110,6 +119,8 @@ class RegistryEnterpriseInstanceArgs:
|
|
|
110
119
|
- `Basic`: Basic instance
|
|
111
120
|
- `Standard`: Standard instance
|
|
112
121
|
- `Advanced`: Advanced Edition Instance
|
|
122
|
+
|
|
123
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
113
124
|
"""
|
|
114
125
|
return pulumi.get(self, "instance_type")
|
|
115
126
|
|
|
@@ -135,6 +146,8 @@ class RegistryEnterpriseInstanceArgs:
|
|
|
135
146
|
def custom_oss_bucket(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
136
147
|
"""
|
|
137
148
|
Custom OSS Bucket name
|
|
149
|
+
|
|
150
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
138
151
|
"""
|
|
139
152
|
return pulumi.get(self, "custom_oss_bucket")
|
|
140
153
|
|
|
@@ -161,6 +174,8 @@ class RegistryEnterpriseInstanceArgs:
|
|
|
161
174
|
The security scan engine used by the Enterprise Edition of Container Image Service. Value:
|
|
162
175
|
- `ACR`: Uses the Trivy scan engine provided by default.
|
|
163
176
|
- `SAS`: uses the enhanced cloud security scan engine.
|
|
177
|
+
|
|
178
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
164
179
|
"""
|
|
165
180
|
return pulumi.get(self, "image_scanner")
|
|
166
181
|
|
|
@@ -211,6 +226,9 @@ class RegistryEnterpriseInstanceArgs:
|
|
|
211
226
|
Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
|
|
212
227
|
|
|
213
228
|
> **NOTE:** must be set when creating a prepaid instance.
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
214
232
|
"""
|
|
215
233
|
return pulumi.get(self, "period")
|
|
216
234
|
|
|
@@ -290,17 +308,23 @@ class _RegistryEnterpriseInstanceState:
|
|
|
290
308
|
:param pulumi.Input[_builtins.str] create_time: The creation time of the resource
|
|
291
309
|
:param pulumi.Input[_builtins.str] created_time: . Field 'created_time' has been deprecated from provider version 1.235.0. New field 'create_time' instead.
|
|
292
310
|
:param pulumi.Input[_builtins.str] custom_oss_bucket: Custom OSS Bucket name
|
|
311
|
+
|
|
312
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
293
313
|
:param pulumi.Input[_builtins.str] default_oss_bucket: Whether to use the default OSS Bucket. Value:
|
|
294
314
|
:param pulumi.Input[_builtins.str] end_time: Expiration Time
|
|
295
315
|
:param pulumi.Input[_builtins.str] image_scanner: The security scan engine used by the Enterprise Edition of Container Image Service. Value:
|
|
296
316
|
- `ACR`: Uses the Trivy scan engine provided by default.
|
|
297
317
|
- `SAS`: uses the enhanced cloud security scan engine.
|
|
318
|
+
|
|
319
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
298
320
|
:param pulumi.Input[Sequence[pulumi.Input['RegistryEnterpriseInstanceInstanceEndpointArgs']]] instance_endpoints: (Available since v1.240.0) Instance Network Access Endpoint List
|
|
299
321
|
:param pulumi.Input[_builtins.str] instance_name: InstanceName
|
|
300
322
|
:param pulumi.Input[_builtins.str] instance_type: The Value configuration of the Group 1 attribute of Container Mirror Service Enterprise Edition. Valid values:
|
|
301
323
|
- `Basic`: Basic instance
|
|
302
324
|
- `Standard`: Standard instance
|
|
303
325
|
- `Advanced`: Advanced Edition Instance
|
|
326
|
+
|
|
327
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
304
328
|
:param pulumi.Input[_builtins.str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored.
|
|
305
329
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
|
|
306
330
|
:param pulumi.Input[_builtins.str] password: Login password, 8-32 digits, must contain at least two letters, symbols, or numbers
|
|
@@ -309,6 +333,9 @@ class _RegistryEnterpriseInstanceState:
|
|
|
309
333
|
:param pulumi.Input[_builtins.int] period: Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
|
|
310
334
|
|
|
311
335
|
> **NOTE:** must be set when creating a prepaid instance.
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
312
339
|
:param pulumi.Input[_builtins.str] region_id: RegionId
|
|
313
340
|
:param pulumi.Input[_builtins.int] renew_period: Automatic renewal cycle, in months.
|
|
314
341
|
|
|
@@ -395,6 +422,8 @@ class _RegistryEnterpriseInstanceState:
|
|
|
395
422
|
def custom_oss_bucket(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
396
423
|
"""
|
|
397
424
|
Custom OSS Bucket name
|
|
425
|
+
|
|
426
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
398
427
|
"""
|
|
399
428
|
return pulumi.get(self, "custom_oss_bucket")
|
|
400
429
|
|
|
@@ -433,6 +462,8 @@ class _RegistryEnterpriseInstanceState:
|
|
|
433
462
|
The security scan engine used by the Enterprise Edition of Container Image Service. Value:
|
|
434
463
|
- `ACR`: Uses the Trivy scan engine provided by default.
|
|
435
464
|
- `SAS`: uses the enhanced cloud security scan engine.
|
|
465
|
+
|
|
466
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
436
467
|
"""
|
|
437
468
|
return pulumi.get(self, "image_scanner")
|
|
438
469
|
|
|
@@ -472,6 +503,8 @@ class _RegistryEnterpriseInstanceState:
|
|
|
472
503
|
- `Basic`: Basic instance
|
|
473
504
|
- `Standard`: Standard instance
|
|
474
505
|
- `Advanced`: Advanced Edition Instance
|
|
506
|
+
|
|
507
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
475
508
|
"""
|
|
476
509
|
return pulumi.get(self, "instance_type")
|
|
477
510
|
|
|
@@ -535,6 +568,9 @@ class _RegistryEnterpriseInstanceState:
|
|
|
535
568
|
Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
|
|
536
569
|
|
|
537
570
|
> **NOTE:** must be set when creating a prepaid instance.
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
538
574
|
"""
|
|
539
575
|
return pulumi.get(self, "period")
|
|
540
576
|
|
|
@@ -674,15 +710,21 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
|
|
|
674
710
|
:param str resource_name: The name of the resource.
|
|
675
711
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
676
712
|
:param pulumi.Input[_builtins.str] custom_oss_bucket: Custom OSS Bucket name
|
|
713
|
+
|
|
714
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
677
715
|
:param pulumi.Input[_builtins.str] default_oss_bucket: Whether to use the default OSS Bucket. Value:
|
|
678
716
|
:param pulumi.Input[_builtins.str] image_scanner: The security scan engine used by the Enterprise Edition of Container Image Service. Value:
|
|
679
717
|
- `ACR`: Uses the Trivy scan engine provided by default.
|
|
680
718
|
- `SAS`: uses the enhanced cloud security scan engine.
|
|
719
|
+
|
|
720
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
681
721
|
:param pulumi.Input[_builtins.str] instance_name: InstanceName
|
|
682
722
|
:param pulumi.Input[_builtins.str] instance_type: The Value configuration of the Group 1 attribute of Container Mirror Service Enterprise Edition. Valid values:
|
|
683
723
|
- `Basic`: Basic instance
|
|
684
724
|
- `Standard`: Standard instance
|
|
685
725
|
- `Advanced`: Advanced Edition Instance
|
|
726
|
+
|
|
727
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
686
728
|
:param pulumi.Input[_builtins.str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored.
|
|
687
729
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
|
|
688
730
|
:param pulumi.Input[_builtins.str] password: Login password, 8-32 digits, must contain at least two letters, symbols, or numbers
|
|
@@ -691,6 +733,9 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
|
|
|
691
733
|
:param pulumi.Input[_builtins.int] period: Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
|
|
692
734
|
|
|
693
735
|
> **NOTE:** must be set when creating a prepaid instance.
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
694
739
|
:param pulumi.Input[_builtins.int] renew_period: Automatic renewal cycle, in months.
|
|
695
740
|
|
|
696
741
|
> **NOTE:** When `RenewalStatus` is set to `AutoRenewal`, it must be set.
|
|
@@ -852,17 +897,23 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
|
|
|
852
897
|
:param pulumi.Input[_builtins.str] create_time: The creation time of the resource
|
|
853
898
|
:param pulumi.Input[_builtins.str] created_time: . Field 'created_time' has been deprecated from provider version 1.235.0. New field 'create_time' instead.
|
|
854
899
|
:param pulumi.Input[_builtins.str] custom_oss_bucket: Custom OSS Bucket name
|
|
900
|
+
|
|
901
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
855
902
|
:param pulumi.Input[_builtins.str] default_oss_bucket: Whether to use the default OSS Bucket. Value:
|
|
856
903
|
:param pulumi.Input[_builtins.str] end_time: Expiration Time
|
|
857
904
|
:param pulumi.Input[_builtins.str] image_scanner: The security scan engine used by the Enterprise Edition of Container Image Service. Value:
|
|
858
905
|
- `ACR`: Uses the Trivy scan engine provided by default.
|
|
859
906
|
- `SAS`: uses the enhanced cloud security scan engine.
|
|
907
|
+
|
|
908
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
860
909
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegistryEnterpriseInstanceInstanceEndpointArgs', 'RegistryEnterpriseInstanceInstanceEndpointArgsDict']]]] instance_endpoints: (Available since v1.240.0) Instance Network Access Endpoint List
|
|
861
910
|
:param pulumi.Input[_builtins.str] instance_name: InstanceName
|
|
862
911
|
:param pulumi.Input[_builtins.str] instance_type: The Value configuration of the Group 1 attribute of Container Mirror Service Enterprise Edition. Valid values:
|
|
863
912
|
- `Basic`: Basic instance
|
|
864
913
|
- `Standard`: Standard instance
|
|
865
914
|
- `Advanced`: Advanced Edition Instance
|
|
915
|
+
|
|
916
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
866
917
|
:param pulumi.Input[_builtins.str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored.
|
|
867
918
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
|
|
868
919
|
:param pulumi.Input[_builtins.str] password: Login password, 8-32 digits, must contain at least two letters, symbols, or numbers
|
|
@@ -871,6 +922,9 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
|
|
|
871
922
|
:param pulumi.Input[_builtins.int] period: Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
|
|
872
923
|
|
|
873
924
|
> **NOTE:** must be set when creating a prepaid instance.
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
874
928
|
:param pulumi.Input[_builtins.str] region_id: RegionId
|
|
875
929
|
:param pulumi.Input[_builtins.int] renew_period: Automatic renewal cycle, in months.
|
|
876
930
|
|
|
@@ -932,6 +986,8 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
|
|
|
932
986
|
def custom_oss_bucket(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
933
987
|
"""
|
|
934
988
|
Custom OSS Bucket name
|
|
989
|
+
|
|
990
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
935
991
|
"""
|
|
936
992
|
return pulumi.get(self, "custom_oss_bucket")
|
|
937
993
|
|
|
@@ -958,6 +1014,8 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
|
|
|
958
1014
|
The security scan engine used by the Enterprise Edition of Container Image Service. Value:
|
|
959
1015
|
- `ACR`: Uses the Trivy scan engine provided by default.
|
|
960
1016
|
- `SAS`: uses the enhanced cloud security scan engine.
|
|
1017
|
+
|
|
1018
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
961
1019
|
"""
|
|
962
1020
|
return pulumi.get(self, "image_scanner")
|
|
963
1021
|
|
|
@@ -985,6 +1043,8 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
|
|
|
985
1043
|
- `Basic`: Basic instance
|
|
986
1044
|
- `Standard`: Standard instance
|
|
987
1045
|
- `Advanced`: Advanced Edition Instance
|
|
1046
|
+
|
|
1047
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
988
1048
|
"""
|
|
989
1049
|
return pulumi.get(self, "instance_type")
|
|
990
1050
|
|
|
@@ -1028,6 +1088,9 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
|
|
|
1028
1088
|
Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
|
|
1029
1089
|
|
|
1030
1090
|
> **NOTE:** must be set when creating a prepaid instance.
|
|
1091
|
+
|
|
1092
|
+
|
|
1093
|
+
> **NOTE:** The parameter is immutable after resource creation. It only applies during resource creation and has no effect when modified post-creation.
|
|
1031
1094
|
"""
|
|
1032
1095
|
return pulumi.get(self, "period")
|
|
1033
1096
|
|
pulumi_alicloud/dts/instance.py
CHANGED
|
@@ -57,7 +57,7 @@ class InstanceArgs:
|
|
|
57
57
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
58
58
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
59
59
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
60
|
-
- **
|
|
60
|
+
- **odps**: MaxCompute project.
|
|
61
61
|
- **oracle**: self-built Oracle.
|
|
62
62
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
63
63
|
- **tidb**:TiDB database.
|
|
@@ -94,7 +94,7 @@ class InstanceArgs:
|
|
|
94
94
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
95
95
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
96
96
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
97
|
-
- **
|
|
97
|
+
- **odps**: MaxCompute project.
|
|
98
98
|
- **oracle**: self-built Oracle.
|
|
99
99
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
100
100
|
- **tidb**:TiDB database.
|
|
@@ -238,7 +238,7 @@ class InstanceArgs:
|
|
|
238
238
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
239
239
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
240
240
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
241
|
-
- **
|
|
241
|
+
- **odps**: MaxCompute project.
|
|
242
242
|
- **oracle**: self-built Oracle.
|
|
243
243
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
244
244
|
- **tidb**:TiDB database.
|
|
@@ -374,7 +374,7 @@ class InstanceArgs:
|
|
|
374
374
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
375
375
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
376
376
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
377
|
-
- **
|
|
377
|
+
- **odps**: MaxCompute project.
|
|
378
378
|
- **oracle**: self-built Oracle.
|
|
379
379
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
380
380
|
- **tidb**:TiDB database.
|
|
@@ -532,7 +532,7 @@ class _InstanceState:
|
|
|
532
532
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
533
533
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
534
534
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
535
|
-
- **
|
|
535
|
+
- **odps**: MaxCompute project.
|
|
536
536
|
- **oracle**: self-built Oracle.
|
|
537
537
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
538
538
|
- **tidb**:TiDB database.
|
|
@@ -571,7 +571,7 @@ class _InstanceState:
|
|
|
571
571
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
572
572
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
573
573
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
574
|
-
- **
|
|
574
|
+
- **odps**: MaxCompute project.
|
|
575
575
|
- **oracle**: self-built Oracle.
|
|
576
576
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
577
577
|
- **tidb**:TiDB database.
|
|
@@ -736,7 +736,7 @@ class _InstanceState:
|
|
|
736
736
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
737
737
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
738
738
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
739
|
-
- **
|
|
739
|
+
- **odps**: MaxCompute project.
|
|
740
740
|
- **oracle**: self-built Oracle.
|
|
741
741
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
742
742
|
- **tidb**:TiDB database.
|
|
@@ -896,7 +896,7 @@ class _InstanceState:
|
|
|
896
896
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
897
897
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
898
898
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
899
|
-
- **
|
|
899
|
+
- **odps**: MaxCompute project.
|
|
900
900
|
- **oracle**: self-built Oracle.
|
|
901
901
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
902
902
|
- **tidb**:TiDB database.
|
|
@@ -1101,7 +1101,7 @@ class Instance(pulumi.CustomResource):
|
|
|
1101
1101
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
1102
1102
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
1103
1103
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
1104
|
-
- **
|
|
1104
|
+
- **odps**: MaxCompute project.
|
|
1105
1105
|
- **oracle**: self-built Oracle.
|
|
1106
1106
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
1107
1107
|
- **tidb**:TiDB database.
|
|
@@ -1138,7 +1138,7 @@ class Instance(pulumi.CustomResource):
|
|
|
1138
1138
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
1139
1139
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
1140
1140
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
1141
|
-
- **
|
|
1141
|
+
- **odps**: MaxCompute project.
|
|
1142
1142
|
- **oracle**: self-built Oracle.
|
|
1143
1143
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
1144
1144
|
- **tidb**:TiDB database.
|
|
@@ -1345,7 +1345,7 @@ class Instance(pulumi.CustomResource):
|
|
|
1345
1345
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
1346
1346
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
1347
1347
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
1348
|
-
- **
|
|
1348
|
+
- **odps**: MaxCompute project.
|
|
1349
1349
|
- **oracle**: self-built Oracle.
|
|
1350
1350
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
1351
1351
|
- **tidb**:TiDB database.
|
|
@@ -1384,7 +1384,7 @@ class Instance(pulumi.CustomResource):
|
|
|
1384
1384
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
1385
1385
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
1386
1386
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
1387
|
-
- **
|
|
1387
|
+
- **odps**: MaxCompute project.
|
|
1388
1388
|
- **oracle**: self-built Oracle.
|
|
1389
1389
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
1390
1390
|
- **tidb**:TiDB database.
|
|
@@ -1510,7 +1510,7 @@ class Instance(pulumi.CustomResource):
|
|
|
1510
1510
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
1511
1511
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
1512
1512
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
1513
|
-
- **
|
|
1513
|
+
- **odps**: MaxCompute project.
|
|
1514
1514
|
- **oracle**: self-built Oracle.
|
|
1515
1515
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
1516
1516
|
- **tidb**:TiDB database.
|
|
@@ -1626,7 +1626,7 @@ class Instance(pulumi.CustomResource):
|
|
|
1626
1626
|
- **Redis**:Redis databases (including apsaradb for Redis and user-created Redis).
|
|
1627
1627
|
- **DRDS**: cloud-native distributed database PolarDB-X 1.0 and 2.0.
|
|
1628
1628
|
- **PostgreSQL**: User-created PostgreSQL.
|
|
1629
|
-
- **
|
|
1629
|
+
- **odps**: MaxCompute project.
|
|
1630
1630
|
- **oracle**: self-built Oracle.
|
|
1631
1631
|
- **mongodb**:MongoDB databases (including apsaradb for MongoDB and user-created MongoDB).
|
|
1632
1632
|
- **tidb**:TiDB database.
|
|
@@ -33,6 +33,7 @@ class ContainerGroupArgs:
|
|
|
33
33
|
dns_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
34
34
|
eip_bandwidth: Optional[pulumi.Input[_builtins.int]] = None,
|
|
35
35
|
eip_instance_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
36
|
+
ephemeral_storage: Optional[pulumi.Input[_builtins.int]] = None,
|
|
36
37
|
host_aliases: Optional[pulumi.Input[Sequence[pulumi.Input['ContainerGroupHostAliasArgs']]]] = None,
|
|
37
38
|
image_registry_credentials: Optional[pulumi.Input[Sequence[pulumi.Input['ContainerGroupImageRegistryCredentialArgs']]]] = None,
|
|
38
39
|
init_containers: Optional[pulumi.Input[Sequence[pulumi.Input['ContainerGroupInitContainerArgs']]]] = None,
|
|
@@ -65,6 +66,7 @@ class ContainerGroupArgs:
|
|
|
65
66
|
:param pulumi.Input[_builtins.str] dns_policy: The policy of DNS. Default value: `Default`. Valid values: `Default` and `None`.
|
|
66
67
|
:param pulumi.Input[_builtins.int] eip_bandwidth: The bandwidth of the EIP. Default value: `5`.
|
|
67
68
|
:param pulumi.Input[_builtins.str] eip_instance_id: The ID of the elastic IP address (EIP).
|
|
69
|
+
:param pulumi.Input[_builtins.int] ephemeral_storage: The size of the temporary storage space to add. Unit: GiB.
|
|
68
70
|
:param pulumi.Input[Sequence[pulumi.Input['ContainerGroupHostAliasArgs']]] host_aliases: HostAliases. See `host_aliases` below.
|
|
69
71
|
:param pulumi.Input[Sequence[pulumi.Input['ContainerGroupImageRegistryCredentialArgs']]] image_registry_credentials: The image registry credential. See `image_registry_credential` below.
|
|
70
72
|
:param pulumi.Input[Sequence[pulumi.Input['ContainerGroupInitContainerArgs']]] init_containers: The list of initContainers. See `init_containers` below.
|
|
@@ -105,6 +107,8 @@ class ContainerGroupArgs:
|
|
|
105
107
|
pulumi.set(__self__, "eip_bandwidth", eip_bandwidth)
|
|
106
108
|
if eip_instance_id is not None:
|
|
107
109
|
pulumi.set(__self__, "eip_instance_id", eip_instance_id)
|
|
110
|
+
if ephemeral_storage is not None:
|
|
111
|
+
pulumi.set(__self__, "ephemeral_storage", ephemeral_storage)
|
|
108
112
|
if host_aliases is not None:
|
|
109
113
|
pulumi.set(__self__, "host_aliases", host_aliases)
|
|
110
114
|
if image_registry_credentials is not None:
|
|
@@ -285,6 +289,18 @@ class ContainerGroupArgs:
|
|
|
285
289
|
def eip_instance_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
286
290
|
pulumi.set(self, "eip_instance_id", value)
|
|
287
291
|
|
|
292
|
+
@_builtins.property
|
|
293
|
+
@pulumi.getter(name="ephemeralStorage")
|
|
294
|
+
def ephemeral_storage(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
295
|
+
"""
|
|
296
|
+
The size of the temporary storage space to add. Unit: GiB.
|
|
297
|
+
"""
|
|
298
|
+
return pulumi.get(self, "ephemeral_storage")
|
|
299
|
+
|
|
300
|
+
@ephemeral_storage.setter
|
|
301
|
+
def ephemeral_storage(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
302
|
+
pulumi.set(self, "ephemeral_storage", value)
|
|
303
|
+
|
|
288
304
|
@_builtins.property
|
|
289
305
|
@pulumi.getter(name="hostAliases")
|
|
290
306
|
def host_aliases(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ContainerGroupHostAliasArgs']]]]:
|
|
@@ -505,6 +521,7 @@ class _ContainerGroupState:
|
|
|
505
521
|
dns_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
506
522
|
eip_bandwidth: Optional[pulumi.Input[_builtins.int]] = None,
|
|
507
523
|
eip_instance_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
524
|
+
ephemeral_storage: Optional[pulumi.Input[_builtins.int]] = None,
|
|
508
525
|
host_aliases: Optional[pulumi.Input[Sequence[pulumi.Input['ContainerGroupHostAliasArgs']]]] = None,
|
|
509
526
|
image_registry_credentials: Optional[pulumi.Input[Sequence[pulumi.Input['ContainerGroupImageRegistryCredentialArgs']]]] = None,
|
|
510
527
|
init_containers: Optional[pulumi.Input[Sequence[pulumi.Input['ContainerGroupInitContainerArgs']]]] = None,
|
|
@@ -539,6 +556,7 @@ class _ContainerGroupState:
|
|
|
539
556
|
:param pulumi.Input[_builtins.str] dns_policy: The policy of DNS. Default value: `Default`. Valid values: `Default` and `None`.
|
|
540
557
|
:param pulumi.Input[_builtins.int] eip_bandwidth: The bandwidth of the EIP. Default value: `5`.
|
|
541
558
|
:param pulumi.Input[_builtins.str] eip_instance_id: The ID of the elastic IP address (EIP).
|
|
559
|
+
:param pulumi.Input[_builtins.int] ephemeral_storage: The size of the temporary storage space to add. Unit: GiB.
|
|
542
560
|
:param pulumi.Input[Sequence[pulumi.Input['ContainerGroupHostAliasArgs']]] host_aliases: HostAliases. See `host_aliases` below.
|
|
543
561
|
:param pulumi.Input[Sequence[pulumi.Input['ContainerGroupImageRegistryCredentialArgs']]] image_registry_credentials: The image registry credential. See `image_registry_credential` below.
|
|
544
562
|
:param pulumi.Input[Sequence[pulumi.Input['ContainerGroupInitContainerArgs']]] init_containers: The list of initContainers. See `init_containers` below.
|
|
@@ -585,6 +603,8 @@ class _ContainerGroupState:
|
|
|
585
603
|
pulumi.set(__self__, "eip_bandwidth", eip_bandwidth)
|
|
586
604
|
if eip_instance_id is not None:
|
|
587
605
|
pulumi.set(__self__, "eip_instance_id", eip_instance_id)
|
|
606
|
+
if ephemeral_storage is not None:
|
|
607
|
+
pulumi.set(__self__, "ephemeral_storage", ephemeral_storage)
|
|
588
608
|
if host_aliases is not None:
|
|
589
609
|
pulumi.set(__self__, "host_aliases", host_aliases)
|
|
590
610
|
if image_registry_credentials is not None:
|
|
@@ -750,6 +770,18 @@ class _ContainerGroupState:
|
|
|
750
770
|
def eip_instance_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
751
771
|
pulumi.set(self, "eip_instance_id", value)
|
|
752
772
|
|
|
773
|
+
@_builtins.property
|
|
774
|
+
@pulumi.getter(name="ephemeralStorage")
|
|
775
|
+
def ephemeral_storage(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
776
|
+
"""
|
|
777
|
+
The size of the temporary storage space to add. Unit: GiB.
|
|
778
|
+
"""
|
|
779
|
+
return pulumi.get(self, "ephemeral_storage")
|
|
780
|
+
|
|
781
|
+
@ephemeral_storage.setter
|
|
782
|
+
def ephemeral_storage(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
783
|
+
pulumi.set(self, "ephemeral_storage", value)
|
|
784
|
+
|
|
753
785
|
@_builtins.property
|
|
754
786
|
@pulumi.getter(name="hostAliases")
|
|
755
787
|
def host_aliases(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ContainerGroupHostAliasArgs']]]]:
|
|
@@ -1034,6 +1066,7 @@ class ContainerGroup(pulumi.CustomResource):
|
|
|
1034
1066
|
dns_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1035
1067
|
eip_bandwidth: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1036
1068
|
eip_instance_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1069
|
+
ephemeral_storage: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1037
1070
|
host_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupHostAliasArgs', 'ContainerGroupHostAliasArgsDict']]]]] = None,
|
|
1038
1071
|
image_registry_credentials: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupImageRegistryCredentialArgs', 'ContainerGroupImageRegistryCredentialArgsDict']]]]] = None,
|
|
1039
1072
|
init_containers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupInitContainerArgs', 'ContainerGroupInitContainerArgsDict']]]]] = None,
|
|
@@ -1180,6 +1213,7 @@ class ContainerGroup(pulumi.CustomResource):
|
|
|
1180
1213
|
:param pulumi.Input[_builtins.str] dns_policy: The policy of DNS. Default value: `Default`. Valid values: `Default` and `None`.
|
|
1181
1214
|
:param pulumi.Input[_builtins.int] eip_bandwidth: The bandwidth of the EIP. Default value: `5`.
|
|
1182
1215
|
:param pulumi.Input[_builtins.str] eip_instance_id: The ID of the elastic IP address (EIP).
|
|
1216
|
+
:param pulumi.Input[_builtins.int] ephemeral_storage: The size of the temporary storage space to add. Unit: GiB.
|
|
1183
1217
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupHostAliasArgs', 'ContainerGroupHostAliasArgsDict']]]] host_aliases: HostAliases. See `host_aliases` below.
|
|
1184
1218
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupImageRegistryCredentialArgs', 'ContainerGroupImageRegistryCredentialArgsDict']]]] image_registry_credentials: The image registry credential. See `image_registry_credential` below.
|
|
1185
1219
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupInitContainerArgs', 'ContainerGroupInitContainerArgsDict']]]] init_containers: The list of initContainers. See `init_containers` below.
|
|
@@ -1348,6 +1382,7 @@ class ContainerGroup(pulumi.CustomResource):
|
|
|
1348
1382
|
dns_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1349
1383
|
eip_bandwidth: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1350
1384
|
eip_instance_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1385
|
+
ephemeral_storage: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1351
1386
|
host_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupHostAliasArgs', 'ContainerGroupHostAliasArgsDict']]]]] = None,
|
|
1352
1387
|
image_registry_credentials: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupImageRegistryCredentialArgs', 'ContainerGroupImageRegistryCredentialArgsDict']]]]] = None,
|
|
1353
1388
|
init_containers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupInitContainerArgs', 'ContainerGroupInitContainerArgsDict']]]]] = None,
|
|
@@ -1390,6 +1425,7 @@ class ContainerGroup(pulumi.CustomResource):
|
|
|
1390
1425
|
__props__.__dict__["dns_policy"] = dns_policy
|
|
1391
1426
|
__props__.__dict__["eip_bandwidth"] = eip_bandwidth
|
|
1392
1427
|
__props__.__dict__["eip_instance_id"] = eip_instance_id
|
|
1428
|
+
__props__.__dict__["ephemeral_storage"] = ephemeral_storage
|
|
1393
1429
|
__props__.__dict__["host_aliases"] = host_aliases
|
|
1394
1430
|
__props__.__dict__["image_registry_credentials"] = image_registry_credentials
|
|
1395
1431
|
__props__.__dict__["init_containers"] = init_containers
|
|
@@ -1436,6 +1472,7 @@ class ContainerGroup(pulumi.CustomResource):
|
|
|
1436
1472
|
dns_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1437
1473
|
eip_bandwidth: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1438
1474
|
eip_instance_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1475
|
+
ephemeral_storage: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1439
1476
|
host_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupHostAliasArgs', 'ContainerGroupHostAliasArgsDict']]]]] = None,
|
|
1440
1477
|
image_registry_credentials: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupImageRegistryCredentialArgs', 'ContainerGroupImageRegistryCredentialArgsDict']]]]] = None,
|
|
1441
1478
|
init_containers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupInitContainerArgs', 'ContainerGroupInitContainerArgsDict']]]]] = None,
|
|
@@ -1475,6 +1512,7 @@ class ContainerGroup(pulumi.CustomResource):
|
|
|
1475
1512
|
:param pulumi.Input[_builtins.str] dns_policy: The policy of DNS. Default value: `Default`. Valid values: `Default` and `None`.
|
|
1476
1513
|
:param pulumi.Input[_builtins.int] eip_bandwidth: The bandwidth of the EIP. Default value: `5`.
|
|
1477
1514
|
:param pulumi.Input[_builtins.str] eip_instance_id: The ID of the elastic IP address (EIP).
|
|
1515
|
+
:param pulumi.Input[_builtins.int] ephemeral_storage: The size of the temporary storage space to add. Unit: GiB.
|
|
1478
1516
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupHostAliasArgs', 'ContainerGroupHostAliasArgsDict']]]] host_aliases: HostAliases. See `host_aliases` below.
|
|
1479
1517
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupImageRegistryCredentialArgs', 'ContainerGroupImageRegistryCredentialArgsDict']]]] image_registry_credentials: The image registry credential. See `image_registry_credential` below.
|
|
1480
1518
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ContainerGroupInitContainerArgs', 'ContainerGroupInitContainerArgsDict']]]] init_containers: The list of initContainers. See `init_containers` below.
|
|
@@ -1515,6 +1553,7 @@ class ContainerGroup(pulumi.CustomResource):
|
|
|
1515
1553
|
__props__.__dict__["dns_policy"] = dns_policy
|
|
1516
1554
|
__props__.__dict__["eip_bandwidth"] = eip_bandwidth
|
|
1517
1555
|
__props__.__dict__["eip_instance_id"] = eip_instance_id
|
|
1556
|
+
__props__.__dict__["ephemeral_storage"] = ephemeral_storage
|
|
1518
1557
|
__props__.__dict__["host_aliases"] = host_aliases
|
|
1519
1558
|
__props__.__dict__["image_registry_credentials"] = image_registry_credentials
|
|
1520
1559
|
__props__.__dict__["init_containers"] = init_containers
|
|
@@ -1619,6 +1658,14 @@ class ContainerGroup(pulumi.CustomResource):
|
|
|
1619
1658
|
"""
|
|
1620
1659
|
return pulumi.get(self, "eip_instance_id")
|
|
1621
1660
|
|
|
1661
|
+
@_builtins.property
|
|
1662
|
+
@pulumi.getter(name="ephemeralStorage")
|
|
1663
|
+
def ephemeral_storage(self) -> pulumi.Output[Optional[_builtins.int]]:
|
|
1664
|
+
"""
|
|
1665
|
+
The size of the temporary storage space to add. Unit: GiB.
|
|
1666
|
+
"""
|
|
1667
|
+
return pulumi.get(self, "ephemeral_storage")
|
|
1668
|
+
|
|
1622
1669
|
@_builtins.property
|
|
1623
1670
|
@pulumi.getter(name="hostAliases")
|
|
1624
1671
|
def host_aliases(self) -> pulumi.Output[Optional[Sequence['outputs.ContainerGroupHostAlias']]]:
|
|
@@ -34,7 +34,7 @@ class SecurityGroupRuleArgs:
|
|
|
34
34
|
source_security_group_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
35
35
|
"""
|
|
36
36
|
The set of arguments for constructing a SecurityGroupRule resource.
|
|
37
|
-
:param pulumi.Input[_builtins.str] ip_protocol: The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `gre`, `all`.
|
|
37
|
+
:param pulumi.Input[_builtins.str] ip_protocol: The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `icmpv6`, `gre`, `all`. **NOTE:** From version 1.262.0, `ip_protocol` can be set to `icmpv6`.
|
|
38
38
|
:param pulumi.Input[_builtins.str] security_group_id: The ID of the Security Group.
|
|
39
39
|
:param pulumi.Input[_builtins.str] type: The type of the Security Group Rule. Valid values:
|
|
40
40
|
:param pulumi.Input[_builtins.str] cidr_ip: The target IP address range. The default value is 0.0.0.0/0 (which means no restriction will be applied). Other supported formats include 10.159.6.18/12. Only IPv4 is supported.
|
|
@@ -79,7 +79,7 @@ class SecurityGroupRuleArgs:
|
|
|
79
79
|
@pulumi.getter(name="ipProtocol")
|
|
80
80
|
def ip_protocol(self) -> pulumi.Input[_builtins.str]:
|
|
81
81
|
"""
|
|
82
|
-
The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `gre`, `all`.
|
|
82
|
+
The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `icmpv6`, `gre`, `all`. **NOTE:** From version 1.262.0, `ip_protocol` can be set to `icmpv6`.
|
|
83
83
|
"""
|
|
84
84
|
return pulumi.get(self, "ip_protocol")
|
|
85
85
|
|
|
@@ -258,7 +258,7 @@ class _SecurityGroupRuleState:
|
|
|
258
258
|
:param pulumi.Input[_builtins.str] description: The description of the security group rule. The description can be up to 1 to 512 characters in length. Defaults to null.
|
|
259
259
|
|
|
260
260
|
> **NOTE:** You must specify one of the following field: `cidr_ip`,`source_security_group_id`,`prefix_list_id`,`ipv6_cidr_ip`.
|
|
261
|
-
:param pulumi.Input[_builtins.str] ip_protocol: The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `gre`, `all`.
|
|
261
|
+
:param pulumi.Input[_builtins.str] ip_protocol: The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `icmpv6`, `gre`, `all`. **NOTE:** From version 1.262.0, `ip_protocol` can be set to `icmpv6`.
|
|
262
262
|
:param pulumi.Input[_builtins.str] ipv6_cidr_ip: Source IPv6 CIDR address block that requires access. Supports IP address ranges in CIDR format and IPv6 format. **NOTE:** This parameter cannot be set at the same time as the `cidr_ip` parameter.
|
|
263
263
|
:param pulumi.Input[_builtins.str] nic_type: Network type, can be either `internet` or `intranet`, the default value is `internet`.
|
|
264
264
|
:param pulumi.Input[_builtins.str] policy: The action of the Security Group Rule that determines whether to allow inbound access. Default value: `accept`. Valid values: `accept`, `drop`.
|
|
@@ -331,7 +331,7 @@ class _SecurityGroupRuleState:
|
|
|
331
331
|
@pulumi.getter(name="ipProtocol")
|
|
332
332
|
def ip_protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
333
333
|
"""
|
|
334
|
-
The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `gre`, `all`.
|
|
334
|
+
The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `icmpv6`, `gre`, `all`. **NOTE:** From version 1.262.0, `ip_protocol` can be set to `icmpv6`.
|
|
335
335
|
"""
|
|
336
336
|
return pulumi.get(self, "ip_protocol")
|
|
337
337
|
|
|
@@ -543,7 +543,7 @@ class SecurityGroupRule(pulumi.CustomResource):
|
|
|
543
543
|
:param pulumi.Input[_builtins.str] description: The description of the security group rule. The description can be up to 1 to 512 characters in length. Defaults to null.
|
|
544
544
|
|
|
545
545
|
> **NOTE:** You must specify one of the following field: `cidr_ip`,`source_security_group_id`,`prefix_list_id`,`ipv6_cidr_ip`.
|
|
546
|
-
:param pulumi.Input[_builtins.str] ip_protocol: The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `gre`, `all`.
|
|
546
|
+
:param pulumi.Input[_builtins.str] ip_protocol: The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `icmpv6`, `gre`, `all`. **NOTE:** From version 1.262.0, `ip_protocol` can be set to `icmpv6`.
|
|
547
547
|
:param pulumi.Input[_builtins.str] ipv6_cidr_ip: Source IPv6 CIDR address block that requires access. Supports IP address ranges in CIDR format and IPv6 format. **NOTE:** This parameter cannot be set at the same time as the `cidr_ip` parameter.
|
|
548
548
|
:param pulumi.Input[_builtins.str] nic_type: Network type, can be either `internet` or `intranet`, the default value is `internet`.
|
|
549
549
|
:param pulumi.Input[_builtins.str] policy: The action of the Security Group Rule that determines whether to allow inbound access. Default value: `accept`. Valid values: `accept`, `drop`.
|
|
@@ -698,7 +698,7 @@ class SecurityGroupRule(pulumi.CustomResource):
|
|
|
698
698
|
:param pulumi.Input[_builtins.str] description: The description of the security group rule. The description can be up to 1 to 512 characters in length. Defaults to null.
|
|
699
699
|
|
|
700
700
|
> **NOTE:** You must specify one of the following field: `cidr_ip`,`source_security_group_id`,`prefix_list_id`,`ipv6_cidr_ip`.
|
|
701
|
-
:param pulumi.Input[_builtins.str] ip_protocol: The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `gre`, `all`.
|
|
701
|
+
:param pulumi.Input[_builtins.str] ip_protocol: The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `icmpv6`, `gre`, `all`. **NOTE:** From version 1.262.0, `ip_protocol` can be set to `icmpv6`.
|
|
702
702
|
:param pulumi.Input[_builtins.str] ipv6_cidr_ip: Source IPv6 CIDR address block that requires access. Supports IP address ranges in CIDR format and IPv6 format. **NOTE:** This parameter cannot be set at the same time as the `cidr_ip` parameter.
|
|
703
703
|
:param pulumi.Input[_builtins.str] nic_type: Network type, can be either `internet` or `intranet`, the default value is `internet`.
|
|
704
704
|
:param pulumi.Input[_builtins.str] policy: The action of the Security Group Rule that determines whether to allow inbound access. Default value: `accept`. Valid values: `accept`, `drop`.
|
|
@@ -754,7 +754,7 @@ class SecurityGroupRule(pulumi.CustomResource):
|
|
|
754
754
|
@pulumi.getter(name="ipProtocol")
|
|
755
755
|
def ip_protocol(self) -> pulumi.Output[_builtins.str]:
|
|
756
756
|
"""
|
|
757
|
-
The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `gre`, `all`.
|
|
757
|
+
The transport layer protocol of the Security Group Rule. Valid values: `tcp`, `udp`, `icmp`, `icmpv6`, `gre`, `all`. **NOTE:** From version 1.262.0, `ip_protocol` can be set to `icmpv6`.
|
|
758
758
|
"""
|
|
759
759
|
return pulumi.get(self, "ip_protocol")
|
|
760
760
|
|
|
@@ -300,7 +300,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
300
300
|
vswitch_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
301
301
|
__props__=None):
|
|
302
302
|
"""
|
|
303
|
-
Provides a
|
|
303
|
+
Provides a ENS Load Balancer resource.
|
|
304
|
+
|
|
305
|
+
Load balancing.
|
|
304
306
|
|
|
305
307
|
For information about ENS Load Balancer and how to use it, see [What is Load Balancer](https://www.alibabacloud.com/help/en/ens/developer-reference/api-createloadbalancer).
|
|
306
308
|
|
|
@@ -340,7 +342,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
340
342
|
|
|
341
343
|
## Import
|
|
342
344
|
|
|
343
|
-
|
|
345
|
+
ENS Load Balancer can be imported using the id, e.g.
|
|
344
346
|
|
|
345
347
|
```sh
|
|
346
348
|
$ pulumi import alicloud:ens/loadBalancer:LoadBalancer example <id>
|
|
@@ -363,7 +365,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
363
365
|
args: LoadBalancerArgs,
|
|
364
366
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
365
367
|
"""
|
|
366
|
-
Provides a
|
|
368
|
+
Provides a ENS Load Balancer resource.
|
|
369
|
+
|
|
370
|
+
Load balancing.
|
|
367
371
|
|
|
368
372
|
For information about ENS Load Balancer and how to use it, see [What is Load Balancer](https://www.alibabacloud.com/help/en/ens/developer-reference/api-createloadbalancer).
|
|
369
373
|
|
|
@@ -403,7 +407,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
403
407
|
|
|
404
408
|
## Import
|
|
405
409
|
|
|
406
|
-
|
|
410
|
+
ENS Load Balancer can be imported using the id, e.g.
|
|
407
411
|
|
|
408
412
|
```sh
|
|
409
413
|
$ pulumi import alicloud:ens/loadBalancer:LoadBalancer example <id>
|
pulumi_alicloud/esa/__init__.py
CHANGED