pulumi-alicloud 3.86.0a1758000634__py3-none-any.whl → 3.87.0a1758691004__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 +56 -0
- pulumi_alicloud/actiontrail/get_sasl_users.py +106 -21
- pulumi_alicloud/actiontrail/outputs.py +18 -0
- pulumi_alicloud/alikafka/instance.py +28 -28
- pulumi_alicloud/cen/transit_router_vpc_attachment.py +61 -29
- pulumi_alicloud/cloudfirewall/__init__.py +1 -0
- pulumi_alicloud/cloudfirewall/threat_intelligence_switch.py +257 -0
- pulumi_alicloud/cloudsso/__init__.py +1 -0
- pulumi_alicloud/cloudsso/_inputs.py +54 -0
- pulumi_alicloud/cloudsso/outputs.py +51 -0
- pulumi_alicloud/cloudsso/user_provisioning.py +723 -0
- pulumi_alicloud/dms/__init__.py +1 -0
- pulumi_alicloud/dms/airflow.py +990 -0
- pulumi_alicloud/ecs/ecs_launch_template.py +21 -7
- pulumi_alicloud/esa/__init__.py +2 -0
- pulumi_alicloud/esa/_inputs.py +189 -0
- pulumi_alicloud/esa/outputs.py +137 -0
- pulumi_alicloud/esa/transport_layer_application.py +459 -0
- pulumi_alicloud/esa/waf_ruleset.py +437 -0
- pulumi_alicloud/fc/_inputs.py +13 -0
- pulumi_alicloud/fc/function.py +0 -156
- pulumi_alicloud/fc/outputs.py +8 -0
- pulumi_alicloud/fc/v3_function.py +54 -7
- pulumi_alicloud/lindorm/__init__.py +2 -0
- pulumi_alicloud/lindorm/_inputs.py +459 -0
- pulumi_alicloud/lindorm/instance_v2.py +1119 -0
- pulumi_alicloud/lindorm/outputs.py +319 -0
- pulumi_alicloud/log/etl.py +6 -0
- pulumi_alicloud/mongodb/sharding_instance.py +235 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/resourcemanager/control_policy_attachment.py +39 -7
- pulumi_alicloud/resourcemanager/handshake.py +118 -56
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/_inputs.py +111 -0
- pulumi_alicloud/sls/index.py +646 -0
- pulumi_alicloud/sls/outputs.py +86 -0
- {pulumi_alicloud-3.86.0a1758000634.dist-info → pulumi_alicloud-3.87.0a1758691004.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.86.0a1758000634.dist-info → pulumi_alicloud-3.87.0a1758691004.dist-info}/RECORD +40 -32
- {pulumi_alicloud-3.86.0a1758000634.dist-info → pulumi_alicloud-3.87.0a1758691004.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.86.0a1758000634.dist-info → pulumi_alicloud-3.87.0a1758691004.dist-info}/top_level.txt +0 -0
|
@@ -24,9 +24,13 @@ class HandshakeArgs:
|
|
|
24
24
|
note: Optional[pulumi.Input[_builtins.str]] = None):
|
|
25
25
|
"""
|
|
26
26
|
The set of arguments for constructing a Handshake resource.
|
|
27
|
-
:param pulumi.Input[_builtins.str] target_entity:
|
|
28
|
-
:param pulumi.Input[_builtins.str] target_type:
|
|
29
|
-
|
|
27
|
+
:param pulumi.Input[_builtins.str] target_entity: The ID or logon email address of the account that you want to invite.
|
|
28
|
+
:param pulumi.Input[_builtins.str] target_type: The type of the invited account. Valid values:
|
|
29
|
+
|
|
30
|
+
- Account: indicates the ID of the account.
|
|
31
|
+
- Email: indicates the logon email address of the account.
|
|
32
|
+
:param pulumi.Input[_builtins.str] note: The description of the invitation.
|
|
33
|
+
The description can be up to 1,024 characters in length.
|
|
30
34
|
"""
|
|
31
35
|
pulumi.set(__self__, "target_entity", target_entity)
|
|
32
36
|
pulumi.set(__self__, "target_type", target_type)
|
|
@@ -37,7 +41,7 @@ class HandshakeArgs:
|
|
|
37
41
|
@pulumi.getter(name="targetEntity")
|
|
38
42
|
def target_entity(self) -> pulumi.Input[_builtins.str]:
|
|
39
43
|
"""
|
|
40
|
-
|
|
44
|
+
The ID or logon email address of the account that you want to invite.
|
|
41
45
|
"""
|
|
42
46
|
return pulumi.get(self, "target_entity")
|
|
43
47
|
|
|
@@ -49,7 +53,10 @@ class HandshakeArgs:
|
|
|
49
53
|
@pulumi.getter(name="targetType")
|
|
50
54
|
def target_type(self) -> pulumi.Input[_builtins.str]:
|
|
51
55
|
"""
|
|
52
|
-
|
|
56
|
+
The type of the invited account. Valid values:
|
|
57
|
+
|
|
58
|
+
- Account: indicates the ID of the account.
|
|
59
|
+
- Email: indicates the logon email address of the account.
|
|
53
60
|
"""
|
|
54
61
|
return pulumi.get(self, "target_type")
|
|
55
62
|
|
|
@@ -61,7 +68,8 @@ class HandshakeArgs:
|
|
|
61
68
|
@pulumi.getter
|
|
62
69
|
def note(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
63
70
|
"""
|
|
64
|
-
|
|
71
|
+
The description of the invitation.
|
|
72
|
+
The description can be up to 1,024 characters in length.
|
|
65
73
|
"""
|
|
66
74
|
return pulumi.get(self, "note")
|
|
67
75
|
|
|
@@ -73,6 +81,7 @@ class HandshakeArgs:
|
|
|
73
81
|
@pulumi.input_type
|
|
74
82
|
class _HandshakeState:
|
|
75
83
|
def __init__(__self__, *,
|
|
84
|
+
create_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
76
85
|
expire_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
77
86
|
master_account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
78
87
|
master_account_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -84,16 +93,23 @@ class _HandshakeState:
|
|
|
84
93
|
target_type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
85
94
|
"""
|
|
86
95
|
Input properties used for looking up and filtering Handshake resources.
|
|
87
|
-
:param pulumi.Input[_builtins.str]
|
|
88
|
-
:param pulumi.Input[_builtins.str]
|
|
89
|
-
:param pulumi.Input[_builtins.str]
|
|
90
|
-
:param pulumi.Input[_builtins.str]
|
|
91
|
-
:param pulumi.Input[_builtins.str]
|
|
92
|
-
:param pulumi.Input[_builtins.str]
|
|
93
|
-
|
|
94
|
-
:param pulumi.Input[_builtins.str]
|
|
95
|
-
:param pulumi.Input[_builtins.str]
|
|
96
|
-
|
|
96
|
+
:param pulumi.Input[_builtins.str] create_time: The time when the invitation was created. The time is displayed in UTC.
|
|
97
|
+
:param pulumi.Input[_builtins.str] expire_time: The time when the invitation expires. The time is displayed in UTC.
|
|
98
|
+
:param pulumi.Input[_builtins.str] master_account_id: The ID of the management account of the resource directory.
|
|
99
|
+
:param pulumi.Input[_builtins.str] master_account_name: The name of the management account of the resource directory.
|
|
100
|
+
:param pulumi.Input[_builtins.str] modify_time: The time when the invitation was modified. The time is displayed in UTC.
|
|
101
|
+
:param pulumi.Input[_builtins.str] note: The description of the invitation.
|
|
102
|
+
The description can be up to 1,024 characters in length.
|
|
103
|
+
:param pulumi.Input[_builtins.str] resource_directory_id: The ID of the resource directory.
|
|
104
|
+
:param pulumi.Input[_builtins.str] status: The status of the invitation.
|
|
105
|
+
:param pulumi.Input[_builtins.str] target_entity: The ID or logon email address of the account that you want to invite.
|
|
106
|
+
:param pulumi.Input[_builtins.str] target_type: The type of the invited account. Valid values:
|
|
107
|
+
|
|
108
|
+
- Account: indicates the ID of the account.
|
|
109
|
+
- Email: indicates the logon email address of the account.
|
|
110
|
+
"""
|
|
111
|
+
if create_time is not None:
|
|
112
|
+
pulumi.set(__self__, "create_time", create_time)
|
|
97
113
|
if expire_time is not None:
|
|
98
114
|
pulumi.set(__self__, "expire_time", expire_time)
|
|
99
115
|
if master_account_id is not None:
|
|
@@ -113,11 +129,23 @@ class _HandshakeState:
|
|
|
113
129
|
if target_type is not None:
|
|
114
130
|
pulumi.set(__self__, "target_type", target_type)
|
|
115
131
|
|
|
132
|
+
@_builtins.property
|
|
133
|
+
@pulumi.getter(name="createTime")
|
|
134
|
+
def create_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
135
|
+
"""
|
|
136
|
+
The time when the invitation was created. The time is displayed in UTC.
|
|
137
|
+
"""
|
|
138
|
+
return pulumi.get(self, "create_time")
|
|
139
|
+
|
|
140
|
+
@create_time.setter
|
|
141
|
+
def create_time(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
142
|
+
pulumi.set(self, "create_time", value)
|
|
143
|
+
|
|
116
144
|
@_builtins.property
|
|
117
145
|
@pulumi.getter(name="expireTime")
|
|
118
146
|
def expire_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
119
147
|
"""
|
|
120
|
-
The
|
|
148
|
+
The time when the invitation expires. The time is displayed in UTC.
|
|
121
149
|
"""
|
|
122
150
|
return pulumi.get(self, "expire_time")
|
|
123
151
|
|
|
@@ -129,7 +157,7 @@ class _HandshakeState:
|
|
|
129
157
|
@pulumi.getter(name="masterAccountId")
|
|
130
158
|
def master_account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
131
159
|
"""
|
|
132
|
-
|
|
160
|
+
The ID of the management account of the resource directory.
|
|
133
161
|
"""
|
|
134
162
|
return pulumi.get(self, "master_account_id")
|
|
135
163
|
|
|
@@ -141,7 +169,7 @@ class _HandshakeState:
|
|
|
141
169
|
@pulumi.getter(name="masterAccountName")
|
|
142
170
|
def master_account_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
143
171
|
"""
|
|
144
|
-
The name of the
|
|
172
|
+
The name of the management account of the resource directory.
|
|
145
173
|
"""
|
|
146
174
|
return pulumi.get(self, "master_account_name")
|
|
147
175
|
|
|
@@ -153,7 +181,7 @@ class _HandshakeState:
|
|
|
153
181
|
@pulumi.getter(name="modifyTime")
|
|
154
182
|
def modify_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
155
183
|
"""
|
|
156
|
-
The
|
|
184
|
+
The time when the invitation was modified. The time is displayed in UTC.
|
|
157
185
|
"""
|
|
158
186
|
return pulumi.get(self, "modify_time")
|
|
159
187
|
|
|
@@ -165,7 +193,8 @@ class _HandshakeState:
|
|
|
165
193
|
@pulumi.getter
|
|
166
194
|
def note(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
167
195
|
"""
|
|
168
|
-
|
|
196
|
+
The description of the invitation.
|
|
197
|
+
The description can be up to 1,024 characters in length.
|
|
169
198
|
"""
|
|
170
199
|
return pulumi.get(self, "note")
|
|
171
200
|
|
|
@@ -177,7 +206,7 @@ class _HandshakeState:
|
|
|
177
206
|
@pulumi.getter(name="resourceDirectoryId")
|
|
178
207
|
def resource_directory_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
179
208
|
"""
|
|
180
|
-
|
|
209
|
+
The ID of the resource directory.
|
|
181
210
|
"""
|
|
182
211
|
return pulumi.get(self, "resource_directory_id")
|
|
183
212
|
|
|
@@ -189,7 +218,7 @@ class _HandshakeState:
|
|
|
189
218
|
@pulumi.getter
|
|
190
219
|
def status(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
191
220
|
"""
|
|
192
|
-
|
|
221
|
+
The status of the invitation.
|
|
193
222
|
"""
|
|
194
223
|
return pulumi.get(self, "status")
|
|
195
224
|
|
|
@@ -201,7 +230,7 @@ class _HandshakeState:
|
|
|
201
230
|
@pulumi.getter(name="targetEntity")
|
|
202
231
|
def target_entity(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
203
232
|
"""
|
|
204
|
-
|
|
233
|
+
The ID or logon email address of the account that you want to invite.
|
|
205
234
|
"""
|
|
206
235
|
return pulumi.get(self, "target_entity")
|
|
207
236
|
|
|
@@ -213,7 +242,10 @@ class _HandshakeState:
|
|
|
213
242
|
@pulumi.getter(name="targetType")
|
|
214
243
|
def target_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
215
244
|
"""
|
|
216
|
-
|
|
245
|
+
The type of the invited account. Valid values:
|
|
246
|
+
|
|
247
|
+
- Account: indicates the ID of the account.
|
|
248
|
+
- Email: indicates the logon email address of the account.
|
|
217
249
|
"""
|
|
218
250
|
return pulumi.get(self, "target_type")
|
|
219
251
|
|
|
@@ -233,13 +265,16 @@ class Handshake(pulumi.CustomResource):
|
|
|
233
265
|
target_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
234
266
|
__props__=None):
|
|
235
267
|
"""
|
|
236
|
-
Provides a Resource Manager
|
|
237
|
-
|
|
268
|
+
Provides a Resource Manager Handshake resource.
|
|
269
|
+
|
|
270
|
+
For information about Resource Manager Handshake and how to use it, see [What is Handshake](https://www.alibabacloud.com/help/en/doc-detail/135287.htm).
|
|
238
271
|
|
|
239
|
-
> **NOTE:** Available
|
|
272
|
+
> **NOTE:** Available since v1.82.0.
|
|
240
273
|
|
|
241
274
|
## Example Usage
|
|
242
275
|
|
|
276
|
+
Basic Usage
|
|
277
|
+
|
|
243
278
|
```python
|
|
244
279
|
import pulumi
|
|
245
280
|
import pulumi_alicloud as alicloud
|
|
@@ -253,17 +288,21 @@ class Handshake(pulumi.CustomResource):
|
|
|
253
288
|
|
|
254
289
|
## Import
|
|
255
290
|
|
|
256
|
-
Resource Manager
|
|
291
|
+
Resource Manager Handshake can be imported using the id, e.g.
|
|
257
292
|
|
|
258
293
|
```sh
|
|
259
|
-
$ pulumi import alicloud:resourcemanager/handshake:Handshake example
|
|
294
|
+
$ pulumi import alicloud:resourcemanager/handshake:Handshake example <id>
|
|
260
295
|
```
|
|
261
296
|
|
|
262
297
|
:param str resource_name: The name of the resource.
|
|
263
298
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
264
|
-
:param pulumi.Input[_builtins.str] note:
|
|
265
|
-
|
|
266
|
-
:param pulumi.Input[_builtins.str]
|
|
299
|
+
:param pulumi.Input[_builtins.str] note: The description of the invitation.
|
|
300
|
+
The description can be up to 1,024 characters in length.
|
|
301
|
+
:param pulumi.Input[_builtins.str] target_entity: The ID or logon email address of the account that you want to invite.
|
|
302
|
+
:param pulumi.Input[_builtins.str] target_type: The type of the invited account. Valid values:
|
|
303
|
+
|
|
304
|
+
- Account: indicates the ID of the account.
|
|
305
|
+
- Email: indicates the logon email address of the account.
|
|
267
306
|
"""
|
|
268
307
|
...
|
|
269
308
|
@overload
|
|
@@ -272,13 +311,16 @@ class Handshake(pulumi.CustomResource):
|
|
|
272
311
|
args: HandshakeArgs,
|
|
273
312
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
274
313
|
"""
|
|
275
|
-
Provides a Resource Manager
|
|
276
|
-
|
|
314
|
+
Provides a Resource Manager Handshake resource.
|
|
315
|
+
|
|
316
|
+
For information about Resource Manager Handshake and how to use it, see [What is Handshake](https://www.alibabacloud.com/help/en/doc-detail/135287.htm).
|
|
277
317
|
|
|
278
|
-
> **NOTE:** Available
|
|
318
|
+
> **NOTE:** Available since v1.82.0.
|
|
279
319
|
|
|
280
320
|
## Example Usage
|
|
281
321
|
|
|
322
|
+
Basic Usage
|
|
323
|
+
|
|
282
324
|
```python
|
|
283
325
|
import pulumi
|
|
284
326
|
import pulumi_alicloud as alicloud
|
|
@@ -292,10 +334,10 @@ class Handshake(pulumi.CustomResource):
|
|
|
292
334
|
|
|
293
335
|
## Import
|
|
294
336
|
|
|
295
|
-
Resource Manager
|
|
337
|
+
Resource Manager Handshake can be imported using the id, e.g.
|
|
296
338
|
|
|
297
339
|
```sh
|
|
298
|
-
$ pulumi import alicloud:resourcemanager/handshake:Handshake example
|
|
340
|
+
$ pulumi import alicloud:resourcemanager/handshake:Handshake example <id>
|
|
299
341
|
```
|
|
300
342
|
|
|
301
343
|
:param str resource_name: The name of the resource.
|
|
@@ -332,6 +374,7 @@ class Handshake(pulumi.CustomResource):
|
|
|
332
374
|
if target_type is None and not opts.urn:
|
|
333
375
|
raise TypeError("Missing required property 'target_type'")
|
|
334
376
|
__props__.__dict__["target_type"] = target_type
|
|
377
|
+
__props__.__dict__["create_time"] = None
|
|
335
378
|
__props__.__dict__["expire_time"] = None
|
|
336
379
|
__props__.__dict__["master_account_id"] = None
|
|
337
380
|
__props__.__dict__["master_account_name"] = None
|
|
@@ -348,6 +391,7 @@ class Handshake(pulumi.CustomResource):
|
|
|
348
391
|
def get(resource_name: str,
|
|
349
392
|
id: pulumi.Input[str],
|
|
350
393
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
394
|
+
create_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
351
395
|
expire_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
352
396
|
master_account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
353
397
|
master_account_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -364,20 +408,26 @@ class Handshake(pulumi.CustomResource):
|
|
|
364
408
|
:param str resource_name: The unique name of the resulting resource.
|
|
365
409
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
366
410
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
367
|
-
:param pulumi.Input[_builtins.str]
|
|
368
|
-
:param pulumi.Input[_builtins.str]
|
|
369
|
-
:param pulumi.Input[_builtins.str]
|
|
370
|
-
:param pulumi.Input[_builtins.str]
|
|
371
|
-
:param pulumi.Input[_builtins.str]
|
|
372
|
-
:param pulumi.Input[_builtins.str]
|
|
373
|
-
|
|
374
|
-
:param pulumi.Input[_builtins.str]
|
|
375
|
-
:param pulumi.Input[_builtins.str]
|
|
411
|
+
:param pulumi.Input[_builtins.str] create_time: The time when the invitation was created. The time is displayed in UTC.
|
|
412
|
+
:param pulumi.Input[_builtins.str] expire_time: The time when the invitation expires. The time is displayed in UTC.
|
|
413
|
+
:param pulumi.Input[_builtins.str] master_account_id: The ID of the management account of the resource directory.
|
|
414
|
+
:param pulumi.Input[_builtins.str] master_account_name: The name of the management account of the resource directory.
|
|
415
|
+
:param pulumi.Input[_builtins.str] modify_time: The time when the invitation was modified. The time is displayed in UTC.
|
|
416
|
+
:param pulumi.Input[_builtins.str] note: The description of the invitation.
|
|
417
|
+
The description can be up to 1,024 characters in length.
|
|
418
|
+
:param pulumi.Input[_builtins.str] resource_directory_id: The ID of the resource directory.
|
|
419
|
+
:param pulumi.Input[_builtins.str] status: The status of the invitation.
|
|
420
|
+
:param pulumi.Input[_builtins.str] target_entity: The ID or logon email address of the account that you want to invite.
|
|
421
|
+
:param pulumi.Input[_builtins.str] target_type: The type of the invited account. Valid values:
|
|
422
|
+
|
|
423
|
+
- Account: indicates the ID of the account.
|
|
424
|
+
- Email: indicates the logon email address of the account.
|
|
376
425
|
"""
|
|
377
426
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
378
427
|
|
|
379
428
|
__props__ = _HandshakeState.__new__(_HandshakeState)
|
|
380
429
|
|
|
430
|
+
__props__.__dict__["create_time"] = create_time
|
|
381
431
|
__props__.__dict__["expire_time"] = expire_time
|
|
382
432
|
__props__.__dict__["master_account_id"] = master_account_id
|
|
383
433
|
__props__.__dict__["master_account_name"] = master_account_name
|
|
@@ -389,11 +439,19 @@ class Handshake(pulumi.CustomResource):
|
|
|
389
439
|
__props__.__dict__["target_type"] = target_type
|
|
390
440
|
return Handshake(resource_name, opts=opts, __props__=__props__)
|
|
391
441
|
|
|
442
|
+
@_builtins.property
|
|
443
|
+
@pulumi.getter(name="createTime")
|
|
444
|
+
def create_time(self) -> pulumi.Output[_builtins.str]:
|
|
445
|
+
"""
|
|
446
|
+
The time when the invitation was created. The time is displayed in UTC.
|
|
447
|
+
"""
|
|
448
|
+
return pulumi.get(self, "create_time")
|
|
449
|
+
|
|
392
450
|
@_builtins.property
|
|
393
451
|
@pulumi.getter(name="expireTime")
|
|
394
452
|
def expire_time(self) -> pulumi.Output[_builtins.str]:
|
|
395
453
|
"""
|
|
396
|
-
The
|
|
454
|
+
The time when the invitation expires. The time is displayed in UTC.
|
|
397
455
|
"""
|
|
398
456
|
return pulumi.get(self, "expire_time")
|
|
399
457
|
|
|
@@ -401,7 +459,7 @@ class Handshake(pulumi.CustomResource):
|
|
|
401
459
|
@pulumi.getter(name="masterAccountId")
|
|
402
460
|
def master_account_id(self) -> pulumi.Output[_builtins.str]:
|
|
403
461
|
"""
|
|
404
|
-
|
|
462
|
+
The ID of the management account of the resource directory.
|
|
405
463
|
"""
|
|
406
464
|
return pulumi.get(self, "master_account_id")
|
|
407
465
|
|
|
@@ -409,7 +467,7 @@ class Handshake(pulumi.CustomResource):
|
|
|
409
467
|
@pulumi.getter(name="masterAccountName")
|
|
410
468
|
def master_account_name(self) -> pulumi.Output[_builtins.str]:
|
|
411
469
|
"""
|
|
412
|
-
The name of the
|
|
470
|
+
The name of the management account of the resource directory.
|
|
413
471
|
"""
|
|
414
472
|
return pulumi.get(self, "master_account_name")
|
|
415
473
|
|
|
@@ -417,7 +475,7 @@ class Handshake(pulumi.CustomResource):
|
|
|
417
475
|
@pulumi.getter(name="modifyTime")
|
|
418
476
|
def modify_time(self) -> pulumi.Output[_builtins.str]:
|
|
419
477
|
"""
|
|
420
|
-
The
|
|
478
|
+
The time when the invitation was modified. The time is displayed in UTC.
|
|
421
479
|
"""
|
|
422
480
|
return pulumi.get(self, "modify_time")
|
|
423
481
|
|
|
@@ -425,7 +483,8 @@ class Handshake(pulumi.CustomResource):
|
|
|
425
483
|
@pulumi.getter
|
|
426
484
|
def note(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
427
485
|
"""
|
|
428
|
-
|
|
486
|
+
The description of the invitation.
|
|
487
|
+
The description can be up to 1,024 characters in length.
|
|
429
488
|
"""
|
|
430
489
|
return pulumi.get(self, "note")
|
|
431
490
|
|
|
@@ -433,7 +492,7 @@ class Handshake(pulumi.CustomResource):
|
|
|
433
492
|
@pulumi.getter(name="resourceDirectoryId")
|
|
434
493
|
def resource_directory_id(self) -> pulumi.Output[_builtins.str]:
|
|
435
494
|
"""
|
|
436
|
-
|
|
495
|
+
The ID of the resource directory.
|
|
437
496
|
"""
|
|
438
497
|
return pulumi.get(self, "resource_directory_id")
|
|
439
498
|
|
|
@@ -441,7 +500,7 @@ class Handshake(pulumi.CustomResource):
|
|
|
441
500
|
@pulumi.getter
|
|
442
501
|
def status(self) -> pulumi.Output[_builtins.str]:
|
|
443
502
|
"""
|
|
444
|
-
|
|
503
|
+
The status of the invitation.
|
|
445
504
|
"""
|
|
446
505
|
return pulumi.get(self, "status")
|
|
447
506
|
|
|
@@ -449,7 +508,7 @@ class Handshake(pulumi.CustomResource):
|
|
|
449
508
|
@pulumi.getter(name="targetEntity")
|
|
450
509
|
def target_entity(self) -> pulumi.Output[_builtins.str]:
|
|
451
510
|
"""
|
|
452
|
-
|
|
511
|
+
The ID or logon email address of the account that you want to invite.
|
|
453
512
|
"""
|
|
454
513
|
return pulumi.get(self, "target_entity")
|
|
455
514
|
|
|
@@ -457,7 +516,10 @@ class Handshake(pulumi.CustomResource):
|
|
|
457
516
|
@pulumi.getter(name="targetType")
|
|
458
517
|
def target_type(self) -> pulumi.Output[_builtins.str]:
|
|
459
518
|
"""
|
|
460
|
-
|
|
519
|
+
The type of the invited account. Valid values:
|
|
520
|
+
|
|
521
|
+
- Account: indicates the ID of the account.
|
|
522
|
+
- Email: indicates the logon email address of the account.
|
|
461
523
|
"""
|
|
462
524
|
return pulumi.get(self, "target_type")
|
|
463
525
|
|
pulumi_alicloud/sls/__init__.py
CHANGED
pulumi_alicloud/sls/_inputs.py
CHANGED
|
@@ -57,6 +57,8 @@ __all__ = [
|
|
|
57
57
|
'EtlConfigurationArgsDict',
|
|
58
58
|
'EtlConfigurationSinkArgs',
|
|
59
59
|
'EtlConfigurationSinkArgsDict',
|
|
60
|
+
'IndexLineArgs',
|
|
61
|
+
'IndexLineArgsDict',
|
|
60
62
|
'LogtailConfigOutputDetailArgs',
|
|
61
63
|
'LogtailConfigOutputDetailArgsDict',
|
|
62
64
|
'MachineGroupGroupAttributeArgs',
|
|
@@ -2242,6 +2244,115 @@ class EtlConfigurationSinkArgs:
|
|
|
2242
2244
|
pulumi.set(self, "role_arn", value)
|
|
2243
2245
|
|
|
2244
2246
|
|
|
2247
|
+
if not MYPY:
|
|
2248
|
+
class IndexLineArgsDict(TypedDict):
|
|
2249
|
+
case_sensitive: pulumi.Input[_builtins.bool]
|
|
2250
|
+
"""
|
|
2251
|
+
Is case sensitive
|
|
2252
|
+
"""
|
|
2253
|
+
chn: pulumi.Input[_builtins.bool]
|
|
2254
|
+
"""
|
|
2255
|
+
Does it include Chinese
|
|
2256
|
+
"""
|
|
2257
|
+
tokens: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
2258
|
+
"""
|
|
2259
|
+
Delimiter
|
|
2260
|
+
"""
|
|
2261
|
+
exclude_keys: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2262
|
+
"""
|
|
2263
|
+
List of excluded fields
|
|
2264
|
+
"""
|
|
2265
|
+
include_keys: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2266
|
+
"""
|
|
2267
|
+
Include field list
|
|
2268
|
+
"""
|
|
2269
|
+
elif False:
|
|
2270
|
+
IndexLineArgsDict: TypeAlias = Mapping[str, Any]
|
|
2271
|
+
|
|
2272
|
+
@pulumi.input_type
|
|
2273
|
+
class IndexLineArgs:
|
|
2274
|
+
def __init__(__self__, *,
|
|
2275
|
+
case_sensitive: pulumi.Input[_builtins.bool],
|
|
2276
|
+
chn: pulumi.Input[_builtins.bool],
|
|
2277
|
+
tokens: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
2278
|
+
exclude_keys: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
2279
|
+
include_keys: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
2280
|
+
"""
|
|
2281
|
+
:param pulumi.Input[_builtins.bool] case_sensitive: Is case sensitive
|
|
2282
|
+
:param pulumi.Input[_builtins.bool] chn: Does it include Chinese
|
|
2283
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tokens: Delimiter
|
|
2284
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] exclude_keys: List of excluded fields
|
|
2285
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] include_keys: Include field list
|
|
2286
|
+
"""
|
|
2287
|
+
pulumi.set(__self__, "case_sensitive", case_sensitive)
|
|
2288
|
+
pulumi.set(__self__, "chn", chn)
|
|
2289
|
+
pulumi.set(__self__, "tokens", tokens)
|
|
2290
|
+
if exclude_keys is not None:
|
|
2291
|
+
pulumi.set(__self__, "exclude_keys", exclude_keys)
|
|
2292
|
+
if include_keys is not None:
|
|
2293
|
+
pulumi.set(__self__, "include_keys", include_keys)
|
|
2294
|
+
|
|
2295
|
+
@_builtins.property
|
|
2296
|
+
@pulumi.getter(name="caseSensitive")
|
|
2297
|
+
def case_sensitive(self) -> pulumi.Input[_builtins.bool]:
|
|
2298
|
+
"""
|
|
2299
|
+
Is case sensitive
|
|
2300
|
+
"""
|
|
2301
|
+
return pulumi.get(self, "case_sensitive")
|
|
2302
|
+
|
|
2303
|
+
@case_sensitive.setter
|
|
2304
|
+
def case_sensitive(self, value: pulumi.Input[_builtins.bool]):
|
|
2305
|
+
pulumi.set(self, "case_sensitive", value)
|
|
2306
|
+
|
|
2307
|
+
@_builtins.property
|
|
2308
|
+
@pulumi.getter
|
|
2309
|
+
def chn(self) -> pulumi.Input[_builtins.bool]:
|
|
2310
|
+
"""
|
|
2311
|
+
Does it include Chinese
|
|
2312
|
+
"""
|
|
2313
|
+
return pulumi.get(self, "chn")
|
|
2314
|
+
|
|
2315
|
+
@chn.setter
|
|
2316
|
+
def chn(self, value: pulumi.Input[_builtins.bool]):
|
|
2317
|
+
pulumi.set(self, "chn", value)
|
|
2318
|
+
|
|
2319
|
+
@_builtins.property
|
|
2320
|
+
@pulumi.getter
|
|
2321
|
+
def tokens(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
2322
|
+
"""
|
|
2323
|
+
Delimiter
|
|
2324
|
+
"""
|
|
2325
|
+
return pulumi.get(self, "tokens")
|
|
2326
|
+
|
|
2327
|
+
@tokens.setter
|
|
2328
|
+
def tokens(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
2329
|
+
pulumi.set(self, "tokens", value)
|
|
2330
|
+
|
|
2331
|
+
@_builtins.property
|
|
2332
|
+
@pulumi.getter(name="excludeKeys")
|
|
2333
|
+
def exclude_keys(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
2334
|
+
"""
|
|
2335
|
+
List of excluded fields
|
|
2336
|
+
"""
|
|
2337
|
+
return pulumi.get(self, "exclude_keys")
|
|
2338
|
+
|
|
2339
|
+
@exclude_keys.setter
|
|
2340
|
+
def exclude_keys(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
2341
|
+
pulumi.set(self, "exclude_keys", value)
|
|
2342
|
+
|
|
2343
|
+
@_builtins.property
|
|
2344
|
+
@pulumi.getter(name="includeKeys")
|
|
2345
|
+
def include_keys(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
2346
|
+
"""
|
|
2347
|
+
Include field list
|
|
2348
|
+
"""
|
|
2349
|
+
return pulumi.get(self, "include_keys")
|
|
2350
|
+
|
|
2351
|
+
@include_keys.setter
|
|
2352
|
+
def include_keys(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
2353
|
+
pulumi.set(self, "include_keys", value)
|
|
2354
|
+
|
|
2355
|
+
|
|
2245
2356
|
if not MYPY:
|
|
2246
2357
|
class LogtailConfigOutputDetailArgsDict(TypedDict):
|
|
2247
2358
|
endpoint: NotRequired[pulumi.Input[_builtins.str]]
|