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,26 @@ from .. import _utilities
|
|
|
17
17
|
__all__ = [
|
|
18
18
|
'AutoGroupingRuleRuleContentArgs',
|
|
19
19
|
'AutoGroupingRuleRuleContentArgsDict',
|
|
20
|
+
'DeliveryChannelDeliveryChannelFilterArgs',
|
|
21
|
+
'DeliveryChannelDeliveryChannelFilterArgsDict',
|
|
22
|
+
'DeliveryChannelResourceChangeDeliveryArgs',
|
|
23
|
+
'DeliveryChannelResourceChangeDeliveryArgsDict',
|
|
24
|
+
'DeliveryChannelResourceChangeDeliverySlsPropertiesArgs',
|
|
25
|
+
'DeliveryChannelResourceChangeDeliverySlsPropertiesArgsDict',
|
|
26
|
+
'DeliveryChannelResourceSnapshotDeliveryArgs',
|
|
27
|
+
'DeliveryChannelResourceSnapshotDeliveryArgsDict',
|
|
28
|
+
'DeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs',
|
|
29
|
+
'DeliveryChannelResourceSnapshotDeliverySlsPropertiesArgsDict',
|
|
30
|
+
'MultiAccountDeliveryChannelDeliveryChannelFilterArgs',
|
|
31
|
+
'MultiAccountDeliveryChannelDeliveryChannelFilterArgsDict',
|
|
32
|
+
'MultiAccountDeliveryChannelResourceChangeDeliveryArgs',
|
|
33
|
+
'MultiAccountDeliveryChannelResourceChangeDeliveryArgsDict',
|
|
34
|
+
'MultiAccountDeliveryChannelResourceChangeDeliverySlsPropertiesArgs',
|
|
35
|
+
'MultiAccountDeliveryChannelResourceChangeDeliverySlsPropertiesArgsDict',
|
|
36
|
+
'MultiAccountDeliveryChannelResourceSnapshotDeliveryArgs',
|
|
37
|
+
'MultiAccountDeliveryChannelResourceSnapshotDeliveryArgsDict',
|
|
38
|
+
'MultiAccountDeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs',
|
|
39
|
+
'MultiAccountDeliveryChannelResourceSnapshotDeliverySlsPropertiesArgsDict',
|
|
20
40
|
'ResourceGroupRegionStatusArgs',
|
|
21
41
|
'ResourceGroupRegionStatusArgsDict',
|
|
22
42
|
'ResourceShareResourceArgs',
|
|
@@ -76,6 +96,731 @@ class AutoGroupingRuleRuleContentArgs:
|
|
|
76
96
|
pulumi.set(self, "auto_grouping_scope_condition", value)
|
|
77
97
|
|
|
78
98
|
|
|
99
|
+
if not MYPY:
|
|
100
|
+
class DeliveryChannelDeliveryChannelFilterArgsDict(TypedDict):
|
|
101
|
+
resource_types: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
102
|
+
"""
|
|
103
|
+
An array of effective resource types for the delivery channel.
|
|
104
|
+
- Example: ["ACS::VPC::VPC", "ACS::ECS::Instance"].
|
|
105
|
+
- If you want to deliver items of all resource types supported by Resource Center, set this parameter to ["ALL"].
|
|
106
|
+
"""
|
|
107
|
+
elif False:
|
|
108
|
+
DeliveryChannelDeliveryChannelFilterArgsDict: TypeAlias = Mapping[str, Any]
|
|
109
|
+
|
|
110
|
+
@pulumi.input_type
|
|
111
|
+
class DeliveryChannelDeliveryChannelFilterArgs:
|
|
112
|
+
def __init__(__self__, *,
|
|
113
|
+
resource_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
114
|
+
"""
|
|
115
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] resource_types: An array of effective resource types for the delivery channel.
|
|
116
|
+
- Example: ["ACS::VPC::VPC", "ACS::ECS::Instance"].
|
|
117
|
+
- If you want to deliver items of all resource types supported by Resource Center, set this parameter to ["ALL"].
|
|
118
|
+
"""
|
|
119
|
+
if resource_types is not None:
|
|
120
|
+
pulumi.set(__self__, "resource_types", resource_types)
|
|
121
|
+
|
|
122
|
+
@_builtins.property
|
|
123
|
+
@pulumi.getter(name="resourceTypes")
|
|
124
|
+
def resource_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
125
|
+
"""
|
|
126
|
+
An array of effective resource types for the delivery channel.
|
|
127
|
+
- Example: ["ACS::VPC::VPC", "ACS::ECS::Instance"].
|
|
128
|
+
- If you want to deliver items of all resource types supported by Resource Center, set this parameter to ["ALL"].
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "resource_types")
|
|
131
|
+
|
|
132
|
+
@resource_types.setter
|
|
133
|
+
def resource_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
134
|
+
pulumi.set(self, "resource_types", value)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
if not MYPY:
|
|
138
|
+
class DeliveryChannelResourceChangeDeliveryArgsDict(TypedDict):
|
|
139
|
+
enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
|
140
|
+
"""
|
|
141
|
+
Specifies whether to enable delivery of resource configuration change events. Valid values:
|
|
142
|
+
- true
|
|
143
|
+
- false
|
|
144
|
+
"""
|
|
145
|
+
sls_properties: NotRequired[pulumi.Input['DeliveryChannelResourceChangeDeliverySlsPropertiesArgsDict']]
|
|
146
|
+
"""
|
|
147
|
+
The Simple Log Service configurations. See `sls_properties` below.
|
|
148
|
+
"""
|
|
149
|
+
target_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
150
|
+
"""
|
|
151
|
+
The ARN of the delivery destination.
|
|
152
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
153
|
+
- If you set TargetType to`SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
154
|
+
"""
|
|
155
|
+
target_type: NotRequired[pulumi.Input[_builtins.str]]
|
|
156
|
+
"""
|
|
157
|
+
The type of the delivery destination.
|
|
158
|
+
|
|
159
|
+
Valid values:
|
|
160
|
+
- SLS
|
|
161
|
+
"""
|
|
162
|
+
elif False:
|
|
163
|
+
DeliveryChannelResourceChangeDeliveryArgsDict: TypeAlias = Mapping[str, Any]
|
|
164
|
+
|
|
165
|
+
@pulumi.input_type
|
|
166
|
+
class DeliveryChannelResourceChangeDeliveryArgs:
|
|
167
|
+
def __init__(__self__, *,
|
|
168
|
+
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
169
|
+
sls_properties: Optional[pulumi.Input['DeliveryChannelResourceChangeDeliverySlsPropertiesArgs']] = None,
|
|
170
|
+
target_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
171
|
+
target_type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
172
|
+
"""
|
|
173
|
+
:param pulumi.Input[_builtins.bool] enabled: Specifies whether to enable delivery of resource configuration change events. Valid values:
|
|
174
|
+
- true
|
|
175
|
+
- false
|
|
176
|
+
:param pulumi.Input['DeliveryChannelResourceChangeDeliverySlsPropertiesArgs'] sls_properties: The Simple Log Service configurations. See `sls_properties` below.
|
|
177
|
+
:param pulumi.Input[_builtins.str] target_arn: The ARN of the delivery destination.
|
|
178
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
179
|
+
- If you set TargetType to`SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
180
|
+
:param pulumi.Input[_builtins.str] target_type: The type of the delivery destination.
|
|
181
|
+
|
|
182
|
+
Valid values:
|
|
183
|
+
- SLS
|
|
184
|
+
"""
|
|
185
|
+
if enabled is not None:
|
|
186
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
187
|
+
if sls_properties is not None:
|
|
188
|
+
pulumi.set(__self__, "sls_properties", sls_properties)
|
|
189
|
+
if target_arn is not None:
|
|
190
|
+
pulumi.set(__self__, "target_arn", target_arn)
|
|
191
|
+
if target_type is not None:
|
|
192
|
+
pulumi.set(__self__, "target_type", target_type)
|
|
193
|
+
|
|
194
|
+
@_builtins.property
|
|
195
|
+
@pulumi.getter
|
|
196
|
+
def enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
197
|
+
"""
|
|
198
|
+
Specifies whether to enable delivery of resource configuration change events. Valid values:
|
|
199
|
+
- true
|
|
200
|
+
- false
|
|
201
|
+
"""
|
|
202
|
+
return pulumi.get(self, "enabled")
|
|
203
|
+
|
|
204
|
+
@enabled.setter
|
|
205
|
+
def enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
206
|
+
pulumi.set(self, "enabled", value)
|
|
207
|
+
|
|
208
|
+
@_builtins.property
|
|
209
|
+
@pulumi.getter(name="slsProperties")
|
|
210
|
+
def sls_properties(self) -> Optional[pulumi.Input['DeliveryChannelResourceChangeDeliverySlsPropertiesArgs']]:
|
|
211
|
+
"""
|
|
212
|
+
The Simple Log Service configurations. See `sls_properties` below.
|
|
213
|
+
"""
|
|
214
|
+
return pulumi.get(self, "sls_properties")
|
|
215
|
+
|
|
216
|
+
@sls_properties.setter
|
|
217
|
+
def sls_properties(self, value: Optional[pulumi.Input['DeliveryChannelResourceChangeDeliverySlsPropertiesArgs']]):
|
|
218
|
+
pulumi.set(self, "sls_properties", value)
|
|
219
|
+
|
|
220
|
+
@_builtins.property
|
|
221
|
+
@pulumi.getter(name="targetArn")
|
|
222
|
+
def target_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
223
|
+
"""
|
|
224
|
+
The ARN of the delivery destination.
|
|
225
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
226
|
+
- If you set TargetType to`SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
227
|
+
"""
|
|
228
|
+
return pulumi.get(self, "target_arn")
|
|
229
|
+
|
|
230
|
+
@target_arn.setter
|
|
231
|
+
def target_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
232
|
+
pulumi.set(self, "target_arn", value)
|
|
233
|
+
|
|
234
|
+
@_builtins.property
|
|
235
|
+
@pulumi.getter(name="targetType")
|
|
236
|
+
def target_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
237
|
+
"""
|
|
238
|
+
The type of the delivery destination.
|
|
239
|
+
|
|
240
|
+
Valid values:
|
|
241
|
+
- SLS
|
|
242
|
+
"""
|
|
243
|
+
return pulumi.get(self, "target_type")
|
|
244
|
+
|
|
245
|
+
@target_type.setter
|
|
246
|
+
def target_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
247
|
+
pulumi.set(self, "target_type", value)
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
if not MYPY:
|
|
251
|
+
class DeliveryChannelResourceChangeDeliverySlsPropertiesArgsDict(TypedDict):
|
|
252
|
+
oversized_data_oss_target_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
253
|
+
elif False:
|
|
254
|
+
DeliveryChannelResourceChangeDeliverySlsPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
255
|
+
|
|
256
|
+
@pulumi.input_type
|
|
257
|
+
class DeliveryChannelResourceChangeDeliverySlsPropertiesArgs:
|
|
258
|
+
def __init__(__self__, *,
|
|
259
|
+
oversized_data_oss_target_arn: Optional[pulumi.Input[_builtins.str]] = None):
|
|
260
|
+
if oversized_data_oss_target_arn is not None:
|
|
261
|
+
pulumi.set(__self__, "oversized_data_oss_target_arn", oversized_data_oss_target_arn)
|
|
262
|
+
|
|
263
|
+
@_builtins.property
|
|
264
|
+
@pulumi.getter(name="oversizedDataOssTargetArn")
|
|
265
|
+
def oversized_data_oss_target_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
266
|
+
return pulumi.get(self, "oversized_data_oss_target_arn")
|
|
267
|
+
|
|
268
|
+
@oversized_data_oss_target_arn.setter
|
|
269
|
+
def oversized_data_oss_target_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
270
|
+
pulumi.set(self, "oversized_data_oss_target_arn", value)
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
if not MYPY:
|
|
274
|
+
class DeliveryChannelResourceSnapshotDeliveryArgsDict(TypedDict):
|
|
275
|
+
custom_expression: NotRequired[pulumi.Input[_builtins.str]]
|
|
276
|
+
"""
|
|
277
|
+
The custom expression.
|
|
278
|
+
"""
|
|
279
|
+
delivery_time: NotRequired[pulumi.Input[_builtins.str]]
|
|
280
|
+
"""
|
|
281
|
+
The delivery time.
|
|
282
|
+
"""
|
|
283
|
+
enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
|
284
|
+
"""
|
|
285
|
+
Specifies whether to enable delivery of scheduled resource snapshots. Valid values:
|
|
286
|
+
- true
|
|
287
|
+
- false
|
|
288
|
+
"""
|
|
289
|
+
sls_properties: NotRequired[pulumi.Input['DeliveryChannelResourceSnapshotDeliverySlsPropertiesArgsDict']]
|
|
290
|
+
"""
|
|
291
|
+
The Simple Log Service configurations. See `sls_properties` below.
|
|
292
|
+
"""
|
|
293
|
+
target_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
294
|
+
"""
|
|
295
|
+
The Alibaba Cloud Resource Name (ARN) of the delivery destination.
|
|
296
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
297
|
+
- If you set TargetType to `SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
298
|
+
"""
|
|
299
|
+
target_type: NotRequired[pulumi.Input[_builtins.str]]
|
|
300
|
+
"""
|
|
301
|
+
The type of the delivery destination.
|
|
302
|
+
|
|
303
|
+
Valid values:
|
|
304
|
+
- `OSS` for standard delivery
|
|
305
|
+
- `OSS` or `SLS` for custom delivery
|
|
306
|
+
"""
|
|
307
|
+
elif False:
|
|
308
|
+
DeliveryChannelResourceSnapshotDeliveryArgsDict: TypeAlias = Mapping[str, Any]
|
|
309
|
+
|
|
310
|
+
@pulumi.input_type
|
|
311
|
+
class DeliveryChannelResourceSnapshotDeliveryArgs:
|
|
312
|
+
def __init__(__self__, *,
|
|
313
|
+
custom_expression: Optional[pulumi.Input[_builtins.str]] = None,
|
|
314
|
+
delivery_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
315
|
+
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
316
|
+
sls_properties: Optional[pulumi.Input['DeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs']] = None,
|
|
317
|
+
target_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
318
|
+
target_type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
319
|
+
"""
|
|
320
|
+
:param pulumi.Input[_builtins.str] custom_expression: The custom expression.
|
|
321
|
+
:param pulumi.Input[_builtins.str] delivery_time: The delivery time.
|
|
322
|
+
:param pulumi.Input[_builtins.bool] enabled: Specifies whether to enable delivery of scheduled resource snapshots. Valid values:
|
|
323
|
+
- true
|
|
324
|
+
- false
|
|
325
|
+
:param pulumi.Input['DeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs'] sls_properties: The Simple Log Service configurations. See `sls_properties` below.
|
|
326
|
+
:param pulumi.Input[_builtins.str] target_arn: The Alibaba Cloud Resource Name (ARN) of the delivery destination.
|
|
327
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
328
|
+
- If you set TargetType to `SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
329
|
+
:param pulumi.Input[_builtins.str] target_type: The type of the delivery destination.
|
|
330
|
+
|
|
331
|
+
Valid values:
|
|
332
|
+
- `OSS` for standard delivery
|
|
333
|
+
- `OSS` or `SLS` for custom delivery
|
|
334
|
+
"""
|
|
335
|
+
if custom_expression is not None:
|
|
336
|
+
pulumi.set(__self__, "custom_expression", custom_expression)
|
|
337
|
+
if delivery_time is not None:
|
|
338
|
+
pulumi.set(__self__, "delivery_time", delivery_time)
|
|
339
|
+
if enabled is not None:
|
|
340
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
341
|
+
if sls_properties is not None:
|
|
342
|
+
pulumi.set(__self__, "sls_properties", sls_properties)
|
|
343
|
+
if target_arn is not None:
|
|
344
|
+
pulumi.set(__self__, "target_arn", target_arn)
|
|
345
|
+
if target_type is not None:
|
|
346
|
+
pulumi.set(__self__, "target_type", target_type)
|
|
347
|
+
|
|
348
|
+
@_builtins.property
|
|
349
|
+
@pulumi.getter(name="customExpression")
|
|
350
|
+
def custom_expression(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
351
|
+
"""
|
|
352
|
+
The custom expression.
|
|
353
|
+
"""
|
|
354
|
+
return pulumi.get(self, "custom_expression")
|
|
355
|
+
|
|
356
|
+
@custom_expression.setter
|
|
357
|
+
def custom_expression(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
358
|
+
pulumi.set(self, "custom_expression", value)
|
|
359
|
+
|
|
360
|
+
@_builtins.property
|
|
361
|
+
@pulumi.getter(name="deliveryTime")
|
|
362
|
+
def delivery_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
363
|
+
"""
|
|
364
|
+
The delivery time.
|
|
365
|
+
"""
|
|
366
|
+
return pulumi.get(self, "delivery_time")
|
|
367
|
+
|
|
368
|
+
@delivery_time.setter
|
|
369
|
+
def delivery_time(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
370
|
+
pulumi.set(self, "delivery_time", value)
|
|
371
|
+
|
|
372
|
+
@_builtins.property
|
|
373
|
+
@pulumi.getter
|
|
374
|
+
def enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
375
|
+
"""
|
|
376
|
+
Specifies whether to enable delivery of scheduled resource snapshots. Valid values:
|
|
377
|
+
- true
|
|
378
|
+
- false
|
|
379
|
+
"""
|
|
380
|
+
return pulumi.get(self, "enabled")
|
|
381
|
+
|
|
382
|
+
@enabled.setter
|
|
383
|
+
def enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
384
|
+
pulumi.set(self, "enabled", value)
|
|
385
|
+
|
|
386
|
+
@_builtins.property
|
|
387
|
+
@pulumi.getter(name="slsProperties")
|
|
388
|
+
def sls_properties(self) -> Optional[pulumi.Input['DeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs']]:
|
|
389
|
+
"""
|
|
390
|
+
The Simple Log Service configurations. See `sls_properties` below.
|
|
391
|
+
"""
|
|
392
|
+
return pulumi.get(self, "sls_properties")
|
|
393
|
+
|
|
394
|
+
@sls_properties.setter
|
|
395
|
+
def sls_properties(self, value: Optional[pulumi.Input['DeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs']]):
|
|
396
|
+
pulumi.set(self, "sls_properties", value)
|
|
397
|
+
|
|
398
|
+
@_builtins.property
|
|
399
|
+
@pulumi.getter(name="targetArn")
|
|
400
|
+
def target_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
401
|
+
"""
|
|
402
|
+
The Alibaba Cloud Resource Name (ARN) of the delivery destination.
|
|
403
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
404
|
+
- If you set TargetType to `SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
405
|
+
"""
|
|
406
|
+
return pulumi.get(self, "target_arn")
|
|
407
|
+
|
|
408
|
+
@target_arn.setter
|
|
409
|
+
def target_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
410
|
+
pulumi.set(self, "target_arn", value)
|
|
411
|
+
|
|
412
|
+
@_builtins.property
|
|
413
|
+
@pulumi.getter(name="targetType")
|
|
414
|
+
def target_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
415
|
+
"""
|
|
416
|
+
The type of the delivery destination.
|
|
417
|
+
|
|
418
|
+
Valid values:
|
|
419
|
+
- `OSS` for standard delivery
|
|
420
|
+
- `OSS` or `SLS` for custom delivery
|
|
421
|
+
"""
|
|
422
|
+
return pulumi.get(self, "target_type")
|
|
423
|
+
|
|
424
|
+
@target_type.setter
|
|
425
|
+
def target_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
426
|
+
pulumi.set(self, "target_type", value)
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
if not MYPY:
|
|
430
|
+
class DeliveryChannelResourceSnapshotDeliverySlsPropertiesArgsDict(TypedDict):
|
|
431
|
+
oversized_data_oss_target_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
432
|
+
elif False:
|
|
433
|
+
DeliveryChannelResourceSnapshotDeliverySlsPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
434
|
+
|
|
435
|
+
@pulumi.input_type
|
|
436
|
+
class DeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs:
|
|
437
|
+
def __init__(__self__, *,
|
|
438
|
+
oversized_data_oss_target_arn: Optional[pulumi.Input[_builtins.str]] = None):
|
|
439
|
+
if oversized_data_oss_target_arn is not None:
|
|
440
|
+
pulumi.set(__self__, "oversized_data_oss_target_arn", oversized_data_oss_target_arn)
|
|
441
|
+
|
|
442
|
+
@_builtins.property
|
|
443
|
+
@pulumi.getter(name="oversizedDataOssTargetArn")
|
|
444
|
+
def oversized_data_oss_target_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
445
|
+
return pulumi.get(self, "oversized_data_oss_target_arn")
|
|
446
|
+
|
|
447
|
+
@oversized_data_oss_target_arn.setter
|
|
448
|
+
def oversized_data_oss_target_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
449
|
+
pulumi.set(self, "oversized_data_oss_target_arn", value)
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
if not MYPY:
|
|
453
|
+
class MultiAccountDeliveryChannelDeliveryChannelFilterArgsDict(TypedDict):
|
|
454
|
+
account_scopes: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
455
|
+
"""
|
|
456
|
+
The account scopes of the delivery channel.
|
|
457
|
+
"""
|
|
458
|
+
resource_types: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
459
|
+
"""
|
|
460
|
+
An array of effective resource types for the delivery channel.
|
|
461
|
+
- Example: ["ACS::VPC::VPC", "ACS::ECS::Instance"].
|
|
462
|
+
- If you want to deliver items of all resource types supported by Resource Center, set this parameter to ["ALL"].
|
|
463
|
+
"""
|
|
464
|
+
elif False:
|
|
465
|
+
MultiAccountDeliveryChannelDeliveryChannelFilterArgsDict: TypeAlias = Mapping[str, Any]
|
|
466
|
+
|
|
467
|
+
@pulumi.input_type
|
|
468
|
+
class MultiAccountDeliveryChannelDeliveryChannelFilterArgs:
|
|
469
|
+
def __init__(__self__, *,
|
|
470
|
+
account_scopes: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
471
|
+
resource_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
472
|
+
"""
|
|
473
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] account_scopes: The account scopes of the delivery channel.
|
|
474
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] resource_types: An array of effective resource types for the delivery channel.
|
|
475
|
+
- Example: ["ACS::VPC::VPC", "ACS::ECS::Instance"].
|
|
476
|
+
- If you want to deliver items of all resource types supported by Resource Center, set this parameter to ["ALL"].
|
|
477
|
+
"""
|
|
478
|
+
pulumi.set(__self__, "account_scopes", account_scopes)
|
|
479
|
+
if resource_types is not None:
|
|
480
|
+
pulumi.set(__self__, "resource_types", resource_types)
|
|
481
|
+
|
|
482
|
+
@_builtins.property
|
|
483
|
+
@pulumi.getter(name="accountScopes")
|
|
484
|
+
def account_scopes(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
485
|
+
"""
|
|
486
|
+
The account scopes of the delivery channel.
|
|
487
|
+
"""
|
|
488
|
+
return pulumi.get(self, "account_scopes")
|
|
489
|
+
|
|
490
|
+
@account_scopes.setter
|
|
491
|
+
def account_scopes(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
492
|
+
pulumi.set(self, "account_scopes", value)
|
|
493
|
+
|
|
494
|
+
@_builtins.property
|
|
495
|
+
@pulumi.getter(name="resourceTypes")
|
|
496
|
+
def resource_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
497
|
+
"""
|
|
498
|
+
An array of effective resource types for the delivery channel.
|
|
499
|
+
- Example: ["ACS::VPC::VPC", "ACS::ECS::Instance"].
|
|
500
|
+
- If you want to deliver items of all resource types supported by Resource Center, set this parameter to ["ALL"].
|
|
501
|
+
"""
|
|
502
|
+
return pulumi.get(self, "resource_types")
|
|
503
|
+
|
|
504
|
+
@resource_types.setter
|
|
505
|
+
def resource_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
506
|
+
pulumi.set(self, "resource_types", value)
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
if not MYPY:
|
|
510
|
+
class MultiAccountDeliveryChannelResourceChangeDeliveryArgsDict(TypedDict):
|
|
511
|
+
enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
|
512
|
+
"""
|
|
513
|
+
Specifies whether to enable delivery of resource configuration change events. Valid values:
|
|
514
|
+
- true
|
|
515
|
+
- false
|
|
516
|
+
"""
|
|
517
|
+
sls_properties: NotRequired[pulumi.Input['MultiAccountDeliveryChannelResourceChangeDeliverySlsPropertiesArgsDict']]
|
|
518
|
+
"""
|
|
519
|
+
The Simple Log Service configurations. See `sls_properties` below.
|
|
520
|
+
"""
|
|
521
|
+
target_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
522
|
+
"""
|
|
523
|
+
The ARN of the delivery destination.
|
|
524
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
525
|
+
- If you set TargetType to`SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
526
|
+
"""
|
|
527
|
+
target_type: NotRequired[pulumi.Input[_builtins.str]]
|
|
528
|
+
"""
|
|
529
|
+
The type of the delivery destination.
|
|
530
|
+
|
|
531
|
+
Valid values:
|
|
532
|
+
- SLS
|
|
533
|
+
"""
|
|
534
|
+
elif False:
|
|
535
|
+
MultiAccountDeliveryChannelResourceChangeDeliveryArgsDict: TypeAlias = Mapping[str, Any]
|
|
536
|
+
|
|
537
|
+
@pulumi.input_type
|
|
538
|
+
class MultiAccountDeliveryChannelResourceChangeDeliveryArgs:
|
|
539
|
+
def __init__(__self__, *,
|
|
540
|
+
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
541
|
+
sls_properties: Optional[pulumi.Input['MultiAccountDeliveryChannelResourceChangeDeliverySlsPropertiesArgs']] = None,
|
|
542
|
+
target_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
543
|
+
target_type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
544
|
+
"""
|
|
545
|
+
:param pulumi.Input[_builtins.bool] enabled: Specifies whether to enable delivery of resource configuration change events. Valid values:
|
|
546
|
+
- true
|
|
547
|
+
- false
|
|
548
|
+
:param pulumi.Input['MultiAccountDeliveryChannelResourceChangeDeliverySlsPropertiesArgs'] sls_properties: The Simple Log Service configurations. See `sls_properties` below.
|
|
549
|
+
:param pulumi.Input[_builtins.str] target_arn: The ARN of the delivery destination.
|
|
550
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
551
|
+
- If you set TargetType to`SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
552
|
+
:param pulumi.Input[_builtins.str] target_type: The type of the delivery destination.
|
|
553
|
+
|
|
554
|
+
Valid values:
|
|
555
|
+
- SLS
|
|
556
|
+
"""
|
|
557
|
+
if enabled is not None:
|
|
558
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
559
|
+
if sls_properties is not None:
|
|
560
|
+
pulumi.set(__self__, "sls_properties", sls_properties)
|
|
561
|
+
if target_arn is not None:
|
|
562
|
+
pulumi.set(__self__, "target_arn", target_arn)
|
|
563
|
+
if target_type is not None:
|
|
564
|
+
pulumi.set(__self__, "target_type", target_type)
|
|
565
|
+
|
|
566
|
+
@_builtins.property
|
|
567
|
+
@pulumi.getter
|
|
568
|
+
def enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
569
|
+
"""
|
|
570
|
+
Specifies whether to enable delivery of resource configuration change events. Valid values:
|
|
571
|
+
- true
|
|
572
|
+
- false
|
|
573
|
+
"""
|
|
574
|
+
return pulumi.get(self, "enabled")
|
|
575
|
+
|
|
576
|
+
@enabled.setter
|
|
577
|
+
def enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
578
|
+
pulumi.set(self, "enabled", value)
|
|
579
|
+
|
|
580
|
+
@_builtins.property
|
|
581
|
+
@pulumi.getter(name="slsProperties")
|
|
582
|
+
def sls_properties(self) -> Optional[pulumi.Input['MultiAccountDeliveryChannelResourceChangeDeliverySlsPropertiesArgs']]:
|
|
583
|
+
"""
|
|
584
|
+
The Simple Log Service configurations. See `sls_properties` below.
|
|
585
|
+
"""
|
|
586
|
+
return pulumi.get(self, "sls_properties")
|
|
587
|
+
|
|
588
|
+
@sls_properties.setter
|
|
589
|
+
def sls_properties(self, value: Optional[pulumi.Input['MultiAccountDeliveryChannelResourceChangeDeliverySlsPropertiesArgs']]):
|
|
590
|
+
pulumi.set(self, "sls_properties", value)
|
|
591
|
+
|
|
592
|
+
@_builtins.property
|
|
593
|
+
@pulumi.getter(name="targetArn")
|
|
594
|
+
def target_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
595
|
+
"""
|
|
596
|
+
The ARN of the delivery destination.
|
|
597
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
598
|
+
- If you set TargetType to`SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
599
|
+
"""
|
|
600
|
+
return pulumi.get(self, "target_arn")
|
|
601
|
+
|
|
602
|
+
@target_arn.setter
|
|
603
|
+
def target_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
604
|
+
pulumi.set(self, "target_arn", value)
|
|
605
|
+
|
|
606
|
+
@_builtins.property
|
|
607
|
+
@pulumi.getter(name="targetType")
|
|
608
|
+
def target_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
609
|
+
"""
|
|
610
|
+
The type of the delivery destination.
|
|
611
|
+
|
|
612
|
+
Valid values:
|
|
613
|
+
- SLS
|
|
614
|
+
"""
|
|
615
|
+
return pulumi.get(self, "target_type")
|
|
616
|
+
|
|
617
|
+
@target_type.setter
|
|
618
|
+
def target_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
619
|
+
pulumi.set(self, "target_type", value)
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
if not MYPY:
|
|
623
|
+
class MultiAccountDeliveryChannelResourceChangeDeliverySlsPropertiesArgsDict(TypedDict):
|
|
624
|
+
oversized_data_oss_target_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
625
|
+
elif False:
|
|
626
|
+
MultiAccountDeliveryChannelResourceChangeDeliverySlsPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
627
|
+
|
|
628
|
+
@pulumi.input_type
|
|
629
|
+
class MultiAccountDeliveryChannelResourceChangeDeliverySlsPropertiesArgs:
|
|
630
|
+
def __init__(__self__, *,
|
|
631
|
+
oversized_data_oss_target_arn: Optional[pulumi.Input[_builtins.str]] = None):
|
|
632
|
+
if oversized_data_oss_target_arn is not None:
|
|
633
|
+
pulumi.set(__self__, "oversized_data_oss_target_arn", oversized_data_oss_target_arn)
|
|
634
|
+
|
|
635
|
+
@_builtins.property
|
|
636
|
+
@pulumi.getter(name="oversizedDataOssTargetArn")
|
|
637
|
+
def oversized_data_oss_target_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
638
|
+
return pulumi.get(self, "oversized_data_oss_target_arn")
|
|
639
|
+
|
|
640
|
+
@oversized_data_oss_target_arn.setter
|
|
641
|
+
def oversized_data_oss_target_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
642
|
+
pulumi.set(self, "oversized_data_oss_target_arn", value)
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
if not MYPY:
|
|
646
|
+
class MultiAccountDeliveryChannelResourceSnapshotDeliveryArgsDict(TypedDict):
|
|
647
|
+
custom_expression: NotRequired[pulumi.Input[_builtins.str]]
|
|
648
|
+
"""
|
|
649
|
+
The custom expression.
|
|
650
|
+
"""
|
|
651
|
+
delivery_time: NotRequired[pulumi.Input[_builtins.str]]
|
|
652
|
+
"""
|
|
653
|
+
The delivery time.
|
|
654
|
+
"""
|
|
655
|
+
enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
|
656
|
+
"""
|
|
657
|
+
Specifies whether to enable delivery of scheduled resource snapshots. Valid values:
|
|
658
|
+
- true
|
|
659
|
+
- false
|
|
660
|
+
"""
|
|
661
|
+
sls_properties: NotRequired[pulumi.Input['MultiAccountDeliveryChannelResourceSnapshotDeliverySlsPropertiesArgsDict']]
|
|
662
|
+
"""
|
|
663
|
+
The Simple Log Service configurations. See `sls_properties` below.
|
|
664
|
+
"""
|
|
665
|
+
target_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
666
|
+
"""
|
|
667
|
+
The Alibaba Cloud Resource Name (ARN) of the delivery destination.
|
|
668
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
669
|
+
- If you set TargetType to `SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
670
|
+
"""
|
|
671
|
+
target_type: NotRequired[pulumi.Input[_builtins.str]]
|
|
672
|
+
"""
|
|
673
|
+
The type of the delivery destination.
|
|
674
|
+
|
|
675
|
+
Valid values:
|
|
676
|
+
- `OSS` for standard delivery
|
|
677
|
+
- `OSS` or `SLS` for custom delivery
|
|
678
|
+
"""
|
|
679
|
+
elif False:
|
|
680
|
+
MultiAccountDeliveryChannelResourceSnapshotDeliveryArgsDict: TypeAlias = Mapping[str, Any]
|
|
681
|
+
|
|
682
|
+
@pulumi.input_type
|
|
683
|
+
class MultiAccountDeliveryChannelResourceSnapshotDeliveryArgs:
|
|
684
|
+
def __init__(__self__, *,
|
|
685
|
+
custom_expression: Optional[pulumi.Input[_builtins.str]] = None,
|
|
686
|
+
delivery_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
687
|
+
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
688
|
+
sls_properties: Optional[pulumi.Input['MultiAccountDeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs']] = None,
|
|
689
|
+
target_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
690
|
+
target_type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
691
|
+
"""
|
|
692
|
+
:param pulumi.Input[_builtins.str] custom_expression: The custom expression.
|
|
693
|
+
:param pulumi.Input[_builtins.str] delivery_time: The delivery time.
|
|
694
|
+
:param pulumi.Input[_builtins.bool] enabled: Specifies whether to enable delivery of scheduled resource snapshots. Valid values:
|
|
695
|
+
- true
|
|
696
|
+
- false
|
|
697
|
+
:param pulumi.Input['MultiAccountDeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs'] sls_properties: The Simple Log Service configurations. See `sls_properties` below.
|
|
698
|
+
:param pulumi.Input[_builtins.str] target_arn: The Alibaba Cloud Resource Name (ARN) of the delivery destination.
|
|
699
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
700
|
+
- If you set TargetType to `SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
701
|
+
:param pulumi.Input[_builtins.str] target_type: The type of the delivery destination.
|
|
702
|
+
|
|
703
|
+
Valid values:
|
|
704
|
+
- `OSS` for standard delivery
|
|
705
|
+
- `OSS` or `SLS` for custom delivery
|
|
706
|
+
"""
|
|
707
|
+
if custom_expression is not None:
|
|
708
|
+
pulumi.set(__self__, "custom_expression", custom_expression)
|
|
709
|
+
if delivery_time is not None:
|
|
710
|
+
pulumi.set(__self__, "delivery_time", delivery_time)
|
|
711
|
+
if enabled is not None:
|
|
712
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
713
|
+
if sls_properties is not None:
|
|
714
|
+
pulumi.set(__self__, "sls_properties", sls_properties)
|
|
715
|
+
if target_arn is not None:
|
|
716
|
+
pulumi.set(__self__, "target_arn", target_arn)
|
|
717
|
+
if target_type is not None:
|
|
718
|
+
pulumi.set(__self__, "target_type", target_type)
|
|
719
|
+
|
|
720
|
+
@_builtins.property
|
|
721
|
+
@pulumi.getter(name="customExpression")
|
|
722
|
+
def custom_expression(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
723
|
+
"""
|
|
724
|
+
The custom expression.
|
|
725
|
+
"""
|
|
726
|
+
return pulumi.get(self, "custom_expression")
|
|
727
|
+
|
|
728
|
+
@custom_expression.setter
|
|
729
|
+
def custom_expression(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
730
|
+
pulumi.set(self, "custom_expression", value)
|
|
731
|
+
|
|
732
|
+
@_builtins.property
|
|
733
|
+
@pulumi.getter(name="deliveryTime")
|
|
734
|
+
def delivery_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
735
|
+
"""
|
|
736
|
+
The delivery time.
|
|
737
|
+
"""
|
|
738
|
+
return pulumi.get(self, "delivery_time")
|
|
739
|
+
|
|
740
|
+
@delivery_time.setter
|
|
741
|
+
def delivery_time(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
742
|
+
pulumi.set(self, "delivery_time", value)
|
|
743
|
+
|
|
744
|
+
@_builtins.property
|
|
745
|
+
@pulumi.getter
|
|
746
|
+
def enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
747
|
+
"""
|
|
748
|
+
Specifies whether to enable delivery of scheduled resource snapshots. Valid values:
|
|
749
|
+
- true
|
|
750
|
+
- false
|
|
751
|
+
"""
|
|
752
|
+
return pulumi.get(self, "enabled")
|
|
753
|
+
|
|
754
|
+
@enabled.setter
|
|
755
|
+
def enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
756
|
+
pulumi.set(self, "enabled", value)
|
|
757
|
+
|
|
758
|
+
@_builtins.property
|
|
759
|
+
@pulumi.getter(name="slsProperties")
|
|
760
|
+
def sls_properties(self) -> Optional[pulumi.Input['MultiAccountDeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs']]:
|
|
761
|
+
"""
|
|
762
|
+
The Simple Log Service configurations. See `sls_properties` below.
|
|
763
|
+
"""
|
|
764
|
+
return pulumi.get(self, "sls_properties")
|
|
765
|
+
|
|
766
|
+
@sls_properties.setter
|
|
767
|
+
def sls_properties(self, value: Optional[pulumi.Input['MultiAccountDeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs']]):
|
|
768
|
+
pulumi.set(self, "sls_properties", value)
|
|
769
|
+
|
|
770
|
+
@_builtins.property
|
|
771
|
+
@pulumi.getter(name="targetArn")
|
|
772
|
+
def target_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
773
|
+
"""
|
|
774
|
+
The Alibaba Cloud Resource Name (ARN) of the delivery destination.
|
|
775
|
+
- If you set TargetType to`OSS`, you must set TargetArn to the ARN of a bucket whose name is prefixed with `resourcecenter-`.
|
|
776
|
+
- If you set TargetType to `SLS`, you must set TargetArn to the ARN of a Logstore whose name is prefixed with `resourcecenter-`.
|
|
777
|
+
"""
|
|
778
|
+
return pulumi.get(self, "target_arn")
|
|
779
|
+
|
|
780
|
+
@target_arn.setter
|
|
781
|
+
def target_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
782
|
+
pulumi.set(self, "target_arn", value)
|
|
783
|
+
|
|
784
|
+
@_builtins.property
|
|
785
|
+
@pulumi.getter(name="targetType")
|
|
786
|
+
def target_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
787
|
+
"""
|
|
788
|
+
The type of the delivery destination.
|
|
789
|
+
|
|
790
|
+
Valid values:
|
|
791
|
+
- `OSS` for standard delivery
|
|
792
|
+
- `OSS` or `SLS` for custom delivery
|
|
793
|
+
"""
|
|
794
|
+
return pulumi.get(self, "target_type")
|
|
795
|
+
|
|
796
|
+
@target_type.setter
|
|
797
|
+
def target_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
798
|
+
pulumi.set(self, "target_type", value)
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
if not MYPY:
|
|
802
|
+
class MultiAccountDeliveryChannelResourceSnapshotDeliverySlsPropertiesArgsDict(TypedDict):
|
|
803
|
+
oversized_data_oss_target_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
804
|
+
elif False:
|
|
805
|
+
MultiAccountDeliveryChannelResourceSnapshotDeliverySlsPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
806
|
+
|
|
807
|
+
@pulumi.input_type
|
|
808
|
+
class MultiAccountDeliveryChannelResourceSnapshotDeliverySlsPropertiesArgs:
|
|
809
|
+
def __init__(__self__, *,
|
|
810
|
+
oversized_data_oss_target_arn: Optional[pulumi.Input[_builtins.str]] = None):
|
|
811
|
+
if oversized_data_oss_target_arn is not None:
|
|
812
|
+
pulumi.set(__self__, "oversized_data_oss_target_arn", oversized_data_oss_target_arn)
|
|
813
|
+
|
|
814
|
+
@_builtins.property
|
|
815
|
+
@pulumi.getter(name="oversizedDataOssTargetArn")
|
|
816
|
+
def oversized_data_oss_target_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
817
|
+
return pulumi.get(self, "oversized_data_oss_target_arn")
|
|
818
|
+
|
|
819
|
+
@oversized_data_oss_target_arn.setter
|
|
820
|
+
def oversized_data_oss_target_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
821
|
+
pulumi.set(self, "oversized_data_oss_target_arn", value)
|
|
822
|
+
|
|
823
|
+
|
|
79
824
|
if not MYPY:
|
|
80
825
|
class ResourceGroupRegionStatusArgsDict(TypedDict):
|
|
81
826
|
region_id: NotRequired[pulumi.Input[_builtins.str]]
|