pulumi-alicloud 3.67.0__py3-none-any.whl → 3.67.0a1731734345__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 +0 -16
- pulumi_alicloud/cen/flow_log.py +58 -373
- pulumi_alicloud/cen/transit_router_ecr_attachment.py +4 -4
- pulumi_alicloud/cr/registry_enterprise_instance.py +90 -474
- pulumi_alicloud/ecs/ecs_image_component.py +48 -221
- pulumi_alicloud/ess/_inputs.py +0 -94
- pulumi_alicloud/ess/eci_scaling_configuration.py +14 -42
- pulumi_alicloud/ess/outputs.py +0 -79
- pulumi_alicloud/ess/scaling_configuration.py +0 -47
- pulumi_alicloud/expressconnect/router_vbr_child_instance.py +25 -86
- pulumi_alicloud/kms/key.py +1 -1
- pulumi_alicloud/kvstore/account.py +24 -24
- pulumi_alicloud/kvstore/audit_log_config.py +4 -4
- pulumi_alicloud/kvstore/backup_policy.py +2 -2
- pulumi_alicloud/kvstore/connection.py +8 -8
- pulumi_alicloud/kvstore/get_accounts.py +4 -4
- pulumi_alicloud/kvstore/get_connections.py +5 -5
- pulumi_alicloud/kvstore/get_instance_classes.py +12 -12
- pulumi_alicloud/kvstore/get_instance_engines.py +7 -7
- pulumi_alicloud/kvstore/get_permission.py +10 -10
- pulumi_alicloud/kvstore/get_zones.py +4 -4
- pulumi_alicloud/kvstore/outputs.py +2 -2
- pulumi_alicloud/mongodb/instance.py +0 -47
- pulumi_alicloud/mongodb/sharding_instance.py +0 -47
- pulumi_alicloud/polardb/cluster.py +7 -7
- pulumi_alicloud/privatelink/vpc_endpoint_service.py +91 -42
- pulumi_alicloud/privatelink/vpc_endpoint_service_connection.py +23 -27
- pulumi_alicloud/privatelink/vpc_endpoint_service_resource.py +37 -34
- pulumi_alicloud/privatelink/vpc_endpoint_zone.py +0 -28
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rds/__init__.py +0 -2
- pulumi_alicloud/rds/_inputs.py +0 -146
- pulumi_alicloud/rds/outputs.py +0 -105
- pulumi_alicloud/redis/tair_instance.py +1 -76
- pulumi_alicloud/vpc/_inputs.py +0 -54
- pulumi_alicloud/vpc/nat_gateway.py +14 -175
- pulumi_alicloud/vpc/outputs.py +0 -51
- pulumi_alicloud/vpn/gateway_vco_route.py +21 -68
- {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/METADATA +5 -5
- {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/RECORD +42 -44
- {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/WHEEL +1 -1
- pulumi_alicloud/rds/custom.py +0 -1630
- pulumi_alicloud/rds/custom_deployment_set.py +0 -525
- {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/top_level.txt +0 -0
|
@@ -23,18 +23,14 @@ class RouterVbrChildInstanceArgs:
|
|
|
23
23
|
child_instance_region_id: pulumi.Input[str],
|
|
24
24
|
child_instance_type: pulumi.Input[str],
|
|
25
25
|
ecr_id: pulumi.Input[str],
|
|
26
|
-
child_instance_owner_id: Optional[pulumi.Input[str]] = None
|
|
27
|
-
description: Optional[pulumi.Input[str]] = None):
|
|
26
|
+
child_instance_owner_id: Optional[pulumi.Input[str]] = None):
|
|
28
27
|
"""
|
|
29
28
|
The set of arguments for constructing a RouterVbrChildInstance resource.
|
|
30
29
|
:param pulumi.Input[str] child_instance_id: The ID of the leased line gateway subinstance.
|
|
31
|
-
:param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance
|
|
32
|
-
:param pulumi.Input[str] child_instance_type: The type of
|
|
30
|
+
:param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance.
|
|
31
|
+
:param pulumi.Input[str] child_instance_type: The type of leased line gateway sub-instance, Valid values: `VBR`.
|
|
33
32
|
:param pulumi.Input[str] ecr_id: ID of the representative leased line gateway instance.
|
|
34
|
-
:param pulumi.Input[str] child_instance_owner_id: The ID of the
|
|
35
|
-
|
|
36
|
-
> **NOTE:** This parameter is required if you want to load a cross-account network instance.
|
|
37
|
-
:param pulumi.Input[str] description: Resource attribute fields that represent descriptive information
|
|
33
|
+
:param pulumi.Input[str] child_instance_owner_id: The ID of the subinstance of the leased line gateway.
|
|
38
34
|
"""
|
|
39
35
|
pulumi.set(__self__, "child_instance_id", child_instance_id)
|
|
40
36
|
pulumi.set(__self__, "child_instance_region_id", child_instance_region_id)
|
|
@@ -42,8 +38,6 @@ class RouterVbrChildInstanceArgs:
|
|
|
42
38
|
pulumi.set(__self__, "ecr_id", ecr_id)
|
|
43
39
|
if child_instance_owner_id is not None:
|
|
44
40
|
pulumi.set(__self__, "child_instance_owner_id", child_instance_owner_id)
|
|
45
|
-
if description is not None:
|
|
46
|
-
pulumi.set(__self__, "description", description)
|
|
47
41
|
|
|
48
42
|
@property
|
|
49
43
|
@pulumi.getter(name="childInstanceId")
|
|
@@ -61,7 +55,7 @@ class RouterVbrChildInstanceArgs:
|
|
|
61
55
|
@pulumi.getter(name="childInstanceRegionId")
|
|
62
56
|
def child_instance_region_id(self) -> pulumi.Input[str]:
|
|
63
57
|
"""
|
|
64
|
-
Region of the leased line gateway sub-instance
|
|
58
|
+
Region of the leased line gateway sub-instance.
|
|
65
59
|
"""
|
|
66
60
|
return pulumi.get(self, "child_instance_region_id")
|
|
67
61
|
|
|
@@ -73,7 +67,7 @@ class RouterVbrChildInstanceArgs:
|
|
|
73
67
|
@pulumi.getter(name="childInstanceType")
|
|
74
68
|
def child_instance_type(self) -> pulumi.Input[str]:
|
|
75
69
|
"""
|
|
76
|
-
The type of
|
|
70
|
+
The type of leased line gateway sub-instance, Valid values: `VBR`.
|
|
77
71
|
"""
|
|
78
72
|
return pulumi.get(self, "child_instance_type")
|
|
79
73
|
|
|
@@ -97,9 +91,7 @@ class RouterVbrChildInstanceArgs:
|
|
|
97
91
|
@pulumi.getter(name="childInstanceOwnerId")
|
|
98
92
|
def child_instance_owner_id(self) -> Optional[pulumi.Input[str]]:
|
|
99
93
|
"""
|
|
100
|
-
The ID of the
|
|
101
|
-
|
|
102
|
-
> **NOTE:** This parameter is required if you want to load a cross-account network instance.
|
|
94
|
+
The ID of the subinstance of the leased line gateway.
|
|
103
95
|
"""
|
|
104
96
|
return pulumi.get(self, "child_instance_owner_id")
|
|
105
97
|
|
|
@@ -107,18 +99,6 @@ class RouterVbrChildInstanceArgs:
|
|
|
107
99
|
def child_instance_owner_id(self, value: Optional[pulumi.Input[str]]):
|
|
108
100
|
pulumi.set(self, "child_instance_owner_id", value)
|
|
109
101
|
|
|
110
|
-
@property
|
|
111
|
-
@pulumi.getter
|
|
112
|
-
def description(self) -> Optional[pulumi.Input[str]]:
|
|
113
|
-
"""
|
|
114
|
-
Resource attribute fields that represent descriptive information
|
|
115
|
-
"""
|
|
116
|
-
return pulumi.get(self, "description")
|
|
117
|
-
|
|
118
|
-
@description.setter
|
|
119
|
-
def description(self, value: Optional[pulumi.Input[str]]):
|
|
120
|
-
pulumi.set(self, "description", value)
|
|
121
|
-
|
|
122
102
|
|
|
123
103
|
@pulumi.input_type
|
|
124
104
|
class _RouterVbrChildInstanceState:
|
|
@@ -128,19 +108,15 @@ class _RouterVbrChildInstanceState:
|
|
|
128
108
|
child_instance_region_id: Optional[pulumi.Input[str]] = None,
|
|
129
109
|
child_instance_type: Optional[pulumi.Input[str]] = None,
|
|
130
110
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
131
|
-
description: Optional[pulumi.Input[str]] = None,
|
|
132
111
|
ecr_id: Optional[pulumi.Input[str]] = None,
|
|
133
112
|
status: Optional[pulumi.Input[str]] = None):
|
|
134
113
|
"""
|
|
135
114
|
Input properties used for looking up and filtering RouterVbrChildInstance resources.
|
|
136
115
|
:param pulumi.Input[str] child_instance_id: The ID of the leased line gateway subinstance.
|
|
137
|
-
:param pulumi.Input[str] child_instance_owner_id: The ID of the
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
:param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance
|
|
141
|
-
:param pulumi.Input[str] child_instance_type: The type of the network instance. Value: `VBR`: VBR instance.
|
|
116
|
+
:param pulumi.Input[str] child_instance_owner_id: The ID of the subinstance of the leased line gateway.
|
|
117
|
+
:param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance.
|
|
118
|
+
:param pulumi.Input[str] child_instance_type: The type of leased line gateway sub-instance, Valid values: `VBR`.
|
|
142
119
|
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
143
|
-
:param pulumi.Input[str] description: Resource attribute fields that represent descriptive information
|
|
144
120
|
:param pulumi.Input[str] ecr_id: ID of the representative leased line gateway instance.
|
|
145
121
|
:param pulumi.Input[str] status: Binding relationship status of leased line gateway subinstances.
|
|
146
122
|
"""
|
|
@@ -154,8 +130,6 @@ class _RouterVbrChildInstanceState:
|
|
|
154
130
|
pulumi.set(__self__, "child_instance_type", child_instance_type)
|
|
155
131
|
if create_time is not None:
|
|
156
132
|
pulumi.set(__self__, "create_time", create_time)
|
|
157
|
-
if description is not None:
|
|
158
|
-
pulumi.set(__self__, "description", description)
|
|
159
133
|
if ecr_id is not None:
|
|
160
134
|
pulumi.set(__self__, "ecr_id", ecr_id)
|
|
161
135
|
if status is not None:
|
|
@@ -177,9 +151,7 @@ class _RouterVbrChildInstanceState:
|
|
|
177
151
|
@pulumi.getter(name="childInstanceOwnerId")
|
|
178
152
|
def child_instance_owner_id(self) -> Optional[pulumi.Input[str]]:
|
|
179
153
|
"""
|
|
180
|
-
The ID of the
|
|
181
|
-
|
|
182
|
-
> **NOTE:** This parameter is required if you want to load a cross-account network instance.
|
|
154
|
+
The ID of the subinstance of the leased line gateway.
|
|
183
155
|
"""
|
|
184
156
|
return pulumi.get(self, "child_instance_owner_id")
|
|
185
157
|
|
|
@@ -191,7 +163,7 @@ class _RouterVbrChildInstanceState:
|
|
|
191
163
|
@pulumi.getter(name="childInstanceRegionId")
|
|
192
164
|
def child_instance_region_id(self) -> Optional[pulumi.Input[str]]:
|
|
193
165
|
"""
|
|
194
|
-
Region of the leased line gateway sub-instance
|
|
166
|
+
Region of the leased line gateway sub-instance.
|
|
195
167
|
"""
|
|
196
168
|
return pulumi.get(self, "child_instance_region_id")
|
|
197
169
|
|
|
@@ -203,7 +175,7 @@ class _RouterVbrChildInstanceState:
|
|
|
203
175
|
@pulumi.getter(name="childInstanceType")
|
|
204
176
|
def child_instance_type(self) -> Optional[pulumi.Input[str]]:
|
|
205
177
|
"""
|
|
206
|
-
The type of
|
|
178
|
+
The type of leased line gateway sub-instance, Valid values: `VBR`.
|
|
207
179
|
"""
|
|
208
180
|
return pulumi.get(self, "child_instance_type")
|
|
209
181
|
|
|
@@ -223,18 +195,6 @@ class _RouterVbrChildInstanceState:
|
|
|
223
195
|
def create_time(self, value: Optional[pulumi.Input[str]]):
|
|
224
196
|
pulumi.set(self, "create_time", value)
|
|
225
197
|
|
|
226
|
-
@property
|
|
227
|
-
@pulumi.getter
|
|
228
|
-
def description(self) -> Optional[pulumi.Input[str]]:
|
|
229
|
-
"""
|
|
230
|
-
Resource attribute fields that represent descriptive information
|
|
231
|
-
"""
|
|
232
|
-
return pulumi.get(self, "description")
|
|
233
|
-
|
|
234
|
-
@description.setter
|
|
235
|
-
def description(self, value: Optional[pulumi.Input[str]]):
|
|
236
|
-
pulumi.set(self, "description", value)
|
|
237
|
-
|
|
238
198
|
@property
|
|
239
199
|
@pulumi.getter(name="ecrId")
|
|
240
200
|
def ecr_id(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -269,11 +229,10 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
269
229
|
child_instance_owner_id: Optional[pulumi.Input[str]] = None,
|
|
270
230
|
child_instance_region_id: Optional[pulumi.Input[str]] = None,
|
|
271
231
|
child_instance_type: Optional[pulumi.Input[str]] = None,
|
|
272
|
-
description: Optional[pulumi.Input[str]] = None,
|
|
273
232
|
ecr_id: Optional[pulumi.Input[str]] = None,
|
|
274
233
|
__props__=None):
|
|
275
234
|
"""
|
|
276
|
-
Provides a Express Connect Router Express Connect Router Vbr Child Instance resource.
|
|
235
|
+
Provides a Express Connect Router Express Connect Router Vbr Child Instance resource. Leased Line Gateway VBR sub-instance.
|
|
277
236
|
|
|
278
237
|
For information about Express Connect Router Express Connect Router Vbr Child Instance and how to use it, see [What is Express Connect Router Vbr Child Instance](https://next.api.alibabacloud.com/api/ExpressConnectRouter/2023-09-01/AttachExpressConnectRouterChildInstance).
|
|
279
238
|
|
|
@@ -319,12 +278,9 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
319
278
|
:param str resource_name: The name of the resource.
|
|
320
279
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
321
280
|
:param pulumi.Input[str] child_instance_id: The ID of the leased line gateway subinstance.
|
|
322
|
-
:param pulumi.Input[str] child_instance_owner_id: The ID of the
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
:param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance
|
|
326
|
-
:param pulumi.Input[str] child_instance_type: The type of the network instance. Value: `VBR`: VBR instance.
|
|
327
|
-
:param pulumi.Input[str] description: Resource attribute fields that represent descriptive information
|
|
281
|
+
:param pulumi.Input[str] child_instance_owner_id: The ID of the subinstance of the leased line gateway.
|
|
282
|
+
:param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance.
|
|
283
|
+
:param pulumi.Input[str] child_instance_type: The type of leased line gateway sub-instance, Valid values: `VBR`.
|
|
328
284
|
:param pulumi.Input[str] ecr_id: ID of the representative leased line gateway instance.
|
|
329
285
|
"""
|
|
330
286
|
...
|
|
@@ -334,7 +290,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
334
290
|
args: RouterVbrChildInstanceArgs,
|
|
335
291
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
336
292
|
"""
|
|
337
|
-
Provides a Express Connect Router Express Connect Router Vbr Child Instance resource.
|
|
293
|
+
Provides a Express Connect Router Express Connect Router Vbr Child Instance resource. Leased Line Gateway VBR sub-instance.
|
|
338
294
|
|
|
339
295
|
For information about Express Connect Router Express Connect Router Vbr Child Instance and how to use it, see [What is Express Connect Router Vbr Child Instance](https://next.api.alibabacloud.com/api/ExpressConnectRouter/2023-09-01/AttachExpressConnectRouterChildInstance).
|
|
340
296
|
|
|
@@ -396,7 +352,6 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
396
352
|
child_instance_owner_id: Optional[pulumi.Input[str]] = None,
|
|
397
353
|
child_instance_region_id: Optional[pulumi.Input[str]] = None,
|
|
398
354
|
child_instance_type: Optional[pulumi.Input[str]] = None,
|
|
399
|
-
description: Optional[pulumi.Input[str]] = None,
|
|
400
355
|
ecr_id: Optional[pulumi.Input[str]] = None,
|
|
401
356
|
__props__=None):
|
|
402
357
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -417,7 +372,6 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
417
372
|
if child_instance_type is None and not opts.urn:
|
|
418
373
|
raise TypeError("Missing required property 'child_instance_type'")
|
|
419
374
|
__props__.__dict__["child_instance_type"] = child_instance_type
|
|
420
|
-
__props__.__dict__["description"] = description
|
|
421
375
|
if ecr_id is None and not opts.urn:
|
|
422
376
|
raise TypeError("Missing required property 'ecr_id'")
|
|
423
377
|
__props__.__dict__["ecr_id"] = ecr_id
|
|
@@ -438,7 +392,6 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
438
392
|
child_instance_region_id: Optional[pulumi.Input[str]] = None,
|
|
439
393
|
child_instance_type: Optional[pulumi.Input[str]] = None,
|
|
440
394
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
441
|
-
description: Optional[pulumi.Input[str]] = None,
|
|
442
395
|
ecr_id: Optional[pulumi.Input[str]] = None,
|
|
443
396
|
status: Optional[pulumi.Input[str]] = None) -> 'RouterVbrChildInstance':
|
|
444
397
|
"""
|
|
@@ -449,13 +402,10 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
449
402
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
450
403
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
451
404
|
:param pulumi.Input[str] child_instance_id: The ID of the leased line gateway subinstance.
|
|
452
|
-
:param pulumi.Input[str] child_instance_owner_id: The ID of the
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
:param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance
|
|
456
|
-
:param pulumi.Input[str] child_instance_type: The type of the network instance. Value: `VBR`: VBR instance.
|
|
405
|
+
:param pulumi.Input[str] child_instance_owner_id: The ID of the subinstance of the leased line gateway.
|
|
406
|
+
:param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance.
|
|
407
|
+
:param pulumi.Input[str] child_instance_type: The type of leased line gateway sub-instance, Valid values: `VBR`.
|
|
457
408
|
:param pulumi.Input[str] create_time: The creation time of the resource.
|
|
458
|
-
:param pulumi.Input[str] description: Resource attribute fields that represent descriptive information
|
|
459
409
|
:param pulumi.Input[str] ecr_id: ID of the representative leased line gateway instance.
|
|
460
410
|
:param pulumi.Input[str] status: Binding relationship status of leased line gateway subinstances.
|
|
461
411
|
"""
|
|
@@ -468,7 +418,6 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
468
418
|
__props__.__dict__["child_instance_region_id"] = child_instance_region_id
|
|
469
419
|
__props__.__dict__["child_instance_type"] = child_instance_type
|
|
470
420
|
__props__.__dict__["create_time"] = create_time
|
|
471
|
-
__props__.__dict__["description"] = description
|
|
472
421
|
__props__.__dict__["ecr_id"] = ecr_id
|
|
473
422
|
__props__.__dict__["status"] = status
|
|
474
423
|
return RouterVbrChildInstance(resource_name, opts=opts, __props__=__props__)
|
|
@@ -483,11 +432,9 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
483
432
|
|
|
484
433
|
@property
|
|
485
434
|
@pulumi.getter(name="childInstanceOwnerId")
|
|
486
|
-
def child_instance_owner_id(self) -> pulumi.Output[str]:
|
|
435
|
+
def child_instance_owner_id(self) -> pulumi.Output[Optional[str]]:
|
|
487
436
|
"""
|
|
488
|
-
The ID of the
|
|
489
|
-
|
|
490
|
-
> **NOTE:** This parameter is required if you want to load a cross-account network instance.
|
|
437
|
+
The ID of the subinstance of the leased line gateway.
|
|
491
438
|
"""
|
|
492
439
|
return pulumi.get(self, "child_instance_owner_id")
|
|
493
440
|
|
|
@@ -495,7 +442,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
495
442
|
@pulumi.getter(name="childInstanceRegionId")
|
|
496
443
|
def child_instance_region_id(self) -> pulumi.Output[str]:
|
|
497
444
|
"""
|
|
498
|
-
Region of the leased line gateway sub-instance
|
|
445
|
+
Region of the leased line gateway sub-instance.
|
|
499
446
|
"""
|
|
500
447
|
return pulumi.get(self, "child_instance_region_id")
|
|
501
448
|
|
|
@@ -503,7 +450,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
503
450
|
@pulumi.getter(name="childInstanceType")
|
|
504
451
|
def child_instance_type(self) -> pulumi.Output[str]:
|
|
505
452
|
"""
|
|
506
|
-
The type of
|
|
453
|
+
The type of leased line gateway sub-instance, Valid values: `VBR`.
|
|
507
454
|
"""
|
|
508
455
|
return pulumi.get(self, "child_instance_type")
|
|
509
456
|
|
|
@@ -515,14 +462,6 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
515
462
|
"""
|
|
516
463
|
return pulumi.get(self, "create_time")
|
|
517
464
|
|
|
518
|
-
@property
|
|
519
|
-
@pulumi.getter
|
|
520
|
-
def description(self) -> pulumi.Output[Optional[str]]:
|
|
521
|
-
"""
|
|
522
|
-
Resource attribute fields that represent descriptive information
|
|
523
|
-
"""
|
|
524
|
-
return pulumi.get(self, "description")
|
|
525
|
-
|
|
526
465
|
@property
|
|
527
466
|
@pulumi.getter(name="ecrId")
|
|
528
467
|
def ecr_id(self) -> pulumi.Output[str]:
|
pulumi_alicloud/kms/key.py
CHANGED
|
@@ -1041,7 +1041,7 @@ class Key(pulumi.CustomResource):
|
|
|
1041
1041
|
|
|
1042
1042
|
@property
|
|
1043
1043
|
@pulumi.getter(name="dkmsInstanceId")
|
|
1044
|
-
def dkms_instance_id(self) -> pulumi.Output[str]:
|
|
1044
|
+
def dkms_instance_id(self) -> pulumi.Output[Optional[str]]:
|
|
1045
1045
|
"""
|
|
1046
1046
|
The ID of the KMS instance.
|
|
1047
1047
|
"""
|
|
@@ -42,8 +42,8 @@ class AccountArgs:
|
|
|
42
42
|
- Normal: Common privilege.
|
|
43
43
|
Default to Normal.
|
|
44
44
|
:param pulumi.Input[str] description: Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.
|
|
45
|
-
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a
|
|
46
|
-
: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 a
|
|
45
|
+
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
|
|
46
|
+
: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 a KVStore account 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.
|
|
47
47
|
"""
|
|
48
48
|
pulumi.set(__self__, "account_name", account_name)
|
|
49
49
|
pulumi.set(__self__, "instance_id", instance_id)
|
|
@@ -143,7 +143,7 @@ class AccountArgs:
|
|
|
143
143
|
@pulumi.getter(name="kmsEncryptedPassword")
|
|
144
144
|
def kms_encrypted_password(self) -> Optional[pulumi.Input[str]]:
|
|
145
145
|
"""
|
|
146
|
-
An KMS encrypts password used to a
|
|
146
|
+
An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
|
|
147
147
|
"""
|
|
148
148
|
return pulumi.get(self, "kms_encrypted_password")
|
|
149
149
|
|
|
@@ -155,7 +155,7 @@ class AccountArgs:
|
|
|
155
155
|
@pulumi.getter(name="kmsEncryptionContext")
|
|
156
156
|
def kms_encryption_context(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
157
157
|
"""
|
|
158
|
-
An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a
|
|
158
|
+
An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a KVStore account 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.
|
|
159
159
|
"""
|
|
160
160
|
return pulumi.get(self, "kms_encryption_context")
|
|
161
161
|
|
|
@@ -191,9 +191,9 @@ class _AccountState:
|
|
|
191
191
|
Default to Normal.
|
|
192
192
|
:param pulumi.Input[str] description: Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.
|
|
193
193
|
:param pulumi.Input[str] instance_id: The Id of instance in which account belongs (The engine version of instance must be 4.0 or 4.0+).
|
|
194
|
-
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a
|
|
195
|
-
: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 a
|
|
196
|
-
:param pulumi.Input[str] status: The status of
|
|
194
|
+
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
|
|
195
|
+
: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 a KVStore account 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.
|
|
196
|
+
:param pulumi.Input[str] status: The status of KVStore Account.
|
|
197
197
|
"""
|
|
198
198
|
if account_name is not None:
|
|
199
199
|
pulumi.set(__self__, "account_name", account_name)
|
|
@@ -297,7 +297,7 @@ class _AccountState:
|
|
|
297
297
|
@pulumi.getter(name="kmsEncryptedPassword")
|
|
298
298
|
def kms_encrypted_password(self) -> Optional[pulumi.Input[str]]:
|
|
299
299
|
"""
|
|
300
|
-
An KMS encrypts password used to a
|
|
300
|
+
An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
|
|
301
301
|
"""
|
|
302
302
|
return pulumi.get(self, "kms_encrypted_password")
|
|
303
303
|
|
|
@@ -309,7 +309,7 @@ class _AccountState:
|
|
|
309
309
|
@pulumi.getter(name="kmsEncryptionContext")
|
|
310
310
|
def kms_encryption_context(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
311
311
|
"""
|
|
312
|
-
An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a
|
|
312
|
+
An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a KVStore account 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.
|
|
313
313
|
"""
|
|
314
314
|
return pulumi.get(self, "kms_encryption_context")
|
|
315
315
|
|
|
@@ -321,7 +321,7 @@ class _AccountState:
|
|
|
321
321
|
@pulumi.getter
|
|
322
322
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
323
323
|
"""
|
|
324
|
-
The status of
|
|
324
|
+
The status of KVStore Account.
|
|
325
325
|
"""
|
|
326
326
|
return pulumi.get(self, "status")
|
|
327
327
|
|
|
@@ -345,9 +345,9 @@ class Account(pulumi.CustomResource):
|
|
|
345
345
|
kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
346
346
|
__props__=None):
|
|
347
347
|
"""
|
|
348
|
-
Provides a
|
|
348
|
+
Provides a KVStore Account resource.
|
|
349
349
|
|
|
350
|
-
For information about
|
|
350
|
+
For information about KVStore Account and how to use it, see [What is Account](https://www.alibabacloud.com/help/doc-detail/95973.htm).
|
|
351
351
|
|
|
352
352
|
> **NOTE:** Available since v1.66.0.
|
|
353
353
|
|
|
@@ -398,7 +398,7 @@ class Account(pulumi.CustomResource):
|
|
|
398
398
|
|
|
399
399
|
## Import
|
|
400
400
|
|
|
401
|
-
|
|
401
|
+
KVStore account can be imported using the id, e.g.
|
|
402
402
|
|
|
403
403
|
```sh
|
|
404
404
|
$ pulumi import alicloud:kvstore/account:Account example <instance_id>:<account_name>
|
|
@@ -419,8 +419,8 @@ class Account(pulumi.CustomResource):
|
|
|
419
419
|
Default to Normal.
|
|
420
420
|
:param pulumi.Input[str] description: Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.
|
|
421
421
|
:param pulumi.Input[str] instance_id: The Id of instance in which account belongs (The engine version of instance must be 4.0 or 4.0+).
|
|
422
|
-
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a
|
|
423
|
-
: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 a
|
|
422
|
+
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
|
|
423
|
+
: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 a KVStore account 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.
|
|
424
424
|
"""
|
|
425
425
|
...
|
|
426
426
|
@overload
|
|
@@ -429,9 +429,9 @@ class Account(pulumi.CustomResource):
|
|
|
429
429
|
args: AccountArgs,
|
|
430
430
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
431
431
|
"""
|
|
432
|
-
Provides a
|
|
432
|
+
Provides a KVStore Account resource.
|
|
433
433
|
|
|
434
|
-
For information about
|
|
434
|
+
For information about KVStore Account and how to use it, see [What is Account](https://www.alibabacloud.com/help/doc-detail/95973.htm).
|
|
435
435
|
|
|
436
436
|
> **NOTE:** Available since v1.66.0.
|
|
437
437
|
|
|
@@ -482,7 +482,7 @@ class Account(pulumi.CustomResource):
|
|
|
482
482
|
|
|
483
483
|
## Import
|
|
484
484
|
|
|
485
|
-
|
|
485
|
+
KVStore account can be imported using the id, e.g.
|
|
486
486
|
|
|
487
487
|
```sh
|
|
488
488
|
$ pulumi import alicloud:kvstore/account:Account example <instance_id>:<account_name>
|
|
@@ -574,9 +574,9 @@ class Account(pulumi.CustomResource):
|
|
|
574
574
|
Default to Normal.
|
|
575
575
|
:param pulumi.Input[str] description: Database description. It cannot begin with https://. It must start with a Chinese character or English letter. It can include Chinese and English characters, underlines (_), hyphens (-), and numbers. The length may be 2-256 characters.
|
|
576
576
|
:param pulumi.Input[str] instance_id: The Id of instance in which account belongs (The engine version of instance must be 4.0 or 4.0+).
|
|
577
|
-
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a
|
|
578
|
-
: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 a
|
|
579
|
-
:param pulumi.Input[str] status: The status of
|
|
577
|
+
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
|
|
578
|
+
: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 a KVStore account 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.
|
|
579
|
+
:param pulumi.Input[str] status: The status of KVStore Account.
|
|
580
580
|
"""
|
|
581
581
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
582
582
|
|
|
@@ -652,7 +652,7 @@ class Account(pulumi.CustomResource):
|
|
|
652
652
|
@pulumi.getter(name="kmsEncryptedPassword")
|
|
653
653
|
def kms_encrypted_password(self) -> pulumi.Output[Optional[str]]:
|
|
654
654
|
"""
|
|
655
|
-
An KMS encrypts password used to a
|
|
655
|
+
An KMS encrypts password used to a KVStore account. If the `account_password` is filled in, this field will be ignored.
|
|
656
656
|
"""
|
|
657
657
|
return pulumi.get(self, "kms_encrypted_password")
|
|
658
658
|
|
|
@@ -660,7 +660,7 @@ class Account(pulumi.CustomResource):
|
|
|
660
660
|
@pulumi.getter(name="kmsEncryptionContext")
|
|
661
661
|
def kms_encryption_context(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
662
662
|
"""
|
|
663
|
-
An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a
|
|
663
|
+
An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a KVStore account 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.
|
|
664
664
|
"""
|
|
665
665
|
return pulumi.get(self, "kms_encryption_context")
|
|
666
666
|
|
|
@@ -668,7 +668,7 @@ class Account(pulumi.CustomResource):
|
|
|
668
668
|
@pulumi.getter
|
|
669
669
|
def status(self) -> pulumi.Output[str]:
|
|
670
670
|
"""
|
|
671
|
-
The status of
|
|
671
|
+
The status of KVStore Account.
|
|
672
672
|
"""
|
|
673
673
|
return pulumi.get(self, "status")
|
|
674
674
|
|
|
@@ -193,7 +193,7 @@ class AuditLogConfig(pulumi.CustomResource):
|
|
|
193
193
|
retention: Optional[pulumi.Input[int]] = None,
|
|
194
194
|
__props__=None):
|
|
195
195
|
"""
|
|
196
|
-
Provides a
|
|
196
|
+
Provides a Redis And Memcache (KVStore) Audit Log Config resource.
|
|
197
197
|
|
|
198
198
|
> **NOTE:** Available since v1.130.0.
|
|
199
199
|
|
|
@@ -244,7 +244,7 @@ class AuditLogConfig(pulumi.CustomResource):
|
|
|
244
244
|
|
|
245
245
|
## Import
|
|
246
246
|
|
|
247
|
-
|
|
247
|
+
Redis And Memcache (KVStore) Audit Log Config can be imported using the id, e.g.
|
|
248
248
|
|
|
249
249
|
```sh
|
|
250
250
|
$ pulumi import alicloud:kvstore/auditLogConfig:AuditLogConfig example <instance_id>
|
|
@@ -269,7 +269,7 @@ class AuditLogConfig(pulumi.CustomResource):
|
|
|
269
269
|
args: AuditLogConfigArgs,
|
|
270
270
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
271
271
|
"""
|
|
272
|
-
Provides a
|
|
272
|
+
Provides a Redis And Memcache (KVStore) Audit Log Config resource.
|
|
273
273
|
|
|
274
274
|
> **NOTE:** Available since v1.130.0.
|
|
275
275
|
|
|
@@ -320,7 +320,7 @@ class AuditLogConfig(pulumi.CustomResource):
|
|
|
320
320
|
|
|
321
321
|
## Import
|
|
322
322
|
|
|
323
|
-
|
|
323
|
+
Redis And Memcache (KVStore) Audit Log Config can be imported using the id, e.g.
|
|
324
324
|
|
|
325
325
|
```sh
|
|
326
326
|
$ pulumi import alicloud:kvstore/auditLogConfig:AuditLogConfig example <instance_id>
|
|
@@ -139,7 +139,7 @@ class BackupPolicy(pulumi.CustomResource):
|
|
|
139
139
|
"""
|
|
140
140
|
> **DEPRECATED:** This resource has been deprecated from version `1.104.0`. Please use resource alicloud_kvstore_instance.
|
|
141
141
|
|
|
142
|
-
Provides a backup policy for
|
|
142
|
+
Provides a backup policy for ApsaraDB Redis / Memcache instance resource.
|
|
143
143
|
|
|
144
144
|
## Example Usage
|
|
145
145
|
|
|
@@ -210,7 +210,7 @@ class BackupPolicy(pulumi.CustomResource):
|
|
|
210
210
|
"""
|
|
211
211
|
> **DEPRECATED:** This resource has been deprecated from version `1.104.0`. Please use resource alicloud_kvstore_instance.
|
|
212
212
|
|
|
213
|
-
Provides a backup policy for
|
|
213
|
+
Provides a backup policy for ApsaraDB Redis / Memcache instance resource.
|
|
214
214
|
|
|
215
215
|
## Example Usage
|
|
216
216
|
|
|
@@ -78,7 +78,7 @@ class _ConnectionState:
|
|
|
78
78
|
port: Optional[pulumi.Input[str]] = None):
|
|
79
79
|
"""
|
|
80
80
|
Input properties used for looking up and filtering Connection resources.
|
|
81
|
-
:param pulumi.Input[str] connection_string: The public connection string of
|
|
81
|
+
:param pulumi.Input[str] connection_string: The public connection string of KVStore DBInstance.
|
|
82
82
|
:param pulumi.Input[str] connection_string_prefix: The prefix of the public endpoint. The prefix can be 8 to 64 characters in length, and can contain lowercase letters and digits. It must start with a lowercase letter.
|
|
83
83
|
:param pulumi.Input[str] instance_id: The ID of the instance.
|
|
84
84
|
:param pulumi.Input[str] port: The service port number of the instance.
|
|
@@ -96,7 +96,7 @@ class _ConnectionState:
|
|
|
96
96
|
@pulumi.getter(name="connectionString")
|
|
97
97
|
def connection_string(self) -> Optional[pulumi.Input[str]]:
|
|
98
98
|
"""
|
|
99
|
-
The public connection string of
|
|
99
|
+
The public connection string of KVStore DBInstance.
|
|
100
100
|
"""
|
|
101
101
|
return pulumi.get(self, "connection_string")
|
|
102
102
|
|
|
@@ -151,7 +151,7 @@ class Connection(pulumi.CustomResource):
|
|
|
151
151
|
port: Optional[pulumi.Input[str]] = None,
|
|
152
152
|
__props__=None):
|
|
153
153
|
"""
|
|
154
|
-
Operate the public network ip of the specified resource. How to use it, see [What is Connection](https://www.alibabacloud.com/help/doc-detail/125795.htm).
|
|
154
|
+
Operate the public network ip of the specified resource. How to use it, see [What is Resource Alicloud KVStore Connection](https://www.alibabacloud.com/help/doc-detail/125795.htm).
|
|
155
155
|
|
|
156
156
|
> **NOTE:** Available since v1.101.0.
|
|
157
157
|
|
|
@@ -202,7 +202,7 @@ class Connection(pulumi.CustomResource):
|
|
|
202
202
|
|
|
203
203
|
## Import
|
|
204
204
|
|
|
205
|
-
|
|
205
|
+
KVStore connection can be imported using the id, e.g.
|
|
206
206
|
|
|
207
207
|
```sh
|
|
208
208
|
$ pulumi import alicloud:kvstore/connection:Connection example r-abc12345678
|
|
@@ -221,7 +221,7 @@ class Connection(pulumi.CustomResource):
|
|
|
221
221
|
args: ConnectionArgs,
|
|
222
222
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
223
223
|
"""
|
|
224
|
-
Operate the public network ip of the specified resource. How to use it, see [What is Connection](https://www.alibabacloud.com/help/doc-detail/125795.htm).
|
|
224
|
+
Operate the public network ip of the specified resource. How to use it, see [What is Resource Alicloud KVStore Connection](https://www.alibabacloud.com/help/doc-detail/125795.htm).
|
|
225
225
|
|
|
226
226
|
> **NOTE:** Available since v1.101.0.
|
|
227
227
|
|
|
@@ -272,7 +272,7 @@ class Connection(pulumi.CustomResource):
|
|
|
272
272
|
|
|
273
273
|
## Import
|
|
274
274
|
|
|
275
|
-
|
|
275
|
+
KVStore connection can be imported using the id, e.g.
|
|
276
276
|
|
|
277
277
|
```sh
|
|
278
278
|
$ pulumi import alicloud:kvstore/connection:Connection example r-abc12345678
|
|
@@ -336,7 +336,7 @@ class Connection(pulumi.CustomResource):
|
|
|
336
336
|
:param str resource_name: The unique name of the resulting resource.
|
|
337
337
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
338
338
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
339
|
-
:param pulumi.Input[str] connection_string: The public connection string of
|
|
339
|
+
:param pulumi.Input[str] connection_string: The public connection string of KVStore DBInstance.
|
|
340
340
|
:param pulumi.Input[str] connection_string_prefix: The prefix of the public endpoint. The prefix can be 8 to 64 characters in length, and can contain lowercase letters and digits. It must start with a lowercase letter.
|
|
341
341
|
:param pulumi.Input[str] instance_id: The ID of the instance.
|
|
342
342
|
:param pulumi.Input[str] port: The service port number of the instance.
|
|
@@ -355,7 +355,7 @@ class Connection(pulumi.CustomResource):
|
|
|
355
355
|
@pulumi.getter(name="connectionString")
|
|
356
356
|
def connection_string(self) -> pulumi.Output[str]:
|
|
357
357
|
"""
|
|
358
|
-
The public connection string of
|
|
358
|
+
The public connection string of KVStore DBInstance.
|
|
359
359
|
"""
|
|
360
360
|
return pulumi.get(self, "connection_string")
|
|
361
361
|
|
|
@@ -129,7 +129,7 @@ def get_accounts(account_name: Optional[str] = None,
|
|
|
129
129
|
status: Optional[str] = None,
|
|
130
130
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAccountsResult:
|
|
131
131
|
"""
|
|
132
|
-
This data source provides the
|
|
132
|
+
This data source provides the KVStore Accounts of the current Alibaba Cloud user.
|
|
133
133
|
|
|
134
134
|
> **NOTE:** Available in v1.102.0+.
|
|
135
135
|
|
|
@@ -149,7 +149,7 @@ def get_accounts(account_name: Optional[str] = None,
|
|
|
149
149
|
:param str account_name: The name of the account.
|
|
150
150
|
:param str instance_id: The Id of instance in which account belongs.
|
|
151
151
|
:param str output_file: File name where to save data source results (after running `pulumi preview`).
|
|
152
|
-
:param str status: The status of
|
|
152
|
+
:param str status: The status of KVStore Account. Valid Values: `"Available` `Unavailable`
|
|
153
153
|
"""
|
|
154
154
|
__args__ = dict()
|
|
155
155
|
__args__['accountName'] = account_name
|
|
@@ -177,7 +177,7 @@ def get_accounts_output(account_name: Optional[pulumi.Input[Optional[str]]] = No
|
|
|
177
177
|
status: Optional[pulumi.Input[Optional[str]]] = None,
|
|
178
178
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAccountsResult]:
|
|
179
179
|
"""
|
|
180
|
-
This data source provides the
|
|
180
|
+
This data source provides the KVStore Accounts of the current Alibaba Cloud user.
|
|
181
181
|
|
|
182
182
|
> **NOTE:** Available in v1.102.0+.
|
|
183
183
|
|
|
@@ -197,7 +197,7 @@ def get_accounts_output(account_name: Optional[pulumi.Input[Optional[str]]] = No
|
|
|
197
197
|
:param str account_name: The name of the account.
|
|
198
198
|
:param str instance_id: The Id of instance in which account belongs.
|
|
199
199
|
:param str output_file: File name where to save data source results (after running `pulumi preview`).
|
|
200
|
-
:param str status: The status of
|
|
200
|
+
:param str status: The status of KVStore Account. Valid Values: `"Available` `Unavailable`
|
|
201
201
|
"""
|
|
202
202
|
__args__ = dict()
|
|
203
203
|
__args__['accountName'] = account_name
|