pulumi-alicloud 3.79.0a1747891356__py3-none-any.whl → 3.79.0a1748578459__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 (48) hide show
  1. pulumi_alicloud/__init__.py +40 -0
  2. pulumi_alicloud/alb/_inputs.py +21 -105
  3. pulumi_alicloud/alb/get_load_balancers.py +169 -18
  4. pulumi_alicloud/alb/listener.py +28 -56
  5. pulumi_alicloud/alb/outputs.py +150 -105
  6. pulumi_alicloud/cs/_inputs.py +54 -0
  7. pulumi_alicloud/cs/get_kubernetes_version.py +4 -4
  8. pulumi_alicloud/cs/managed_kubernetes.py +129 -7
  9. pulumi_alicloud/cs/outputs.py +49 -0
  10. pulumi_alicloud/ecs/__init__.py +1 -0
  11. pulumi_alicloud/ecs/_inputs.py +40 -0
  12. pulumi_alicloud/ecs/get_dedicated_hosts.py +49 -22
  13. pulumi_alicloud/ecs/get_instances.py +4 -3
  14. pulumi_alicloud/ecs/instance.py +94 -0
  15. pulumi_alicloud/ecs/outputs.py +129 -39
  16. pulumi_alicloud/ecs/ram_role_attachment.py +406 -0
  17. pulumi_alicloud/eflo/__init__.py +1 -0
  18. pulumi_alicloud/eflo/vsc.py +433 -0
  19. pulumi_alicloud/elasticsearch/instance.py +7 -7
  20. pulumi_alicloud/ess/outputs.py +226 -4
  21. pulumi_alicloud/expressconnect/router_vpc_association.py +56 -49
  22. pulumi_alicloud/fc/__init__.py +1 -0
  23. pulumi_alicloud/fc/get_v3_triggers.py +277 -0
  24. pulumi_alicloud/fc/outputs.py +192 -0
  25. pulumi_alicloud/lindorm/__init__.py +1 -0
  26. pulumi_alicloud/lindorm/public_network.py +288 -0
  27. pulumi_alicloud/maxcompute/project.py +2 -4
  28. pulumi_alicloud/oos/get_parameters.py +72 -28
  29. pulumi_alicloud/oos/outputs.py +10 -10
  30. pulumi_alicloud/pai/__init__.py +1 -0
  31. pulumi_alicloud/pai/workspace_user_config.py +356 -0
  32. pulumi_alicloud/polardb/cluster.py +155 -0
  33. pulumi_alicloud/pulumi-plugin.json +1 -1
  34. pulumi_alicloud/pvtz/get_zone_records.py +66 -35
  35. pulumi_alicloud/pvtz/get_zones.py +49 -32
  36. pulumi_alicloud/pvtz/outputs.py +60 -56
  37. pulumi_alicloud/ram/policy.py +21 -35
  38. pulumi_alicloud/ram/role_attachment.py +6 -2
  39. pulumi_alicloud/rds/__init__.py +1 -0
  40. pulumi_alicloud/rds/db_proxy_public.py +512 -0
  41. pulumi_alicloud/rds/instance.py +35 -35
  42. pulumi_alicloud/sls/__init__.py +1 -0
  43. pulumi_alicloud/sls/get_alerts.py +463 -0
  44. pulumi_alicloud/sls/outputs.py +975 -0
  45. {pulumi_alicloud-3.79.0a1747891356.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/METADATA +1 -1
  46. {pulumi_alicloud-3.79.0a1747891356.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/RECORD +48 -41
  47. {pulumi_alicloud-3.79.0a1747891356.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/WHEEL +1 -1
  48. {pulumi_alicloud-3.79.0a1747891356.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,433 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins
6
+ import copy
7
+ import warnings
8
+ import sys
9
+ import pulumi
10
+ import pulumi.runtime
11
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
12
+ if sys.version_info >= (3, 11):
13
+ from typing import NotRequired, TypedDict, TypeAlias
14
+ else:
15
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
16
+ from .. import _utilities
17
+
18
+ __all__ = ['VscArgs', 'Vsc']
19
+
20
+ @pulumi.input_type
21
+ class VscArgs:
22
+ def __init__(__self__, *,
23
+ node_id: pulumi.Input[builtins.str],
24
+ resource_group_id: Optional[pulumi.Input[builtins.str]] = None,
25
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
26
+ vsc_name: Optional[pulumi.Input[builtins.str]] = None,
27
+ vsc_type: Optional[pulumi.Input[builtins.str]] = None):
28
+ """
29
+ The set of arguments for constructing a Vsc resource.
30
+ :param pulumi.Input[builtins.str] node_id: The ID of the Node.
31
+ :param pulumi.Input[builtins.str] resource_group_id: The ID of the resource group.
32
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tag of the resource.
33
+ :param pulumi.Input[builtins.str] vsc_name: The name of the Vsc.
34
+ :param pulumi.Input[builtins.str] vsc_type: The type of the Vsc. Default value: `primary`. Valid values: `primary`.
35
+ """
36
+ pulumi.set(__self__, "node_id", node_id)
37
+ if resource_group_id is not None:
38
+ pulumi.set(__self__, "resource_group_id", resource_group_id)
39
+ if tags is not None:
40
+ pulumi.set(__self__, "tags", tags)
41
+ if vsc_name is not None:
42
+ pulumi.set(__self__, "vsc_name", vsc_name)
43
+ if vsc_type is not None:
44
+ pulumi.set(__self__, "vsc_type", vsc_type)
45
+
46
+ @property
47
+ @pulumi.getter(name="nodeId")
48
+ def node_id(self) -> pulumi.Input[builtins.str]:
49
+ """
50
+ The ID of the Node.
51
+ """
52
+ return pulumi.get(self, "node_id")
53
+
54
+ @node_id.setter
55
+ def node_id(self, value: pulumi.Input[builtins.str]):
56
+ pulumi.set(self, "node_id", value)
57
+
58
+ @property
59
+ @pulumi.getter(name="resourceGroupId")
60
+ def resource_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
61
+ """
62
+ The ID of the resource group.
63
+ """
64
+ return pulumi.get(self, "resource_group_id")
65
+
66
+ @resource_group_id.setter
67
+ def resource_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
68
+ pulumi.set(self, "resource_group_id", value)
69
+
70
+ @property
71
+ @pulumi.getter
72
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
73
+ """
74
+ The tag of the resource.
75
+ """
76
+ return pulumi.get(self, "tags")
77
+
78
+ @tags.setter
79
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
80
+ pulumi.set(self, "tags", value)
81
+
82
+ @property
83
+ @pulumi.getter(name="vscName")
84
+ def vsc_name(self) -> Optional[pulumi.Input[builtins.str]]:
85
+ """
86
+ The name of the Vsc.
87
+ """
88
+ return pulumi.get(self, "vsc_name")
89
+
90
+ @vsc_name.setter
91
+ def vsc_name(self, value: Optional[pulumi.Input[builtins.str]]):
92
+ pulumi.set(self, "vsc_name", value)
93
+
94
+ @property
95
+ @pulumi.getter(name="vscType")
96
+ def vsc_type(self) -> Optional[pulumi.Input[builtins.str]]:
97
+ """
98
+ The type of the Vsc. Default value: `primary`. Valid values: `primary`.
99
+ """
100
+ return pulumi.get(self, "vsc_type")
101
+
102
+ @vsc_type.setter
103
+ def vsc_type(self, value: Optional[pulumi.Input[builtins.str]]):
104
+ pulumi.set(self, "vsc_type", value)
105
+
106
+
107
+ @pulumi.input_type
108
+ class _VscState:
109
+ def __init__(__self__, *,
110
+ node_id: Optional[pulumi.Input[builtins.str]] = None,
111
+ resource_group_id: Optional[pulumi.Input[builtins.str]] = None,
112
+ status: Optional[pulumi.Input[builtins.str]] = None,
113
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
114
+ vsc_name: Optional[pulumi.Input[builtins.str]] = None,
115
+ vsc_type: Optional[pulumi.Input[builtins.str]] = None):
116
+ """
117
+ Input properties used for looking up and filtering Vsc resources.
118
+ :param pulumi.Input[builtins.str] node_id: The ID of the Node.
119
+ :param pulumi.Input[builtins.str] resource_group_id: The ID of the resource group.
120
+ :param pulumi.Input[builtins.str] status: The status of the Vsc.
121
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tag of the resource.
122
+ :param pulumi.Input[builtins.str] vsc_name: The name of the Vsc.
123
+ :param pulumi.Input[builtins.str] vsc_type: The type of the Vsc. Default value: `primary`. Valid values: `primary`.
124
+ """
125
+ if node_id is not None:
126
+ pulumi.set(__self__, "node_id", node_id)
127
+ if resource_group_id is not None:
128
+ pulumi.set(__self__, "resource_group_id", resource_group_id)
129
+ if status is not None:
130
+ pulumi.set(__self__, "status", status)
131
+ if tags is not None:
132
+ pulumi.set(__self__, "tags", tags)
133
+ if vsc_name is not None:
134
+ pulumi.set(__self__, "vsc_name", vsc_name)
135
+ if vsc_type is not None:
136
+ pulumi.set(__self__, "vsc_type", vsc_type)
137
+
138
+ @property
139
+ @pulumi.getter(name="nodeId")
140
+ def node_id(self) -> Optional[pulumi.Input[builtins.str]]:
141
+ """
142
+ The ID of the Node.
143
+ """
144
+ return pulumi.get(self, "node_id")
145
+
146
+ @node_id.setter
147
+ def node_id(self, value: Optional[pulumi.Input[builtins.str]]):
148
+ pulumi.set(self, "node_id", value)
149
+
150
+ @property
151
+ @pulumi.getter(name="resourceGroupId")
152
+ def resource_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
153
+ """
154
+ The ID of the resource group.
155
+ """
156
+ return pulumi.get(self, "resource_group_id")
157
+
158
+ @resource_group_id.setter
159
+ def resource_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
160
+ pulumi.set(self, "resource_group_id", value)
161
+
162
+ @property
163
+ @pulumi.getter
164
+ def status(self) -> Optional[pulumi.Input[builtins.str]]:
165
+ """
166
+ The status of the Vsc.
167
+ """
168
+ return pulumi.get(self, "status")
169
+
170
+ @status.setter
171
+ def status(self, value: Optional[pulumi.Input[builtins.str]]):
172
+ pulumi.set(self, "status", value)
173
+
174
+ @property
175
+ @pulumi.getter
176
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
177
+ """
178
+ The tag of the resource.
179
+ """
180
+ return pulumi.get(self, "tags")
181
+
182
+ @tags.setter
183
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
184
+ pulumi.set(self, "tags", value)
185
+
186
+ @property
187
+ @pulumi.getter(name="vscName")
188
+ def vsc_name(self) -> Optional[pulumi.Input[builtins.str]]:
189
+ """
190
+ The name of the Vsc.
191
+ """
192
+ return pulumi.get(self, "vsc_name")
193
+
194
+ @vsc_name.setter
195
+ def vsc_name(self, value: Optional[pulumi.Input[builtins.str]]):
196
+ pulumi.set(self, "vsc_name", value)
197
+
198
+ @property
199
+ @pulumi.getter(name="vscType")
200
+ def vsc_type(self) -> Optional[pulumi.Input[builtins.str]]:
201
+ """
202
+ The type of the Vsc. Default value: `primary`. Valid values: `primary`.
203
+ """
204
+ return pulumi.get(self, "vsc_type")
205
+
206
+ @vsc_type.setter
207
+ def vsc_type(self, value: Optional[pulumi.Input[builtins.str]]):
208
+ pulumi.set(self, "vsc_type", value)
209
+
210
+
211
+ @pulumi.type_token("alicloud:eflo/vsc:Vsc")
212
+ class Vsc(pulumi.CustomResource):
213
+ @overload
214
+ def __init__(__self__,
215
+ resource_name: str,
216
+ opts: Optional[pulumi.ResourceOptions] = None,
217
+ node_id: Optional[pulumi.Input[builtins.str]] = None,
218
+ resource_group_id: Optional[pulumi.Input[builtins.str]] = None,
219
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
220
+ vsc_name: Optional[pulumi.Input[builtins.str]] = None,
221
+ vsc_type: Optional[pulumi.Input[builtins.str]] = None,
222
+ __props__=None):
223
+ """
224
+ Provides a Eflo Vsc resource.
225
+
226
+ Virtual Storage Channel.
227
+
228
+ For information about Eflo Vsc and how to use it, see [What is Vsc](https://www.alibabacloud.com/help/en/pai/developer-reference/api-eflo-controller-2022-12-15-createvsc).
229
+
230
+ > **NOTE:** Available since v1.250.0.
231
+
232
+ ## Example Usage
233
+
234
+ Basic Usage
235
+
236
+ ```python
237
+ import pulumi
238
+ import pulumi_alicloud as alicloud
239
+
240
+ config = pulumi.Config()
241
+ name = config.get("name")
242
+ if name is None:
243
+ name = "terraform-example"
244
+ default = alicloud.eflo.Vsc("default",
245
+ vsc_type="primary",
246
+ node_id="e01-cn-9me49omda01",
247
+ vsc_name=name)
248
+ ```
249
+
250
+ ## Import
251
+
252
+ Eflo Vsc can be imported using the id, e.g.
253
+
254
+ ```sh
255
+ $ pulumi import alicloud:eflo/vsc:Vsc example <id>
256
+ ```
257
+
258
+ :param str resource_name: The name of the resource.
259
+ :param pulumi.ResourceOptions opts: Options for the resource.
260
+ :param pulumi.Input[builtins.str] node_id: The ID of the Node.
261
+ :param pulumi.Input[builtins.str] resource_group_id: The ID of the resource group.
262
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tag of the resource.
263
+ :param pulumi.Input[builtins.str] vsc_name: The name of the Vsc.
264
+ :param pulumi.Input[builtins.str] vsc_type: The type of the Vsc. Default value: `primary`. Valid values: `primary`.
265
+ """
266
+ ...
267
+ @overload
268
+ def __init__(__self__,
269
+ resource_name: str,
270
+ args: VscArgs,
271
+ opts: Optional[pulumi.ResourceOptions] = None):
272
+ """
273
+ Provides a Eflo Vsc resource.
274
+
275
+ Virtual Storage Channel.
276
+
277
+ For information about Eflo Vsc and how to use it, see [What is Vsc](https://www.alibabacloud.com/help/en/pai/developer-reference/api-eflo-controller-2022-12-15-createvsc).
278
+
279
+ > **NOTE:** Available since v1.250.0.
280
+
281
+ ## Example Usage
282
+
283
+ Basic Usage
284
+
285
+ ```python
286
+ import pulumi
287
+ import pulumi_alicloud as alicloud
288
+
289
+ config = pulumi.Config()
290
+ name = config.get("name")
291
+ if name is None:
292
+ name = "terraform-example"
293
+ default = alicloud.eflo.Vsc("default",
294
+ vsc_type="primary",
295
+ node_id="e01-cn-9me49omda01",
296
+ vsc_name=name)
297
+ ```
298
+
299
+ ## Import
300
+
301
+ Eflo Vsc can be imported using the id, e.g.
302
+
303
+ ```sh
304
+ $ pulumi import alicloud:eflo/vsc:Vsc example <id>
305
+ ```
306
+
307
+ :param str resource_name: The name of the resource.
308
+ :param VscArgs args: The arguments to use to populate this resource's properties.
309
+ :param pulumi.ResourceOptions opts: Options for the resource.
310
+ """
311
+ ...
312
+ def __init__(__self__, resource_name: str, *args, **kwargs):
313
+ resource_args, opts = _utilities.get_resource_args_opts(VscArgs, pulumi.ResourceOptions, *args, **kwargs)
314
+ if resource_args is not None:
315
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
316
+ else:
317
+ __self__._internal_init(resource_name, *args, **kwargs)
318
+
319
+ def _internal_init(__self__,
320
+ resource_name: str,
321
+ opts: Optional[pulumi.ResourceOptions] = None,
322
+ node_id: Optional[pulumi.Input[builtins.str]] = None,
323
+ resource_group_id: Optional[pulumi.Input[builtins.str]] = None,
324
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
325
+ vsc_name: Optional[pulumi.Input[builtins.str]] = None,
326
+ vsc_type: Optional[pulumi.Input[builtins.str]] = None,
327
+ __props__=None):
328
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
329
+ if not isinstance(opts, pulumi.ResourceOptions):
330
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
331
+ if opts.id is None:
332
+ if __props__ is not None:
333
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
334
+ __props__ = VscArgs.__new__(VscArgs)
335
+
336
+ if node_id is None and not opts.urn:
337
+ raise TypeError("Missing required property 'node_id'")
338
+ __props__.__dict__["node_id"] = node_id
339
+ __props__.__dict__["resource_group_id"] = resource_group_id
340
+ __props__.__dict__["tags"] = tags
341
+ __props__.__dict__["vsc_name"] = vsc_name
342
+ __props__.__dict__["vsc_type"] = vsc_type
343
+ __props__.__dict__["status"] = None
344
+ super(Vsc, __self__).__init__(
345
+ 'alicloud:eflo/vsc:Vsc',
346
+ resource_name,
347
+ __props__,
348
+ opts)
349
+
350
+ @staticmethod
351
+ def get(resource_name: str,
352
+ id: pulumi.Input[str],
353
+ opts: Optional[pulumi.ResourceOptions] = None,
354
+ node_id: Optional[pulumi.Input[builtins.str]] = None,
355
+ resource_group_id: Optional[pulumi.Input[builtins.str]] = None,
356
+ status: Optional[pulumi.Input[builtins.str]] = None,
357
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
358
+ vsc_name: Optional[pulumi.Input[builtins.str]] = None,
359
+ vsc_type: Optional[pulumi.Input[builtins.str]] = None) -> 'Vsc':
360
+ """
361
+ Get an existing Vsc resource's state with the given name, id, and optional extra
362
+ properties used to qualify the lookup.
363
+
364
+ :param str resource_name: The unique name of the resulting resource.
365
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
366
+ :param pulumi.ResourceOptions opts: Options for the resource.
367
+ :param pulumi.Input[builtins.str] node_id: The ID of the Node.
368
+ :param pulumi.Input[builtins.str] resource_group_id: The ID of the resource group.
369
+ :param pulumi.Input[builtins.str] status: The status of the Vsc.
370
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: The tag of the resource.
371
+ :param pulumi.Input[builtins.str] vsc_name: The name of the Vsc.
372
+ :param pulumi.Input[builtins.str] vsc_type: The type of the Vsc. Default value: `primary`. Valid values: `primary`.
373
+ """
374
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
375
+
376
+ __props__ = _VscState.__new__(_VscState)
377
+
378
+ __props__.__dict__["node_id"] = node_id
379
+ __props__.__dict__["resource_group_id"] = resource_group_id
380
+ __props__.__dict__["status"] = status
381
+ __props__.__dict__["tags"] = tags
382
+ __props__.__dict__["vsc_name"] = vsc_name
383
+ __props__.__dict__["vsc_type"] = vsc_type
384
+ return Vsc(resource_name, opts=opts, __props__=__props__)
385
+
386
+ @property
387
+ @pulumi.getter(name="nodeId")
388
+ def node_id(self) -> pulumi.Output[builtins.str]:
389
+ """
390
+ The ID of the Node.
391
+ """
392
+ return pulumi.get(self, "node_id")
393
+
394
+ @property
395
+ @pulumi.getter(name="resourceGroupId")
396
+ def resource_group_id(self) -> pulumi.Output[builtins.str]:
397
+ """
398
+ The ID of the resource group.
399
+ """
400
+ return pulumi.get(self, "resource_group_id")
401
+
402
+ @property
403
+ @pulumi.getter
404
+ def status(self) -> pulumi.Output[builtins.str]:
405
+ """
406
+ The status of the Vsc.
407
+ """
408
+ return pulumi.get(self, "status")
409
+
410
+ @property
411
+ @pulumi.getter
412
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
413
+ """
414
+ The tag of the resource.
415
+ """
416
+ return pulumi.get(self, "tags")
417
+
418
+ @property
419
+ @pulumi.getter(name="vscName")
420
+ def vsc_name(self) -> pulumi.Output[Optional[builtins.str]]:
421
+ """
422
+ The name of the Vsc.
423
+ """
424
+ return pulumi.get(self, "vsc_name")
425
+
426
+ @property
427
+ @pulumi.getter(name="vscType")
428
+ def vsc_type(self) -> pulumi.Output[builtins.str]:
429
+ """
430
+ The type of the Vsc. Default value: `primary`. Valid values: `primary`.
431
+ """
432
+ return pulumi.get(self, "vsc_type")
433
+
@@ -77,7 +77,7 @@ class InstanceArgs:
77
77
  :param pulumi.Input[builtins.bool] enable_kibana_private_network: Bool, default to false. When it set to true, the instance can close kibana private network access。
78
78
  :param pulumi.Input[builtins.bool] enable_kibana_public_network: Bool, default to true. When it set to false, the instance can enable kibana public network access。
79
79
  :param pulumi.Input[builtins.bool] enable_public: Bool, default to false. When it set to true, the instance can enable public network access。
80
- :param pulumi.Input[builtins.str] instance_charge_type: Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`. But, updating from `PostPaid` to `PrePaid` is not supported.
80
+ :param pulumi.Input[builtins.str] instance_charge_type: Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`.
81
81
  :param pulumi.Input[builtins.str] kibana_node_spec: The kibana node specifications of the Elasticsearch instance. Default is `elasticsearch.n4.small`.
82
82
  :param pulumi.Input[builtins.str] kibana_private_security_group_id: the security group id associated with Kibana private network, this param is required when `enable_kibana_private_network` set true, and the security group id should in the same VPC as `vswitch_id`
83
83
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] kibana_private_whitelists: Set the Kibana's IP whitelist in private network, This option has been abandoned on newly created instance, please use `kibana_private_security_group_id` instead
@@ -362,7 +362,7 @@ class InstanceArgs:
362
362
  @pulumi.getter(name="instanceChargeType")
363
363
  def instance_charge_type(self) -> Optional[pulumi.Input[builtins.str]]:
364
364
  """
365
- Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`. But, updating from `PostPaid` to `PrePaid` is not supported.
365
+ Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`.
366
366
  """
367
367
  return pulumi.get(self, "instance_charge_type")
368
368
 
@@ -725,7 +725,7 @@ class _InstanceState:
725
725
  :param pulumi.Input[builtins.bool] enable_kibana_private_network: Bool, default to false. When it set to true, the instance can close kibana private network access。
726
726
  :param pulumi.Input[builtins.bool] enable_kibana_public_network: Bool, default to true. When it set to false, the instance can enable kibana public network access。
727
727
  :param pulumi.Input[builtins.bool] enable_public: Bool, default to false. When it set to true, the instance can enable public network access。
728
- :param pulumi.Input[builtins.str] instance_charge_type: Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`. But, updating from `PostPaid` to `PrePaid` is not supported.
728
+ :param pulumi.Input[builtins.str] instance_charge_type: Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`.
729
729
  :param pulumi.Input[builtins.str] kibana_domain: Kibana console domain (Internet access supported).
730
730
  :param pulumi.Input[builtins.str] kibana_node_spec: The kibana node specifications of the Elasticsearch instance. Default is `elasticsearch.n4.small`.
731
731
  :param pulumi.Input[builtins.int] kibana_port: Kibana console port.
@@ -1026,7 +1026,7 @@ class _InstanceState:
1026
1026
  @pulumi.getter(name="instanceChargeType")
1027
1027
  def instance_charge_type(self) -> Optional[pulumi.Input[builtins.str]]:
1028
1028
  """
1029
- Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`. But, updating from `PostPaid` to `PrePaid` is not supported.
1029
+ Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`.
1030
1030
  """
1031
1031
  return pulumi.get(self, "instance_charge_type")
1032
1032
 
@@ -1490,7 +1490,7 @@ class Instance(pulumi.CustomResource):
1490
1490
  :param pulumi.Input[builtins.bool] enable_kibana_private_network: Bool, default to false. When it set to true, the instance can close kibana private network access。
1491
1491
  :param pulumi.Input[builtins.bool] enable_kibana_public_network: Bool, default to true. When it set to false, the instance can enable kibana public network access。
1492
1492
  :param pulumi.Input[builtins.bool] enable_public: Bool, default to false. When it set to true, the instance can enable public network access。
1493
- :param pulumi.Input[builtins.str] instance_charge_type: Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`. But, updating from `PostPaid` to `PrePaid` is not supported.
1493
+ :param pulumi.Input[builtins.str] instance_charge_type: Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`.
1494
1494
  :param pulumi.Input[builtins.str] kibana_node_spec: The kibana node specifications of the Elasticsearch instance. Default is `elasticsearch.n4.small`.
1495
1495
  :param pulumi.Input[builtins.str] kibana_private_security_group_id: the security group id associated with Kibana private network, this param is required when `enable_kibana_private_network` set true, and the security group id should in the same VPC as `vswitch_id`
1496
1496
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] kibana_private_whitelists: Set the Kibana's IP whitelist in private network, This option has been abandoned on newly created instance, please use `kibana_private_security_group_id` instead
@@ -1736,7 +1736,7 @@ class Instance(pulumi.CustomResource):
1736
1736
  :param pulumi.Input[builtins.bool] enable_kibana_private_network: Bool, default to false. When it set to true, the instance can close kibana private network access。
1737
1737
  :param pulumi.Input[builtins.bool] enable_kibana_public_network: Bool, default to true. When it set to false, the instance can enable kibana public network access。
1738
1738
  :param pulumi.Input[builtins.bool] enable_public: Bool, default to false. When it set to true, the instance can enable public network access。
1739
- :param pulumi.Input[builtins.str] instance_charge_type: Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`. But, updating from `PostPaid` to `PrePaid` is not supported.
1739
+ :param pulumi.Input[builtins.str] instance_charge_type: Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`.
1740
1740
  :param pulumi.Input[builtins.str] kibana_domain: Kibana console domain (Internet access supported).
1741
1741
  :param pulumi.Input[builtins.str] kibana_node_spec: The kibana node specifications of the Elasticsearch instance. Default is `elasticsearch.n4.small`.
1742
1742
  :param pulumi.Input[builtins.int] kibana_port: Kibana console port.
@@ -1939,7 +1939,7 @@ class Instance(pulumi.CustomResource):
1939
1939
  @pulumi.getter(name="instanceChargeType")
1940
1940
  def instance_charge_type(self) -> pulumi.Output[Optional[builtins.str]]:
1941
1941
  """
1942
- Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`. But, updating from `PostPaid` to `PrePaid` is not supported.
1942
+ Valid values are `PrePaid`, `PostPaid`. Default to `PostPaid`. From version 1.69.0, the Elasticsearch cluster allows you to update your instance_charge_ype from `PostPaid` to `PrePaid`, the following attributes are required: `period`.
1943
1943
  """
1944
1944
  return pulumi.get(self, "instance_charge_type")
1945
1945