pulumi-alicloud 3.61.0a1723820875__py3-none-any.whl → 3.61.0a1724318858__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 +27 -0
- pulumi_alicloud/_inputs.py +16 -0
- pulumi_alicloud/alikafka/instance.py +21 -14
- pulumi_alicloud/amqp/binding.py +7 -0
- pulumi_alicloud/config/outputs.py +12 -0
- pulumi_alicloud/cs/_inputs.py +50 -2
- pulumi_alicloud/cs/node_pool.py +42 -42
- pulumi_alicloud/cs/outputs.py +45 -3
- pulumi_alicloud/dataworks/__init__.py +1 -0
- pulumi_alicloud/dataworks/project.py +450 -0
- pulumi_alicloud/elasticsearch/instance.py +296 -14
- pulumi_alicloud/log/store.py +91 -10
- pulumi_alicloud/mongodb/_inputs.py +12 -12
- pulumi_alicloud/mongodb/instance.py +54 -7
- pulumi_alicloud/mongodb/outputs.py +12 -12
- pulumi_alicloud/mongodb/sharding_instance.py +54 -7
- pulumi_alicloud/mongodb/sharding_network_private_address.py +145 -39
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/selectdb/__init__.py +13 -0
- pulumi_alicloud/selectdb/_inputs.py +446 -0
- pulumi_alicloud/selectdb/db_cluster.py +830 -0
- pulumi_alicloud/selectdb/db_instance.py +1368 -0
- pulumi_alicloud/selectdb/get_db_clusters.py +184 -0
- pulumi_alicloud/selectdb/get_db_instances.py +191 -0
- pulumi_alicloud/selectdb/outputs.py +1122 -0
- {pulumi_alicloud-3.61.0a1723820875.dist-info → pulumi_alicloud-3.61.0a1724318858.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.61.0a1723820875.dist-info → pulumi_alicloud-3.61.0a1724318858.dist-info}/RECORD +29 -21
- {pulumi_alicloud-3.61.0a1723820875.dist-info → pulumi_alicloud-3.61.0a1724318858.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.61.0a1723820875.dist-info → pulumi_alicloud-3.61.0a1724318858.dist-info}/top_level.txt +0 -0
|
@@ -31,6 +31,7 @@ class InstanceArgs:
|
|
|
31
31
|
enable_public: Optional[pulumi.Input[bool]] = None,
|
|
32
32
|
instance_charge_type: Optional[pulumi.Input[str]] = None,
|
|
33
33
|
kibana_node_spec: Optional[pulumi.Input[str]] = None,
|
|
34
|
+
kibana_private_security_group_id: Optional[pulumi.Input[str]] = None,
|
|
34
35
|
kibana_private_whitelists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
35
36
|
kibana_whitelists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
36
37
|
kms_encrypted_password: Optional[pulumi.Input[str]] = None,
|
|
@@ -47,6 +48,11 @@ class InstanceArgs:
|
|
|
47
48
|
resource_group_id: Optional[pulumi.Input[str]] = None,
|
|
48
49
|
setting_config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
49
50
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
51
|
+
warm_node_amount: Optional[pulumi.Input[int]] = None,
|
|
52
|
+
warm_node_disk_encrypted: Optional[pulumi.Input[bool]] = None,
|
|
53
|
+
warm_node_disk_size: Optional[pulumi.Input[int]] = None,
|
|
54
|
+
warm_node_disk_type: Optional[pulumi.Input[str]] = None,
|
|
55
|
+
warm_node_spec: Optional[pulumi.Input[str]] = None,
|
|
50
56
|
zone_count: Optional[pulumi.Input[int]] = None):
|
|
51
57
|
"""
|
|
52
58
|
The set of arguments for constructing a Instance resource.
|
|
@@ -54,7 +60,7 @@ class InstanceArgs:
|
|
|
54
60
|
:param pulumi.Input[int] data_node_disk_size: The single data node storage space.
|
|
55
61
|
:param pulumi.Input[str] data_node_disk_type: The data node disk type. Supported values: cloud_ssd, cloud_efficiency.
|
|
56
62
|
:param pulumi.Input[str] data_node_spec: The data node specifications of the Elasticsearch instance.
|
|
57
|
-
:param pulumi.Input[str] version: Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack`
|
|
63
|
+
:param pulumi.Input[str] version: Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack` , `7.7_with_X-Pack`, `7.10_with_X-Pack`, `7.16_with_X-Pack`, `8.5_with_X-Pack`, `8.9_with_X-Pack`, `8.13_with_X-Pack`.
|
|
58
64
|
:param pulumi.Input[str] vswitch_id: The ID of VSwitch.
|
|
59
65
|
:param pulumi.Input[int] auto_renew_duration: Auto-renewal period of an Elasticsearch Instance, in the unit of the month. It is valid when `instance_charge_type` is `PrePaid` and `renew_status` is `AutoRenewal`.
|
|
60
66
|
:param pulumi.Input[int] client_node_amount: The Elasticsearch cluster's client node quantity, between 2 and 25.
|
|
@@ -67,7 +73,8 @@ class InstanceArgs:
|
|
|
67
73
|
:param pulumi.Input[bool] enable_public: Bool, default to false. When it set to true, the instance can enable public network access。
|
|
68
74
|
:param pulumi.Input[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.
|
|
69
75
|
:param pulumi.Input[str] kibana_node_spec: The kibana node specifications of the Elasticsearch instance. Default is `elasticsearch.n4.small`.
|
|
70
|
-
:param pulumi.Input[
|
|
76
|
+
:param pulumi.Input[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`
|
|
77
|
+
:param pulumi.Input[Sequence[pulumi.Input[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
|
|
71
78
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] kibana_whitelists: Set the Kibana's IP whitelist in internet network.
|
|
72
79
|
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored, but you have to specify one of `password` and `kms_encrypted_password` fields.
|
|
73
80
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
|
|
@@ -83,6 +90,11 @@ class InstanceArgs:
|
|
|
83
90
|
:param pulumi.Input[str] resource_group_id: The ID of resource group which the Elasticsearch instance belongs.
|
|
84
91
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] setting_config: The YML configuration of the instance.[Detailed introduction](https://www.alibabacloud.com/help/doc-detail/61336.html).
|
|
85
92
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
|
|
93
|
+
:param pulumi.Input[int] warm_node_amount: The Elasticsearch cluster's warm node quantity, between 3 and 50.
|
|
94
|
+
:param pulumi.Input[bool] warm_node_disk_encrypted: If encrypt the warm node disk. Valid values are `true`, `false`. Default to `false`.
|
|
95
|
+
:param pulumi.Input[int] warm_node_disk_size: The single warm node storage space, should between 500 and 20480
|
|
96
|
+
:param pulumi.Input[str] warm_node_disk_type: The warm node disk type. Supported values: cloud_efficiency.
|
|
97
|
+
:param pulumi.Input[str] warm_node_spec: The warm node specifications of the Elasticsearch instance.
|
|
86
98
|
:param pulumi.Input[int] zone_count: The Multi-AZ supported for Elasticsearch, between 1 and 3. The `data_node_amount` value must be an integral multiple of the `zone_count` value.
|
|
87
99
|
"""
|
|
88
100
|
pulumi.set(__self__, "data_node_amount", data_node_amount)
|
|
@@ -113,6 +125,8 @@ class InstanceArgs:
|
|
|
113
125
|
pulumi.set(__self__, "instance_charge_type", instance_charge_type)
|
|
114
126
|
if kibana_node_spec is not None:
|
|
115
127
|
pulumi.set(__self__, "kibana_node_spec", kibana_node_spec)
|
|
128
|
+
if kibana_private_security_group_id is not None:
|
|
129
|
+
pulumi.set(__self__, "kibana_private_security_group_id", kibana_private_security_group_id)
|
|
116
130
|
if kibana_private_whitelists is not None:
|
|
117
131
|
pulumi.set(__self__, "kibana_private_whitelists", kibana_private_whitelists)
|
|
118
132
|
if kibana_whitelists is not None:
|
|
@@ -145,6 +159,16 @@ class InstanceArgs:
|
|
|
145
159
|
pulumi.set(__self__, "setting_config", setting_config)
|
|
146
160
|
if tags is not None:
|
|
147
161
|
pulumi.set(__self__, "tags", tags)
|
|
162
|
+
if warm_node_amount is not None:
|
|
163
|
+
pulumi.set(__self__, "warm_node_amount", warm_node_amount)
|
|
164
|
+
if warm_node_disk_encrypted is not None:
|
|
165
|
+
pulumi.set(__self__, "warm_node_disk_encrypted", warm_node_disk_encrypted)
|
|
166
|
+
if warm_node_disk_size is not None:
|
|
167
|
+
pulumi.set(__self__, "warm_node_disk_size", warm_node_disk_size)
|
|
168
|
+
if warm_node_disk_type is not None:
|
|
169
|
+
pulumi.set(__self__, "warm_node_disk_type", warm_node_disk_type)
|
|
170
|
+
if warm_node_spec is not None:
|
|
171
|
+
pulumi.set(__self__, "warm_node_spec", warm_node_spec)
|
|
148
172
|
if zone_count is not None:
|
|
149
173
|
pulumi.set(__self__, "zone_count", zone_count)
|
|
150
174
|
|
|
@@ -200,7 +224,7 @@ class InstanceArgs:
|
|
|
200
224
|
@pulumi.getter
|
|
201
225
|
def version(self) -> pulumi.Input[str]:
|
|
202
226
|
"""
|
|
203
|
-
Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack`
|
|
227
|
+
Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack` , `7.7_with_X-Pack`, `7.10_with_X-Pack`, `7.16_with_X-Pack`, `8.5_with_X-Pack`, `8.9_with_X-Pack`, `8.13_with_X-Pack`.
|
|
204
228
|
"""
|
|
205
229
|
return pulumi.get(self, "version")
|
|
206
230
|
|
|
@@ -352,11 +376,23 @@ class InstanceArgs:
|
|
|
352
376
|
def kibana_node_spec(self, value: Optional[pulumi.Input[str]]):
|
|
353
377
|
pulumi.set(self, "kibana_node_spec", value)
|
|
354
378
|
|
|
379
|
+
@property
|
|
380
|
+
@pulumi.getter(name="kibanaPrivateSecurityGroupId")
|
|
381
|
+
def kibana_private_security_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
382
|
+
"""
|
|
383
|
+
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`
|
|
384
|
+
"""
|
|
385
|
+
return pulumi.get(self, "kibana_private_security_group_id")
|
|
386
|
+
|
|
387
|
+
@kibana_private_security_group_id.setter
|
|
388
|
+
def kibana_private_security_group_id(self, value: Optional[pulumi.Input[str]]):
|
|
389
|
+
pulumi.set(self, "kibana_private_security_group_id", value)
|
|
390
|
+
|
|
355
391
|
@property
|
|
356
392
|
@pulumi.getter(name="kibanaPrivateWhitelists")
|
|
357
393
|
def kibana_private_whitelists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
358
394
|
"""
|
|
359
|
-
Set the Kibana's IP whitelist in private network
|
|
395
|
+
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
|
|
360
396
|
"""
|
|
361
397
|
return pulumi.get(self, "kibana_private_whitelists")
|
|
362
398
|
|
|
@@ -544,6 +580,66 @@ class InstanceArgs:
|
|
|
544
580
|
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
545
581
|
pulumi.set(self, "tags", value)
|
|
546
582
|
|
|
583
|
+
@property
|
|
584
|
+
@pulumi.getter(name="warmNodeAmount")
|
|
585
|
+
def warm_node_amount(self) -> Optional[pulumi.Input[int]]:
|
|
586
|
+
"""
|
|
587
|
+
The Elasticsearch cluster's warm node quantity, between 3 and 50.
|
|
588
|
+
"""
|
|
589
|
+
return pulumi.get(self, "warm_node_amount")
|
|
590
|
+
|
|
591
|
+
@warm_node_amount.setter
|
|
592
|
+
def warm_node_amount(self, value: Optional[pulumi.Input[int]]):
|
|
593
|
+
pulumi.set(self, "warm_node_amount", value)
|
|
594
|
+
|
|
595
|
+
@property
|
|
596
|
+
@pulumi.getter(name="warmNodeDiskEncrypted")
|
|
597
|
+
def warm_node_disk_encrypted(self) -> Optional[pulumi.Input[bool]]:
|
|
598
|
+
"""
|
|
599
|
+
If encrypt the warm node disk. Valid values are `true`, `false`. Default to `false`.
|
|
600
|
+
"""
|
|
601
|
+
return pulumi.get(self, "warm_node_disk_encrypted")
|
|
602
|
+
|
|
603
|
+
@warm_node_disk_encrypted.setter
|
|
604
|
+
def warm_node_disk_encrypted(self, value: Optional[pulumi.Input[bool]]):
|
|
605
|
+
pulumi.set(self, "warm_node_disk_encrypted", value)
|
|
606
|
+
|
|
607
|
+
@property
|
|
608
|
+
@pulumi.getter(name="warmNodeDiskSize")
|
|
609
|
+
def warm_node_disk_size(self) -> Optional[pulumi.Input[int]]:
|
|
610
|
+
"""
|
|
611
|
+
The single warm node storage space, should between 500 and 20480
|
|
612
|
+
"""
|
|
613
|
+
return pulumi.get(self, "warm_node_disk_size")
|
|
614
|
+
|
|
615
|
+
@warm_node_disk_size.setter
|
|
616
|
+
def warm_node_disk_size(self, value: Optional[pulumi.Input[int]]):
|
|
617
|
+
pulumi.set(self, "warm_node_disk_size", value)
|
|
618
|
+
|
|
619
|
+
@property
|
|
620
|
+
@pulumi.getter(name="warmNodeDiskType")
|
|
621
|
+
def warm_node_disk_type(self) -> Optional[pulumi.Input[str]]:
|
|
622
|
+
"""
|
|
623
|
+
The warm node disk type. Supported values: cloud_efficiency.
|
|
624
|
+
"""
|
|
625
|
+
return pulumi.get(self, "warm_node_disk_type")
|
|
626
|
+
|
|
627
|
+
@warm_node_disk_type.setter
|
|
628
|
+
def warm_node_disk_type(self, value: Optional[pulumi.Input[str]]):
|
|
629
|
+
pulumi.set(self, "warm_node_disk_type", value)
|
|
630
|
+
|
|
631
|
+
@property
|
|
632
|
+
@pulumi.getter(name="warmNodeSpec")
|
|
633
|
+
def warm_node_spec(self) -> Optional[pulumi.Input[str]]:
|
|
634
|
+
"""
|
|
635
|
+
The warm node specifications of the Elasticsearch instance.
|
|
636
|
+
"""
|
|
637
|
+
return pulumi.get(self, "warm_node_spec")
|
|
638
|
+
|
|
639
|
+
@warm_node_spec.setter
|
|
640
|
+
def warm_node_spec(self, value: Optional[pulumi.Input[str]]):
|
|
641
|
+
pulumi.set(self, "warm_node_spec", value)
|
|
642
|
+
|
|
547
643
|
@property
|
|
548
644
|
@pulumi.getter(name="zoneCount")
|
|
549
645
|
def zone_count(self) -> Optional[pulumi.Input[int]]:
|
|
@@ -578,6 +674,7 @@ class _InstanceState:
|
|
|
578
674
|
kibana_domain: Optional[pulumi.Input[str]] = None,
|
|
579
675
|
kibana_node_spec: Optional[pulumi.Input[str]] = None,
|
|
580
676
|
kibana_port: Optional[pulumi.Input[int]] = None,
|
|
677
|
+
kibana_private_security_group_id: Optional[pulumi.Input[str]] = None,
|
|
581
678
|
kibana_private_whitelists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
582
679
|
kibana_whitelists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
583
680
|
kms_encrypted_password: Optional[pulumi.Input[str]] = None,
|
|
@@ -600,6 +697,11 @@ class _InstanceState:
|
|
|
600
697
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
601
698
|
version: Optional[pulumi.Input[str]] = None,
|
|
602
699
|
vswitch_id: Optional[pulumi.Input[str]] = None,
|
|
700
|
+
warm_node_amount: Optional[pulumi.Input[int]] = None,
|
|
701
|
+
warm_node_disk_encrypted: Optional[pulumi.Input[bool]] = None,
|
|
702
|
+
warm_node_disk_size: Optional[pulumi.Input[int]] = None,
|
|
703
|
+
warm_node_disk_type: Optional[pulumi.Input[str]] = None,
|
|
704
|
+
warm_node_spec: Optional[pulumi.Input[str]] = None,
|
|
603
705
|
zone_count: Optional[pulumi.Input[int]] = None):
|
|
604
706
|
"""
|
|
605
707
|
Input properties used for looking up and filtering Instance resources.
|
|
@@ -621,7 +723,8 @@ class _InstanceState:
|
|
|
621
723
|
:param pulumi.Input[str] kibana_domain: Kibana console domain (Internet access supported).
|
|
622
724
|
:param pulumi.Input[str] kibana_node_spec: The kibana node specifications of the Elasticsearch instance. Default is `elasticsearch.n4.small`.
|
|
623
725
|
:param pulumi.Input[int] kibana_port: Kibana console port.
|
|
624
|
-
:param pulumi.Input[
|
|
726
|
+
:param pulumi.Input[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`
|
|
727
|
+
:param pulumi.Input[Sequence[pulumi.Input[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
|
|
625
728
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] kibana_whitelists: Set the Kibana's IP whitelist in internet network.
|
|
626
729
|
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored, but you have to specify one of `password` and `kms_encrypted_password` fields.
|
|
627
730
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
|
|
@@ -641,8 +744,13 @@ class _InstanceState:
|
|
|
641
744
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] setting_config: The YML configuration of the instance.[Detailed introduction](https://www.alibabacloud.com/help/doc-detail/61336.html).
|
|
642
745
|
:param pulumi.Input[str] status: The Elasticsearch instance status. Includes `active`, `activating`, `inactive`. Some operations are denied when status is not `active`.
|
|
643
746
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
|
|
644
|
-
:param pulumi.Input[str] version: Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack`
|
|
747
|
+
:param pulumi.Input[str] version: Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack` , `7.7_with_X-Pack`, `7.10_with_X-Pack`, `7.16_with_X-Pack`, `8.5_with_X-Pack`, `8.9_with_X-Pack`, `8.13_with_X-Pack`.
|
|
645
748
|
:param pulumi.Input[str] vswitch_id: The ID of VSwitch.
|
|
749
|
+
:param pulumi.Input[int] warm_node_amount: The Elasticsearch cluster's warm node quantity, between 3 and 50.
|
|
750
|
+
:param pulumi.Input[bool] warm_node_disk_encrypted: If encrypt the warm node disk. Valid values are `true`, `false`. Default to `false`.
|
|
751
|
+
:param pulumi.Input[int] warm_node_disk_size: The single warm node storage space, should between 500 and 20480
|
|
752
|
+
:param pulumi.Input[str] warm_node_disk_type: The warm node disk type. Supported values: cloud_efficiency.
|
|
753
|
+
:param pulumi.Input[str] warm_node_spec: The warm node specifications of the Elasticsearch instance.
|
|
646
754
|
:param pulumi.Input[int] zone_count: The Multi-AZ supported for Elasticsearch, between 1 and 3. The `data_node_amount` value must be an integral multiple of the `zone_count` value.
|
|
647
755
|
"""
|
|
648
756
|
if auto_renew_duration is not None:
|
|
@@ -681,6 +789,8 @@ class _InstanceState:
|
|
|
681
789
|
pulumi.set(__self__, "kibana_node_spec", kibana_node_spec)
|
|
682
790
|
if kibana_port is not None:
|
|
683
791
|
pulumi.set(__self__, "kibana_port", kibana_port)
|
|
792
|
+
if kibana_private_security_group_id is not None:
|
|
793
|
+
pulumi.set(__self__, "kibana_private_security_group_id", kibana_private_security_group_id)
|
|
684
794
|
if kibana_private_whitelists is not None:
|
|
685
795
|
pulumi.set(__self__, "kibana_private_whitelists", kibana_private_whitelists)
|
|
686
796
|
if kibana_whitelists is not None:
|
|
@@ -725,6 +835,16 @@ class _InstanceState:
|
|
|
725
835
|
pulumi.set(__self__, "version", version)
|
|
726
836
|
if vswitch_id is not None:
|
|
727
837
|
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
838
|
+
if warm_node_amount is not None:
|
|
839
|
+
pulumi.set(__self__, "warm_node_amount", warm_node_amount)
|
|
840
|
+
if warm_node_disk_encrypted is not None:
|
|
841
|
+
pulumi.set(__self__, "warm_node_disk_encrypted", warm_node_disk_encrypted)
|
|
842
|
+
if warm_node_disk_size is not None:
|
|
843
|
+
pulumi.set(__self__, "warm_node_disk_size", warm_node_disk_size)
|
|
844
|
+
if warm_node_disk_type is not None:
|
|
845
|
+
pulumi.set(__self__, "warm_node_disk_type", warm_node_disk_type)
|
|
846
|
+
if warm_node_spec is not None:
|
|
847
|
+
pulumi.set(__self__, "warm_node_spec", warm_node_spec)
|
|
728
848
|
if zone_count is not None:
|
|
729
849
|
pulumi.set(__self__, "zone_count", zone_count)
|
|
730
850
|
|
|
@@ -944,11 +1064,23 @@ class _InstanceState:
|
|
|
944
1064
|
def kibana_port(self, value: Optional[pulumi.Input[int]]):
|
|
945
1065
|
pulumi.set(self, "kibana_port", value)
|
|
946
1066
|
|
|
1067
|
+
@property
|
|
1068
|
+
@pulumi.getter(name="kibanaPrivateSecurityGroupId")
|
|
1069
|
+
def kibana_private_security_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
1070
|
+
"""
|
|
1071
|
+
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`
|
|
1072
|
+
"""
|
|
1073
|
+
return pulumi.get(self, "kibana_private_security_group_id")
|
|
1074
|
+
|
|
1075
|
+
@kibana_private_security_group_id.setter
|
|
1076
|
+
def kibana_private_security_group_id(self, value: Optional[pulumi.Input[str]]):
|
|
1077
|
+
pulumi.set(self, "kibana_private_security_group_id", value)
|
|
1078
|
+
|
|
947
1079
|
@property
|
|
948
1080
|
@pulumi.getter(name="kibanaPrivateWhitelists")
|
|
949
1081
|
def kibana_private_whitelists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
950
1082
|
"""
|
|
951
|
-
Set the Kibana's IP whitelist in private network
|
|
1083
|
+
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
|
|
952
1084
|
"""
|
|
953
1085
|
return pulumi.get(self, "kibana_private_whitelists")
|
|
954
1086
|
|
|
@@ -1188,7 +1320,7 @@ class _InstanceState:
|
|
|
1188
1320
|
@pulumi.getter
|
|
1189
1321
|
def version(self) -> Optional[pulumi.Input[str]]:
|
|
1190
1322
|
"""
|
|
1191
|
-
Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack`
|
|
1323
|
+
Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack` , `7.7_with_X-Pack`, `7.10_with_X-Pack`, `7.16_with_X-Pack`, `8.5_with_X-Pack`, `8.9_with_X-Pack`, `8.13_with_X-Pack`.
|
|
1192
1324
|
"""
|
|
1193
1325
|
return pulumi.get(self, "version")
|
|
1194
1326
|
|
|
@@ -1208,6 +1340,66 @@ class _InstanceState:
|
|
|
1208
1340
|
def vswitch_id(self, value: Optional[pulumi.Input[str]]):
|
|
1209
1341
|
pulumi.set(self, "vswitch_id", value)
|
|
1210
1342
|
|
|
1343
|
+
@property
|
|
1344
|
+
@pulumi.getter(name="warmNodeAmount")
|
|
1345
|
+
def warm_node_amount(self) -> Optional[pulumi.Input[int]]:
|
|
1346
|
+
"""
|
|
1347
|
+
The Elasticsearch cluster's warm node quantity, between 3 and 50.
|
|
1348
|
+
"""
|
|
1349
|
+
return pulumi.get(self, "warm_node_amount")
|
|
1350
|
+
|
|
1351
|
+
@warm_node_amount.setter
|
|
1352
|
+
def warm_node_amount(self, value: Optional[pulumi.Input[int]]):
|
|
1353
|
+
pulumi.set(self, "warm_node_amount", value)
|
|
1354
|
+
|
|
1355
|
+
@property
|
|
1356
|
+
@pulumi.getter(name="warmNodeDiskEncrypted")
|
|
1357
|
+
def warm_node_disk_encrypted(self) -> Optional[pulumi.Input[bool]]:
|
|
1358
|
+
"""
|
|
1359
|
+
If encrypt the warm node disk. Valid values are `true`, `false`. Default to `false`.
|
|
1360
|
+
"""
|
|
1361
|
+
return pulumi.get(self, "warm_node_disk_encrypted")
|
|
1362
|
+
|
|
1363
|
+
@warm_node_disk_encrypted.setter
|
|
1364
|
+
def warm_node_disk_encrypted(self, value: Optional[pulumi.Input[bool]]):
|
|
1365
|
+
pulumi.set(self, "warm_node_disk_encrypted", value)
|
|
1366
|
+
|
|
1367
|
+
@property
|
|
1368
|
+
@pulumi.getter(name="warmNodeDiskSize")
|
|
1369
|
+
def warm_node_disk_size(self) -> Optional[pulumi.Input[int]]:
|
|
1370
|
+
"""
|
|
1371
|
+
The single warm node storage space, should between 500 and 20480
|
|
1372
|
+
"""
|
|
1373
|
+
return pulumi.get(self, "warm_node_disk_size")
|
|
1374
|
+
|
|
1375
|
+
@warm_node_disk_size.setter
|
|
1376
|
+
def warm_node_disk_size(self, value: Optional[pulumi.Input[int]]):
|
|
1377
|
+
pulumi.set(self, "warm_node_disk_size", value)
|
|
1378
|
+
|
|
1379
|
+
@property
|
|
1380
|
+
@pulumi.getter(name="warmNodeDiskType")
|
|
1381
|
+
def warm_node_disk_type(self) -> Optional[pulumi.Input[str]]:
|
|
1382
|
+
"""
|
|
1383
|
+
The warm node disk type. Supported values: cloud_efficiency.
|
|
1384
|
+
"""
|
|
1385
|
+
return pulumi.get(self, "warm_node_disk_type")
|
|
1386
|
+
|
|
1387
|
+
@warm_node_disk_type.setter
|
|
1388
|
+
def warm_node_disk_type(self, value: Optional[pulumi.Input[str]]):
|
|
1389
|
+
pulumi.set(self, "warm_node_disk_type", value)
|
|
1390
|
+
|
|
1391
|
+
@property
|
|
1392
|
+
@pulumi.getter(name="warmNodeSpec")
|
|
1393
|
+
def warm_node_spec(self) -> Optional[pulumi.Input[str]]:
|
|
1394
|
+
"""
|
|
1395
|
+
The warm node specifications of the Elasticsearch instance.
|
|
1396
|
+
"""
|
|
1397
|
+
return pulumi.get(self, "warm_node_spec")
|
|
1398
|
+
|
|
1399
|
+
@warm_node_spec.setter
|
|
1400
|
+
def warm_node_spec(self, value: Optional[pulumi.Input[str]]):
|
|
1401
|
+
pulumi.set(self, "warm_node_spec", value)
|
|
1402
|
+
|
|
1211
1403
|
@property
|
|
1212
1404
|
@pulumi.getter(name="zoneCount")
|
|
1213
1405
|
def zone_count(self) -> Optional[pulumi.Input[int]]:
|
|
@@ -1241,6 +1433,7 @@ class Instance(pulumi.CustomResource):
|
|
|
1241
1433
|
enable_public: Optional[pulumi.Input[bool]] = None,
|
|
1242
1434
|
instance_charge_type: Optional[pulumi.Input[str]] = None,
|
|
1243
1435
|
kibana_node_spec: Optional[pulumi.Input[str]] = None,
|
|
1436
|
+
kibana_private_security_group_id: Optional[pulumi.Input[str]] = None,
|
|
1244
1437
|
kibana_private_whitelists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1245
1438
|
kibana_whitelists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1246
1439
|
kms_encrypted_password: Optional[pulumi.Input[str]] = None,
|
|
@@ -1259,6 +1452,11 @@ class Instance(pulumi.CustomResource):
|
|
|
1259
1452
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
1260
1453
|
version: Optional[pulumi.Input[str]] = None,
|
|
1261
1454
|
vswitch_id: Optional[pulumi.Input[str]] = None,
|
|
1455
|
+
warm_node_amount: Optional[pulumi.Input[int]] = None,
|
|
1456
|
+
warm_node_disk_encrypted: Optional[pulumi.Input[bool]] = None,
|
|
1457
|
+
warm_node_disk_size: Optional[pulumi.Input[int]] = None,
|
|
1458
|
+
warm_node_disk_type: Optional[pulumi.Input[str]] = None,
|
|
1459
|
+
warm_node_spec: Optional[pulumi.Input[str]] = None,
|
|
1262
1460
|
zone_count: Optional[pulumi.Input[int]] = None,
|
|
1263
1461
|
__props__=None):
|
|
1264
1462
|
"""
|
|
@@ -1287,7 +1485,8 @@ class Instance(pulumi.CustomResource):
|
|
|
1287
1485
|
:param pulumi.Input[bool] enable_public: Bool, default to false. When it set to true, the instance can enable public network access。
|
|
1288
1486
|
:param pulumi.Input[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.
|
|
1289
1487
|
:param pulumi.Input[str] kibana_node_spec: The kibana node specifications of the Elasticsearch instance. Default is `elasticsearch.n4.small`.
|
|
1290
|
-
:param pulumi.Input[
|
|
1488
|
+
:param pulumi.Input[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`
|
|
1489
|
+
:param pulumi.Input[Sequence[pulumi.Input[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
|
|
1291
1490
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] kibana_whitelists: Set the Kibana's IP whitelist in internet network.
|
|
1292
1491
|
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored, but you have to specify one of `password` and `kms_encrypted_password` fields.
|
|
1293
1492
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
|
|
@@ -1303,8 +1502,13 @@ class Instance(pulumi.CustomResource):
|
|
|
1303
1502
|
:param pulumi.Input[str] resource_group_id: The ID of resource group which the Elasticsearch instance belongs.
|
|
1304
1503
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] setting_config: The YML configuration of the instance.[Detailed introduction](https://www.alibabacloud.com/help/doc-detail/61336.html).
|
|
1305
1504
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
|
|
1306
|
-
:param pulumi.Input[str] version: Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack`
|
|
1505
|
+
:param pulumi.Input[str] version: Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack` , `7.7_with_X-Pack`, `7.10_with_X-Pack`, `7.16_with_X-Pack`, `8.5_with_X-Pack`, `8.9_with_X-Pack`, `8.13_with_X-Pack`.
|
|
1307
1506
|
:param pulumi.Input[str] vswitch_id: The ID of VSwitch.
|
|
1507
|
+
:param pulumi.Input[int] warm_node_amount: The Elasticsearch cluster's warm node quantity, between 3 and 50.
|
|
1508
|
+
:param pulumi.Input[bool] warm_node_disk_encrypted: If encrypt the warm node disk. Valid values are `true`, `false`. Default to `false`.
|
|
1509
|
+
:param pulumi.Input[int] warm_node_disk_size: The single warm node storage space, should between 500 and 20480
|
|
1510
|
+
:param pulumi.Input[str] warm_node_disk_type: The warm node disk type. Supported values: cloud_efficiency.
|
|
1511
|
+
:param pulumi.Input[str] warm_node_spec: The warm node specifications of the Elasticsearch instance.
|
|
1308
1512
|
:param pulumi.Input[int] zone_count: The Multi-AZ supported for Elasticsearch, between 1 and 3. The `data_node_amount` value must be an integral multiple of the `zone_count` value.
|
|
1309
1513
|
"""
|
|
1310
1514
|
...
|
|
@@ -1352,6 +1556,7 @@ class Instance(pulumi.CustomResource):
|
|
|
1352
1556
|
enable_public: Optional[pulumi.Input[bool]] = None,
|
|
1353
1557
|
instance_charge_type: Optional[pulumi.Input[str]] = None,
|
|
1354
1558
|
kibana_node_spec: Optional[pulumi.Input[str]] = None,
|
|
1559
|
+
kibana_private_security_group_id: Optional[pulumi.Input[str]] = None,
|
|
1355
1560
|
kibana_private_whitelists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1356
1561
|
kibana_whitelists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1357
1562
|
kms_encrypted_password: Optional[pulumi.Input[str]] = None,
|
|
@@ -1370,6 +1575,11 @@ class Instance(pulumi.CustomResource):
|
|
|
1370
1575
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
1371
1576
|
version: Optional[pulumi.Input[str]] = None,
|
|
1372
1577
|
vswitch_id: Optional[pulumi.Input[str]] = None,
|
|
1578
|
+
warm_node_amount: Optional[pulumi.Input[int]] = None,
|
|
1579
|
+
warm_node_disk_encrypted: Optional[pulumi.Input[bool]] = None,
|
|
1580
|
+
warm_node_disk_size: Optional[pulumi.Input[int]] = None,
|
|
1581
|
+
warm_node_disk_type: Optional[pulumi.Input[str]] = None,
|
|
1582
|
+
warm_node_spec: Optional[pulumi.Input[str]] = None,
|
|
1373
1583
|
zone_count: Optional[pulumi.Input[int]] = None,
|
|
1374
1584
|
__props__=None):
|
|
1375
1585
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -1403,6 +1613,7 @@ class Instance(pulumi.CustomResource):
|
|
|
1403
1613
|
__props__.__dict__["enable_public"] = enable_public
|
|
1404
1614
|
__props__.__dict__["instance_charge_type"] = instance_charge_type
|
|
1405
1615
|
__props__.__dict__["kibana_node_spec"] = kibana_node_spec
|
|
1616
|
+
__props__.__dict__["kibana_private_security_group_id"] = kibana_private_security_group_id
|
|
1406
1617
|
__props__.__dict__["kibana_private_whitelists"] = kibana_private_whitelists
|
|
1407
1618
|
__props__.__dict__["kibana_whitelists"] = kibana_whitelists
|
|
1408
1619
|
__props__.__dict__["kms_encrypted_password"] = kms_encrypted_password
|
|
@@ -1425,6 +1636,11 @@ class Instance(pulumi.CustomResource):
|
|
|
1425
1636
|
if vswitch_id is None and not opts.urn:
|
|
1426
1637
|
raise TypeError("Missing required property 'vswitch_id'")
|
|
1427
1638
|
__props__.__dict__["vswitch_id"] = vswitch_id
|
|
1639
|
+
__props__.__dict__["warm_node_amount"] = warm_node_amount
|
|
1640
|
+
__props__.__dict__["warm_node_disk_encrypted"] = warm_node_disk_encrypted
|
|
1641
|
+
__props__.__dict__["warm_node_disk_size"] = warm_node_disk_size
|
|
1642
|
+
__props__.__dict__["warm_node_disk_type"] = warm_node_disk_type
|
|
1643
|
+
__props__.__dict__["warm_node_spec"] = warm_node_spec
|
|
1428
1644
|
__props__.__dict__["zone_count"] = zone_count
|
|
1429
1645
|
__props__.__dict__["domain"] = None
|
|
1430
1646
|
__props__.__dict__["kibana_domain"] = None
|
|
@@ -1463,6 +1679,7 @@ class Instance(pulumi.CustomResource):
|
|
|
1463
1679
|
kibana_domain: Optional[pulumi.Input[str]] = None,
|
|
1464
1680
|
kibana_node_spec: Optional[pulumi.Input[str]] = None,
|
|
1465
1681
|
kibana_port: Optional[pulumi.Input[int]] = None,
|
|
1682
|
+
kibana_private_security_group_id: Optional[pulumi.Input[str]] = None,
|
|
1466
1683
|
kibana_private_whitelists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1467
1684
|
kibana_whitelists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1468
1685
|
kms_encrypted_password: Optional[pulumi.Input[str]] = None,
|
|
@@ -1485,6 +1702,11 @@ class Instance(pulumi.CustomResource):
|
|
|
1485
1702
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
1486
1703
|
version: Optional[pulumi.Input[str]] = None,
|
|
1487
1704
|
vswitch_id: Optional[pulumi.Input[str]] = None,
|
|
1705
|
+
warm_node_amount: Optional[pulumi.Input[int]] = None,
|
|
1706
|
+
warm_node_disk_encrypted: Optional[pulumi.Input[bool]] = None,
|
|
1707
|
+
warm_node_disk_size: Optional[pulumi.Input[int]] = None,
|
|
1708
|
+
warm_node_disk_type: Optional[pulumi.Input[str]] = None,
|
|
1709
|
+
warm_node_spec: Optional[pulumi.Input[str]] = None,
|
|
1488
1710
|
zone_count: Optional[pulumi.Input[int]] = None) -> 'Instance':
|
|
1489
1711
|
"""
|
|
1490
1712
|
Get an existing Instance resource's state with the given name, id, and optional extra
|
|
@@ -1511,7 +1733,8 @@ class Instance(pulumi.CustomResource):
|
|
|
1511
1733
|
:param pulumi.Input[str] kibana_domain: Kibana console domain (Internet access supported).
|
|
1512
1734
|
:param pulumi.Input[str] kibana_node_spec: The kibana node specifications of the Elasticsearch instance. Default is `elasticsearch.n4.small`.
|
|
1513
1735
|
:param pulumi.Input[int] kibana_port: Kibana console port.
|
|
1514
|
-
:param pulumi.Input[
|
|
1736
|
+
:param pulumi.Input[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`
|
|
1737
|
+
:param pulumi.Input[Sequence[pulumi.Input[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
|
|
1515
1738
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] kibana_whitelists: Set the Kibana's IP whitelist in internet network.
|
|
1516
1739
|
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored, but you have to specify one of `password` and `kms_encrypted_password` fields.
|
|
1517
1740
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
|
|
@@ -1531,8 +1754,13 @@ class Instance(pulumi.CustomResource):
|
|
|
1531
1754
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] setting_config: The YML configuration of the instance.[Detailed introduction](https://www.alibabacloud.com/help/doc-detail/61336.html).
|
|
1532
1755
|
:param pulumi.Input[str] status: The Elasticsearch instance status. Includes `active`, `activating`, `inactive`. Some operations are denied when status is not `active`.
|
|
1533
1756
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A mapping of tags to assign to the resource.
|
|
1534
|
-
:param pulumi.Input[str] version: Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack`
|
|
1757
|
+
:param pulumi.Input[str] version: Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack` , `7.7_with_X-Pack`, `7.10_with_X-Pack`, `7.16_with_X-Pack`, `8.5_with_X-Pack`, `8.9_with_X-Pack`, `8.13_with_X-Pack`.
|
|
1535
1758
|
:param pulumi.Input[str] vswitch_id: The ID of VSwitch.
|
|
1759
|
+
:param pulumi.Input[int] warm_node_amount: The Elasticsearch cluster's warm node quantity, between 3 and 50.
|
|
1760
|
+
:param pulumi.Input[bool] warm_node_disk_encrypted: If encrypt the warm node disk. Valid values are `true`, `false`. Default to `false`.
|
|
1761
|
+
:param pulumi.Input[int] warm_node_disk_size: The single warm node storage space, should between 500 and 20480
|
|
1762
|
+
:param pulumi.Input[str] warm_node_disk_type: The warm node disk type. Supported values: cloud_efficiency.
|
|
1763
|
+
:param pulumi.Input[str] warm_node_spec: The warm node specifications of the Elasticsearch instance.
|
|
1536
1764
|
:param pulumi.Input[int] zone_count: The Multi-AZ supported for Elasticsearch, between 1 and 3. The `data_node_amount` value must be an integral multiple of the `zone_count` value.
|
|
1537
1765
|
"""
|
|
1538
1766
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -1557,6 +1785,7 @@ class Instance(pulumi.CustomResource):
|
|
|
1557
1785
|
__props__.__dict__["kibana_domain"] = kibana_domain
|
|
1558
1786
|
__props__.__dict__["kibana_node_spec"] = kibana_node_spec
|
|
1559
1787
|
__props__.__dict__["kibana_port"] = kibana_port
|
|
1788
|
+
__props__.__dict__["kibana_private_security_group_id"] = kibana_private_security_group_id
|
|
1560
1789
|
__props__.__dict__["kibana_private_whitelists"] = kibana_private_whitelists
|
|
1561
1790
|
__props__.__dict__["kibana_whitelists"] = kibana_whitelists
|
|
1562
1791
|
__props__.__dict__["kms_encrypted_password"] = kms_encrypted_password
|
|
@@ -1579,6 +1808,11 @@ class Instance(pulumi.CustomResource):
|
|
|
1579
1808
|
__props__.__dict__["tags"] = tags
|
|
1580
1809
|
__props__.__dict__["version"] = version
|
|
1581
1810
|
__props__.__dict__["vswitch_id"] = vswitch_id
|
|
1811
|
+
__props__.__dict__["warm_node_amount"] = warm_node_amount
|
|
1812
|
+
__props__.__dict__["warm_node_disk_encrypted"] = warm_node_disk_encrypted
|
|
1813
|
+
__props__.__dict__["warm_node_disk_size"] = warm_node_disk_size
|
|
1814
|
+
__props__.__dict__["warm_node_disk_type"] = warm_node_disk_type
|
|
1815
|
+
__props__.__dict__["warm_node_spec"] = warm_node_spec
|
|
1582
1816
|
__props__.__dict__["zone_count"] = zone_count
|
|
1583
1817
|
return Instance(resource_name, opts=opts, __props__=__props__)
|
|
1584
1818
|
|
|
@@ -1726,11 +1960,19 @@ class Instance(pulumi.CustomResource):
|
|
|
1726
1960
|
"""
|
|
1727
1961
|
return pulumi.get(self, "kibana_port")
|
|
1728
1962
|
|
|
1963
|
+
@property
|
|
1964
|
+
@pulumi.getter(name="kibanaPrivateSecurityGroupId")
|
|
1965
|
+
def kibana_private_security_group_id(self) -> pulumi.Output[Optional[str]]:
|
|
1966
|
+
"""
|
|
1967
|
+
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`
|
|
1968
|
+
"""
|
|
1969
|
+
return pulumi.get(self, "kibana_private_security_group_id")
|
|
1970
|
+
|
|
1729
1971
|
@property
|
|
1730
1972
|
@pulumi.getter(name="kibanaPrivateWhitelists")
|
|
1731
1973
|
def kibana_private_whitelists(self) -> pulumi.Output[Sequence[str]]:
|
|
1732
1974
|
"""
|
|
1733
|
-
Set the Kibana's IP whitelist in private network
|
|
1975
|
+
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
|
|
1734
1976
|
"""
|
|
1735
1977
|
return pulumi.get(self, "kibana_private_whitelists")
|
|
1736
1978
|
|
|
@@ -1890,7 +2132,7 @@ class Instance(pulumi.CustomResource):
|
|
|
1890
2132
|
@pulumi.getter
|
|
1891
2133
|
def version(self) -> pulumi.Output[str]:
|
|
1892
2134
|
"""
|
|
1893
|
-
Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack`
|
|
2135
|
+
Elasticsearch version. Supported values: `5.5.3_with_X-Pack`, `6.3_with_X-Pack`, `6.7_with_X-Pack`, `6.8_with_X-Pack`, `7.4_with_X-Pack` , `7.7_with_X-Pack`, `7.10_with_X-Pack`, `7.16_with_X-Pack`, `8.5_with_X-Pack`, `8.9_with_X-Pack`, `8.13_with_X-Pack`.
|
|
1894
2136
|
"""
|
|
1895
2137
|
return pulumi.get(self, "version")
|
|
1896
2138
|
|
|
@@ -1902,6 +2144,46 @@ class Instance(pulumi.CustomResource):
|
|
|
1902
2144
|
"""
|
|
1903
2145
|
return pulumi.get(self, "vswitch_id")
|
|
1904
2146
|
|
|
2147
|
+
@property
|
|
2148
|
+
@pulumi.getter(name="warmNodeAmount")
|
|
2149
|
+
def warm_node_amount(self) -> pulumi.Output[Optional[int]]:
|
|
2150
|
+
"""
|
|
2151
|
+
The Elasticsearch cluster's warm node quantity, between 3 and 50.
|
|
2152
|
+
"""
|
|
2153
|
+
return pulumi.get(self, "warm_node_amount")
|
|
2154
|
+
|
|
2155
|
+
@property
|
|
2156
|
+
@pulumi.getter(name="warmNodeDiskEncrypted")
|
|
2157
|
+
def warm_node_disk_encrypted(self) -> pulumi.Output[Optional[bool]]:
|
|
2158
|
+
"""
|
|
2159
|
+
If encrypt the warm node disk. Valid values are `true`, `false`. Default to `false`.
|
|
2160
|
+
"""
|
|
2161
|
+
return pulumi.get(self, "warm_node_disk_encrypted")
|
|
2162
|
+
|
|
2163
|
+
@property
|
|
2164
|
+
@pulumi.getter(name="warmNodeDiskSize")
|
|
2165
|
+
def warm_node_disk_size(self) -> pulumi.Output[Optional[int]]:
|
|
2166
|
+
"""
|
|
2167
|
+
The single warm node storage space, should between 500 and 20480
|
|
2168
|
+
"""
|
|
2169
|
+
return pulumi.get(self, "warm_node_disk_size")
|
|
2170
|
+
|
|
2171
|
+
@property
|
|
2172
|
+
@pulumi.getter(name="warmNodeDiskType")
|
|
2173
|
+
def warm_node_disk_type(self) -> pulumi.Output[Optional[str]]:
|
|
2174
|
+
"""
|
|
2175
|
+
The warm node disk type. Supported values: cloud_efficiency.
|
|
2176
|
+
"""
|
|
2177
|
+
return pulumi.get(self, "warm_node_disk_type")
|
|
2178
|
+
|
|
2179
|
+
@property
|
|
2180
|
+
@pulumi.getter(name="warmNodeSpec")
|
|
2181
|
+
def warm_node_spec(self) -> pulumi.Output[Optional[str]]:
|
|
2182
|
+
"""
|
|
2183
|
+
The warm node specifications of the Elasticsearch instance.
|
|
2184
|
+
"""
|
|
2185
|
+
return pulumi.get(self, "warm_node_spec")
|
|
2186
|
+
|
|
1905
2187
|
@property
|
|
1906
2188
|
@pulumi.getter(name="zoneCount")
|
|
1907
2189
|
def zone_count(self) -> pulumi.Output[Optional[int]]:
|