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.

Files changed (46) hide show
  1. pulumi_alicloud/__init__.py +72 -0
  2. pulumi_alicloud/adb/resource_group.py +115 -119
  3. pulumi_alicloud/alb/__init__.py +1 -0
  4. pulumi_alicloud/alb/load_balancer_security_group_attachment.py +327 -0
  5. pulumi_alicloud/cen/__init__.py +1 -0
  6. pulumi_alicloud/cen/transit_router_ecr_attachment.py +584 -0
  7. pulumi_alicloud/clickhouse/get_regions.py +2 -2
  8. pulumi_alicloud/cloudstoragegateway/gateway.py +69 -69
  9. pulumi_alicloud/cloudstoragegateway/gateway_cache_disk.py +150 -27
  10. pulumi_alicloud/ddos/__init__.py +1 -0
  11. pulumi_alicloud/ddos/_inputs.py +712 -0
  12. pulumi_alicloud/ddos/bgp_policy.py +343 -0
  13. pulumi_alicloud/ddos/outputs.py +666 -0
  14. pulumi_alicloud/dfs/file_system.py +52 -19
  15. pulumi_alicloud/ecs/_inputs.py +132 -8
  16. pulumi_alicloud/ecs/ecs_launch_template.py +142 -1
  17. pulumi_alicloud/ecs/image.py +607 -121
  18. pulumi_alicloud/ecs/launch_template.py +103 -1
  19. pulumi_alicloud/ecs/outputs.py +131 -8
  20. pulumi_alicloud/emrv2/_inputs.py +490 -0
  21. pulumi_alicloud/emrv2/cluster.py +14 -14
  22. pulumi_alicloud/emrv2/outputs.py +500 -0
  23. pulumi_alicloud/ens/__init__.py +2 -0
  24. pulumi_alicloud/ens/eip_instance_attachment.py +480 -0
  25. pulumi_alicloud/ens/instance.py +16 -17
  26. pulumi_alicloud/ens/nat_gateway.py +458 -0
  27. pulumi_alicloud/ess/eci_scaling_configuration.py +94 -0
  28. pulumi_alicloud/ess/scaling_group.py +94 -0
  29. pulumi_alicloud/ga/accelerator.py +47 -0
  30. pulumi_alicloud/ga/acl.py +47 -0
  31. pulumi_alicloud/ga/bandwidth_package.py +57 -12
  32. pulumi_alicloud/ga/bandwidth_package_attachment.py +34 -34
  33. pulumi_alicloud/ga/basic_accelerator.py +55 -8
  34. pulumi_alicloud/ga/listener.py +122 -0
  35. pulumi_alicloud/gpdb/__init__.py +4 -0
  36. pulumi_alicloud/gpdb/external_data_service.py +485 -0
  37. pulumi_alicloud/gpdb/remote_adb_data_source.py +763 -0
  38. pulumi_alicloud/gpdb/streaming_data_service.py +481 -0
  39. pulumi_alicloud/gpdb/streaming_data_source.py +645 -0
  40. pulumi_alicloud/kvstore/instance.py +101 -0
  41. pulumi_alicloud/pulumi-plugin.json +1 -1
  42. pulumi_alicloud/redis/tair_instance.py +161 -67
  43. {pulumi_alicloud-3.58.0a1719956927.dist-info → pulumi_alicloud-3.59.0.dist-info}/METADATA +1 -1
  44. {pulumi_alicloud-3.58.0a1719956927.dist-info → pulumi_alicloud-3.59.0.dist-info}/RECORD +46 -37
  45. {pulumi_alicloud-3.58.0a1719956927.dist-info → pulumi_alicloud-3.59.0.dist-info}/WHEEL +1 -1
  46. {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: the name of gateway.
32
- :param pulumi.Input[str] location: gateway location. the valid values: `Cloud`, `On_Premise`.
33
- :param pulumi.Input[str] storage_bundle_id: storage bundle id.
34
- :param pulumi.Input[str] type: gateway type. the valid values: `Type`, `Iscsi`.
35
- :param pulumi.Input[str] description: the description of gateway.
36
- :param pulumi.Input[str] gateway_class: the gateway class. the valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`
37
- :param pulumi.Input[str] payment_type: The Payment type of gateway. The valid value: `PayAsYouGo`.
38
- :param pulumi.Input[int] public_network_bandwidth: The public network bandwidth of gateway. Valid values between `5` and `200`. Defaults to `5`.
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 vswitch id of gateway.
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
- the name of gateway.
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
- gateway location. the valid values: `Cloud`, `On_Premise`.
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
- storage bundle id.
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
- gateway type. the valid values: `Type`, `Iscsi`.
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
- the description of gateway.
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 class. the valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`
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. The valid value: `PayAsYouGo`.
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 between `5` and `200`. Defaults to `5`.
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 vswitch id of gateway.
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: the description of gateway.
229
- :param pulumi.Input[str] gateway_class: the gateway class. the valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`
230
- :param pulumi.Input[str] gateway_name: the name of gateway.
231
- :param pulumi.Input[str] location: gateway location. the valid values: `Cloud`, `On_Premise`.
232
- :param pulumi.Input[str] payment_type: The Payment type of gateway. The valid value: `PayAsYouGo`.
233
- :param pulumi.Input[int] public_network_bandwidth: The public network bandwidth of gateway. Valid values between `5` and `200`. Defaults to `5`.
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: gateway status.
238
- :param pulumi.Input[str] storage_bundle_id: storage bundle id.
239
- :param pulumi.Input[str] type: gateway type. the valid values: `Type`, `Iscsi`.
240
- :param pulumi.Input[str] vswitch_id: The vswitch id of gateway.
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
- the description of gateway.
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 class. the valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`
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
- the name of gateway.
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
- gateway location. the valid values: `Cloud`, `On_Premise`.
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. The valid value: `PayAsYouGo`.
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 between `5` and `200`. Defaults to `5`.
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
- gateway status.
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
- storage bundle id.
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
- gateway type. the valid values: `Type`, `Iscsi`.
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 vswitch id of gateway.
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: Gateway resource.
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: the description of gateway.
462
- :param pulumi.Input[str] gateway_class: the gateway class. the valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`
463
- :param pulumi.Input[str] gateway_name: the name of gateway.
464
- :param pulumi.Input[str] location: gateway location. the valid values: `Cloud`, `On_Premise`.
465
- :param pulumi.Input[str] payment_type: The Payment type of gateway. The valid value: `PayAsYouGo`.
466
- :param pulumi.Input[int] public_network_bandwidth: The public network bandwidth of gateway. Valid values between `5` and `200`. Defaults to `5`.
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: storage bundle id.
471
- :param pulumi.Input[str] type: gateway type. the valid values: `Type`, `Iscsi`.
472
- :param pulumi.Input[str] vswitch_id: The vswitch id of gateway.
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: Gateway resource.
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: the description of gateway.
583
- :param pulumi.Input[str] gateway_class: the gateway class. the valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`
584
- :param pulumi.Input[str] gateway_name: the name of gateway.
585
- :param pulumi.Input[str] location: gateway location. the valid values: `Cloud`, `On_Premise`.
586
- :param pulumi.Input[str] payment_type: The Payment type of gateway. The valid value: `PayAsYouGo`.
587
- :param pulumi.Input[int] public_network_bandwidth: The public network bandwidth of gateway. Valid values between `5` and `200`. Defaults to `5`.
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: gateway status.
592
- :param pulumi.Input[str] storage_bundle_id: storage bundle id.
593
- :param pulumi.Input[str] type: gateway type. the valid values: `Type`, `Iscsi`.
594
- :param pulumi.Input[str] vswitch_id: The vswitch id of gateway.
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
- the description of gateway.
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 class. the valid values: `Basic`, `Standard`,`Enhanced`,`Advanced`
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
- the name of gateway.
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
- gateway location. the valid values: `Cloud`, `On_Premise`.
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. The valid value: `PayAsYouGo`.
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 between `5` and `200`. Defaults to `5`.
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
- gateway status.
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
- storage bundle id.
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
- gateway type. the valid values: `Type`, `Iscsi`.
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 vswitch id of gateway.
715
+ The ID of the vSwitch.
716
716
  """
717
717
  return pulumi.get(self, "vswitch_id")
718
718