pulumi-alicloud 3.66.0a1731672315__py3-none-any.whl → 3.67.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +16 -0
- pulumi_alicloud/cen/flow_log.py +373 -58
- pulumi_alicloud/cen/transit_router_ecr_attachment.py +4 -4
- pulumi_alicloud/cr/registry_enterprise_instance.py +474 -90
- pulumi_alicloud/ecs/ecs_image_component.py +221 -48
- pulumi_alicloud/ess/_inputs.py +94 -0
- pulumi_alicloud/ess/eci_scaling_configuration.py +42 -14
- pulumi_alicloud/ess/outputs.py +79 -0
- pulumi_alicloud/ess/scaling_configuration.py +47 -0
- pulumi_alicloud/expressconnect/router_vbr_child_instance.py +86 -25
- 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 +47 -0
- pulumi_alicloud/mongodb/sharding_instance.py +47 -0
- pulumi_alicloud/polardb/cluster.py +7 -7
- pulumi_alicloud/privatelink/vpc_endpoint_service.py +42 -91
- pulumi_alicloud/privatelink/vpc_endpoint_service_connection.py +27 -23
- pulumi_alicloud/privatelink/vpc_endpoint_service_resource.py +34 -37
- pulumi_alicloud/privatelink/vpc_endpoint_zone.py +28 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rds/__init__.py +2 -0
- pulumi_alicloud/rds/_inputs.py +146 -0
- pulumi_alicloud/rds/custom.py +1630 -0
- pulumi_alicloud/rds/custom_deployment_set.py +525 -0
- pulumi_alicloud/rds/outputs.py +105 -0
- pulumi_alicloud/redis/tair_instance.py +76 -1
- pulumi_alicloud/vpc/_inputs.py +54 -0
- pulumi_alicloud/vpc/nat_gateway.py +175 -14
- pulumi_alicloud/vpc/outputs.py +51 -0
- pulumi_alicloud/vpn/gateway_vco_route.py +68 -21
- {pulumi_alicloud-3.66.0a1731672315.dist-info → pulumi_alicloud-3.67.0.dist-info}/METADATA +5 -5
- {pulumi_alicloud-3.66.0a1731672315.dist-info → pulumi_alicloud-3.67.0.dist-info}/RECORD +44 -42
- {pulumi_alicloud-3.66.0a1731672315.dist-info → pulumi_alicloud-3.67.0.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.66.0a1731672315.dist-info → pulumi_alicloud-3.67.0.dist-info}/top_level.txt +0 -0
|
@@ -23,14 +23,18 @@ 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
|
|
26
|
+
child_instance_owner_id: Optional[pulumi.Input[str]] = None,
|
|
27
|
+
description: Optional[pulumi.Input[str]] = None):
|
|
27
28
|
"""
|
|
28
29
|
The set of arguments for constructing a RouterVbrChildInstance resource.
|
|
29
30
|
:param pulumi.Input[str] child_instance_id: The ID of the leased line gateway subinstance.
|
|
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
|
|
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 the network instance. Value: `VBR`: VBR instance.
|
|
32
33
|
:param pulumi.Input[str] ecr_id: ID of the representative leased line gateway instance.
|
|
33
|
-
:param pulumi.Input[str] child_instance_owner_id: The ID of the
|
|
34
|
+
:param pulumi.Input[str] child_instance_owner_id: The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
|
|
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
|
|
34
38
|
"""
|
|
35
39
|
pulumi.set(__self__, "child_instance_id", child_instance_id)
|
|
36
40
|
pulumi.set(__self__, "child_instance_region_id", child_instance_region_id)
|
|
@@ -38,6 +42,8 @@ class RouterVbrChildInstanceArgs:
|
|
|
38
42
|
pulumi.set(__self__, "ecr_id", ecr_id)
|
|
39
43
|
if child_instance_owner_id is not None:
|
|
40
44
|
pulumi.set(__self__, "child_instance_owner_id", child_instance_owner_id)
|
|
45
|
+
if description is not None:
|
|
46
|
+
pulumi.set(__self__, "description", description)
|
|
41
47
|
|
|
42
48
|
@property
|
|
43
49
|
@pulumi.getter(name="childInstanceId")
|
|
@@ -55,7 +61,7 @@ class RouterVbrChildInstanceArgs:
|
|
|
55
61
|
@pulumi.getter(name="childInstanceRegionId")
|
|
56
62
|
def child_instance_region_id(self) -> pulumi.Input[str]:
|
|
57
63
|
"""
|
|
58
|
-
Region of the leased line gateway sub-instance
|
|
64
|
+
Region of the leased line gateway sub-instance
|
|
59
65
|
"""
|
|
60
66
|
return pulumi.get(self, "child_instance_region_id")
|
|
61
67
|
|
|
@@ -67,7 +73,7 @@ class RouterVbrChildInstanceArgs:
|
|
|
67
73
|
@pulumi.getter(name="childInstanceType")
|
|
68
74
|
def child_instance_type(self) -> pulumi.Input[str]:
|
|
69
75
|
"""
|
|
70
|
-
The type of
|
|
76
|
+
The type of the network instance. Value: `VBR`: VBR instance.
|
|
71
77
|
"""
|
|
72
78
|
return pulumi.get(self, "child_instance_type")
|
|
73
79
|
|
|
@@ -91,7 +97,9 @@ class RouterVbrChildInstanceArgs:
|
|
|
91
97
|
@pulumi.getter(name="childInstanceOwnerId")
|
|
92
98
|
def child_instance_owner_id(self) -> Optional[pulumi.Input[str]]:
|
|
93
99
|
"""
|
|
94
|
-
The ID of the
|
|
100
|
+
The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
|
|
101
|
+
|
|
102
|
+
> **NOTE:** This parameter is required if you want to load a cross-account network instance.
|
|
95
103
|
"""
|
|
96
104
|
return pulumi.get(self, "child_instance_owner_id")
|
|
97
105
|
|
|
@@ -99,6 +107,18 @@ class RouterVbrChildInstanceArgs:
|
|
|
99
107
|
def child_instance_owner_id(self, value: Optional[pulumi.Input[str]]):
|
|
100
108
|
pulumi.set(self, "child_instance_owner_id", value)
|
|
101
109
|
|
|
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
|
+
|
|
102
122
|
|
|
103
123
|
@pulumi.input_type
|
|
104
124
|
class _RouterVbrChildInstanceState:
|
|
@@ -108,15 +128,19 @@ class _RouterVbrChildInstanceState:
|
|
|
108
128
|
child_instance_region_id: Optional[pulumi.Input[str]] = None,
|
|
109
129
|
child_instance_type: Optional[pulumi.Input[str]] = None,
|
|
110
130
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
131
|
+
description: Optional[pulumi.Input[str]] = None,
|
|
111
132
|
ecr_id: Optional[pulumi.Input[str]] = None,
|
|
112
133
|
status: Optional[pulumi.Input[str]] = None):
|
|
113
134
|
"""
|
|
114
135
|
Input properties used for looking up and filtering RouterVbrChildInstance resources.
|
|
115
136
|
:param pulumi.Input[str] child_instance_id: The ID of the leased line gateway subinstance.
|
|
116
|
-
:param pulumi.Input[str] child_instance_owner_id: The ID of the
|
|
117
|
-
|
|
118
|
-
|
|
137
|
+
:param pulumi.Input[str] child_instance_owner_id: The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
|
|
138
|
+
|
|
139
|
+
> **NOTE:** This parameter is required if you want to load a cross-account network instance.
|
|
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.
|
|
119
142
|
: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
|
|
120
144
|
:param pulumi.Input[str] ecr_id: ID of the representative leased line gateway instance.
|
|
121
145
|
:param pulumi.Input[str] status: Binding relationship status of leased line gateway subinstances.
|
|
122
146
|
"""
|
|
@@ -130,6 +154,8 @@ class _RouterVbrChildInstanceState:
|
|
|
130
154
|
pulumi.set(__self__, "child_instance_type", child_instance_type)
|
|
131
155
|
if create_time is not None:
|
|
132
156
|
pulumi.set(__self__, "create_time", create_time)
|
|
157
|
+
if description is not None:
|
|
158
|
+
pulumi.set(__self__, "description", description)
|
|
133
159
|
if ecr_id is not None:
|
|
134
160
|
pulumi.set(__self__, "ecr_id", ecr_id)
|
|
135
161
|
if status is not None:
|
|
@@ -151,7 +177,9 @@ class _RouterVbrChildInstanceState:
|
|
|
151
177
|
@pulumi.getter(name="childInstanceOwnerId")
|
|
152
178
|
def child_instance_owner_id(self) -> Optional[pulumi.Input[str]]:
|
|
153
179
|
"""
|
|
154
|
-
The ID of the
|
|
180
|
+
The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
|
|
181
|
+
|
|
182
|
+
> **NOTE:** This parameter is required if you want to load a cross-account network instance.
|
|
155
183
|
"""
|
|
156
184
|
return pulumi.get(self, "child_instance_owner_id")
|
|
157
185
|
|
|
@@ -163,7 +191,7 @@ class _RouterVbrChildInstanceState:
|
|
|
163
191
|
@pulumi.getter(name="childInstanceRegionId")
|
|
164
192
|
def child_instance_region_id(self) -> Optional[pulumi.Input[str]]:
|
|
165
193
|
"""
|
|
166
|
-
Region of the leased line gateway sub-instance
|
|
194
|
+
Region of the leased line gateway sub-instance
|
|
167
195
|
"""
|
|
168
196
|
return pulumi.get(self, "child_instance_region_id")
|
|
169
197
|
|
|
@@ -175,7 +203,7 @@ class _RouterVbrChildInstanceState:
|
|
|
175
203
|
@pulumi.getter(name="childInstanceType")
|
|
176
204
|
def child_instance_type(self) -> Optional[pulumi.Input[str]]:
|
|
177
205
|
"""
|
|
178
|
-
The type of
|
|
206
|
+
The type of the network instance. Value: `VBR`: VBR instance.
|
|
179
207
|
"""
|
|
180
208
|
return pulumi.get(self, "child_instance_type")
|
|
181
209
|
|
|
@@ -195,6 +223,18 @@ class _RouterVbrChildInstanceState:
|
|
|
195
223
|
def create_time(self, value: Optional[pulumi.Input[str]]):
|
|
196
224
|
pulumi.set(self, "create_time", value)
|
|
197
225
|
|
|
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
|
+
|
|
198
238
|
@property
|
|
199
239
|
@pulumi.getter(name="ecrId")
|
|
200
240
|
def ecr_id(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -229,10 +269,11 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
229
269
|
child_instance_owner_id: Optional[pulumi.Input[str]] = None,
|
|
230
270
|
child_instance_region_id: Optional[pulumi.Input[str]] = None,
|
|
231
271
|
child_instance_type: Optional[pulumi.Input[str]] = None,
|
|
272
|
+
description: Optional[pulumi.Input[str]] = None,
|
|
232
273
|
ecr_id: Optional[pulumi.Input[str]] = None,
|
|
233
274
|
__props__=None):
|
|
234
275
|
"""
|
|
235
|
-
Provides a Express Connect Router Express Connect Router Vbr Child Instance resource.
|
|
276
|
+
Provides a Express Connect Router Express Connect Router Vbr Child Instance resource.
|
|
236
277
|
|
|
237
278
|
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).
|
|
238
279
|
|
|
@@ -278,9 +319,12 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
278
319
|
:param str resource_name: The name of the resource.
|
|
279
320
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
280
321
|
:param pulumi.Input[str] child_instance_id: The ID of the leased line gateway subinstance.
|
|
281
|
-
:param pulumi.Input[str] child_instance_owner_id: The ID of the
|
|
282
|
-
|
|
283
|
-
|
|
322
|
+
:param pulumi.Input[str] child_instance_owner_id: The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
|
|
323
|
+
|
|
324
|
+
> **NOTE:** This parameter is required if you want to load a cross-account network instance.
|
|
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
|
|
284
328
|
:param pulumi.Input[str] ecr_id: ID of the representative leased line gateway instance.
|
|
285
329
|
"""
|
|
286
330
|
...
|
|
@@ -290,7 +334,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
290
334
|
args: RouterVbrChildInstanceArgs,
|
|
291
335
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
292
336
|
"""
|
|
293
|
-
Provides a Express Connect Router Express Connect Router Vbr Child Instance resource.
|
|
337
|
+
Provides a Express Connect Router Express Connect Router Vbr Child Instance resource.
|
|
294
338
|
|
|
295
339
|
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).
|
|
296
340
|
|
|
@@ -352,6 +396,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
352
396
|
child_instance_owner_id: Optional[pulumi.Input[str]] = None,
|
|
353
397
|
child_instance_region_id: Optional[pulumi.Input[str]] = None,
|
|
354
398
|
child_instance_type: Optional[pulumi.Input[str]] = None,
|
|
399
|
+
description: Optional[pulumi.Input[str]] = None,
|
|
355
400
|
ecr_id: Optional[pulumi.Input[str]] = None,
|
|
356
401
|
__props__=None):
|
|
357
402
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -372,6 +417,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
372
417
|
if child_instance_type is None and not opts.urn:
|
|
373
418
|
raise TypeError("Missing required property 'child_instance_type'")
|
|
374
419
|
__props__.__dict__["child_instance_type"] = child_instance_type
|
|
420
|
+
__props__.__dict__["description"] = description
|
|
375
421
|
if ecr_id is None and not opts.urn:
|
|
376
422
|
raise TypeError("Missing required property 'ecr_id'")
|
|
377
423
|
__props__.__dict__["ecr_id"] = ecr_id
|
|
@@ -392,6 +438,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
392
438
|
child_instance_region_id: Optional[pulumi.Input[str]] = None,
|
|
393
439
|
child_instance_type: Optional[pulumi.Input[str]] = None,
|
|
394
440
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
441
|
+
description: Optional[pulumi.Input[str]] = None,
|
|
395
442
|
ecr_id: Optional[pulumi.Input[str]] = None,
|
|
396
443
|
status: Optional[pulumi.Input[str]] = None) -> 'RouterVbrChildInstance':
|
|
397
444
|
"""
|
|
@@ -402,10 +449,13 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
402
449
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
403
450
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
404
451
|
:param pulumi.Input[str] child_instance_id: The ID of the leased line gateway subinstance.
|
|
405
|
-
:param pulumi.Input[str] child_instance_owner_id: The ID of the
|
|
406
|
-
|
|
407
|
-
|
|
452
|
+
:param pulumi.Input[str] child_instance_owner_id: The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
|
|
453
|
+
|
|
454
|
+
> **NOTE:** This parameter is required if you want to load a cross-account network instance.
|
|
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.
|
|
408
457
|
: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
|
|
409
459
|
:param pulumi.Input[str] ecr_id: ID of the representative leased line gateway instance.
|
|
410
460
|
:param pulumi.Input[str] status: Binding relationship status of leased line gateway subinstances.
|
|
411
461
|
"""
|
|
@@ -418,6 +468,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
418
468
|
__props__.__dict__["child_instance_region_id"] = child_instance_region_id
|
|
419
469
|
__props__.__dict__["child_instance_type"] = child_instance_type
|
|
420
470
|
__props__.__dict__["create_time"] = create_time
|
|
471
|
+
__props__.__dict__["description"] = description
|
|
421
472
|
__props__.__dict__["ecr_id"] = ecr_id
|
|
422
473
|
__props__.__dict__["status"] = status
|
|
423
474
|
return RouterVbrChildInstance(resource_name, opts=opts, __props__=__props__)
|
|
@@ -432,9 +483,11 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
432
483
|
|
|
433
484
|
@property
|
|
434
485
|
@pulumi.getter(name="childInstanceOwnerId")
|
|
435
|
-
def child_instance_owner_id(self) -> pulumi.Output[
|
|
486
|
+
def child_instance_owner_id(self) -> pulumi.Output[str]:
|
|
436
487
|
"""
|
|
437
|
-
The ID of the
|
|
488
|
+
The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
|
|
489
|
+
|
|
490
|
+
> **NOTE:** This parameter is required if you want to load a cross-account network instance.
|
|
438
491
|
"""
|
|
439
492
|
return pulumi.get(self, "child_instance_owner_id")
|
|
440
493
|
|
|
@@ -442,7 +495,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
442
495
|
@pulumi.getter(name="childInstanceRegionId")
|
|
443
496
|
def child_instance_region_id(self) -> pulumi.Output[str]:
|
|
444
497
|
"""
|
|
445
|
-
Region of the leased line gateway sub-instance
|
|
498
|
+
Region of the leased line gateway sub-instance
|
|
446
499
|
"""
|
|
447
500
|
return pulumi.get(self, "child_instance_region_id")
|
|
448
501
|
|
|
@@ -450,7 +503,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
450
503
|
@pulumi.getter(name="childInstanceType")
|
|
451
504
|
def child_instance_type(self) -> pulumi.Output[str]:
|
|
452
505
|
"""
|
|
453
|
-
The type of
|
|
506
|
+
The type of the network instance. Value: `VBR`: VBR instance.
|
|
454
507
|
"""
|
|
455
508
|
return pulumi.get(self, "child_instance_type")
|
|
456
509
|
|
|
@@ -462,6 +515,14 @@ class RouterVbrChildInstance(pulumi.CustomResource):
|
|
|
462
515
|
"""
|
|
463
516
|
return pulumi.get(self, "create_time")
|
|
464
517
|
|
|
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
|
+
|
|
465
526
|
@property
|
|
466
527
|
@pulumi.getter(name="ecrId")
|
|
467
528
|
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[
|
|
1044
|
+
def dkms_instance_id(self) -> pulumi.Output[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 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.
|
|
45
|
+
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (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 Tair (Redis OSS-Compatible) And Memcache (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 KVStore account. If the `account_password` is filled in, this field will be ignored.
|
|
146
|
+
An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (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 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.
|
|
158
|
+
An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a Tair (Redis OSS-Compatible) And Memcache (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 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.
|
|
194
|
+
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (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 Tair (Redis OSS-Compatible) And Memcache (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 Tair (Redis OSS-Compatible) And Memcache (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 KVStore account. If the `account_password` is filled in, this field will be ignored.
|
|
300
|
+
An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (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 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.
|
|
312
|
+
An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a Tair (Redis OSS-Compatible) And Memcache (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 KVStore Account.
|
|
324
|
+
The status of Tair (Redis OSS-Compatible) And Memcache (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 KVStore Account resource.
|
|
348
|
+
Provides a Tair (Redis OSS-Compatible) And Memcache (KVStore) Account resource.
|
|
349
349
|
|
|
350
|
-
For information about KVStore Account and how to use it, see [What is Account](https://www.alibabacloud.com/help/doc-detail/95973.htm).
|
|
350
|
+
For information about Tair (Redis OSS-Compatible) And Memcache (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
|
-
KVStore account can be imported using the id, e.g.
|
|
401
|
+
Tair (Redis OSS-Compatible) And Memcache (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 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.
|
|
422
|
+
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (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 Tair (Redis OSS-Compatible) And Memcache (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 KVStore Account resource.
|
|
432
|
+
Provides a Tair (Redis OSS-Compatible) And Memcache (KVStore) Account resource.
|
|
433
433
|
|
|
434
|
-
For information about KVStore Account and how to use it, see [What is Account](https://www.alibabacloud.com/help/doc-detail/95973.htm).
|
|
434
|
+
For information about Tair (Redis OSS-Compatible) And Memcache (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
|
-
KVStore account can be imported using the id, e.g.
|
|
485
|
+
Tair (Redis OSS-Compatible) And Memcache (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 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.
|
|
577
|
+
:param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (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 Tair (Redis OSS-Compatible) And Memcache (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 Tair (Redis OSS-Compatible) And Memcache (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 KVStore account. If the `account_password` is filled in, this field will be ignored.
|
|
655
|
+
An KMS encrypts password used to a Tair (Redis OSS-Compatible) And Memcache (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 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.
|
|
663
|
+
An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a Tair (Redis OSS-Compatible) And Memcache (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 KVStore Account.
|
|
671
|
+
The status of Tair (Redis OSS-Compatible) And Memcache (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 Redis And Memcache (KVStore) Audit Log Config resource.
|
|
196
|
+
Provides a Tair (Redis OSS-Compatible) 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
|
-
Redis And Memcache (KVStore) Audit Log Config can be imported using the id, e.g.
|
|
247
|
+
Tair (Redis OSS-Compatible) 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 Redis And Memcache (KVStore) Audit Log Config resource.
|
|
272
|
+
Provides a Tair (Redis OSS-Compatible) 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
|
-
Redis And Memcache (KVStore) Audit Log Config can be imported using the id, e.g.
|
|
323
|
+
Tair (Redis OSS-Compatible) 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 Tair (Redis OSS-Compatible) And Memcache (KVStore) 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 Tair (Redis OSS-Compatible) And Memcache (KVStore) 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 KVStore
|
|
81
|
+
:param pulumi.Input[str] connection_string: The public connection string of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
|
|
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 KVStore
|
|
99
|
+
The public connection string of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
|
|
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
|
|
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).
|
|
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
|
-
KVStore connection can be imported using the id, e.g.
|
|
205
|
+
Tair (Redis OSS-Compatible) And Memcache (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
|
|
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).
|
|
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
|
-
KVStore connection can be imported using the id, e.g.
|
|
275
|
+
Tair (Redis OSS-Compatible) And Memcache (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 KVStore
|
|
339
|
+
:param pulumi.Input[str] connection_string: The public connection string of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
|
|
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 KVStore
|
|
358
|
+
The public connection string of Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
|
|
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 KVStore Accounts of the current Alibaba Cloud user.
|
|
132
|
+
This data source provides the Tair (Redis OSS-Compatible) And Memcache (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 KVStore Account. Valid Values: `"Available` `Unavailable`
|
|
152
|
+
:param str status: The status of Tair (Redis OSS-Compatible) And Memcache (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 KVStore Accounts of the current Alibaba Cloud user.
|
|
180
|
+
This data source provides the Tair (Redis OSS-Compatible) And Memcache (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 KVStore Account. Valid Values: `"Available` `Unavailable`
|
|
200
|
+
:param str status: The status of Tair (Redis OSS-Compatible) And Memcache (KVStore) Account. Valid Values: `"Available` `Unavailable`
|
|
201
201
|
"""
|
|
202
202
|
__args__ = dict()
|
|
203
203
|
__args__['accountName'] = account_name
|