pulumi-alicloud 3.80.0a1748901772__py3-none-any.whl → 3.80.0a1749614343__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 +32 -0
- pulumi_alicloud/bastionhost/instance.py +7 -7
- pulumi_alicloud/ecs/outputs.py +40 -24
- pulumi_alicloud/esa/__init__.py +4 -0
- pulumi_alicloud/esa/kv.py +500 -0
- pulumi_alicloud/esa/routine.py +285 -0
- pulumi_alicloud/esa/routine_route.py +578 -0
- pulumi_alicloud/esa/site.py +534 -3
- pulumi_alicloud/esa/video_processing.py +802 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- {pulumi_alicloud-3.80.0a1748901772.dist-info → pulumi_alicloud-3.80.0a1749614343.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.80.0a1748901772.dist-info → pulumi_alicloud-3.80.0a1749614343.dist-info}/RECORD +14 -10
- {pulumi_alicloud-3.80.0a1748901772.dist-info → pulumi_alicloud-3.80.0a1749614343.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.80.0a1748901772.dist-info → pulumi_alicloud-3.80.0a1749614343.dist-info}/top_level.txt +0 -0
pulumi_alicloud/__init__.py
CHANGED
|
@@ -4193,6 +4193,14 @@ _utilities.register(
|
|
|
4193
4193
|
"alicloud:esa/imageTransform:ImageTransform": "ImageTransform"
|
|
4194
4194
|
}
|
|
4195
4195
|
},
|
|
4196
|
+
{
|
|
4197
|
+
"pkg": "alicloud",
|
|
4198
|
+
"mod": "esa/kv",
|
|
4199
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4200
|
+
"classes": {
|
|
4201
|
+
"alicloud:esa/kv:Kv": "Kv"
|
|
4202
|
+
}
|
|
4203
|
+
},
|
|
4196
4204
|
{
|
|
4197
4205
|
"pkg": "alicloud",
|
|
4198
4206
|
"mod": "esa/kvNamespace",
|
|
@@ -4273,6 +4281,22 @@ _utilities.register(
|
|
|
4273
4281
|
"alicloud:esa/rewriteUrlRule:RewriteUrlRule": "RewriteUrlRule"
|
|
4274
4282
|
}
|
|
4275
4283
|
},
|
|
4284
|
+
{
|
|
4285
|
+
"pkg": "alicloud",
|
|
4286
|
+
"mod": "esa/routine",
|
|
4287
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4288
|
+
"classes": {
|
|
4289
|
+
"alicloud:esa/routine:Routine": "Routine"
|
|
4290
|
+
}
|
|
4291
|
+
},
|
|
4292
|
+
{
|
|
4293
|
+
"pkg": "alicloud",
|
|
4294
|
+
"mod": "esa/routineRoute",
|
|
4295
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4296
|
+
"classes": {
|
|
4297
|
+
"alicloud:esa/routineRoute:RoutineRoute": "RoutineRoute"
|
|
4298
|
+
}
|
|
4299
|
+
},
|
|
4276
4300
|
{
|
|
4277
4301
|
"pkg": "alicloud",
|
|
4278
4302
|
"mod": "esa/scheduledPreloadExecution",
|
|
@@ -4305,6 +4329,14 @@ _utilities.register(
|
|
|
4305
4329
|
"alicloud:esa/siteDeliveryTask:SiteDeliveryTask": "SiteDeliveryTask"
|
|
4306
4330
|
}
|
|
4307
4331
|
},
|
|
4332
|
+
{
|
|
4333
|
+
"pkg": "alicloud",
|
|
4334
|
+
"mod": "esa/videoProcessing",
|
|
4335
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4336
|
+
"classes": {
|
|
4337
|
+
"alicloud:esa/videoProcessing:VideoProcessing": "VideoProcessing"
|
|
4338
|
+
}
|
|
4339
|
+
},
|
|
4308
4340
|
{
|
|
4309
4341
|
"pkg": "alicloud",
|
|
4310
4342
|
"mod": "esa/waitingRoom",
|
|
@@ -51,7 +51,7 @@ class InstanceArgs:
|
|
|
51
51
|
**NOTE:** There is a potential diff error because of the order of `security_group_ids` values indefinite.
|
|
52
52
|
So, from version 1.160.0, `security_group_ids` type has been updated as `set` from `list`,
|
|
53
53
|
and you can use tolist to convert it to a list.
|
|
54
|
-
:param pulumi.Input[builtins.str] storage: The storage of Cloud Bastionhost instance. Valid values: 0 to 500
|
|
54
|
+
:param pulumi.Input[builtins.str] storage: The storage of Cloud Bastionhost instance. Valid values: `0` to `500`. Unit: TB. **NOTE:** From version 1.251.0, `storage` can be modified.
|
|
55
55
|
:param pulumi.Input[builtins.str] vswitch_id: VSwitch ID configured to Bastionhost.
|
|
56
56
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceAdAuthServerArgs']]] ad_auth_servers: The AD auth server of the Instance. See `ad_auth_server` below.
|
|
57
57
|
:param pulumi.Input[builtins.bool] enable_public_access: Whether to Enable the public internet access to a specified Bastionhost instance. The valid values: `true`, `false`.
|
|
@@ -163,7 +163,7 @@ class InstanceArgs:
|
|
|
163
163
|
@pulumi.getter
|
|
164
164
|
def storage(self) -> pulumi.Input[builtins.str]:
|
|
165
165
|
"""
|
|
166
|
-
The storage of Cloud Bastionhost instance. Valid values: 0 to 500
|
|
166
|
+
The storage of Cloud Bastionhost instance. Valid values: `0` to `500`. Unit: TB. **NOTE:** From version 1.251.0, `storage` can be modified.
|
|
167
167
|
"""
|
|
168
168
|
return pulumi.get(self, "storage")
|
|
169
169
|
|
|
@@ -347,7 +347,7 @@ class _InstanceState:
|
|
|
347
347
|
**NOTE:** There is a potential diff error because of the order of `security_group_ids` values indefinite.
|
|
348
348
|
So, from version 1.160.0, `security_group_ids` type has been updated as `set` from `list`,
|
|
349
349
|
and you can use tolist to convert it to a list.
|
|
350
|
-
:param pulumi.Input[builtins.str] storage: The storage of Cloud Bastionhost instance. Valid values: 0 to 500
|
|
350
|
+
:param pulumi.Input[builtins.str] storage: The storage of Cloud Bastionhost instance. Valid values: `0` to `500`. Unit: TB. **NOTE:** From version 1.251.0, `storage` can be modified.
|
|
351
351
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: A mapping of tags to assign to the resource.
|
|
352
352
|
:param pulumi.Input[builtins.str] vswitch_id: VSwitch ID configured to Bastionhost.
|
|
353
353
|
"""
|
|
@@ -563,7 +563,7 @@ class _InstanceState:
|
|
|
563
563
|
@pulumi.getter
|
|
564
564
|
def storage(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
565
565
|
"""
|
|
566
|
-
The storage of Cloud Bastionhost instance. Valid values: 0 to 500
|
|
566
|
+
The storage of Cloud Bastionhost instance. Valid values: `0` to `500`. Unit: TB. **NOTE:** From version 1.251.0, `storage` can be modified.
|
|
567
567
|
"""
|
|
568
568
|
return pulumi.get(self, "storage")
|
|
569
569
|
|
|
@@ -652,7 +652,7 @@ class Instance(pulumi.CustomResource):
|
|
|
652
652
|
**NOTE:** There is a potential diff error because of the order of `security_group_ids` values indefinite.
|
|
653
653
|
So, from version 1.160.0, `security_group_ids` type has been updated as `set` from `list`,
|
|
654
654
|
and you can use tolist to convert it to a list.
|
|
655
|
-
:param pulumi.Input[builtins.str] storage: The storage of Cloud Bastionhost instance. Valid values: 0 to 500
|
|
655
|
+
:param pulumi.Input[builtins.str] storage: The storage of Cloud Bastionhost instance. Valid values: `0` to `500`. Unit: TB. **NOTE:** From version 1.251.0, `storage` can be modified.
|
|
656
656
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: A mapping of tags to assign to the resource.
|
|
657
657
|
:param pulumi.Input[builtins.str] vswitch_id: VSwitch ID configured to Bastionhost.
|
|
658
658
|
"""
|
|
@@ -798,7 +798,7 @@ class Instance(pulumi.CustomResource):
|
|
|
798
798
|
**NOTE:** There is a potential diff error because of the order of `security_group_ids` values indefinite.
|
|
799
799
|
So, from version 1.160.0, `security_group_ids` type has been updated as `set` from `list`,
|
|
800
800
|
and you can use tolist to convert it to a list.
|
|
801
|
-
:param pulumi.Input[builtins.str] storage: The storage of Cloud Bastionhost instance. Valid values: 0 to 500
|
|
801
|
+
:param pulumi.Input[builtins.str] storage: The storage of Cloud Bastionhost instance. Valid values: `0` to `500`. Unit: TB. **NOTE:** From version 1.251.0, `storage` can be modified.
|
|
802
802
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: A mapping of tags to assign to the resource.
|
|
803
803
|
:param pulumi.Input[builtins.str] vswitch_id: VSwitch ID configured to Bastionhost.
|
|
804
804
|
"""
|
|
@@ -946,7 +946,7 @@ class Instance(pulumi.CustomResource):
|
|
|
946
946
|
@pulumi.getter
|
|
947
947
|
def storage(self) -> pulumi.Output[builtins.str]:
|
|
948
948
|
"""
|
|
949
|
-
The storage of Cloud Bastionhost instance. Valid values: 0 to 500
|
|
949
|
+
The storage of Cloud Bastionhost instance. Valid values: `0` to `500`. Unit: TB. **NOTE:** From version 1.251.0, `storage` can be modified.
|
|
950
950
|
"""
|
|
951
951
|
return pulumi.get(self, "storage")
|
|
952
952
|
|
pulumi_alicloud/ecs/outputs.py
CHANGED
|
@@ -8917,9 +8917,7 @@ class GetInstanceTypesInstanceTypeResult(dict):
|
|
|
8917
8917
|
total_eni_queue_quantity: builtins.int):
|
|
8918
8918
|
"""
|
|
8919
8919
|
:param Sequence[builtins.str] availability_zones: List of availability zones that support the instance type.
|
|
8920
|
-
:param 'GetInstanceTypesInstanceTypeBurstableInstanceArgs' burstable_instance: The burstable instance attribution
|
|
8921
|
-
- initial_credit: The initial CPU credit of a burstable instance.
|
|
8922
|
-
- baseline_credit: The compute performance benchmark CPU credit of a burstable instance.
|
|
8920
|
+
:param 'GetInstanceTypesInstanceTypeBurstableInstanceArgs' burstable_instance: The burstable instance attribution.
|
|
8923
8921
|
:param builtins.int cpu_core_count: Filter the results to a specific number of cpu cores.
|
|
8924
8922
|
:param builtins.int eni_amount: Filter the result whose network interface number is no more than `eni_amount`.
|
|
8925
8923
|
:param builtins.int eni_ipv6_address_quantity: (Available since v1.239.0) The maximum number of IPv6 addresses per ENI.
|
|
@@ -8927,18 +8925,11 @@ class GetInstanceTypesInstanceTypeResult(dict):
|
|
|
8927
8925
|
:param builtins.int eni_quantity: (Available since v1.239.0) The maximum number of ENIs per instance.
|
|
8928
8926
|
:param builtins.str family: The instance type family.
|
|
8929
8927
|
:param 'GetInstanceTypesInstanceTypeGpuArgs' gpu: The GPU attribution of an instance type:
|
|
8930
|
-
- amount: The amount of GPU of an instance type.
|
|
8931
|
-
- category: The category of GPU of an instance type.
|
|
8932
8928
|
:param builtins.str id: ID of the instance type.
|
|
8933
|
-
:param 'GetInstanceTypesInstanceTypeLocalStorageArgs' local_storage: Local storage of an instance type
|
|
8934
|
-
- capacity: The capacity of a local storage in GB.
|
|
8935
|
-
- amount: The number of local storage devices that an instance has been attached to.
|
|
8936
|
-
- category: The category of local storage that an instance has been attached to.
|
|
8929
|
+
:param 'GetInstanceTypesInstanceTypeLocalStorageArgs' local_storage: Local storage of an instance type.
|
|
8937
8930
|
:param builtins.int maximum_queue_number_per_eni: (Available since v1.239.0) The maximum number of queues per ENI, including primary and secondary ENIs.
|
|
8938
8931
|
:param builtins.float memory_size: Filter the results to a specific memory size in GB.
|
|
8939
|
-
:param builtins.str nvme_support: Indicates whether the cloud disk can be attached by using the nonvolatile memory express (NVMe) protocol.
|
|
8940
|
-
- required: The cloud disk can be attached by using the NVMe protocol.
|
|
8941
|
-
- unsupported: The cloud disk cannot be attached by using the NVMe protocol.
|
|
8932
|
+
:param builtins.str nvme_support: Indicates whether the cloud disk can be attached by using the nonvolatile memory express (NVMe) protocol.
|
|
8942
8933
|
:param builtins.str price: The price of instance type. **Note:** `price` takes effect only if `sorted_by` is set to `Price`.
|
|
8943
8934
|
:param builtins.int primary_eni_queue_number: (Available since v1.239.0) The default number of queues per primary ENI.
|
|
8944
8935
|
:param builtins.int secondary_eni_queue_number: (Available since v1.239.0) The default number of queues per secondary ENI.
|
|
@@ -8975,9 +8966,7 @@ class GetInstanceTypesInstanceTypeResult(dict):
|
|
|
8975
8966
|
@pulumi.getter(name="burstableInstance")
|
|
8976
8967
|
def burstable_instance(self) -> 'outputs.GetInstanceTypesInstanceTypeBurstableInstanceResult':
|
|
8977
8968
|
"""
|
|
8978
|
-
The burstable instance attribution
|
|
8979
|
-
- initial_credit: The initial CPU credit of a burstable instance.
|
|
8980
|
-
- baseline_credit: The compute performance benchmark CPU credit of a burstable instance.
|
|
8969
|
+
The burstable instance attribution.
|
|
8981
8970
|
"""
|
|
8982
8971
|
return pulumi.get(self, "burstable_instance")
|
|
8983
8972
|
|
|
@@ -9034,8 +9023,6 @@ class GetInstanceTypesInstanceTypeResult(dict):
|
|
|
9034
9023
|
def gpu(self) -> 'outputs.GetInstanceTypesInstanceTypeGpuResult':
|
|
9035
9024
|
"""
|
|
9036
9025
|
The GPU attribution of an instance type:
|
|
9037
|
-
- amount: The amount of GPU of an instance type.
|
|
9038
|
-
- category: The category of GPU of an instance type.
|
|
9039
9026
|
"""
|
|
9040
9027
|
return pulumi.get(self, "gpu")
|
|
9041
9028
|
|
|
@@ -9051,10 +9038,7 @@ class GetInstanceTypesInstanceTypeResult(dict):
|
|
|
9051
9038
|
@pulumi.getter(name="localStorage")
|
|
9052
9039
|
def local_storage(self) -> 'outputs.GetInstanceTypesInstanceTypeLocalStorageResult':
|
|
9053
9040
|
"""
|
|
9054
|
-
Local storage of an instance type
|
|
9055
|
-
- capacity: The capacity of a local storage in GB.
|
|
9056
|
-
- amount: The number of local storage devices that an instance has been attached to.
|
|
9057
|
-
- category: The category of local storage that an instance has been attached to.
|
|
9041
|
+
Local storage of an instance type.
|
|
9058
9042
|
"""
|
|
9059
9043
|
return pulumi.get(self, "local_storage")
|
|
9060
9044
|
|
|
@@ -9078,9 +9062,7 @@ class GetInstanceTypesInstanceTypeResult(dict):
|
|
|
9078
9062
|
@pulumi.getter(name="nvmeSupport")
|
|
9079
9063
|
def nvme_support(self) -> builtins.str:
|
|
9080
9064
|
"""
|
|
9081
|
-
Indicates whether the cloud disk can be attached by using the nonvolatile memory express (NVMe) protocol.
|
|
9082
|
-
- required: The cloud disk can be attached by using the NVMe protocol.
|
|
9083
|
-
- unsupported: The cloud disk cannot be attached by using the NVMe protocol.
|
|
9065
|
+
Indicates whether the cloud disk can be attached by using the nonvolatile memory express (NVMe) protocol.
|
|
9084
9066
|
"""
|
|
9085
9067
|
return pulumi.get(self, "nvme_support")
|
|
9086
9068
|
|
|
@@ -9122,17 +9104,27 @@ class GetInstanceTypesInstanceTypeBurstableInstanceResult(dict):
|
|
|
9122
9104
|
def __init__(__self__, *,
|
|
9123
9105
|
baseline_credit: builtins.str,
|
|
9124
9106
|
initial_credit: builtins.str):
|
|
9107
|
+
"""
|
|
9108
|
+
:param builtins.str baseline_credit: The compute performance benchmark CPU credit of a burstable instance.
|
|
9109
|
+
:param builtins.str initial_credit: The initial CPU credit of a burstable instance.
|
|
9110
|
+
"""
|
|
9125
9111
|
pulumi.set(__self__, "baseline_credit", baseline_credit)
|
|
9126
9112
|
pulumi.set(__self__, "initial_credit", initial_credit)
|
|
9127
9113
|
|
|
9128
9114
|
@property
|
|
9129
9115
|
@pulumi.getter(name="baselineCredit")
|
|
9130
9116
|
def baseline_credit(self) -> builtins.str:
|
|
9117
|
+
"""
|
|
9118
|
+
The compute performance benchmark CPU credit of a burstable instance.
|
|
9119
|
+
"""
|
|
9131
9120
|
return pulumi.get(self, "baseline_credit")
|
|
9132
9121
|
|
|
9133
9122
|
@property
|
|
9134
9123
|
@pulumi.getter(name="initialCredit")
|
|
9135
9124
|
def initial_credit(self) -> builtins.str:
|
|
9125
|
+
"""
|
|
9126
|
+
The initial CPU credit of a burstable instance.
|
|
9127
|
+
"""
|
|
9136
9128
|
return pulumi.get(self, "initial_credit")
|
|
9137
9129
|
|
|
9138
9130
|
|
|
@@ -9141,17 +9133,27 @@ class GetInstanceTypesInstanceTypeGpuResult(dict):
|
|
|
9141
9133
|
def __init__(__self__, *,
|
|
9142
9134
|
amount: builtins.str,
|
|
9143
9135
|
category: builtins.str):
|
|
9136
|
+
"""
|
|
9137
|
+
:param builtins.str amount: The number of local storage devices that an instance has been attached to.
|
|
9138
|
+
:param builtins.str category: The category of local storage that an instance has been attached to.
|
|
9139
|
+
"""
|
|
9144
9140
|
pulumi.set(__self__, "amount", amount)
|
|
9145
9141
|
pulumi.set(__self__, "category", category)
|
|
9146
9142
|
|
|
9147
9143
|
@property
|
|
9148
9144
|
@pulumi.getter
|
|
9149
9145
|
def amount(self) -> builtins.str:
|
|
9146
|
+
"""
|
|
9147
|
+
The number of local storage devices that an instance has been attached to.
|
|
9148
|
+
"""
|
|
9150
9149
|
return pulumi.get(self, "amount")
|
|
9151
9150
|
|
|
9152
9151
|
@property
|
|
9153
9152
|
@pulumi.getter
|
|
9154
9153
|
def category(self) -> builtins.str:
|
|
9154
|
+
"""
|
|
9155
|
+
The category of local storage that an instance has been attached to.
|
|
9156
|
+
"""
|
|
9155
9157
|
return pulumi.get(self, "category")
|
|
9156
9158
|
|
|
9157
9159
|
|
|
@@ -9161,6 +9163,11 @@ class GetInstanceTypesInstanceTypeLocalStorageResult(dict):
|
|
|
9161
9163
|
amount: builtins.str,
|
|
9162
9164
|
capacity: builtins.str,
|
|
9163
9165
|
category: builtins.str):
|
|
9166
|
+
"""
|
|
9167
|
+
:param builtins.str amount: The number of local storage devices that an instance has been attached to.
|
|
9168
|
+
:param builtins.str capacity: The capacity of a local storage in GB.
|
|
9169
|
+
:param builtins.str category: The category of local storage that an instance has been attached to.
|
|
9170
|
+
"""
|
|
9164
9171
|
pulumi.set(__self__, "amount", amount)
|
|
9165
9172
|
pulumi.set(__self__, "capacity", capacity)
|
|
9166
9173
|
pulumi.set(__self__, "category", category)
|
|
@@ -9168,16 +9175,25 @@ class GetInstanceTypesInstanceTypeLocalStorageResult(dict):
|
|
|
9168
9175
|
@property
|
|
9169
9176
|
@pulumi.getter
|
|
9170
9177
|
def amount(self) -> builtins.str:
|
|
9178
|
+
"""
|
|
9179
|
+
The number of local storage devices that an instance has been attached to.
|
|
9180
|
+
"""
|
|
9171
9181
|
return pulumi.get(self, "amount")
|
|
9172
9182
|
|
|
9173
9183
|
@property
|
|
9174
9184
|
@pulumi.getter
|
|
9175
9185
|
def capacity(self) -> builtins.str:
|
|
9186
|
+
"""
|
|
9187
|
+
The capacity of a local storage in GB.
|
|
9188
|
+
"""
|
|
9176
9189
|
return pulumi.get(self, "capacity")
|
|
9177
9190
|
|
|
9178
9191
|
@property
|
|
9179
9192
|
@pulumi.getter
|
|
9180
9193
|
def category(self) -> builtins.str:
|
|
9194
|
+
"""
|
|
9195
|
+
The category of local storage that an instance has been attached to.
|
|
9196
|
+
"""
|
|
9181
9197
|
return pulumi.get(self, "category")
|
|
9182
9198
|
|
|
9183
9199
|
|
pulumi_alicloud/esa/__init__.py
CHANGED
|
@@ -20,6 +20,7 @@ from .http_response_header_modification_rule import *
|
|
|
20
20
|
from .https_application_configuration import *
|
|
21
21
|
from .https_basic_configuration import *
|
|
22
22
|
from .image_transform import *
|
|
23
|
+
from .kv import *
|
|
23
24
|
from .kv_namespace import *
|
|
24
25
|
from .list import *
|
|
25
26
|
from .network_optimization import *
|
|
@@ -30,10 +31,13 @@ from .rate_plan_instance import *
|
|
|
30
31
|
from .record import *
|
|
31
32
|
from .redirect_rule import *
|
|
32
33
|
from .rewrite_url_rule import *
|
|
34
|
+
from .routine import *
|
|
35
|
+
from .routine_route import *
|
|
33
36
|
from .scheduled_preload_execution import *
|
|
34
37
|
from .scheduled_preload_job import *
|
|
35
38
|
from .site import *
|
|
36
39
|
from .site_delivery_task import *
|
|
40
|
+
from .video_processing import *
|
|
37
41
|
from .waiting_room import *
|
|
38
42
|
from .waiting_room_event import *
|
|
39
43
|
from .waiting_room_rule import *
|