pulumi-alicloud 3.58.0a1719956927__py3-none-any.whl → 3.59.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +72 -0
- pulumi_alicloud/adb/resource_group.py +115 -119
- pulumi_alicloud/alb/__init__.py +1 -0
- pulumi_alicloud/alb/load_balancer_security_group_attachment.py +327 -0
- pulumi_alicloud/cen/__init__.py +1 -0
- pulumi_alicloud/cen/transit_router_ecr_attachment.py +584 -0
- pulumi_alicloud/clickhouse/get_regions.py +2 -2
- pulumi_alicloud/cloudstoragegateway/gateway.py +69 -69
- pulumi_alicloud/cloudstoragegateway/gateway_cache_disk.py +150 -27
- pulumi_alicloud/ddos/__init__.py +1 -0
- pulumi_alicloud/ddos/_inputs.py +712 -0
- pulumi_alicloud/ddos/bgp_policy.py +343 -0
- pulumi_alicloud/ddos/outputs.py +666 -0
- pulumi_alicloud/dfs/file_system.py +52 -19
- pulumi_alicloud/ecs/_inputs.py +132 -8
- pulumi_alicloud/ecs/ecs_launch_template.py +142 -1
- pulumi_alicloud/ecs/image.py +607 -121
- pulumi_alicloud/ecs/launch_template.py +103 -1
- pulumi_alicloud/ecs/outputs.py +131 -8
- pulumi_alicloud/emrv2/_inputs.py +490 -0
- pulumi_alicloud/emrv2/cluster.py +14 -14
- pulumi_alicloud/emrv2/outputs.py +500 -0
- pulumi_alicloud/ens/__init__.py +2 -0
- pulumi_alicloud/ens/eip_instance_attachment.py +480 -0
- pulumi_alicloud/ens/instance.py +16 -17
- pulumi_alicloud/ens/nat_gateway.py +458 -0
- pulumi_alicloud/ess/eci_scaling_configuration.py +94 -0
- pulumi_alicloud/ess/scaling_group.py +94 -0
- pulumi_alicloud/ga/accelerator.py +47 -0
- pulumi_alicloud/ga/acl.py +47 -0
- pulumi_alicloud/ga/bandwidth_package.py +57 -12
- pulumi_alicloud/ga/bandwidth_package_attachment.py +34 -34
- pulumi_alicloud/ga/basic_accelerator.py +55 -8
- pulumi_alicloud/ga/listener.py +122 -0
- pulumi_alicloud/gpdb/__init__.py +4 -0
- pulumi_alicloud/gpdb/external_data_service.py +485 -0
- pulumi_alicloud/gpdb/remote_adb_data_source.py +763 -0
- pulumi_alicloud/gpdb/streaming_data_service.py +481 -0
- pulumi_alicloud/gpdb/streaming_data_source.py +645 -0
- pulumi_alicloud/kvstore/instance.py +101 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/redis/tair_instance.py +161 -67
- {pulumi_alicloud-3.58.0a1719956927.dist-info → pulumi_alicloud-3.59.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.58.0a1719956927.dist-info → pulumi_alicloud-3.59.0.dist-info}/RECORD +46 -37
- {pulumi_alicloud-3.58.0a1719956927.dist-info → pulumi_alicloud-3.59.0.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.58.0a1719956927.dist-info → pulumi_alicloud-3.59.0.dist-info}/top_level.txt +0 -0
|
@@ -28,18 +28,18 @@ class GatewayArgs:
|
|
|
28
28
|
vswitch_id: Optional[pulumi.Input[str]] = None):
|
|
29
29
|
"""
|
|
30
30
|
The set of arguments for constructing a Gateway resource.
|
|
31
|
-
:param pulumi.Input[str] gateway_name:
|
|
32
|
-
:param pulumi.Input[str] location:
|
|
33
|
-
:param pulumi.Input[str] storage_bundle_id:
|
|
34
|
-
:param pulumi.Input[str] type:
|
|
35
|
-
:param pulumi.Input[str] description:
|
|
36
|
-
:param pulumi.Input[str] gateway_class: the gateway
|
|
37
|
-
:param pulumi.Input[str] payment_type: The Payment type of gateway.
|
|
38
|
-
:param pulumi.Input[int] public_network_bandwidth: The public network bandwidth of gateway. Valid values
|
|
31
|
+
:param pulumi.Input[str] gateway_name: The name of the gateway.
|
|
32
|
+
:param pulumi.Input[str] location: The location of the gateway. Valid values: `Cloud`, `On_Premise`.
|
|
33
|
+
:param pulumi.Input[str] storage_bundle_id: The ID of the gateway cluster.
|
|
34
|
+
:param pulumi.Input[str] type: The type of the gateway. Valid values: `File`, `Iscsi`.
|
|
35
|
+
:param pulumi.Input[str] description: The description of the gateway.
|
|
36
|
+
:param pulumi.Input[str] gateway_class: The specification of the gateway. Valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`.
|
|
37
|
+
:param pulumi.Input[str] payment_type: The Payment type of gateway. Valid values: `PayAsYouGo`.
|
|
38
|
+
:param pulumi.Input[int] public_network_bandwidth: The public network bandwidth of gateway. Default value: `5`. Valid values: `5` to `200`.
|
|
39
39
|
:param pulumi.Input[str] reason_detail: The reason detail of gateway.
|
|
40
40
|
:param pulumi.Input[str] reason_type: The reason type when user deletes the gateway.
|
|
41
41
|
:param pulumi.Input[bool] release_after_expiration: Whether to release the gateway due to expiration.
|
|
42
|
-
:param pulumi.Input[str] vswitch_id: The
|
|
42
|
+
:param pulumi.Input[str] vswitch_id: The ID of the vSwitch.
|
|
43
43
|
"""
|
|
44
44
|
pulumi.set(__self__, "gateway_name", gateway_name)
|
|
45
45
|
pulumi.set(__self__, "location", location)
|
|
@@ -66,7 +66,7 @@ class GatewayArgs:
|
|
|
66
66
|
@pulumi.getter(name="gatewayName")
|
|
67
67
|
def gateway_name(self) -> pulumi.Input[str]:
|
|
68
68
|
"""
|
|
69
|
-
|
|
69
|
+
The name of the gateway.
|
|
70
70
|
"""
|
|
71
71
|
return pulumi.get(self, "gateway_name")
|
|
72
72
|
|
|
@@ -78,7 +78,7 @@ class GatewayArgs:
|
|
|
78
78
|
@pulumi.getter
|
|
79
79
|
def location(self) -> pulumi.Input[str]:
|
|
80
80
|
"""
|
|
81
|
-
|
|
81
|
+
The location of the gateway. Valid values: `Cloud`, `On_Premise`.
|
|
82
82
|
"""
|
|
83
83
|
return pulumi.get(self, "location")
|
|
84
84
|
|
|
@@ -90,7 +90,7 @@ class GatewayArgs:
|
|
|
90
90
|
@pulumi.getter(name="storageBundleId")
|
|
91
91
|
def storage_bundle_id(self) -> pulumi.Input[str]:
|
|
92
92
|
"""
|
|
93
|
-
|
|
93
|
+
The ID of the gateway cluster.
|
|
94
94
|
"""
|
|
95
95
|
return pulumi.get(self, "storage_bundle_id")
|
|
96
96
|
|
|
@@ -102,7 +102,7 @@ class GatewayArgs:
|
|
|
102
102
|
@pulumi.getter
|
|
103
103
|
def type(self) -> pulumi.Input[str]:
|
|
104
104
|
"""
|
|
105
|
-
|
|
105
|
+
The type of the gateway. Valid values: `File`, `Iscsi`.
|
|
106
106
|
"""
|
|
107
107
|
return pulumi.get(self, "type")
|
|
108
108
|
|
|
@@ -114,7 +114,7 @@ class GatewayArgs:
|
|
|
114
114
|
@pulumi.getter
|
|
115
115
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
116
116
|
"""
|
|
117
|
-
|
|
117
|
+
The description of the gateway.
|
|
118
118
|
"""
|
|
119
119
|
return pulumi.get(self, "description")
|
|
120
120
|
|
|
@@ -126,7 +126,7 @@ class GatewayArgs:
|
|
|
126
126
|
@pulumi.getter(name="gatewayClass")
|
|
127
127
|
def gateway_class(self) -> Optional[pulumi.Input[str]]:
|
|
128
128
|
"""
|
|
129
|
-
the gateway
|
|
129
|
+
The specification of the gateway. Valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`.
|
|
130
130
|
"""
|
|
131
131
|
return pulumi.get(self, "gateway_class")
|
|
132
132
|
|
|
@@ -138,7 +138,7 @@ class GatewayArgs:
|
|
|
138
138
|
@pulumi.getter(name="paymentType")
|
|
139
139
|
def payment_type(self) -> Optional[pulumi.Input[str]]:
|
|
140
140
|
"""
|
|
141
|
-
The Payment type of gateway.
|
|
141
|
+
The Payment type of gateway. Valid values: `PayAsYouGo`.
|
|
142
142
|
"""
|
|
143
143
|
return pulumi.get(self, "payment_type")
|
|
144
144
|
|
|
@@ -150,7 +150,7 @@ class GatewayArgs:
|
|
|
150
150
|
@pulumi.getter(name="publicNetworkBandwidth")
|
|
151
151
|
def public_network_bandwidth(self) -> Optional[pulumi.Input[int]]:
|
|
152
152
|
"""
|
|
153
|
-
The public network bandwidth of gateway. Valid values
|
|
153
|
+
The public network bandwidth of gateway. Default value: `5`. Valid values: `5` to `200`.
|
|
154
154
|
"""
|
|
155
155
|
return pulumi.get(self, "public_network_bandwidth")
|
|
156
156
|
|
|
@@ -198,7 +198,7 @@ class GatewayArgs:
|
|
|
198
198
|
@pulumi.getter(name="vswitchId")
|
|
199
199
|
def vswitch_id(self) -> Optional[pulumi.Input[str]]:
|
|
200
200
|
"""
|
|
201
|
-
The
|
|
201
|
+
The ID of the vSwitch.
|
|
202
202
|
"""
|
|
203
203
|
return pulumi.get(self, "vswitch_id")
|
|
204
204
|
|
|
@@ -225,19 +225,19 @@ class _GatewayState:
|
|
|
225
225
|
vswitch_id: Optional[pulumi.Input[str]] = None):
|
|
226
226
|
"""
|
|
227
227
|
Input properties used for looking up and filtering Gateway resources.
|
|
228
|
-
:param pulumi.Input[str] description:
|
|
229
|
-
:param pulumi.Input[str] gateway_class: the gateway
|
|
230
|
-
:param pulumi.Input[str] gateway_name:
|
|
231
|
-
:param pulumi.Input[str] location:
|
|
232
|
-
:param pulumi.Input[str] payment_type: The Payment type of gateway.
|
|
233
|
-
:param pulumi.Input[int] public_network_bandwidth: The public network bandwidth of gateway. Valid values
|
|
228
|
+
:param pulumi.Input[str] description: The description of the gateway.
|
|
229
|
+
:param pulumi.Input[str] gateway_class: The specification of the gateway. Valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`.
|
|
230
|
+
:param pulumi.Input[str] gateway_name: The name of the gateway.
|
|
231
|
+
:param pulumi.Input[str] location: The location of the gateway. Valid values: `Cloud`, `On_Premise`.
|
|
232
|
+
:param pulumi.Input[str] payment_type: The Payment type of gateway. Valid values: `PayAsYouGo`.
|
|
233
|
+
:param pulumi.Input[int] public_network_bandwidth: The public network bandwidth of gateway. Default value: `5`. Valid values: `5` to `200`.
|
|
234
234
|
:param pulumi.Input[str] reason_detail: The reason detail of gateway.
|
|
235
235
|
:param pulumi.Input[str] reason_type: The reason type when user deletes the gateway.
|
|
236
236
|
:param pulumi.Input[bool] release_after_expiration: Whether to release the gateway due to expiration.
|
|
237
|
-
:param pulumi.Input[str] status:
|
|
238
|
-
:param pulumi.Input[str] storage_bundle_id:
|
|
239
|
-
:param pulumi.Input[str] type:
|
|
240
|
-
:param pulumi.Input[str] vswitch_id: The
|
|
237
|
+
:param pulumi.Input[str] status: The status of the Gateway.
|
|
238
|
+
:param pulumi.Input[str] storage_bundle_id: The ID of the gateway cluster.
|
|
239
|
+
:param pulumi.Input[str] type: The type of the gateway. Valid values: `File`, `Iscsi`.
|
|
240
|
+
:param pulumi.Input[str] vswitch_id: The ID of the vSwitch.
|
|
241
241
|
"""
|
|
242
242
|
if description is not None:
|
|
243
243
|
pulumi.set(__self__, "description", description)
|
|
@@ -270,7 +270,7 @@ class _GatewayState:
|
|
|
270
270
|
@pulumi.getter
|
|
271
271
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
272
272
|
"""
|
|
273
|
-
|
|
273
|
+
The description of the gateway.
|
|
274
274
|
"""
|
|
275
275
|
return pulumi.get(self, "description")
|
|
276
276
|
|
|
@@ -282,7 +282,7 @@ class _GatewayState:
|
|
|
282
282
|
@pulumi.getter(name="gatewayClass")
|
|
283
283
|
def gateway_class(self) -> Optional[pulumi.Input[str]]:
|
|
284
284
|
"""
|
|
285
|
-
the gateway
|
|
285
|
+
The specification of the gateway. Valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`.
|
|
286
286
|
"""
|
|
287
287
|
return pulumi.get(self, "gateway_class")
|
|
288
288
|
|
|
@@ -294,7 +294,7 @@ class _GatewayState:
|
|
|
294
294
|
@pulumi.getter(name="gatewayName")
|
|
295
295
|
def gateway_name(self) -> Optional[pulumi.Input[str]]:
|
|
296
296
|
"""
|
|
297
|
-
|
|
297
|
+
The name of the gateway.
|
|
298
298
|
"""
|
|
299
299
|
return pulumi.get(self, "gateway_name")
|
|
300
300
|
|
|
@@ -306,7 +306,7 @@ class _GatewayState:
|
|
|
306
306
|
@pulumi.getter
|
|
307
307
|
def location(self) -> Optional[pulumi.Input[str]]:
|
|
308
308
|
"""
|
|
309
|
-
|
|
309
|
+
The location of the gateway. Valid values: `Cloud`, `On_Premise`.
|
|
310
310
|
"""
|
|
311
311
|
return pulumi.get(self, "location")
|
|
312
312
|
|
|
@@ -318,7 +318,7 @@ class _GatewayState:
|
|
|
318
318
|
@pulumi.getter(name="paymentType")
|
|
319
319
|
def payment_type(self) -> Optional[pulumi.Input[str]]:
|
|
320
320
|
"""
|
|
321
|
-
The Payment type of gateway.
|
|
321
|
+
The Payment type of gateway. Valid values: `PayAsYouGo`.
|
|
322
322
|
"""
|
|
323
323
|
return pulumi.get(self, "payment_type")
|
|
324
324
|
|
|
@@ -330,7 +330,7 @@ class _GatewayState:
|
|
|
330
330
|
@pulumi.getter(name="publicNetworkBandwidth")
|
|
331
331
|
def public_network_bandwidth(self) -> Optional[pulumi.Input[int]]:
|
|
332
332
|
"""
|
|
333
|
-
The public network bandwidth of gateway. Valid values
|
|
333
|
+
The public network bandwidth of gateway. Default value: `5`. Valid values: `5` to `200`.
|
|
334
334
|
"""
|
|
335
335
|
return pulumi.get(self, "public_network_bandwidth")
|
|
336
336
|
|
|
@@ -378,7 +378,7 @@ class _GatewayState:
|
|
|
378
378
|
@pulumi.getter
|
|
379
379
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
380
380
|
"""
|
|
381
|
-
|
|
381
|
+
The status of the Gateway.
|
|
382
382
|
"""
|
|
383
383
|
return pulumi.get(self, "status")
|
|
384
384
|
|
|
@@ -390,7 +390,7 @@ class _GatewayState:
|
|
|
390
390
|
@pulumi.getter(name="storageBundleId")
|
|
391
391
|
def storage_bundle_id(self) -> Optional[pulumi.Input[str]]:
|
|
392
392
|
"""
|
|
393
|
-
|
|
393
|
+
The ID of the gateway cluster.
|
|
394
394
|
"""
|
|
395
395
|
return pulumi.get(self, "storage_bundle_id")
|
|
396
396
|
|
|
@@ -402,7 +402,7 @@ class _GatewayState:
|
|
|
402
402
|
@pulumi.getter
|
|
403
403
|
def type(self) -> Optional[pulumi.Input[str]]:
|
|
404
404
|
"""
|
|
405
|
-
|
|
405
|
+
The type of the gateway. Valid values: `File`, `Iscsi`.
|
|
406
406
|
"""
|
|
407
407
|
return pulumi.get(self, "type")
|
|
408
408
|
|
|
@@ -414,7 +414,7 @@ class _GatewayState:
|
|
|
414
414
|
@pulumi.getter(name="vswitchId")
|
|
415
415
|
def vswitch_id(self) -> Optional[pulumi.Input[str]]:
|
|
416
416
|
"""
|
|
417
|
-
The
|
|
417
|
+
The ID of the vSwitch.
|
|
418
418
|
"""
|
|
419
419
|
return pulumi.get(self, "vswitch_id")
|
|
420
420
|
|
|
@@ -442,7 +442,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
442
442
|
vswitch_id: Optional[pulumi.Input[str]] = None,
|
|
443
443
|
__props__=None):
|
|
444
444
|
"""
|
|
445
|
-
Provides a Cloud Storage Gateway
|
|
445
|
+
Provides a Cloud Storage Gateway Gateway resource.
|
|
446
446
|
|
|
447
447
|
For information about Cloud Storage Gateway Gateway and how to use it, see [What is Gateway](https://www.alibabacloud.com/help/en/cloud-storage-gateway/latest/deploygateway).
|
|
448
448
|
|
|
@@ -458,18 +458,18 @@ class Gateway(pulumi.CustomResource):
|
|
|
458
458
|
|
|
459
459
|
:param str resource_name: The name of the resource.
|
|
460
460
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
461
|
-
:param pulumi.Input[str] description:
|
|
462
|
-
:param pulumi.Input[str] gateway_class: the gateway
|
|
463
|
-
:param pulumi.Input[str] gateway_name:
|
|
464
|
-
:param pulumi.Input[str] location:
|
|
465
|
-
:param pulumi.Input[str] payment_type: The Payment type of gateway.
|
|
466
|
-
:param pulumi.Input[int] public_network_bandwidth: The public network bandwidth of gateway. Valid values
|
|
461
|
+
:param pulumi.Input[str] description: The description of the gateway.
|
|
462
|
+
:param pulumi.Input[str] gateway_class: The specification of the gateway. Valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`.
|
|
463
|
+
:param pulumi.Input[str] gateway_name: The name of the gateway.
|
|
464
|
+
:param pulumi.Input[str] location: The location of the gateway. Valid values: `Cloud`, `On_Premise`.
|
|
465
|
+
:param pulumi.Input[str] payment_type: The Payment type of gateway. Valid values: `PayAsYouGo`.
|
|
466
|
+
:param pulumi.Input[int] public_network_bandwidth: The public network bandwidth of gateway. Default value: `5`. Valid values: `5` to `200`.
|
|
467
467
|
:param pulumi.Input[str] reason_detail: The reason detail of gateway.
|
|
468
468
|
:param pulumi.Input[str] reason_type: The reason type when user deletes the gateway.
|
|
469
469
|
:param pulumi.Input[bool] release_after_expiration: Whether to release the gateway due to expiration.
|
|
470
|
-
:param pulumi.Input[str] storage_bundle_id:
|
|
471
|
-
:param pulumi.Input[str] type:
|
|
472
|
-
:param pulumi.Input[str] vswitch_id: The
|
|
470
|
+
:param pulumi.Input[str] storage_bundle_id: The ID of the gateway cluster.
|
|
471
|
+
:param pulumi.Input[str] type: The type of the gateway. Valid values: `File`, `Iscsi`.
|
|
472
|
+
:param pulumi.Input[str] vswitch_id: The ID of the vSwitch.
|
|
473
473
|
"""
|
|
474
474
|
...
|
|
475
475
|
@overload
|
|
@@ -478,7 +478,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
478
478
|
args: GatewayArgs,
|
|
479
479
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
480
480
|
"""
|
|
481
|
-
Provides a Cloud Storage Gateway
|
|
481
|
+
Provides a Cloud Storage Gateway Gateway resource.
|
|
482
482
|
|
|
483
483
|
For information about Cloud Storage Gateway Gateway and how to use it, see [What is Gateway](https://www.alibabacloud.com/help/en/cloud-storage-gateway/latest/deploygateway).
|
|
484
484
|
|
|
@@ -579,19 +579,19 @@ class Gateway(pulumi.CustomResource):
|
|
|
579
579
|
:param str resource_name: The unique name of the resulting resource.
|
|
580
580
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
581
581
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
582
|
-
:param pulumi.Input[str] description:
|
|
583
|
-
:param pulumi.Input[str] gateway_class: the gateway
|
|
584
|
-
:param pulumi.Input[str] gateway_name:
|
|
585
|
-
:param pulumi.Input[str] location:
|
|
586
|
-
:param pulumi.Input[str] payment_type: The Payment type of gateway.
|
|
587
|
-
:param pulumi.Input[int] public_network_bandwidth: The public network bandwidth of gateway. Valid values
|
|
582
|
+
:param pulumi.Input[str] description: The description of the gateway.
|
|
583
|
+
:param pulumi.Input[str] gateway_class: The specification of the gateway. Valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`.
|
|
584
|
+
:param pulumi.Input[str] gateway_name: The name of the gateway.
|
|
585
|
+
:param pulumi.Input[str] location: The location of the gateway. Valid values: `Cloud`, `On_Premise`.
|
|
586
|
+
:param pulumi.Input[str] payment_type: The Payment type of gateway. Valid values: `PayAsYouGo`.
|
|
587
|
+
:param pulumi.Input[int] public_network_bandwidth: The public network bandwidth of gateway. Default value: `5`. Valid values: `5` to `200`.
|
|
588
588
|
:param pulumi.Input[str] reason_detail: The reason detail of gateway.
|
|
589
589
|
:param pulumi.Input[str] reason_type: The reason type when user deletes the gateway.
|
|
590
590
|
:param pulumi.Input[bool] release_after_expiration: Whether to release the gateway due to expiration.
|
|
591
|
-
:param pulumi.Input[str] status:
|
|
592
|
-
:param pulumi.Input[str] storage_bundle_id:
|
|
593
|
-
:param pulumi.Input[str] type:
|
|
594
|
-
:param pulumi.Input[str] vswitch_id: The
|
|
591
|
+
:param pulumi.Input[str] status: The status of the Gateway.
|
|
592
|
+
:param pulumi.Input[str] storage_bundle_id: The ID of the gateway cluster.
|
|
593
|
+
:param pulumi.Input[str] type: The type of the gateway. Valid values: `File`, `Iscsi`.
|
|
594
|
+
:param pulumi.Input[str] vswitch_id: The ID of the vSwitch.
|
|
595
595
|
"""
|
|
596
596
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
597
597
|
|
|
@@ -616,7 +616,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
616
616
|
@pulumi.getter
|
|
617
617
|
def description(self) -> pulumi.Output[Optional[str]]:
|
|
618
618
|
"""
|
|
619
|
-
|
|
619
|
+
The description of the gateway.
|
|
620
620
|
"""
|
|
621
621
|
return pulumi.get(self, "description")
|
|
622
622
|
|
|
@@ -624,7 +624,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
624
624
|
@pulumi.getter(name="gatewayClass")
|
|
625
625
|
def gateway_class(self) -> pulumi.Output[Optional[str]]:
|
|
626
626
|
"""
|
|
627
|
-
the gateway
|
|
627
|
+
The specification of the gateway. Valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`.
|
|
628
628
|
"""
|
|
629
629
|
return pulumi.get(self, "gateway_class")
|
|
630
630
|
|
|
@@ -632,7 +632,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
632
632
|
@pulumi.getter(name="gatewayName")
|
|
633
633
|
def gateway_name(self) -> pulumi.Output[str]:
|
|
634
634
|
"""
|
|
635
|
-
|
|
635
|
+
The name of the gateway.
|
|
636
636
|
"""
|
|
637
637
|
return pulumi.get(self, "gateway_name")
|
|
638
638
|
|
|
@@ -640,7 +640,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
640
640
|
@pulumi.getter
|
|
641
641
|
def location(self) -> pulumi.Output[str]:
|
|
642
642
|
"""
|
|
643
|
-
|
|
643
|
+
The location of the gateway. Valid values: `Cloud`, `On_Premise`.
|
|
644
644
|
"""
|
|
645
645
|
return pulumi.get(self, "location")
|
|
646
646
|
|
|
@@ -648,7 +648,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
648
648
|
@pulumi.getter(name="paymentType")
|
|
649
649
|
def payment_type(self) -> pulumi.Output[Optional[str]]:
|
|
650
650
|
"""
|
|
651
|
-
The Payment type of gateway.
|
|
651
|
+
The Payment type of gateway. Valid values: `PayAsYouGo`.
|
|
652
652
|
"""
|
|
653
653
|
return pulumi.get(self, "payment_type")
|
|
654
654
|
|
|
@@ -656,7 +656,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
656
656
|
@pulumi.getter(name="publicNetworkBandwidth")
|
|
657
657
|
def public_network_bandwidth(self) -> pulumi.Output[int]:
|
|
658
658
|
"""
|
|
659
|
-
The public network bandwidth of gateway. Valid values
|
|
659
|
+
The public network bandwidth of gateway. Default value: `5`. Valid values: `5` to `200`.
|
|
660
660
|
"""
|
|
661
661
|
return pulumi.get(self, "public_network_bandwidth")
|
|
662
662
|
|
|
@@ -688,7 +688,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
688
688
|
@pulumi.getter
|
|
689
689
|
def status(self) -> pulumi.Output[str]:
|
|
690
690
|
"""
|
|
691
|
-
|
|
691
|
+
The status of the Gateway.
|
|
692
692
|
"""
|
|
693
693
|
return pulumi.get(self, "status")
|
|
694
694
|
|
|
@@ -696,7 +696,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
696
696
|
@pulumi.getter(name="storageBundleId")
|
|
697
697
|
def storage_bundle_id(self) -> pulumi.Output[str]:
|
|
698
698
|
"""
|
|
699
|
-
|
|
699
|
+
The ID of the gateway cluster.
|
|
700
700
|
"""
|
|
701
701
|
return pulumi.get(self, "storage_bundle_id")
|
|
702
702
|
|
|
@@ -704,7 +704,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
704
704
|
@pulumi.getter
|
|
705
705
|
def type(self) -> pulumi.Output[str]:
|
|
706
706
|
"""
|
|
707
|
-
|
|
707
|
+
The type of the gateway. Valid values: `File`, `Iscsi`.
|
|
708
708
|
"""
|
|
709
709
|
return pulumi.get(self, "type")
|
|
710
710
|
|
|
@@ -712,7 +712,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
712
712
|
@pulumi.getter(name="vswitchId")
|
|
713
713
|
def vswitch_id(self) -> pulumi.Output[Optional[str]]:
|
|
714
714
|
"""
|
|
715
|
-
The
|
|
715
|
+
The ID of the vSwitch.
|
|
716
716
|
"""
|
|
717
717
|
return pulumi.get(self, "vswitch_id")
|
|
718
718
|
|