pulumi-alicloud 3.88.0a1761888283__py3-none-any.whl → 3.88.0a1761969289__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 +59 -0
- pulumi_alicloud/cfg/_inputs.py +27 -24
- pulumi_alicloud/cfg/aggregator.py +142 -53
- pulumi_alicloud/cfg/outputs.py +18 -15
- pulumi_alicloud/cloudfirewall/__init__.py +1 -0
- pulumi_alicloud/cloudfirewall/get_tls_inspect_ca_certificates.py +214 -0
- pulumi_alicloud/cloudfirewall/outputs.py +30 -0
- pulumi_alicloud/cms/_inputs.py +870 -10
- pulumi_alicloud/cms/get_site_monitors.py +2 -2
- pulumi_alicloud/cms/outputs.py +606 -6
- pulumi_alicloud/cms/site_monitor.py +360 -89
- pulumi_alicloud/cr/registry_enterprise_instance.py +63 -0
- pulumi_alicloud/dts/instance.py +14 -14
- pulumi_alicloud/eci/container_group.py +47 -0
- pulumi_alicloud/ecs/security_group_rule.py +7 -7
- pulumi_alicloud/ens/load_balancer.py +8 -4
- pulumi_alicloud/esa/__init__.py +1 -0
- pulumi_alicloud/esa/_inputs.py +611 -0
- pulumi_alicloud/esa/cache_rule.py +47 -0
- pulumi_alicloud/esa/certificate.py +21 -54
- pulumi_alicloud/esa/compression_rule.py +47 -0
- pulumi_alicloud/esa/load_balancer.py +999 -0
- pulumi_alicloud/esa/outputs.py +469 -0
- pulumi_alicloud/eventbridge/event_source.py +57 -57
- pulumi_alicloud/ga/_inputs.py +56 -16
- pulumi_alicloud/ga/outputs.py +39 -11
- pulumi_alicloud/lindorm/instance_v2.py +358 -70
- pulumi_alicloud/oss/_inputs.py +53 -0
- pulumi_alicloud/oss/bucket_logging.py +80 -29
- pulumi_alicloud/oss/bucket_replication.py +55 -8
- pulumi_alicloud/oss/outputs.py +31 -0
- pulumi_alicloud/polardb/__init__.py +2 -0
- pulumi_alicloud/polardb/cluster.py +14 -14
- pulumi_alicloud/polardb/zonal_account.py +449 -0
- pulumi_alicloud/polardb/zonal_db_cluster.py +2 -2
- pulumi_alicloud/polardb/zonal_endpoint.py +865 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/policy.py +2 -2
- pulumi_alicloud/resourcemanager/__init__.py +2 -0
- pulumi_alicloud/resourcemanager/_inputs.py +745 -0
- pulumi_alicloud/resourcemanager/delivery_channel.py +449 -0
- pulumi_alicloud/resourcemanager/multi_account_delivery_channel.py +470 -0
- pulumi_alicloud/resourcemanager/outputs.py +643 -0
- pulumi_alicloud/sae/_inputs.py +60 -0
- pulumi_alicloud/sae/application.py +1 -1
- pulumi_alicloud/sae/outputs.py +42 -0
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/get_indexs.py +304 -0
- pulumi_alicloud/sls/outputs.py +148 -0
- pulumi_alicloud/star_rocks_instance.py +8 -2
- pulumi_alicloud/starrocks/__init__.py +12 -0
- pulumi_alicloud/starrocks/_inputs.py +656 -0
- pulumi_alicloud/starrocks/instance.py +1427 -0
- pulumi_alicloud/starrocks/node_group.py +1298 -0
- pulumi_alicloud/starrocks/outputs.py +508 -0
- pulumi_alicloud/vpc/_inputs.py +84 -0
- pulumi_alicloud/vpc/gateway_endpoint.py +8 -8
- pulumi_alicloud/vpc/network_acl_entries.py +16 -20
- pulumi_alicloud/vpc/outputs.py +48 -0
- pulumi_alicloud/wafv3/_inputs.py +396 -0
- pulumi_alicloud/wafv3/defense_rule.py +40 -110
- pulumi_alicloud/wafv3/outputs.py +303 -0
- {pulumi_alicloud-3.88.0a1761888283.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.88.0a1761888283.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/RECORD +66 -54
- {pulumi_alicloud-3.88.0a1761888283.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.88.0a1761888283.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/top_level.txt +0 -0
|
@@ -17,6 +17,16 @@ from . import outputs
|
|
|
17
17
|
|
|
18
18
|
__all__ = [
|
|
19
19
|
'AutoGroupingRuleRuleContent',
|
|
20
|
+
'DeliveryChannelDeliveryChannelFilter',
|
|
21
|
+
'DeliveryChannelResourceChangeDelivery',
|
|
22
|
+
'DeliveryChannelResourceChangeDeliverySlsProperties',
|
|
23
|
+
'DeliveryChannelResourceSnapshotDelivery',
|
|
24
|
+
'DeliveryChannelResourceSnapshotDeliverySlsProperties',
|
|
25
|
+
'MultiAccountDeliveryChannelDeliveryChannelFilter',
|
|
26
|
+
'MultiAccountDeliveryChannelResourceChangeDelivery',
|
|
27
|
+
'MultiAccountDeliveryChannelResourceChangeDeliverySlsProperties',
|
|
28
|
+
'MultiAccountDeliveryChannelResourceSnapshotDelivery',
|
|
29
|
+
'MultiAccountDeliveryChannelResourceSnapshotDeliverySlsProperties',
|
|
20
30
|
'ResourceGroupRegionStatus',
|
|
21
31
|
'ResourceShareResource',
|
|
22
32
|
'GetAccountDeletionCheckTaskAbandonAbleCheckResult',
|
|
@@ -88,6 +98,639 @@ class AutoGroupingRuleRuleContent(dict):
|
|
|
88
98
|
return pulumi.get(self, "auto_grouping_scope_condition")
|
|
89
99
|
|
|
90
100
|
|
|
101
|
+
@pulumi.output_type
|
|
102
|
+
class DeliveryChannelDeliveryChannelFilter(dict):
|
|
103
|
+
@staticmethod
|
|
104
|
+
def __key_warning(key: str):
|
|
105
|
+
suggest = None
|
|
106
|
+
if key == "resourceTypes":
|
|
107
|
+
suggest = "resource_types"
|
|
108
|
+
|
|
109
|
+
if suggest:
|
|
110
|
+
pulumi.log.warn(f"Key '{key}' not found in DeliveryChannelDeliveryChannelFilter. Access the value via the '{suggest}' property getter instead.")
|
|
111
|
+
|
|
112
|
+
def __getitem__(self, key: str) -> Any:
|
|
113
|
+
DeliveryChannelDeliveryChannelFilter.__key_warning(key)
|
|
114
|
+
return super().__getitem__(key)
|
|
115
|
+
|
|
116
|
+
def get(self, key: str, default = None) -> Any:
|
|
117
|
+
DeliveryChannelDeliveryChannelFilter.__key_warning(key)
|
|
118
|
+
return super().get(key, default)
|
|
119
|
+
|
|
120
|
+
def __init__(__self__, *,
|
|
121
|
+
resource_types: Optional[Sequence[_builtins.str]] = None):
|
|
122
|
+
"""
|
|
123
|
+
:param Sequence[_builtins.str] resource_types: An array of effective resource types for the delivery channel.
|
|
124
|
+
- Example: ["ACS::VPC::VPC", "ACS::ECS::Instance"].
|
|
125
|
+
- If you want to deliver items of all resource types supported by Resource Center, set this parameter to ["ALL"].
|
|
126
|
+
"""
|
|
127
|
+
if resource_types is not None:
|
|
128
|
+
pulumi.set(__self__, "resource_types", resource_types)
|
|
129
|
+
|
|
130
|
+
@_builtins.property
|
|
131
|
+
@pulumi.getter(name="resourceTypes")
|
|
132
|
+
def resource_types(self) -> Optional[Sequence[_builtins.str]]:
|
|
133
|
+
"""
|
|
134
|
+
An array of effective resource types for the delivery channel.
|
|
135
|
+
- Example: ["ACS::VPC::VPC", "ACS::ECS::Instance"].
|
|
136
|
+
- If you want to deliver items of all resource types supported by Resource Center, set this parameter to ["ALL"].
|
|
137
|
+
"""
|
|
138
|
+
return pulumi.get(self, "resource_types")
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
@pulumi.output_type
|
|
142
|
+
class DeliveryChannelResourceChangeDelivery(dict):
|
|
143
|
+
@staticmethod
|
|
144
|
+
def __key_warning(key: str):
|
|
145
|
+
suggest = None
|
|
146
|
+
if key == "slsProperties":
|
|
147
|
+
suggest = "sls_properties"
|
|
148
|
+
elif key == "targetArn":
|
|
149
|
+
suggest = "target_arn"
|
|
150
|
+
elif key == "targetType":
|
|
151
|
+
suggest = "target_type"
|
|
152
|
+
|
|
153
|
+
if suggest:
|
|
154
|
+
pulumi.log.warn(f"Key '{key}' not found in DeliveryChannelResourceChangeDelivery. Access the value via the '{suggest}' property getter instead.")
|
|
155
|
+
|
|
156
|
+
def __getitem__(self, key: str) -> Any:
|
|
157
|
+
DeliveryChannelResourceChangeDelivery.__key_warning(key)
|
|
158
|
+
return super().__getitem__(key)
|
|
159
|
+
|
|
160
|
+
def get(self, key: str, default = None) -> Any:
|
|
161
|
+
DeliveryChannelResourceChangeDelivery.__key_warning(key)
|
|
162
|
+
return super().get(key, default)
|
|
163
|
+
|
|
164
|
+
def __init__(__self__, *,
|
|
165
|
+
enabled: Optional[_builtins.bool] = None,
|
|
166
|
+
sls_properties: Optional['outputs.DeliveryChannelResourceChangeDeliverySlsProperties'] = None,
|
|
167
|
+
target_arn: Optional[_builtins.str] = None,
|
|
168
|
+
target_type: Optional[_builtins.str] = None):
|
|
169
|
+
"""
|
|
170
|
+
:param _builtins.bool enabled: Specifies whether to enable delivery of resource configuration change events. Valid values:
|
|
171
|
+
- true
|
|
172
|
+
- false
|
|
173
|
+
:param 'DeliveryChannelResourceChangeDeliverySlsPropertiesArgs' sls_properties: The Simple Log Service configurations. See `sls_properties` below.
|
|
174
|
+
:param _builtins.str target_arn: The ARN of the delivery destination.
|
|
175
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
176
|
+
- If you set TargetType to`SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
177
|
+
:param _builtins.str target_type: The type of the delivery destination.
|
|
178
|
+
|
|
179
|
+
Valid values:
|
|
180
|
+
- SLS
|
|
181
|
+
"""
|
|
182
|
+
if enabled is not None:
|
|
183
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
184
|
+
if sls_properties is not None:
|
|
185
|
+
pulumi.set(__self__, "sls_properties", sls_properties)
|
|
186
|
+
if target_arn is not None:
|
|
187
|
+
pulumi.set(__self__, "target_arn", target_arn)
|
|
188
|
+
if target_type is not None:
|
|
189
|
+
pulumi.set(__self__, "target_type", target_type)
|
|
190
|
+
|
|
191
|
+
@_builtins.property
|
|
192
|
+
@pulumi.getter
|
|
193
|
+
def enabled(self) -> Optional[_builtins.bool]:
|
|
194
|
+
"""
|
|
195
|
+
Specifies whether to enable delivery of resource configuration change events. Valid values:
|
|
196
|
+
- true
|
|
197
|
+
- false
|
|
198
|
+
"""
|
|
199
|
+
return pulumi.get(self, "enabled")
|
|
200
|
+
|
|
201
|
+
@_builtins.property
|
|
202
|
+
@pulumi.getter(name="slsProperties")
|
|
203
|
+
def sls_properties(self) -> Optional['outputs.DeliveryChannelResourceChangeDeliverySlsProperties']:
|
|
204
|
+
"""
|
|
205
|
+
The Simple Log Service configurations. See `sls_properties` below.
|
|
206
|
+
"""
|
|
207
|
+
return pulumi.get(self, "sls_properties")
|
|
208
|
+
|
|
209
|
+
@_builtins.property
|
|
210
|
+
@pulumi.getter(name="targetArn")
|
|
211
|
+
def target_arn(self) -> Optional[_builtins.str]:
|
|
212
|
+
"""
|
|
213
|
+
The ARN of the delivery destination.
|
|
214
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
215
|
+
- If you set TargetType to`SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
216
|
+
"""
|
|
217
|
+
return pulumi.get(self, "target_arn")
|
|
218
|
+
|
|
219
|
+
@_builtins.property
|
|
220
|
+
@pulumi.getter(name="targetType")
|
|
221
|
+
def target_type(self) -> Optional[_builtins.str]:
|
|
222
|
+
"""
|
|
223
|
+
The type of the delivery destination.
|
|
224
|
+
|
|
225
|
+
Valid values:
|
|
226
|
+
- SLS
|
|
227
|
+
"""
|
|
228
|
+
return pulumi.get(self, "target_type")
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
@pulumi.output_type
|
|
232
|
+
class DeliveryChannelResourceChangeDeliverySlsProperties(dict):
|
|
233
|
+
@staticmethod
|
|
234
|
+
def __key_warning(key: str):
|
|
235
|
+
suggest = None
|
|
236
|
+
if key == "oversizedDataOssTargetArn":
|
|
237
|
+
suggest = "oversized_data_oss_target_arn"
|
|
238
|
+
|
|
239
|
+
if suggest:
|
|
240
|
+
pulumi.log.warn(f"Key '{key}' not found in DeliveryChannelResourceChangeDeliverySlsProperties. Access the value via the '{suggest}' property getter instead.")
|
|
241
|
+
|
|
242
|
+
def __getitem__(self, key: str) -> Any:
|
|
243
|
+
DeliveryChannelResourceChangeDeliverySlsProperties.__key_warning(key)
|
|
244
|
+
return super().__getitem__(key)
|
|
245
|
+
|
|
246
|
+
def get(self, key: str, default = None) -> Any:
|
|
247
|
+
DeliveryChannelResourceChangeDeliverySlsProperties.__key_warning(key)
|
|
248
|
+
return super().get(key, default)
|
|
249
|
+
|
|
250
|
+
def __init__(__self__, *,
|
|
251
|
+
oversized_data_oss_target_arn: Optional[_builtins.str] = None):
|
|
252
|
+
if oversized_data_oss_target_arn is not None:
|
|
253
|
+
pulumi.set(__self__, "oversized_data_oss_target_arn", oversized_data_oss_target_arn)
|
|
254
|
+
|
|
255
|
+
@_builtins.property
|
|
256
|
+
@pulumi.getter(name="oversizedDataOssTargetArn")
|
|
257
|
+
def oversized_data_oss_target_arn(self) -> Optional[_builtins.str]:
|
|
258
|
+
return pulumi.get(self, "oversized_data_oss_target_arn")
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
@pulumi.output_type
|
|
262
|
+
class DeliveryChannelResourceSnapshotDelivery(dict):
|
|
263
|
+
@staticmethod
|
|
264
|
+
def __key_warning(key: str):
|
|
265
|
+
suggest = None
|
|
266
|
+
if key == "customExpression":
|
|
267
|
+
suggest = "custom_expression"
|
|
268
|
+
elif key == "deliveryTime":
|
|
269
|
+
suggest = "delivery_time"
|
|
270
|
+
elif key == "slsProperties":
|
|
271
|
+
suggest = "sls_properties"
|
|
272
|
+
elif key == "targetArn":
|
|
273
|
+
suggest = "target_arn"
|
|
274
|
+
elif key == "targetType":
|
|
275
|
+
suggest = "target_type"
|
|
276
|
+
|
|
277
|
+
if suggest:
|
|
278
|
+
pulumi.log.warn(f"Key '{key}' not found in DeliveryChannelResourceSnapshotDelivery. Access the value via the '{suggest}' property getter instead.")
|
|
279
|
+
|
|
280
|
+
def __getitem__(self, key: str) -> Any:
|
|
281
|
+
DeliveryChannelResourceSnapshotDelivery.__key_warning(key)
|
|
282
|
+
return super().__getitem__(key)
|
|
283
|
+
|
|
284
|
+
def get(self, key: str, default = None) -> Any:
|
|
285
|
+
DeliveryChannelResourceSnapshotDelivery.__key_warning(key)
|
|
286
|
+
return super().get(key, default)
|
|
287
|
+
|
|
288
|
+
def __init__(__self__, *,
|
|
289
|
+
custom_expression: Optional[_builtins.str] = None,
|
|
290
|
+
delivery_time: Optional[_builtins.str] = None,
|
|
291
|
+
enabled: Optional[_builtins.bool] = None,
|
|
292
|
+
sls_properties: Optional['outputs.DeliveryChannelResourceSnapshotDeliverySlsProperties'] = None,
|
|
293
|
+
target_arn: Optional[_builtins.str] = None,
|
|
294
|
+
target_type: Optional[_builtins.str] = None):
|
|
295
|
+
"""
|
|
296
|
+
:param _builtins.str custom_expression: The custom expression.
|
|
297
|
+
:param _builtins.str delivery_time: The delivery time.
|
|
298
|
+
:param _builtins.bool enabled: Specifies whether to enable delivery of scheduled resource snapshots. Valid values:
|
|
299
|
+
- true
|
|
300
|
+
- false
|
|
301
|
+
:param 'DeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs' sls_properties: The Simple Log Service configurations. See `sls_properties` below.
|
|
302
|
+
:param _builtins.str target_arn: The Alibaba Cloud Resource Name (ARN) of the delivery destination.
|
|
303
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
304
|
+
- If you set TargetType to `SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
305
|
+
:param _builtins.str target_type: The type of the delivery destination.
|
|
306
|
+
|
|
307
|
+
Valid values:
|
|
308
|
+
- `OSS` for standard delivery
|
|
309
|
+
- `OSS` or `SLS` for custom delivery
|
|
310
|
+
"""
|
|
311
|
+
if custom_expression is not None:
|
|
312
|
+
pulumi.set(__self__, "custom_expression", custom_expression)
|
|
313
|
+
if delivery_time is not None:
|
|
314
|
+
pulumi.set(__self__, "delivery_time", delivery_time)
|
|
315
|
+
if enabled is not None:
|
|
316
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
317
|
+
if sls_properties is not None:
|
|
318
|
+
pulumi.set(__self__, "sls_properties", sls_properties)
|
|
319
|
+
if target_arn is not None:
|
|
320
|
+
pulumi.set(__self__, "target_arn", target_arn)
|
|
321
|
+
if target_type is not None:
|
|
322
|
+
pulumi.set(__self__, "target_type", target_type)
|
|
323
|
+
|
|
324
|
+
@_builtins.property
|
|
325
|
+
@pulumi.getter(name="customExpression")
|
|
326
|
+
def custom_expression(self) -> Optional[_builtins.str]:
|
|
327
|
+
"""
|
|
328
|
+
The custom expression.
|
|
329
|
+
"""
|
|
330
|
+
return pulumi.get(self, "custom_expression")
|
|
331
|
+
|
|
332
|
+
@_builtins.property
|
|
333
|
+
@pulumi.getter(name="deliveryTime")
|
|
334
|
+
def delivery_time(self) -> Optional[_builtins.str]:
|
|
335
|
+
"""
|
|
336
|
+
The delivery time.
|
|
337
|
+
"""
|
|
338
|
+
return pulumi.get(self, "delivery_time")
|
|
339
|
+
|
|
340
|
+
@_builtins.property
|
|
341
|
+
@pulumi.getter
|
|
342
|
+
def enabled(self) -> Optional[_builtins.bool]:
|
|
343
|
+
"""
|
|
344
|
+
Specifies whether to enable delivery of scheduled resource snapshots. Valid values:
|
|
345
|
+
- true
|
|
346
|
+
- false
|
|
347
|
+
"""
|
|
348
|
+
return pulumi.get(self, "enabled")
|
|
349
|
+
|
|
350
|
+
@_builtins.property
|
|
351
|
+
@pulumi.getter(name="slsProperties")
|
|
352
|
+
def sls_properties(self) -> Optional['outputs.DeliveryChannelResourceSnapshotDeliverySlsProperties']:
|
|
353
|
+
"""
|
|
354
|
+
The Simple Log Service configurations. See `sls_properties` below.
|
|
355
|
+
"""
|
|
356
|
+
return pulumi.get(self, "sls_properties")
|
|
357
|
+
|
|
358
|
+
@_builtins.property
|
|
359
|
+
@pulumi.getter(name="targetArn")
|
|
360
|
+
def target_arn(self) -> Optional[_builtins.str]:
|
|
361
|
+
"""
|
|
362
|
+
The Alibaba Cloud Resource Name (ARN) of the delivery destination.
|
|
363
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
364
|
+
- If you set TargetType to `SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
365
|
+
"""
|
|
366
|
+
return pulumi.get(self, "target_arn")
|
|
367
|
+
|
|
368
|
+
@_builtins.property
|
|
369
|
+
@pulumi.getter(name="targetType")
|
|
370
|
+
def target_type(self) -> Optional[_builtins.str]:
|
|
371
|
+
"""
|
|
372
|
+
The type of the delivery destination.
|
|
373
|
+
|
|
374
|
+
Valid values:
|
|
375
|
+
- `OSS` for standard delivery
|
|
376
|
+
- `OSS` or `SLS` for custom delivery
|
|
377
|
+
"""
|
|
378
|
+
return pulumi.get(self, "target_type")
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
@pulumi.output_type
|
|
382
|
+
class DeliveryChannelResourceSnapshotDeliverySlsProperties(dict):
|
|
383
|
+
@staticmethod
|
|
384
|
+
def __key_warning(key: str):
|
|
385
|
+
suggest = None
|
|
386
|
+
if key == "oversizedDataOssTargetArn":
|
|
387
|
+
suggest = "oversized_data_oss_target_arn"
|
|
388
|
+
|
|
389
|
+
if suggest:
|
|
390
|
+
pulumi.log.warn(f"Key '{key}' not found in DeliveryChannelResourceSnapshotDeliverySlsProperties. Access the value via the '{suggest}' property getter instead.")
|
|
391
|
+
|
|
392
|
+
def __getitem__(self, key: str) -> Any:
|
|
393
|
+
DeliveryChannelResourceSnapshotDeliverySlsProperties.__key_warning(key)
|
|
394
|
+
return super().__getitem__(key)
|
|
395
|
+
|
|
396
|
+
def get(self, key: str, default = None) -> Any:
|
|
397
|
+
DeliveryChannelResourceSnapshotDeliverySlsProperties.__key_warning(key)
|
|
398
|
+
return super().get(key, default)
|
|
399
|
+
|
|
400
|
+
def __init__(__self__, *,
|
|
401
|
+
oversized_data_oss_target_arn: Optional[_builtins.str] = None):
|
|
402
|
+
if oversized_data_oss_target_arn is not None:
|
|
403
|
+
pulumi.set(__self__, "oversized_data_oss_target_arn", oversized_data_oss_target_arn)
|
|
404
|
+
|
|
405
|
+
@_builtins.property
|
|
406
|
+
@pulumi.getter(name="oversizedDataOssTargetArn")
|
|
407
|
+
def oversized_data_oss_target_arn(self) -> Optional[_builtins.str]:
|
|
408
|
+
return pulumi.get(self, "oversized_data_oss_target_arn")
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
@pulumi.output_type
|
|
412
|
+
class MultiAccountDeliveryChannelDeliveryChannelFilter(dict):
|
|
413
|
+
@staticmethod
|
|
414
|
+
def __key_warning(key: str):
|
|
415
|
+
suggest = None
|
|
416
|
+
if key == "accountScopes":
|
|
417
|
+
suggest = "account_scopes"
|
|
418
|
+
elif key == "resourceTypes":
|
|
419
|
+
suggest = "resource_types"
|
|
420
|
+
|
|
421
|
+
if suggest:
|
|
422
|
+
pulumi.log.warn(f"Key '{key}' not found in MultiAccountDeliveryChannelDeliveryChannelFilter. Access the value via the '{suggest}' property getter instead.")
|
|
423
|
+
|
|
424
|
+
def __getitem__(self, key: str) -> Any:
|
|
425
|
+
MultiAccountDeliveryChannelDeliveryChannelFilter.__key_warning(key)
|
|
426
|
+
return super().__getitem__(key)
|
|
427
|
+
|
|
428
|
+
def get(self, key: str, default = None) -> Any:
|
|
429
|
+
MultiAccountDeliveryChannelDeliveryChannelFilter.__key_warning(key)
|
|
430
|
+
return super().get(key, default)
|
|
431
|
+
|
|
432
|
+
def __init__(__self__, *,
|
|
433
|
+
account_scopes: Sequence[_builtins.str],
|
|
434
|
+
resource_types: Optional[Sequence[_builtins.str]] = None):
|
|
435
|
+
"""
|
|
436
|
+
:param Sequence[_builtins.str] account_scopes: The account scopes of the delivery channel.
|
|
437
|
+
:param Sequence[_builtins.str] resource_types: An array of effective resource types for the delivery channel.
|
|
438
|
+
- Example: ["ACS::VPC::VPC", "ACS::ECS::Instance"].
|
|
439
|
+
- If you want to deliver items of all resource types supported by Resource Center, set this parameter to ["ALL"].
|
|
440
|
+
"""
|
|
441
|
+
pulumi.set(__self__, "account_scopes", account_scopes)
|
|
442
|
+
if resource_types is not None:
|
|
443
|
+
pulumi.set(__self__, "resource_types", resource_types)
|
|
444
|
+
|
|
445
|
+
@_builtins.property
|
|
446
|
+
@pulumi.getter(name="accountScopes")
|
|
447
|
+
def account_scopes(self) -> Sequence[_builtins.str]:
|
|
448
|
+
"""
|
|
449
|
+
The account scopes of the delivery channel.
|
|
450
|
+
"""
|
|
451
|
+
return pulumi.get(self, "account_scopes")
|
|
452
|
+
|
|
453
|
+
@_builtins.property
|
|
454
|
+
@pulumi.getter(name="resourceTypes")
|
|
455
|
+
def resource_types(self) -> Optional[Sequence[_builtins.str]]:
|
|
456
|
+
"""
|
|
457
|
+
An array of effective resource types for the delivery channel.
|
|
458
|
+
- Example: ["ACS::VPC::VPC", "ACS::ECS::Instance"].
|
|
459
|
+
- If you want to deliver items of all resource types supported by Resource Center, set this parameter to ["ALL"].
|
|
460
|
+
"""
|
|
461
|
+
return pulumi.get(self, "resource_types")
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
@pulumi.output_type
|
|
465
|
+
class MultiAccountDeliveryChannelResourceChangeDelivery(dict):
|
|
466
|
+
@staticmethod
|
|
467
|
+
def __key_warning(key: str):
|
|
468
|
+
suggest = None
|
|
469
|
+
if key == "slsProperties":
|
|
470
|
+
suggest = "sls_properties"
|
|
471
|
+
elif key == "targetArn":
|
|
472
|
+
suggest = "target_arn"
|
|
473
|
+
elif key == "targetType":
|
|
474
|
+
suggest = "target_type"
|
|
475
|
+
|
|
476
|
+
if suggest:
|
|
477
|
+
pulumi.log.warn(f"Key '{key}' not found in MultiAccountDeliveryChannelResourceChangeDelivery. Access the value via the '{suggest}' property getter instead.")
|
|
478
|
+
|
|
479
|
+
def __getitem__(self, key: str) -> Any:
|
|
480
|
+
MultiAccountDeliveryChannelResourceChangeDelivery.__key_warning(key)
|
|
481
|
+
return super().__getitem__(key)
|
|
482
|
+
|
|
483
|
+
def get(self, key: str, default = None) -> Any:
|
|
484
|
+
MultiAccountDeliveryChannelResourceChangeDelivery.__key_warning(key)
|
|
485
|
+
return super().get(key, default)
|
|
486
|
+
|
|
487
|
+
def __init__(__self__, *,
|
|
488
|
+
enabled: Optional[_builtins.bool] = None,
|
|
489
|
+
sls_properties: Optional['outputs.MultiAccountDeliveryChannelResourceChangeDeliverySlsProperties'] = None,
|
|
490
|
+
target_arn: Optional[_builtins.str] = None,
|
|
491
|
+
target_type: Optional[_builtins.str] = None):
|
|
492
|
+
"""
|
|
493
|
+
:param _builtins.bool enabled: Specifies whether to enable delivery of resource configuration change events. Valid values:
|
|
494
|
+
- true
|
|
495
|
+
- false
|
|
496
|
+
:param 'MultiAccountDeliveryChannelResourceChangeDeliverySlsPropertiesArgs' sls_properties: The Simple Log Service configurations. See `sls_properties` below.
|
|
497
|
+
:param _builtins.str target_arn: The ARN of the delivery destination.
|
|
498
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
499
|
+
- If you set TargetType to`SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
500
|
+
:param _builtins.str target_type: The type of the delivery destination.
|
|
501
|
+
|
|
502
|
+
Valid values:
|
|
503
|
+
- SLS
|
|
504
|
+
"""
|
|
505
|
+
if enabled is not None:
|
|
506
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
507
|
+
if sls_properties is not None:
|
|
508
|
+
pulumi.set(__self__, "sls_properties", sls_properties)
|
|
509
|
+
if target_arn is not None:
|
|
510
|
+
pulumi.set(__self__, "target_arn", target_arn)
|
|
511
|
+
if target_type is not None:
|
|
512
|
+
pulumi.set(__self__, "target_type", target_type)
|
|
513
|
+
|
|
514
|
+
@_builtins.property
|
|
515
|
+
@pulumi.getter
|
|
516
|
+
def enabled(self) -> Optional[_builtins.bool]:
|
|
517
|
+
"""
|
|
518
|
+
Specifies whether to enable delivery of resource configuration change events. Valid values:
|
|
519
|
+
- true
|
|
520
|
+
- false
|
|
521
|
+
"""
|
|
522
|
+
return pulumi.get(self, "enabled")
|
|
523
|
+
|
|
524
|
+
@_builtins.property
|
|
525
|
+
@pulumi.getter(name="slsProperties")
|
|
526
|
+
def sls_properties(self) -> Optional['outputs.MultiAccountDeliveryChannelResourceChangeDeliverySlsProperties']:
|
|
527
|
+
"""
|
|
528
|
+
The Simple Log Service configurations. See `sls_properties` below.
|
|
529
|
+
"""
|
|
530
|
+
return pulumi.get(self, "sls_properties")
|
|
531
|
+
|
|
532
|
+
@_builtins.property
|
|
533
|
+
@pulumi.getter(name="targetArn")
|
|
534
|
+
def target_arn(self) -> Optional[_builtins.str]:
|
|
535
|
+
"""
|
|
536
|
+
The ARN of the delivery destination.
|
|
537
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
538
|
+
- If you set TargetType to`SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
539
|
+
"""
|
|
540
|
+
return pulumi.get(self, "target_arn")
|
|
541
|
+
|
|
542
|
+
@_builtins.property
|
|
543
|
+
@pulumi.getter(name="targetType")
|
|
544
|
+
def target_type(self) -> Optional[_builtins.str]:
|
|
545
|
+
"""
|
|
546
|
+
The type of the delivery destination.
|
|
547
|
+
|
|
548
|
+
Valid values:
|
|
549
|
+
- SLS
|
|
550
|
+
"""
|
|
551
|
+
return pulumi.get(self, "target_type")
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
@pulumi.output_type
|
|
555
|
+
class MultiAccountDeliveryChannelResourceChangeDeliverySlsProperties(dict):
|
|
556
|
+
@staticmethod
|
|
557
|
+
def __key_warning(key: str):
|
|
558
|
+
suggest = None
|
|
559
|
+
if key == "oversizedDataOssTargetArn":
|
|
560
|
+
suggest = "oversized_data_oss_target_arn"
|
|
561
|
+
|
|
562
|
+
if suggest:
|
|
563
|
+
pulumi.log.warn(f"Key '{key}' not found in MultiAccountDeliveryChannelResourceChangeDeliverySlsProperties. Access the value via the '{suggest}' property getter instead.")
|
|
564
|
+
|
|
565
|
+
def __getitem__(self, key: str) -> Any:
|
|
566
|
+
MultiAccountDeliveryChannelResourceChangeDeliverySlsProperties.__key_warning(key)
|
|
567
|
+
return super().__getitem__(key)
|
|
568
|
+
|
|
569
|
+
def get(self, key: str, default = None) -> Any:
|
|
570
|
+
MultiAccountDeliveryChannelResourceChangeDeliverySlsProperties.__key_warning(key)
|
|
571
|
+
return super().get(key, default)
|
|
572
|
+
|
|
573
|
+
def __init__(__self__, *,
|
|
574
|
+
oversized_data_oss_target_arn: Optional[_builtins.str] = None):
|
|
575
|
+
if oversized_data_oss_target_arn is not None:
|
|
576
|
+
pulumi.set(__self__, "oversized_data_oss_target_arn", oversized_data_oss_target_arn)
|
|
577
|
+
|
|
578
|
+
@_builtins.property
|
|
579
|
+
@pulumi.getter(name="oversizedDataOssTargetArn")
|
|
580
|
+
def oversized_data_oss_target_arn(self) -> Optional[_builtins.str]:
|
|
581
|
+
return pulumi.get(self, "oversized_data_oss_target_arn")
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
@pulumi.output_type
|
|
585
|
+
class MultiAccountDeliveryChannelResourceSnapshotDelivery(dict):
|
|
586
|
+
@staticmethod
|
|
587
|
+
def __key_warning(key: str):
|
|
588
|
+
suggest = None
|
|
589
|
+
if key == "customExpression":
|
|
590
|
+
suggest = "custom_expression"
|
|
591
|
+
elif key == "deliveryTime":
|
|
592
|
+
suggest = "delivery_time"
|
|
593
|
+
elif key == "slsProperties":
|
|
594
|
+
suggest = "sls_properties"
|
|
595
|
+
elif key == "targetArn":
|
|
596
|
+
suggest = "target_arn"
|
|
597
|
+
elif key == "targetType":
|
|
598
|
+
suggest = "target_type"
|
|
599
|
+
|
|
600
|
+
if suggest:
|
|
601
|
+
pulumi.log.warn(f"Key '{key}' not found in MultiAccountDeliveryChannelResourceSnapshotDelivery. Access the value via the '{suggest}' property getter instead.")
|
|
602
|
+
|
|
603
|
+
def __getitem__(self, key: str) -> Any:
|
|
604
|
+
MultiAccountDeliveryChannelResourceSnapshotDelivery.__key_warning(key)
|
|
605
|
+
return super().__getitem__(key)
|
|
606
|
+
|
|
607
|
+
def get(self, key: str, default = None) -> Any:
|
|
608
|
+
MultiAccountDeliveryChannelResourceSnapshotDelivery.__key_warning(key)
|
|
609
|
+
return super().get(key, default)
|
|
610
|
+
|
|
611
|
+
def __init__(__self__, *,
|
|
612
|
+
custom_expression: Optional[_builtins.str] = None,
|
|
613
|
+
delivery_time: Optional[_builtins.str] = None,
|
|
614
|
+
enabled: Optional[_builtins.bool] = None,
|
|
615
|
+
sls_properties: Optional['outputs.MultiAccountDeliveryChannelResourceSnapshotDeliverySlsProperties'] = None,
|
|
616
|
+
target_arn: Optional[_builtins.str] = None,
|
|
617
|
+
target_type: Optional[_builtins.str] = None):
|
|
618
|
+
"""
|
|
619
|
+
:param _builtins.str custom_expression: The custom expression.
|
|
620
|
+
:param _builtins.str delivery_time: The delivery time.
|
|
621
|
+
:param _builtins.bool enabled: Specifies whether to enable delivery of scheduled resource snapshots. Valid values:
|
|
622
|
+
- true
|
|
623
|
+
- false
|
|
624
|
+
:param 'MultiAccountDeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs' sls_properties: The Simple Log Service configurations. See `sls_properties` below.
|
|
625
|
+
:param _builtins.str target_arn: The Alibaba Cloud Resource Name (ARN) of the delivery destination.
|
|
626
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
627
|
+
- If you set TargetType to `SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
628
|
+
:param _builtins.str target_type: The type of the delivery destination.
|
|
629
|
+
|
|
630
|
+
Valid values:
|
|
631
|
+
- `OSS` for standard delivery
|
|
632
|
+
- `OSS` or `SLS` for custom delivery
|
|
633
|
+
"""
|
|
634
|
+
if custom_expression is not None:
|
|
635
|
+
pulumi.set(__self__, "custom_expression", custom_expression)
|
|
636
|
+
if delivery_time is not None:
|
|
637
|
+
pulumi.set(__self__, "delivery_time", delivery_time)
|
|
638
|
+
if enabled is not None:
|
|
639
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
640
|
+
if sls_properties is not None:
|
|
641
|
+
pulumi.set(__self__, "sls_properties", sls_properties)
|
|
642
|
+
if target_arn is not None:
|
|
643
|
+
pulumi.set(__self__, "target_arn", target_arn)
|
|
644
|
+
if target_type is not None:
|
|
645
|
+
pulumi.set(__self__, "target_type", target_type)
|
|
646
|
+
|
|
647
|
+
@_builtins.property
|
|
648
|
+
@pulumi.getter(name="customExpression")
|
|
649
|
+
def custom_expression(self) -> Optional[_builtins.str]:
|
|
650
|
+
"""
|
|
651
|
+
The custom expression.
|
|
652
|
+
"""
|
|
653
|
+
return pulumi.get(self, "custom_expression")
|
|
654
|
+
|
|
655
|
+
@_builtins.property
|
|
656
|
+
@pulumi.getter(name="deliveryTime")
|
|
657
|
+
def delivery_time(self) -> Optional[_builtins.str]:
|
|
658
|
+
"""
|
|
659
|
+
The delivery time.
|
|
660
|
+
"""
|
|
661
|
+
return pulumi.get(self, "delivery_time")
|
|
662
|
+
|
|
663
|
+
@_builtins.property
|
|
664
|
+
@pulumi.getter
|
|
665
|
+
def enabled(self) -> Optional[_builtins.bool]:
|
|
666
|
+
"""
|
|
667
|
+
Specifies whether to enable delivery of scheduled resource snapshots. Valid values:
|
|
668
|
+
- true
|
|
669
|
+
- false
|
|
670
|
+
"""
|
|
671
|
+
return pulumi.get(self, "enabled")
|
|
672
|
+
|
|
673
|
+
@_builtins.property
|
|
674
|
+
@pulumi.getter(name="slsProperties")
|
|
675
|
+
def sls_properties(self) -> Optional['outputs.MultiAccountDeliveryChannelResourceSnapshotDeliverySlsProperties']:
|
|
676
|
+
"""
|
|
677
|
+
The Simple Log Service configurations. See `sls_properties` below.
|
|
678
|
+
"""
|
|
679
|
+
return pulumi.get(self, "sls_properties")
|
|
680
|
+
|
|
681
|
+
@_builtins.property
|
|
682
|
+
@pulumi.getter(name="targetArn")
|
|
683
|
+
def target_arn(self) -> Optional[_builtins.str]:
|
|
684
|
+
"""
|
|
685
|
+
The Alibaba Cloud Resource Name (ARN) of the delivery destination.
|
|
686
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
687
|
+
- If you set TargetType to `SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
688
|
+
"""
|
|
689
|
+
return pulumi.get(self, "target_arn")
|
|
690
|
+
|
|
691
|
+
@_builtins.property
|
|
692
|
+
@pulumi.getter(name="targetType")
|
|
693
|
+
def target_type(self) -> Optional[_builtins.str]:
|
|
694
|
+
"""
|
|
695
|
+
The type of the delivery destination.
|
|
696
|
+
|
|
697
|
+
Valid values:
|
|
698
|
+
- `OSS` for standard delivery
|
|
699
|
+
- `OSS` or `SLS` for custom delivery
|
|
700
|
+
"""
|
|
701
|
+
return pulumi.get(self, "target_type")
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
@pulumi.output_type
|
|
705
|
+
class MultiAccountDeliveryChannelResourceSnapshotDeliverySlsProperties(dict):
|
|
706
|
+
@staticmethod
|
|
707
|
+
def __key_warning(key: str):
|
|
708
|
+
suggest = None
|
|
709
|
+
if key == "oversizedDataOssTargetArn":
|
|
710
|
+
suggest = "oversized_data_oss_target_arn"
|
|
711
|
+
|
|
712
|
+
if suggest:
|
|
713
|
+
pulumi.log.warn(f"Key '{key}' not found in MultiAccountDeliveryChannelResourceSnapshotDeliverySlsProperties. Access the value via the '{suggest}' property getter instead.")
|
|
714
|
+
|
|
715
|
+
def __getitem__(self, key: str) -> Any:
|
|
716
|
+
MultiAccountDeliveryChannelResourceSnapshotDeliverySlsProperties.__key_warning(key)
|
|
717
|
+
return super().__getitem__(key)
|
|
718
|
+
|
|
719
|
+
def get(self, key: str, default = None) -> Any:
|
|
720
|
+
MultiAccountDeliveryChannelResourceSnapshotDeliverySlsProperties.__key_warning(key)
|
|
721
|
+
return super().get(key, default)
|
|
722
|
+
|
|
723
|
+
def __init__(__self__, *,
|
|
724
|
+
oversized_data_oss_target_arn: Optional[_builtins.str] = None):
|
|
725
|
+
if oversized_data_oss_target_arn is not None:
|
|
726
|
+
pulumi.set(__self__, "oversized_data_oss_target_arn", oversized_data_oss_target_arn)
|
|
727
|
+
|
|
728
|
+
@_builtins.property
|
|
729
|
+
@pulumi.getter(name="oversizedDataOssTargetArn")
|
|
730
|
+
def oversized_data_oss_target_arn(self) -> Optional[_builtins.str]:
|
|
731
|
+
return pulumi.get(self, "oversized_data_oss_target_arn")
|
|
732
|
+
|
|
733
|
+
|
|
91
734
|
@pulumi.output_type
|
|
92
735
|
class ResourceGroupRegionStatus(dict):
|
|
93
736
|
@staticmethod
|