pulumi-alicloud 3.64.0a1729894283__py3-none-any.whl → 3.64.0a1730118787__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 +16 -0
- pulumi_alicloud/amqp/instance.py +8 -8
- pulumi_alicloud/bss/get_open_api_pricing_modules.py +4 -4
- pulumi_alicloud/bss/get_open_api_products.py +4 -4
- pulumi_alicloud/cas/get_certificates.py +17 -1
- pulumi_alicloud/cas/get_service_certificates.py +153 -17
- pulumi_alicloud/cas/outputs.py +40 -36
- pulumi_alicloud/cen/instance.py +108 -53
- pulumi_alicloud/cloudfirewall/control_policy.py +524 -23
- pulumi_alicloud/cloudfirewall/instance.py +64 -36
- pulumi_alicloud/cs/_inputs.py +390 -26
- pulumi_alicloud/cs/get_serverless_kubernetes_clusters.py +2 -0
- pulumi_alicloud/cs/kubernetes.py +48 -35
- pulumi_alicloud/cs/managed_kubernetes.py +91 -35
- pulumi_alicloud/cs/node_pool.py +68 -14
- pulumi_alicloud/cs/outputs.py +293 -16
- pulumi_alicloud/cs/serverless_kubernetes.py +157 -63
- pulumi_alicloud/databasefilesystem/_inputs.py +0 -6
- pulumi_alicloud/databasefilesystem/instance.py +31 -0
- pulumi_alicloud/databasefilesystem/outputs.py +0 -4
- pulumi_alicloud/dns/get_alidns_records.py +26 -4
- pulumi_alicloud/dns/outputs.py +2 -2
- pulumi_alicloud/eais/instance.py +55 -57
- pulumi_alicloud/ecp/instance.py +177 -219
- pulumi_alicloud/ecs/disk.py +2 -2
- pulumi_alicloud/ecs/ecs_disk.py +142 -58
- pulumi_alicloud/ecs/ecs_key_pair.py +1 -1
- pulumi_alicloud/ecs/ecs_launch_template.py +169 -0
- pulumi_alicloud/ecs/get_ecs_launch_templates.py +172 -6
- pulumi_alicloud/ecs/instance.py +131 -98
- pulumi_alicloud/ecs/key_pair.py +1 -1
- pulumi_alicloud/ecs/launch_template.py +102 -0
- pulumi_alicloud/ecs/outputs.py +57 -24
- pulumi_alicloud/ens/disk.py +2 -2
- pulumi_alicloud/ens/disk_instance_attachment.py +2 -2
- pulumi_alicloud/ess/_inputs.py +342 -2
- pulumi_alicloud/ess/eci_scaling_configuration.py +202 -0
- pulumi_alicloud/ess/outputs.py +226 -2
- pulumi_alicloud/ess/scaling_configuration.py +376 -0
- pulumi_alicloud/ga/_inputs.py +57 -22
- pulumi_alicloud/ga/outputs.py +39 -15
- pulumi_alicloud/gpdb/__init__.py +1 -0
- pulumi_alicloud/gpdb/database.py +545 -0
- pulumi_alicloud/gpdb/instance.py +1 -1
- pulumi_alicloud/kvstore/instance.py +24 -5
- pulumi_alicloud/mse/cluster.py +149 -51
- pulumi_alicloud/mse/engine_namespace.py +176 -74
- pulumi_alicloud/mse/get_clusters.py +70 -10
- pulumi_alicloud/mse/get_engine_namespaces.py +93 -15
- pulumi_alicloud/mse/outputs.py +36 -8
- pulumi_alicloud/nas/data_flow.py +6 -6
- pulumi_alicloud/nas/fileset.py +6 -6
- pulumi_alicloud/nas/lifecycle_policy.py +6 -6
- pulumi_alicloud/nas/recycle_bin.py +6 -6
- pulumi_alicloud/nas/snapshot.py +6 -6
- pulumi_alicloud/polardb/cluster.py +162 -0
- pulumi_alicloud/privatelink/get_vpc_endpoint_services.py +51 -7
- pulumi_alicloud/privatelink/outputs.py +17 -6
- pulumi_alicloud/privatelink/vpc_endpoint_service_user.py +54 -17
- pulumi_alicloud/privatelink/vpc_endpoint_zone.py +7 -21
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rds/instance.py +50 -3
- pulumi_alicloud/resourcemanager/get_folders.py +35 -28
- pulumi_alicloud/resourcemanager/outputs.py +8 -8
- pulumi_alicloud/servicemesh/_inputs.py +656 -174
- pulumi_alicloud/servicemesh/outputs.py +507 -117
- pulumi_alicloud/servicemesh/service_mesh.py +120 -78
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/_inputs.py +307 -0
- pulumi_alicloud/sls/collection_policy.py +561 -0
- pulumi_alicloud/sls/outputs.py +263 -0
- pulumi_alicloud/threatdetection/instance.py +331 -43
- {pulumi_alicloud-3.64.0a1729894283.dist-info → pulumi_alicloud-3.64.0a1730118787.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.64.0a1729894283.dist-info → pulumi_alicloud-3.64.0a1730118787.dist-info}/RECORD +76 -74
- {pulumi_alicloud-3.64.0a1729894283.dist-info → pulumi_alicloud-3.64.0a1730118787.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.64.0a1729894283.dist-info → pulumi_alicloud-3.64.0a1730118787.dist-info}/top_level.txt +0 -0
|
@@ -27,7 +27,7 @@ class GetEngineNamespacesResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getEngineNamespaces.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, accept_language=None, cluster_id=None, id=None, ids=None, namespaces=None, output_file=None):
|
|
30
|
+
def __init__(__self__, accept_language=None, cluster_id=None, id=None, ids=None, instance_id=None, namespaces=None, output_file=None):
|
|
31
31
|
if accept_language and not isinstance(accept_language, str):
|
|
32
32
|
raise TypeError("Expected argument 'accept_language' to be a str")
|
|
33
33
|
pulumi.set(__self__, "accept_language", accept_language)
|
|
@@ -40,6 +40,9 @@ class GetEngineNamespacesResult:
|
|
|
40
40
|
if ids and not isinstance(ids, list):
|
|
41
41
|
raise TypeError("Expected argument 'ids' to be a list")
|
|
42
42
|
pulumi.set(__self__, "ids", ids)
|
|
43
|
+
if instance_id and not isinstance(instance_id, str):
|
|
44
|
+
raise TypeError("Expected argument 'instance_id' to be a str")
|
|
45
|
+
pulumi.set(__self__, "instance_id", instance_id)
|
|
43
46
|
if namespaces and not isinstance(namespaces, list):
|
|
44
47
|
raise TypeError("Expected argument 'namespaces' to be a list")
|
|
45
48
|
pulumi.set(__self__, "namespaces", namespaces)
|
|
@@ -54,7 +57,7 @@ class GetEngineNamespacesResult:
|
|
|
54
57
|
|
|
55
58
|
@property
|
|
56
59
|
@pulumi.getter(name="clusterId")
|
|
57
|
-
def cluster_id(self) -> str:
|
|
60
|
+
def cluster_id(self) -> Optional[str]:
|
|
58
61
|
return pulumi.get(self, "cluster_id")
|
|
59
62
|
|
|
60
63
|
@property
|
|
@@ -70,9 +73,17 @@ class GetEngineNamespacesResult:
|
|
|
70
73
|
def ids(self) -> Sequence[str]:
|
|
71
74
|
return pulumi.get(self, "ids")
|
|
72
75
|
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter(name="instanceId")
|
|
78
|
+
def instance_id(self) -> Optional[str]:
|
|
79
|
+
return pulumi.get(self, "instance_id")
|
|
80
|
+
|
|
73
81
|
@property
|
|
74
82
|
@pulumi.getter
|
|
75
83
|
def namespaces(self) -> Sequence['outputs.GetEngineNamespacesNamespaceResult']:
|
|
84
|
+
"""
|
|
85
|
+
A list of Mse Engine Namespaces. Each element contains the following attributes:
|
|
86
|
+
"""
|
|
76
87
|
return pulumi.get(self, "namespaces")
|
|
77
88
|
|
|
78
89
|
@property
|
|
@@ -91,6 +102,7 @@ class AwaitableGetEngineNamespacesResult(GetEngineNamespacesResult):
|
|
|
91
102
|
cluster_id=self.cluster_id,
|
|
92
103
|
id=self.id,
|
|
93
104
|
ids=self.ids,
|
|
105
|
+
instance_id=self.instance_id,
|
|
94
106
|
namespaces=self.namespaces,
|
|
95
107
|
output_file=self.output_file)
|
|
96
108
|
|
|
@@ -98,12 +110,13 @@ class AwaitableGetEngineNamespacesResult(GetEngineNamespacesResult):
|
|
|
98
110
|
def get_engine_namespaces(accept_language: Optional[str] = None,
|
|
99
111
|
cluster_id: Optional[str] = None,
|
|
100
112
|
ids: Optional[Sequence[str]] = None,
|
|
113
|
+
instance_id: Optional[str] = None,
|
|
101
114
|
output_file: Optional[str] = None,
|
|
102
115
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEngineNamespacesResult:
|
|
103
116
|
"""
|
|
104
117
|
This data source provides the Mse Engine Namespaces of the current Alibaba Cloud user.
|
|
105
118
|
|
|
106
|
-
> **NOTE:** Available
|
|
119
|
+
> **NOTE:** Available since v1.166.0.
|
|
107
120
|
|
|
108
121
|
## Example Usage
|
|
109
122
|
|
|
@@ -113,21 +126,52 @@ def get_engine_namespaces(accept_language: Optional[str] = None,
|
|
|
113
126
|
import pulumi
|
|
114
127
|
import pulumi_alicloud as alicloud
|
|
115
128
|
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
129
|
+
example = alicloud.get_zones(available_resource_creation="VSwitch")
|
|
130
|
+
example_network = alicloud.vpc.Network("example",
|
|
131
|
+
vpc_name="terraform-example",
|
|
132
|
+
cidr_block="172.17.3.0/24")
|
|
133
|
+
example_switch = alicloud.vpc.Switch("example",
|
|
134
|
+
vswitch_name="terraform-example",
|
|
135
|
+
cidr_block="172.17.3.0/24",
|
|
136
|
+
vpc_id=example_network.id,
|
|
137
|
+
zone_id=example.zones[0].id)
|
|
138
|
+
example_cluster = alicloud.mse.Cluster("example",
|
|
139
|
+
cluster_specification="MSE_SC_1_2_60_c",
|
|
140
|
+
cluster_type="Nacos-Ans",
|
|
141
|
+
cluster_version="NACOS_2_0_0",
|
|
142
|
+
instance_count=3,
|
|
143
|
+
net_type="privatenet",
|
|
144
|
+
pub_network_flow="1",
|
|
145
|
+
connection_type="slb",
|
|
146
|
+
cluster_alias_name="terraform-example",
|
|
147
|
+
mse_version="mse_pro",
|
|
148
|
+
vswitch_id=example_switch.id,
|
|
149
|
+
vpc_id=example_network.id)
|
|
150
|
+
example_engine_namespace = alicloud.mse.EngineNamespace("example",
|
|
151
|
+
instance_id=example_cluster.id,
|
|
152
|
+
namespace_show_name="terraform-example",
|
|
153
|
+
namespace_id="terraform-example",
|
|
154
|
+
namespace_desc="description")
|
|
155
|
+
# Declare the data source
|
|
156
|
+
example_get_engine_namespaces = alicloud.mse.get_engine_namespaces_output(instance_id=example_engine_namespace.instance_id)
|
|
157
|
+
pulumi.export("mseEngineNamespaceIdPublic", example_get_engine_namespaces.namespaces[0].id)
|
|
158
|
+
pulumi.export("mseEngineNamespaceIdExample", example_get_engine_namespaces.namespaces[1].id)
|
|
119
159
|
```
|
|
120
160
|
|
|
121
161
|
|
|
122
162
|
:param str accept_language: The language type of the returned information. Valid values: `zh`, `en`.
|
|
123
|
-
:param str cluster_id: The
|
|
124
|
-
:param Sequence[str] ids: A list of Engine Namespace IDs. It is formatted to `<
|
|
163
|
+
:param str cluster_id: The ID of the cluster.
|
|
164
|
+
:param Sequence[str] ids: A list of Engine Namespace IDs. It is formatted to `<instance_id>:<namespace_id>`.
|
|
165
|
+
:param str instance_id: The ID of the MSE Cluster Instance.It is formatted to `mse-cn-xxxxxxxxxxx`.Available since v1.232.0
|
|
125
166
|
:param str output_file: File name where to save data source results (after running `pulumi preview`).
|
|
167
|
+
|
|
168
|
+
**NOTE:** You must set `cluster_id` or `instance_id` or both.
|
|
126
169
|
"""
|
|
127
170
|
__args__ = dict()
|
|
128
171
|
__args__['acceptLanguage'] = accept_language
|
|
129
172
|
__args__['clusterId'] = cluster_id
|
|
130
173
|
__args__['ids'] = ids
|
|
174
|
+
__args__['instanceId'] = instance_id
|
|
131
175
|
__args__['outputFile'] = output_file
|
|
132
176
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
133
177
|
__ret__ = pulumi.runtime.invoke('alicloud:mse/getEngineNamespaces:getEngineNamespaces', __args__, opts=opts, typ=GetEngineNamespacesResult).value
|
|
@@ -137,17 +181,19 @@ def get_engine_namespaces(accept_language: Optional[str] = None,
|
|
|
137
181
|
cluster_id=pulumi.get(__ret__, 'cluster_id'),
|
|
138
182
|
id=pulumi.get(__ret__, 'id'),
|
|
139
183
|
ids=pulumi.get(__ret__, 'ids'),
|
|
184
|
+
instance_id=pulumi.get(__ret__, 'instance_id'),
|
|
140
185
|
namespaces=pulumi.get(__ret__, 'namespaces'),
|
|
141
186
|
output_file=pulumi.get(__ret__, 'output_file'))
|
|
142
187
|
def get_engine_namespaces_output(accept_language: Optional[pulumi.Input[Optional[str]]] = None,
|
|
143
|
-
cluster_id: Optional[pulumi.Input[str]] = None,
|
|
188
|
+
cluster_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
144
189
|
ids: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
|
190
|
+
instance_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
145
191
|
output_file: Optional[pulumi.Input[Optional[str]]] = None,
|
|
146
192
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetEngineNamespacesResult]:
|
|
147
193
|
"""
|
|
148
194
|
This data source provides the Mse Engine Namespaces of the current Alibaba Cloud user.
|
|
149
195
|
|
|
150
|
-
> **NOTE:** Available
|
|
196
|
+
> **NOTE:** Available since v1.166.0.
|
|
151
197
|
|
|
152
198
|
## Example Usage
|
|
153
199
|
|
|
@@ -157,21 +203,52 @@ def get_engine_namespaces_output(accept_language: Optional[pulumi.Input[Optional
|
|
|
157
203
|
import pulumi
|
|
158
204
|
import pulumi_alicloud as alicloud
|
|
159
205
|
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
206
|
+
example = alicloud.get_zones(available_resource_creation="VSwitch")
|
|
207
|
+
example_network = alicloud.vpc.Network("example",
|
|
208
|
+
vpc_name="terraform-example",
|
|
209
|
+
cidr_block="172.17.3.0/24")
|
|
210
|
+
example_switch = alicloud.vpc.Switch("example",
|
|
211
|
+
vswitch_name="terraform-example",
|
|
212
|
+
cidr_block="172.17.3.0/24",
|
|
213
|
+
vpc_id=example_network.id,
|
|
214
|
+
zone_id=example.zones[0].id)
|
|
215
|
+
example_cluster = alicloud.mse.Cluster("example",
|
|
216
|
+
cluster_specification="MSE_SC_1_2_60_c",
|
|
217
|
+
cluster_type="Nacos-Ans",
|
|
218
|
+
cluster_version="NACOS_2_0_0",
|
|
219
|
+
instance_count=3,
|
|
220
|
+
net_type="privatenet",
|
|
221
|
+
pub_network_flow="1",
|
|
222
|
+
connection_type="slb",
|
|
223
|
+
cluster_alias_name="terraform-example",
|
|
224
|
+
mse_version="mse_pro",
|
|
225
|
+
vswitch_id=example_switch.id,
|
|
226
|
+
vpc_id=example_network.id)
|
|
227
|
+
example_engine_namespace = alicloud.mse.EngineNamespace("example",
|
|
228
|
+
instance_id=example_cluster.id,
|
|
229
|
+
namespace_show_name="terraform-example",
|
|
230
|
+
namespace_id="terraform-example",
|
|
231
|
+
namespace_desc="description")
|
|
232
|
+
# Declare the data source
|
|
233
|
+
example_get_engine_namespaces = alicloud.mse.get_engine_namespaces_output(instance_id=example_engine_namespace.instance_id)
|
|
234
|
+
pulumi.export("mseEngineNamespaceIdPublic", example_get_engine_namespaces.namespaces[0].id)
|
|
235
|
+
pulumi.export("mseEngineNamespaceIdExample", example_get_engine_namespaces.namespaces[1].id)
|
|
163
236
|
```
|
|
164
237
|
|
|
165
238
|
|
|
166
239
|
:param str accept_language: The language type of the returned information. Valid values: `zh`, `en`.
|
|
167
|
-
:param str cluster_id: The
|
|
168
|
-
:param Sequence[str] ids: A list of Engine Namespace IDs. It is formatted to `<
|
|
240
|
+
:param str cluster_id: The ID of the cluster.
|
|
241
|
+
:param Sequence[str] ids: A list of Engine Namespace IDs. It is formatted to `<instance_id>:<namespace_id>`.
|
|
242
|
+
:param str instance_id: The ID of the MSE Cluster Instance.It is formatted to `mse-cn-xxxxxxxxxxx`.Available since v1.232.0
|
|
169
243
|
:param str output_file: File name where to save data source results (after running `pulumi preview`).
|
|
244
|
+
|
|
245
|
+
**NOTE:** You must set `cluster_id` or `instance_id` or both.
|
|
170
246
|
"""
|
|
171
247
|
__args__ = dict()
|
|
172
248
|
__args__['acceptLanguage'] = accept_language
|
|
173
249
|
__args__['clusterId'] = cluster_id
|
|
174
250
|
__args__['ids'] = ids
|
|
251
|
+
__args__['instanceId'] = instance_id
|
|
175
252
|
__args__['outputFile'] = output_file
|
|
176
253
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
177
254
|
__ret__ = pulumi.runtime.invoke_output('alicloud:mse/getEngineNamespaces:getEngineNamespaces', __args__, opts=opts, typ=GetEngineNamespacesResult)
|
|
@@ -180,5 +257,6 @@ def get_engine_namespaces_output(accept_language: Optional[pulumi.Input[Optional
|
|
|
180
257
|
cluster_id=pulumi.get(__response__, 'cluster_id'),
|
|
181
258
|
id=pulumi.get(__response__, 'id'),
|
|
182
259
|
ids=pulumi.get(__response__, 'ids'),
|
|
260
|
+
instance_id=pulumi.get(__response__, 'instance_id'),
|
|
183
261
|
namespaces=pulumi.get(__response__, 'namespaces'),
|
|
184
262
|
output_file=pulumi.get(__response__, 'output_file')))
|
pulumi_alicloud/mse/outputs.py
CHANGED
|
@@ -189,12 +189,12 @@ class GetClustersClusterResult(dict):
|
|
|
189
189
|
:param str cluster_name: ID of the OOS Executions.
|
|
190
190
|
:param str cluster_type: The type of MSE Cluster.
|
|
191
191
|
:param int cpu: The num of cpu.
|
|
192
|
-
:param str health_status: The health status of
|
|
192
|
+
:param str health_status: The health status of the instance.
|
|
193
193
|
:param str id: ID of the MSE Cluster.
|
|
194
194
|
:param int init_cost_time: Time-consuming to create.
|
|
195
195
|
:param int instance_count: The count of instance.
|
|
196
196
|
:param str instance_id: ID of the MSE Cluster.
|
|
197
|
-
:param Sequence['GetClustersClusterInstanceModelArgs'] instance_models: The list of
|
|
197
|
+
:param Sequence['GetClustersClusterInstanceModelArgs'] instance_models: The list of instance nodes.
|
|
198
198
|
:param str internet_address: The address of public network.
|
|
199
199
|
:param str internet_domain: The domain of public network.
|
|
200
200
|
:param str internet_port: The port of public network.
|
|
@@ -281,7 +281,7 @@ class GetClustersClusterResult(dict):
|
|
|
281
281
|
@pulumi.getter(name="healthStatus")
|
|
282
282
|
def health_status(self) -> str:
|
|
283
283
|
"""
|
|
284
|
-
The health status of
|
|
284
|
+
The health status of the instance.
|
|
285
285
|
"""
|
|
286
286
|
return pulumi.get(self, "health_status")
|
|
287
287
|
|
|
@@ -321,7 +321,7 @@ class GetClustersClusterResult(dict):
|
|
|
321
321
|
@pulumi.getter(name="instanceModels")
|
|
322
322
|
def instance_models(self) -> Sequence['outputs.GetClustersClusterInstanceModelResult']:
|
|
323
323
|
"""
|
|
324
|
-
The list of
|
|
324
|
+
The list of instance nodes.
|
|
325
325
|
"""
|
|
326
326
|
return pulumi.get(self, "instance_models")
|
|
327
327
|
|
|
@@ -418,7 +418,14 @@ class GetClustersClusterInstanceModelResult(dict):
|
|
|
418
418
|
single_tunnel_vip: str,
|
|
419
419
|
vip: str):
|
|
420
420
|
"""
|
|
421
|
-
:param str health_status: The health status of
|
|
421
|
+
:param str health_status: The health status of the instance.
|
|
422
|
+
:param str instance_type: (Deprecated from version 1.232.0)
|
|
423
|
+
:param str internet_ip: The public IP address.
|
|
424
|
+
:param str ip: The IP address of the instance.
|
|
425
|
+
:param str pod_name: The name of the pod.
|
|
426
|
+
:param str role: The role.
|
|
427
|
+
:param str single_tunnel_vip: The single-thread IP address.
|
|
428
|
+
:param str vip: (Deprecated from version 1.232.0)
|
|
422
429
|
"""
|
|
423
430
|
pulumi.set(__self__, "health_status", health_status)
|
|
424
431
|
pulumi.set(__self__, "instance_type", instance_type)
|
|
@@ -433,43 +440,64 @@ class GetClustersClusterInstanceModelResult(dict):
|
|
|
433
440
|
@pulumi.getter(name="healthStatus")
|
|
434
441
|
def health_status(self) -> str:
|
|
435
442
|
"""
|
|
436
|
-
The health status of
|
|
443
|
+
The health status of the instance.
|
|
437
444
|
"""
|
|
438
445
|
return pulumi.get(self, "health_status")
|
|
439
446
|
|
|
440
447
|
@property
|
|
441
448
|
@pulumi.getter(name="instanceType")
|
|
442
449
|
def instance_type(self) -> str:
|
|
450
|
+
"""
|
|
451
|
+
(Deprecated from version 1.232.0)
|
|
452
|
+
"""
|
|
443
453
|
return pulumi.get(self, "instance_type")
|
|
444
454
|
|
|
445
455
|
@property
|
|
446
456
|
@pulumi.getter(name="internetIp")
|
|
447
457
|
def internet_ip(self) -> str:
|
|
458
|
+
"""
|
|
459
|
+
The public IP address.
|
|
460
|
+
"""
|
|
448
461
|
return pulumi.get(self, "internet_ip")
|
|
449
462
|
|
|
450
463
|
@property
|
|
451
464
|
@pulumi.getter
|
|
452
465
|
def ip(self) -> str:
|
|
466
|
+
"""
|
|
467
|
+
The IP address of the instance.
|
|
468
|
+
"""
|
|
453
469
|
return pulumi.get(self, "ip")
|
|
454
470
|
|
|
455
471
|
@property
|
|
456
472
|
@pulumi.getter(name="podName")
|
|
457
473
|
def pod_name(self) -> str:
|
|
474
|
+
"""
|
|
475
|
+
The name of the pod.
|
|
476
|
+
"""
|
|
458
477
|
return pulumi.get(self, "pod_name")
|
|
459
478
|
|
|
460
479
|
@property
|
|
461
480
|
@pulumi.getter
|
|
462
481
|
def role(self) -> str:
|
|
482
|
+
"""
|
|
483
|
+
The role.
|
|
484
|
+
"""
|
|
463
485
|
return pulumi.get(self, "role")
|
|
464
486
|
|
|
465
487
|
@property
|
|
466
488
|
@pulumi.getter(name="singleTunnelVip")
|
|
467
489
|
def single_tunnel_vip(self) -> str:
|
|
490
|
+
"""
|
|
491
|
+
The single-thread IP address.
|
|
492
|
+
"""
|
|
468
493
|
return pulumi.get(self, "single_tunnel_vip")
|
|
469
494
|
|
|
470
495
|
@property
|
|
471
496
|
@pulumi.getter
|
|
472
497
|
def vip(self) -> str:
|
|
498
|
+
"""
|
|
499
|
+
(Deprecated from version 1.232.0)
|
|
500
|
+
"""
|
|
473
501
|
return pulumi.get(self, "vip")
|
|
474
502
|
|
|
475
503
|
|
|
@@ -486,7 +514,7 @@ class GetEngineNamespacesNamespaceResult(dict):
|
|
|
486
514
|
type: int):
|
|
487
515
|
"""
|
|
488
516
|
:param int config_count: The Number of Configuration of the Namespace.
|
|
489
|
-
:param str id: The ID of the Engine Namespace. It is formatted to `<
|
|
517
|
+
:param str id: The ID of the Engine Namespace. It is formatted to `<instance_id>:<namespace_id>`.
|
|
490
518
|
:param str namespace_desc: The description of the Namespace.
|
|
491
519
|
:param str namespace_id: The id of Namespace.
|
|
492
520
|
:param str namespace_show_name: The name of the Namespace.
|
|
@@ -518,7 +546,7 @@ class GetEngineNamespacesNamespaceResult(dict):
|
|
|
518
546
|
@pulumi.getter
|
|
519
547
|
def id(self) -> str:
|
|
520
548
|
"""
|
|
521
|
-
The ID of the Engine Namespace. It is formatted to `<
|
|
549
|
+
The ID of the Engine Namespace. It is formatted to `<instance_id>:<namespace_id>`.
|
|
522
550
|
"""
|
|
523
551
|
return pulumi.get(self, "id")
|
|
524
552
|
|
pulumi_alicloud/nas/data_flow.py
CHANGED
|
@@ -335,15 +335,15 @@ class DataFlow(pulumi.CustomResource):
|
|
|
335
335
|
throughput: Optional[pulumi.Input[int]] = None,
|
|
336
336
|
__props__=None):
|
|
337
337
|
"""
|
|
338
|
-
Provides a
|
|
338
|
+
Provides a Apsara File Storage (NAS) Data Flow resource.
|
|
339
339
|
|
|
340
|
-
For information about
|
|
340
|
+
For information about Apsara File Storage (NAS) Data Flow and how to use it, see [What is Data Flow](https://www.alibabacloud.com/help/en/doc-detail/27530.html).
|
|
341
341
|
|
|
342
342
|
> **NOTE:** Available since v1.153.0.
|
|
343
343
|
|
|
344
344
|
## Import
|
|
345
345
|
|
|
346
|
-
|
|
346
|
+
Apsara File Storage (NAS) Data Flow can be imported using the id, e.g.
|
|
347
347
|
|
|
348
348
|
```sh
|
|
349
349
|
$ pulumi import alicloud:nas/dataFlow:DataFlow example <file_system_id>:<data_flow_id>
|
|
@@ -372,15 +372,15 @@ class DataFlow(pulumi.CustomResource):
|
|
|
372
372
|
args: DataFlowArgs,
|
|
373
373
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
374
374
|
"""
|
|
375
|
-
Provides a
|
|
375
|
+
Provides a Apsara File Storage (NAS) Data Flow resource.
|
|
376
376
|
|
|
377
|
-
For information about
|
|
377
|
+
For information about Apsara File Storage (NAS) Data Flow and how to use it, see [What is Data Flow](https://www.alibabacloud.com/help/en/doc-detail/27530.html).
|
|
378
378
|
|
|
379
379
|
> **NOTE:** Available since v1.153.0.
|
|
380
380
|
|
|
381
381
|
## Import
|
|
382
382
|
|
|
383
|
-
|
|
383
|
+
Apsara File Storage (NAS) Data Flow can be imported using the id, e.g.
|
|
384
384
|
|
|
385
385
|
```sh
|
|
386
386
|
$ pulumi import alicloud:nas/dataFlow:DataFlow example <file_system_id>:<data_flow_id>
|
pulumi_alicloud/nas/fileset.py
CHANGED
|
@@ -201,9 +201,9 @@ class Fileset(pulumi.CustomResource):
|
|
|
201
201
|
file_system_path: Optional[pulumi.Input[str]] = None,
|
|
202
202
|
__props__=None):
|
|
203
203
|
"""
|
|
204
|
-
Provides a
|
|
204
|
+
Provides a Apsara File Storage (NAS) Fileset resource.
|
|
205
205
|
|
|
206
|
-
For information about
|
|
206
|
+
For information about Apsara File Storage (NAS) Fileset and how to use it, see [What is Fileset](https://www.alibabacloud.com/help/en/doc-detail/27530.html).
|
|
207
207
|
|
|
208
208
|
> **NOTE:** Available in v1.153.0+.
|
|
209
209
|
|
|
@@ -240,7 +240,7 @@ class Fileset(pulumi.CustomResource):
|
|
|
240
240
|
|
|
241
241
|
## Import
|
|
242
242
|
|
|
243
|
-
|
|
243
|
+
Apsara File Storage (NAS) Fileset can be imported using the id, e.g.
|
|
244
244
|
|
|
245
245
|
```sh
|
|
246
246
|
$ pulumi import alicloud:nas/fileset:Fileset example <file_system_id>:<fileset_id>
|
|
@@ -260,9 +260,9 @@ class Fileset(pulumi.CustomResource):
|
|
|
260
260
|
args: FilesetArgs,
|
|
261
261
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
262
262
|
"""
|
|
263
|
-
Provides a
|
|
263
|
+
Provides a Apsara File Storage (NAS) Fileset resource.
|
|
264
264
|
|
|
265
|
-
For information about
|
|
265
|
+
For information about Apsara File Storage (NAS) Fileset and how to use it, see [What is Fileset](https://www.alibabacloud.com/help/en/doc-detail/27530.html).
|
|
266
266
|
|
|
267
267
|
> **NOTE:** Available in v1.153.0+.
|
|
268
268
|
|
|
@@ -299,7 +299,7 @@ class Fileset(pulumi.CustomResource):
|
|
|
299
299
|
|
|
300
300
|
## Import
|
|
301
301
|
|
|
302
|
-
|
|
302
|
+
Apsara File Storage (NAS) Fileset can be imported using the id, e.g.
|
|
303
303
|
|
|
304
304
|
```sh
|
|
305
305
|
$ pulumi import alicloud:nas/fileset:Fileset example <file_system_id>:<fileset_id>
|
|
@@ -199,9 +199,9 @@ class LifecyclePolicy(pulumi.CustomResource):
|
|
|
199
199
|
storage_type: Optional[pulumi.Input[str]] = None,
|
|
200
200
|
__props__=None):
|
|
201
201
|
"""
|
|
202
|
-
Provides a
|
|
202
|
+
Provides a Apsara File Storage (NAS) Lifecycle Policy resource.
|
|
203
203
|
|
|
204
|
-
For information about
|
|
204
|
+
For information about Apsara File Storage (NAS) Lifecycle Policy and how to use it, see [What is Lifecycle Policy](https://www.alibabacloud.com/help/en/doc-detail/169362.html).
|
|
205
205
|
|
|
206
206
|
> **NOTE:** Available in v1.153.0+.
|
|
207
207
|
|
|
@@ -226,7 +226,7 @@ class LifecyclePolicy(pulumi.CustomResource):
|
|
|
226
226
|
|
|
227
227
|
## Import
|
|
228
228
|
|
|
229
|
-
|
|
229
|
+
Apsara File Storage (NAS) Lifecycle Policy can be imported using the id, e.g.
|
|
230
230
|
|
|
231
231
|
```sh
|
|
232
232
|
$ pulumi import alicloud:nas/lifecyclePolicy:LifecyclePolicy example <file_system_id>:<lifecycle_policy_name>
|
|
@@ -247,9 +247,9 @@ class LifecyclePolicy(pulumi.CustomResource):
|
|
|
247
247
|
args: LifecyclePolicyArgs,
|
|
248
248
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
249
249
|
"""
|
|
250
|
-
Provides a
|
|
250
|
+
Provides a Apsara File Storage (NAS) Lifecycle Policy resource.
|
|
251
251
|
|
|
252
|
-
For information about
|
|
252
|
+
For information about Apsara File Storage (NAS) Lifecycle Policy and how to use it, see [What is Lifecycle Policy](https://www.alibabacloud.com/help/en/doc-detail/169362.html).
|
|
253
253
|
|
|
254
254
|
> **NOTE:** Available in v1.153.0+.
|
|
255
255
|
|
|
@@ -274,7 +274,7 @@ class LifecyclePolicy(pulumi.CustomResource):
|
|
|
274
274
|
|
|
275
275
|
## Import
|
|
276
276
|
|
|
277
|
-
|
|
277
|
+
Apsara File Storage (NAS) Lifecycle Policy can be imported using the id, e.g.
|
|
278
278
|
|
|
279
279
|
```sh
|
|
280
280
|
$ pulumi import alicloud:nas/lifecyclePolicy:LifecyclePolicy example <file_system_id>:<lifecycle_policy_name>
|
|
@@ -120,9 +120,9 @@ class RecycleBin(pulumi.CustomResource):
|
|
|
120
120
|
reserved_days: Optional[pulumi.Input[int]] = None,
|
|
121
121
|
__props__=None):
|
|
122
122
|
"""
|
|
123
|
-
Provides a
|
|
123
|
+
Provides a Apsara File Storage (NAS) Recycle Bin resource.
|
|
124
124
|
|
|
125
|
-
For information about
|
|
125
|
+
For information about Apsara File Storage (NAS) Recycle Bin and how to use it, see [What is Recycle Bin](https://www.alibabacloud.com/help/en/doc-detail/264185.html).
|
|
126
126
|
|
|
127
127
|
> **NOTE:** Available in v1.155.0+.
|
|
128
128
|
|
|
@@ -148,7 +148,7 @@ class RecycleBin(pulumi.CustomResource):
|
|
|
148
148
|
|
|
149
149
|
## Import
|
|
150
150
|
|
|
151
|
-
|
|
151
|
+
Apsara File Storage (NAS) Recycle Bin can be imported using the id, e.g.
|
|
152
152
|
|
|
153
153
|
```sh
|
|
154
154
|
$ pulumi import alicloud:nas/recycleBin:RecycleBin example <file_system_id>
|
|
@@ -166,9 +166,9 @@ class RecycleBin(pulumi.CustomResource):
|
|
|
166
166
|
args: RecycleBinArgs,
|
|
167
167
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
168
168
|
"""
|
|
169
|
-
Provides a
|
|
169
|
+
Provides a Apsara File Storage (NAS) Recycle Bin resource.
|
|
170
170
|
|
|
171
|
-
For information about
|
|
171
|
+
For information about Apsara File Storage (NAS) Recycle Bin and how to use it, see [What is Recycle Bin](https://www.alibabacloud.com/help/en/doc-detail/264185.html).
|
|
172
172
|
|
|
173
173
|
> **NOTE:** Available in v1.155.0+.
|
|
174
174
|
|
|
@@ -194,7 +194,7 @@ class RecycleBin(pulumi.CustomResource):
|
|
|
194
194
|
|
|
195
195
|
## Import
|
|
196
196
|
|
|
197
|
-
|
|
197
|
+
Apsara File Storage (NAS) Recycle Bin can be imported using the id, e.g.
|
|
198
198
|
|
|
199
199
|
```sh
|
|
200
200
|
$ pulumi import alicloud:nas/recycleBin:RecycleBin example <file_system_id>
|
pulumi_alicloud/nas/snapshot.py
CHANGED
|
@@ -190,9 +190,9 @@ class Snapshot(pulumi.CustomResource):
|
|
|
190
190
|
snapshot_name: Optional[pulumi.Input[str]] = None,
|
|
191
191
|
__props__=None):
|
|
192
192
|
"""
|
|
193
|
-
Provides a
|
|
193
|
+
Provides a Apsara File Storage (NAS) Snapshot resource.
|
|
194
194
|
|
|
195
|
-
For information about
|
|
195
|
+
For information about Apsara File Storage (NAS) Snapshot and how to use it, see [What is Snapshot](https://www.alibabacloud.com/help/en/doc-detail/126549.html).
|
|
196
196
|
|
|
197
197
|
> **NOTE:** Available in v1.152.0+.
|
|
198
198
|
|
|
@@ -226,7 +226,7 @@ class Snapshot(pulumi.CustomResource):
|
|
|
226
226
|
|
|
227
227
|
## Import
|
|
228
228
|
|
|
229
|
-
|
|
229
|
+
Apsara File Storage (NAS) Snapshot can be imported using the id, e.g.
|
|
230
230
|
|
|
231
231
|
```sh
|
|
232
232
|
$ pulumi import alicloud:nas/snapshot:Snapshot example <id>
|
|
@@ -247,9 +247,9 @@ class Snapshot(pulumi.CustomResource):
|
|
|
247
247
|
args: SnapshotArgs,
|
|
248
248
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
249
249
|
"""
|
|
250
|
-
Provides a
|
|
250
|
+
Provides a Apsara File Storage (NAS) Snapshot resource.
|
|
251
251
|
|
|
252
|
-
For information about
|
|
252
|
+
For information about Apsara File Storage (NAS) Snapshot and how to use it, see [What is Snapshot](https://www.alibabacloud.com/help/en/doc-detail/126549.html).
|
|
253
253
|
|
|
254
254
|
> **NOTE:** Available in v1.152.0+.
|
|
255
255
|
|
|
@@ -283,7 +283,7 @@ class Snapshot(pulumi.CustomResource):
|
|
|
283
283
|
|
|
284
284
|
## Import
|
|
285
285
|
|
|
286
|
-
|
|
286
|
+
Apsara File Storage (NAS) Snapshot can be imported using the id, e.g.
|
|
287
287
|
|
|
288
288
|
```sh
|
|
289
289
|
$ pulumi import alicloud:nas/snapshot:Snapshot example <id>
|