pulumi-alicloud 3.68.0a1732771126__py3-none-any.whl → 3.69.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +96 -0
- pulumi_alicloud/adb/db_cluster.py +7 -0
- pulumi_alicloud/arms/__init__.py +2 -0
- pulumi_alicloud/arms/_inputs.py +42 -4
- pulumi_alicloud/arms/alert_robot.py +421 -0
- pulumi_alicloud/arms/dispatch_rule.py +4 -0
- pulumi_alicloud/arms/get_alert_robots.py +230 -0
- pulumi_alicloud/arms/get_dispatch_rules.py +99 -6
- pulumi_alicloud/arms/outputs.py +154 -13
- pulumi_alicloud/cdn/_inputs.py +3 -23
- pulumi_alicloud/cdn/domain_new.py +93 -51
- pulumi_alicloud/cdn/outputs.py +2 -16
- pulumi_alicloud/cdn/real_time_log_delivery.py +97 -46
- pulumi_alicloud/cen/get_flowlogs.py +250 -35
- pulumi_alicloud/cen/outputs.py +116 -17
- pulumi_alicloud/cfg/rule.py +4 -4
- pulumi_alicloud/cs/autoscaling_config.py +51 -0
- pulumi_alicloud/cs/node_pool.py +7 -0
- pulumi_alicloud/dataworks/__init__.py +4 -0
- pulumi_alicloud/dataworks/_inputs.py +95 -0
- pulumi_alicloud/dataworks/data_source.py +686 -0
- pulumi_alicloud/dataworks/data_source_shared_rule.py +378 -0
- pulumi_alicloud/dataworks/outputs.py +44 -0
- pulumi_alicloud/dataworks/project.py +294 -140
- pulumi_alicloud/dataworks/project_member.py +380 -0
- pulumi_alicloud/ecs/__init__.py +1 -0
- pulumi_alicloud/ecs/_inputs.py +126 -0
- pulumi_alicloud/ecs/auto_snapshot_policy.py +323 -129
- pulumi_alicloud/ecs/disk.py +156 -14
- pulumi_alicloud/ecs/ecs_disk.py +308 -97
- pulumi_alicloud/ecs/ecs_key_pair.py +77 -49
- pulumi_alicloud/ecs/image_pipeline_execution.py +245 -0
- pulumi_alicloud/ecs/instance.py +145 -0
- pulumi_alicloud/ecs/key_pair.py +27 -7
- pulumi_alicloud/ecs/outputs.py +125 -0
- pulumi_alicloud/ecs/snapshot_policy.py +154 -1
- pulumi_alicloud/emrv2/_inputs.py +875 -21
- pulumi_alicloud/emrv2/cluster.py +47 -0
- pulumi_alicloud/emrv2/outputs.py +580 -14
- pulumi_alicloud/gwlb/__init__.py +1 -0
- pulumi_alicloud/gwlb/_inputs.py +147 -126
- pulumi_alicloud/gwlb/get_zones.py +173 -0
- pulumi_alicloud/gwlb/listener.py +50 -50
- pulumi_alicloud/gwlb/load_balancer.py +78 -71
- pulumi_alicloud/gwlb/outputs.py +139 -84
- pulumi_alicloud/gwlb/server_group.py +162 -113
- pulumi_alicloud/kvstore/audit_log_config.py +7 -7
- pulumi_alicloud/kvstore/backup_policy.py +9 -9
- pulumi_alicloud/kvstore/get_instance_classes.py +8 -8
- pulumi_alicloud/kvstore/get_instances.py +9 -7
- pulumi_alicloud/kvstore/instance.py +21 -21
- pulumi_alicloud/kvstore/outputs.py +6 -6
- pulumi_alicloud/nas/_inputs.py +148 -0
- pulumi_alicloud/nas/file_system.py +482 -222
- pulumi_alicloud/nas/outputs.py +109 -0
- pulumi_alicloud/oss/__init__.py +1 -0
- pulumi_alicloud/oss/_inputs.py +1750 -0
- pulumi_alicloud/oss/bucket_website.py +416 -0
- pulumi_alicloud/oss/outputs.py +1338 -0
- pulumi_alicloud/pai/__init__.py +7 -0
- pulumi_alicloud/pai/_inputs.py +129 -0
- pulumi_alicloud/pai/outputs.py +83 -0
- pulumi_alicloud/pai/workspace_code_source.py +702 -0
- pulumi_alicloud/pai/workspace_dataset.py +1081 -0
- pulumi_alicloud/pai/workspace_datasetversion.py +818 -0
- pulumi_alicloud/pai/workspace_experiment.py +394 -0
- pulumi_alicloud/pai/workspace_run.py +344 -0
- pulumi_alicloud/pai/workspace_workspace.py +6 -6
- pulumi_alicloud/polardb/cluster.py +7 -7
- pulumi_alicloud/polardb/get_clusters.py +1 -1
- pulumi_alicloud/polardb/outputs.py +2 -2
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/redis/tair_instance.py +63 -30
- pulumi_alicloud/sae/application.py +1 -1
- pulumi_alicloud/slb/attachment.py +2 -6
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/_inputs.py +484 -0
- pulumi_alicloud/sls/oss_export_sink.py +428 -0
- pulumi_alicloud/sls/outputs.py +346 -0
- pulumi_alicloud/vpc/network.py +7 -7
- {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.69.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.69.0.dist-info}/RECORD +84 -67
- {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.69.0.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.69.0.dist-info}/top_level.txt +0 -0
|
@@ -56,6 +56,9 @@ class GetDispatchRulesResult:
|
|
|
56
56
|
@property
|
|
57
57
|
@pulumi.getter(name="dispatchRuleName")
|
|
58
58
|
def dispatch_rule_name(self) -> Optional[str]:
|
|
59
|
+
"""
|
|
60
|
+
The name of the dispatch rule.
|
|
61
|
+
"""
|
|
59
62
|
return pulumi.get(self, "dispatch_rule_name")
|
|
60
63
|
|
|
61
64
|
@property
|
|
@@ -84,6 +87,9 @@ class GetDispatchRulesResult:
|
|
|
84
87
|
@property
|
|
85
88
|
@pulumi.getter
|
|
86
89
|
def names(self) -> Sequence[str]:
|
|
90
|
+
"""
|
|
91
|
+
A list of Dispatch Rule names.
|
|
92
|
+
"""
|
|
87
93
|
return pulumi.get(self, "names")
|
|
88
94
|
|
|
89
95
|
@property
|
|
@@ -94,6 +100,9 @@ class GetDispatchRulesResult:
|
|
|
94
100
|
@property
|
|
95
101
|
@pulumi.getter
|
|
96
102
|
def rules(self) -> Sequence['outputs.GetDispatchRulesRuleResult']:
|
|
103
|
+
"""
|
|
104
|
+
A list of Arms Dispatch Rules. Each element contains the following attributes:
|
|
105
|
+
"""
|
|
97
106
|
return pulumi.get(self, "rules")
|
|
98
107
|
|
|
99
108
|
|
|
@@ -122,7 +131,7 @@ def get_dispatch_rules(dispatch_rule_name: Optional[str] = None,
|
|
|
122
131
|
"""
|
|
123
132
|
This data source provides the Arms Dispatch Rules of the current Alibaba Cloud user.
|
|
124
133
|
|
|
125
|
-
> **NOTE:** Available
|
|
134
|
+
> **NOTE:** Available since v1.136.0.
|
|
126
135
|
|
|
127
136
|
## Example Usage
|
|
128
137
|
|
|
@@ -132,10 +141,52 @@ def get_dispatch_rules(dispatch_rule_name: Optional[str] = None,
|
|
|
132
141
|
import pulumi
|
|
133
142
|
import pulumi_alicloud as alicloud
|
|
134
143
|
|
|
144
|
+
default = alicloud.arms.AlertContact("default",
|
|
145
|
+
alert_contact_name="example_value",
|
|
146
|
+
email="example_value@aaa.com")
|
|
147
|
+
default_alert_contact_group = alicloud.arms.AlertContactGroup("default",
|
|
148
|
+
alert_contact_group_name="example_value",
|
|
149
|
+
contact_ids=[default.id])
|
|
150
|
+
default_dispatch_rule = alicloud.arms.DispatchRule("default",
|
|
151
|
+
dispatch_rule_name="example_value",
|
|
152
|
+
dispatch_type="CREATE_ALERT",
|
|
153
|
+
group_rules=[{
|
|
154
|
+
"group_wait_time": 5,
|
|
155
|
+
"group_interval": 15,
|
|
156
|
+
"repeat_interval": 100,
|
|
157
|
+
"grouping_fields": ["alertname"],
|
|
158
|
+
}],
|
|
159
|
+
label_match_expression_grids=[{
|
|
160
|
+
"label_match_expression_groups": [{
|
|
161
|
+
"label_match_expressions": [{
|
|
162
|
+
"key": "_aliyun_arms_involvedObject_kind",
|
|
163
|
+
"value": "app",
|
|
164
|
+
"operator": "eq",
|
|
165
|
+
}],
|
|
166
|
+
}],
|
|
167
|
+
}],
|
|
168
|
+
notify_rules=[{
|
|
169
|
+
"notify_objects": [
|
|
170
|
+
{
|
|
171
|
+
"notify_object_id": default.id,
|
|
172
|
+
"notify_type": "ARMS_CONTACT",
|
|
173
|
+
"name": "example_value",
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"notify_object_id": default_alert_contact_group.id,
|
|
177
|
+
"notify_type": "ARMS_CONTACT_GROUP",
|
|
178
|
+
"name": "example_value",
|
|
179
|
+
},
|
|
180
|
+
],
|
|
181
|
+
"notify_channels": [
|
|
182
|
+
"dingTalk",
|
|
183
|
+
"wechat",
|
|
184
|
+
],
|
|
185
|
+
"notify_start_time": "10:00",
|
|
186
|
+
"notify_end_time": "23:00",
|
|
187
|
+
}])
|
|
135
188
|
ids = alicloud.arms.get_dispatch_rules()
|
|
136
189
|
pulumi.export("armsDispatchRuleId1", ids.rules[0].id)
|
|
137
|
-
name_regex = alicloud.arms.get_dispatch_rules(name_regex="^my-DispatchRule")
|
|
138
|
-
pulumi.export("armsDispatchRuleId2", name_regex.rules[0].id)
|
|
139
190
|
```
|
|
140
191
|
|
|
141
192
|
|
|
@@ -172,7 +223,7 @@ def get_dispatch_rules_output(dispatch_rule_name: Optional[pulumi.Input[Optional
|
|
|
172
223
|
"""
|
|
173
224
|
This data source provides the Arms Dispatch Rules of the current Alibaba Cloud user.
|
|
174
225
|
|
|
175
|
-
> **NOTE:** Available
|
|
226
|
+
> **NOTE:** Available since v1.136.0.
|
|
176
227
|
|
|
177
228
|
## Example Usage
|
|
178
229
|
|
|
@@ -182,10 +233,52 @@ def get_dispatch_rules_output(dispatch_rule_name: Optional[pulumi.Input[Optional
|
|
|
182
233
|
import pulumi
|
|
183
234
|
import pulumi_alicloud as alicloud
|
|
184
235
|
|
|
236
|
+
default = alicloud.arms.AlertContact("default",
|
|
237
|
+
alert_contact_name="example_value",
|
|
238
|
+
email="example_value@aaa.com")
|
|
239
|
+
default_alert_contact_group = alicloud.arms.AlertContactGroup("default",
|
|
240
|
+
alert_contact_group_name="example_value",
|
|
241
|
+
contact_ids=[default.id])
|
|
242
|
+
default_dispatch_rule = alicloud.arms.DispatchRule("default",
|
|
243
|
+
dispatch_rule_name="example_value",
|
|
244
|
+
dispatch_type="CREATE_ALERT",
|
|
245
|
+
group_rules=[{
|
|
246
|
+
"group_wait_time": 5,
|
|
247
|
+
"group_interval": 15,
|
|
248
|
+
"repeat_interval": 100,
|
|
249
|
+
"grouping_fields": ["alertname"],
|
|
250
|
+
}],
|
|
251
|
+
label_match_expression_grids=[{
|
|
252
|
+
"label_match_expression_groups": [{
|
|
253
|
+
"label_match_expressions": [{
|
|
254
|
+
"key": "_aliyun_arms_involvedObject_kind",
|
|
255
|
+
"value": "app",
|
|
256
|
+
"operator": "eq",
|
|
257
|
+
}],
|
|
258
|
+
}],
|
|
259
|
+
}],
|
|
260
|
+
notify_rules=[{
|
|
261
|
+
"notify_objects": [
|
|
262
|
+
{
|
|
263
|
+
"notify_object_id": default.id,
|
|
264
|
+
"notify_type": "ARMS_CONTACT",
|
|
265
|
+
"name": "example_value",
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"notify_object_id": default_alert_contact_group.id,
|
|
269
|
+
"notify_type": "ARMS_CONTACT_GROUP",
|
|
270
|
+
"name": "example_value",
|
|
271
|
+
},
|
|
272
|
+
],
|
|
273
|
+
"notify_channels": [
|
|
274
|
+
"dingTalk",
|
|
275
|
+
"wechat",
|
|
276
|
+
],
|
|
277
|
+
"notify_start_time": "10:00",
|
|
278
|
+
"notify_end_time": "23:00",
|
|
279
|
+
}])
|
|
185
280
|
ids = alicloud.arms.get_dispatch_rules()
|
|
186
281
|
pulumi.export("armsDispatchRuleId1", ids.rules[0].id)
|
|
187
|
-
name_regex = alicloud.arms.get_dispatch_rules(name_regex="^my-DispatchRule")
|
|
188
|
-
pulumi.export("armsDispatchRuleId2", name_regex.rules[0].id)
|
|
189
282
|
```
|
|
190
283
|
|
|
191
284
|
|
pulumi_alicloud/arms/outputs.py
CHANGED
|
@@ -41,6 +41,7 @@ __all__ = [
|
|
|
41
41
|
'SyntheticTaskMonitorConfWebsite',
|
|
42
42
|
'GetAlertContactGroupsGroupResult',
|
|
43
43
|
'GetAlertContactsContactResult',
|
|
44
|
+
'GetAlertRobotsRobotResult',
|
|
44
45
|
'GetDispatchRulesRuleResult',
|
|
45
46
|
'GetDispatchRulesRuleGroupRuleResult',
|
|
46
47
|
'GetDispatchRulesRuleLabelMatchExpressionGridResult',
|
|
@@ -284,8 +285,12 @@ class DispatchRuleNotifyRule(dict):
|
|
|
284
285
|
suggest = None
|
|
285
286
|
if key == "notifyChannels":
|
|
286
287
|
suggest = "notify_channels"
|
|
288
|
+
elif key == "notifyEndTime":
|
|
289
|
+
suggest = "notify_end_time"
|
|
287
290
|
elif key == "notifyObjects":
|
|
288
291
|
suggest = "notify_objects"
|
|
292
|
+
elif key == "notifyStartTime":
|
|
293
|
+
suggest = "notify_start_time"
|
|
289
294
|
|
|
290
295
|
if suggest:
|
|
291
296
|
pulumi.log.warn(f"Key '{key}' not found in DispatchRuleNotifyRule. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -300,13 +305,19 @@ class DispatchRuleNotifyRule(dict):
|
|
|
300
305
|
|
|
301
306
|
def __init__(__self__, *,
|
|
302
307
|
notify_channels: Sequence[str],
|
|
303
|
-
|
|
308
|
+
notify_end_time: str,
|
|
309
|
+
notify_objects: Sequence['outputs.DispatchRuleNotifyRuleNotifyObject'],
|
|
310
|
+
notify_start_time: str):
|
|
304
311
|
"""
|
|
305
312
|
:param Sequence[str] notify_channels: The notification method. Valid values: dingTalk, sms, webhook, email, and wechat.
|
|
313
|
+
:param str notify_end_time: End time of notification.
|
|
306
314
|
:param Sequence['DispatchRuleNotifyRuleNotifyObjectArgs'] notify_objects: Sets the notification object. See `notify_objects` below.
|
|
315
|
+
:param str notify_start_time: Start time of notification.
|
|
307
316
|
"""
|
|
308
317
|
pulumi.set(__self__, "notify_channels", notify_channels)
|
|
318
|
+
pulumi.set(__self__, "notify_end_time", notify_end_time)
|
|
309
319
|
pulumi.set(__self__, "notify_objects", notify_objects)
|
|
320
|
+
pulumi.set(__self__, "notify_start_time", notify_start_time)
|
|
310
321
|
|
|
311
322
|
@property
|
|
312
323
|
@pulumi.getter(name="notifyChannels")
|
|
@@ -316,6 +327,14 @@ class DispatchRuleNotifyRule(dict):
|
|
|
316
327
|
"""
|
|
317
328
|
return pulumi.get(self, "notify_channels")
|
|
318
329
|
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="notifyEndTime")
|
|
332
|
+
def notify_end_time(self) -> str:
|
|
333
|
+
"""
|
|
334
|
+
End time of notification.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "notify_end_time")
|
|
337
|
+
|
|
319
338
|
@property
|
|
320
339
|
@pulumi.getter(name="notifyObjects")
|
|
321
340
|
def notify_objects(self) -> Sequence['outputs.DispatchRuleNotifyRuleNotifyObject']:
|
|
@@ -324,6 +343,14 @@ class DispatchRuleNotifyRule(dict):
|
|
|
324
343
|
"""
|
|
325
344
|
return pulumi.get(self, "notify_objects")
|
|
326
345
|
|
|
346
|
+
@property
|
|
347
|
+
@pulumi.getter(name="notifyStartTime")
|
|
348
|
+
def notify_start_time(self) -> str:
|
|
349
|
+
"""
|
|
350
|
+
Start time of notification.
|
|
351
|
+
"""
|
|
352
|
+
return pulumi.get(self, "notify_start_time")
|
|
353
|
+
|
|
327
354
|
|
|
328
355
|
@pulumi.output_type
|
|
329
356
|
class DispatchRuleNotifyRuleNotifyObject(dict):
|
|
@@ -353,7 +380,7 @@ class DispatchRuleNotifyRuleNotifyObject(dict):
|
|
|
353
380
|
"""
|
|
354
381
|
:param str name: The name of the contact or contact group.
|
|
355
382
|
:param str notify_object_id: The ID of the contact or contact group.
|
|
356
|
-
:param str notify_type: The type of the alert contact. Valid values: ARMS_CONTACT: contact. ARMS_CONTACT_GROUP: contact group.
|
|
383
|
+
:param str notify_type: The type of the alert contact. Valid values: ARMS_ROBOT: robot. ARMS_CONTACT: contact. ARMS_CONTACT_GROUP: contact group.
|
|
357
384
|
"""
|
|
358
385
|
pulumi.set(__self__, "name", name)
|
|
359
386
|
pulumi.set(__self__, "notify_object_id", notify_object_id)
|
|
@@ -379,7 +406,7 @@ class DispatchRuleNotifyRuleNotifyObject(dict):
|
|
|
379
406
|
@pulumi.getter(name="notifyType")
|
|
380
407
|
def notify_type(self) -> str:
|
|
381
408
|
"""
|
|
382
|
-
The type of the alert contact. Valid values: ARMS_CONTACT: contact. ARMS_CONTACT_GROUP: contact group.
|
|
409
|
+
The type of the alert contact. Valid values: ARMS_ROBOT: robot. ARMS_CONTACT: contact. ARMS_CONTACT_GROUP: contact group.
|
|
383
410
|
"""
|
|
384
411
|
return pulumi.get(self, "notify_type")
|
|
385
412
|
|
|
@@ -2319,6 +2346,101 @@ class GetAlertContactsContactResult(dict):
|
|
|
2319
2346
|
return pulumi.get(self, "webhook")
|
|
2320
2347
|
|
|
2321
2348
|
|
|
2349
|
+
@pulumi.output_type
|
|
2350
|
+
class GetAlertRobotsRobotResult(dict):
|
|
2351
|
+
def __init__(__self__, *,
|
|
2352
|
+
create_time: str,
|
|
2353
|
+
daily_noc: str,
|
|
2354
|
+
daily_noc_time: str,
|
|
2355
|
+
id: str,
|
|
2356
|
+
robot_addr: str,
|
|
2357
|
+
robot_id: str,
|
|
2358
|
+
robot_name: str,
|
|
2359
|
+
robot_type: str):
|
|
2360
|
+
"""
|
|
2361
|
+
:param str create_time: The creation time of the resource.
|
|
2362
|
+
:param str daily_noc: Specifies whether the alert robot receives daily notifications.
|
|
2363
|
+
:param str daily_noc_time: The time of the daily notification.
|
|
2364
|
+
:param str id: The ID of the Alert Robot.
|
|
2365
|
+
:param str robot_addr: The webhook url of the robot.
|
|
2366
|
+
:param str robot_id: The id of the robot.
|
|
2367
|
+
:param str robot_name: The name of the robot.
|
|
2368
|
+
:param str robot_type: The robot type.
|
|
2369
|
+
"""
|
|
2370
|
+
pulumi.set(__self__, "create_time", create_time)
|
|
2371
|
+
pulumi.set(__self__, "daily_noc", daily_noc)
|
|
2372
|
+
pulumi.set(__self__, "daily_noc_time", daily_noc_time)
|
|
2373
|
+
pulumi.set(__self__, "id", id)
|
|
2374
|
+
pulumi.set(__self__, "robot_addr", robot_addr)
|
|
2375
|
+
pulumi.set(__self__, "robot_id", robot_id)
|
|
2376
|
+
pulumi.set(__self__, "robot_name", robot_name)
|
|
2377
|
+
pulumi.set(__self__, "robot_type", robot_type)
|
|
2378
|
+
|
|
2379
|
+
@property
|
|
2380
|
+
@pulumi.getter(name="createTime")
|
|
2381
|
+
def create_time(self) -> str:
|
|
2382
|
+
"""
|
|
2383
|
+
The creation time of the resource.
|
|
2384
|
+
"""
|
|
2385
|
+
return pulumi.get(self, "create_time")
|
|
2386
|
+
|
|
2387
|
+
@property
|
|
2388
|
+
@pulumi.getter(name="dailyNoc")
|
|
2389
|
+
def daily_noc(self) -> str:
|
|
2390
|
+
"""
|
|
2391
|
+
Specifies whether the alert robot receives daily notifications.
|
|
2392
|
+
"""
|
|
2393
|
+
return pulumi.get(self, "daily_noc")
|
|
2394
|
+
|
|
2395
|
+
@property
|
|
2396
|
+
@pulumi.getter(name="dailyNocTime")
|
|
2397
|
+
def daily_noc_time(self) -> str:
|
|
2398
|
+
"""
|
|
2399
|
+
The time of the daily notification.
|
|
2400
|
+
"""
|
|
2401
|
+
return pulumi.get(self, "daily_noc_time")
|
|
2402
|
+
|
|
2403
|
+
@property
|
|
2404
|
+
@pulumi.getter
|
|
2405
|
+
def id(self) -> str:
|
|
2406
|
+
"""
|
|
2407
|
+
The ID of the Alert Robot.
|
|
2408
|
+
"""
|
|
2409
|
+
return pulumi.get(self, "id")
|
|
2410
|
+
|
|
2411
|
+
@property
|
|
2412
|
+
@pulumi.getter(name="robotAddr")
|
|
2413
|
+
def robot_addr(self) -> str:
|
|
2414
|
+
"""
|
|
2415
|
+
The webhook url of the robot.
|
|
2416
|
+
"""
|
|
2417
|
+
return pulumi.get(self, "robot_addr")
|
|
2418
|
+
|
|
2419
|
+
@property
|
|
2420
|
+
@pulumi.getter(name="robotId")
|
|
2421
|
+
def robot_id(self) -> str:
|
|
2422
|
+
"""
|
|
2423
|
+
The id of the robot.
|
|
2424
|
+
"""
|
|
2425
|
+
return pulumi.get(self, "robot_id")
|
|
2426
|
+
|
|
2427
|
+
@property
|
|
2428
|
+
@pulumi.getter(name="robotName")
|
|
2429
|
+
def robot_name(self) -> str:
|
|
2430
|
+
"""
|
|
2431
|
+
The name of the robot.
|
|
2432
|
+
"""
|
|
2433
|
+
return pulumi.get(self, "robot_name")
|
|
2434
|
+
|
|
2435
|
+
@property
|
|
2436
|
+
@pulumi.getter(name="robotType")
|
|
2437
|
+
def robot_type(self) -> str:
|
|
2438
|
+
"""
|
|
2439
|
+
The robot type.
|
|
2440
|
+
"""
|
|
2441
|
+
return pulumi.get(self, "robot_type")
|
|
2442
|
+
|
|
2443
|
+
|
|
2322
2444
|
@pulumi.output_type
|
|
2323
2445
|
class GetDispatchRulesRuleResult(dict):
|
|
2324
2446
|
def __init__(__self__, *,
|
|
@@ -2333,6 +2455,7 @@ class GetDispatchRulesRuleResult(dict):
|
|
|
2333
2455
|
"""
|
|
2334
2456
|
:param str dispatch_rule_id: Dispatch rule ID.
|
|
2335
2457
|
:param str dispatch_rule_name: The name of the dispatch rule.
|
|
2458
|
+
:param str dispatch_type: The type of the dispatch rule.
|
|
2336
2459
|
:param Sequence['GetDispatchRulesRuleGroupRuleArgs'] group_rules: Sets the event group.
|
|
2337
2460
|
:param str id: The ID of the Dispatch Rule.
|
|
2338
2461
|
:param Sequence['GetDispatchRulesRuleLabelMatchExpressionGridArgs'] label_match_expression_grids: Sets the dispatch rule.
|
|
@@ -2367,6 +2490,9 @@ class GetDispatchRulesRuleResult(dict):
|
|
|
2367
2490
|
@property
|
|
2368
2491
|
@pulumi.getter(name="dispatchType")
|
|
2369
2492
|
def dispatch_type(self) -> str:
|
|
2493
|
+
"""
|
|
2494
|
+
The type of the dispatch rule.
|
|
2495
|
+
"""
|
|
2370
2496
|
return pulumi.get(self, "dispatch_type")
|
|
2371
2497
|
|
|
2372
2498
|
@property
|
|
@@ -2413,7 +2539,6 @@ class GetDispatchRulesRuleResult(dict):
|
|
|
2413
2539
|
@pulumi.output_type
|
|
2414
2540
|
class GetDispatchRulesRuleGroupRuleResult(dict):
|
|
2415
2541
|
def __init__(__self__, *,
|
|
2416
|
-
group_id: int,
|
|
2417
2542
|
group_interval: int,
|
|
2418
2543
|
group_wait_time: int,
|
|
2419
2544
|
grouping_fields: Sequence[str],
|
|
@@ -2424,17 +2549,11 @@ class GetDispatchRulesRuleGroupRuleResult(dict):
|
|
|
2424
2549
|
:param Sequence[str] grouping_fields: The fields that are used to group events. Events with the same field content are assigned to a group. Alerts with the same specified grouping field are sent to the handler in separate notifications.
|
|
2425
2550
|
:param int repeat_interval: The silence period of repeated alerts. All alerts are repeatedly sent at specified intervals until the alerts are cleared. The minimum value is 61. Default to 600.
|
|
2426
2551
|
"""
|
|
2427
|
-
pulumi.set(__self__, "group_id", group_id)
|
|
2428
2552
|
pulumi.set(__self__, "group_interval", group_interval)
|
|
2429
2553
|
pulumi.set(__self__, "group_wait_time", group_wait_time)
|
|
2430
2554
|
pulumi.set(__self__, "grouping_fields", grouping_fields)
|
|
2431
2555
|
pulumi.set(__self__, "repeat_interval", repeat_interval)
|
|
2432
2556
|
|
|
2433
|
-
@property
|
|
2434
|
-
@pulumi.getter(name="groupId")
|
|
2435
|
-
def group_id(self) -> int:
|
|
2436
|
-
return pulumi.get(self, "group_id")
|
|
2437
|
-
|
|
2438
2557
|
@property
|
|
2439
2558
|
@pulumi.getter(name="groupInterval")
|
|
2440
2559
|
def group_interval(self) -> int:
|
|
@@ -2548,22 +2667,36 @@ class GetDispatchRulesRuleLabelMatchExpressionGridLabelMatchExpressionGroupLabel
|
|
|
2548
2667
|
class GetDispatchRulesRuleNotifyRuleResult(dict):
|
|
2549
2668
|
def __init__(__self__, *,
|
|
2550
2669
|
notify_channels: Sequence[str],
|
|
2551
|
-
|
|
2670
|
+
notify_end_time: str,
|
|
2671
|
+
notify_objects: Sequence['outputs.GetDispatchRulesRuleNotifyRuleNotifyObjectResult'],
|
|
2672
|
+
notify_start_time: str):
|
|
2552
2673
|
"""
|
|
2553
|
-
:param Sequence[str] notify_channels:
|
|
2674
|
+
:param Sequence[str] notify_channels: A list of notification methods.
|
|
2675
|
+
:param str notify_end_time: (Available since v1.237.0) End time of notification.
|
|
2554
2676
|
:param Sequence['GetDispatchRulesRuleNotifyRuleNotifyObjectArgs'] notify_objects: Sets the notification object.
|
|
2677
|
+
:param str notify_start_time: (Available since v1.237.0) Start time of notification.
|
|
2555
2678
|
"""
|
|
2556
2679
|
pulumi.set(__self__, "notify_channels", notify_channels)
|
|
2680
|
+
pulumi.set(__self__, "notify_end_time", notify_end_time)
|
|
2557
2681
|
pulumi.set(__self__, "notify_objects", notify_objects)
|
|
2682
|
+
pulumi.set(__self__, "notify_start_time", notify_start_time)
|
|
2558
2683
|
|
|
2559
2684
|
@property
|
|
2560
2685
|
@pulumi.getter(name="notifyChannels")
|
|
2561
2686
|
def notify_channels(self) -> Sequence[str]:
|
|
2562
2687
|
"""
|
|
2563
|
-
|
|
2688
|
+
A list of notification methods.
|
|
2564
2689
|
"""
|
|
2565
2690
|
return pulumi.get(self, "notify_channels")
|
|
2566
2691
|
|
|
2692
|
+
@property
|
|
2693
|
+
@pulumi.getter(name="notifyEndTime")
|
|
2694
|
+
def notify_end_time(self) -> str:
|
|
2695
|
+
"""
|
|
2696
|
+
(Available since v1.237.0) End time of notification.
|
|
2697
|
+
"""
|
|
2698
|
+
return pulumi.get(self, "notify_end_time")
|
|
2699
|
+
|
|
2567
2700
|
@property
|
|
2568
2701
|
@pulumi.getter(name="notifyObjects")
|
|
2569
2702
|
def notify_objects(self) -> Sequence['outputs.GetDispatchRulesRuleNotifyRuleNotifyObjectResult']:
|
|
@@ -2572,6 +2705,14 @@ class GetDispatchRulesRuleNotifyRuleResult(dict):
|
|
|
2572
2705
|
"""
|
|
2573
2706
|
return pulumi.get(self, "notify_objects")
|
|
2574
2707
|
|
|
2708
|
+
@property
|
|
2709
|
+
@pulumi.getter(name="notifyStartTime")
|
|
2710
|
+
def notify_start_time(self) -> str:
|
|
2711
|
+
"""
|
|
2712
|
+
(Available since v1.237.0) Start time of notification.
|
|
2713
|
+
"""
|
|
2714
|
+
return pulumi.get(self, "notify_start_time")
|
|
2715
|
+
|
|
2575
2716
|
|
|
2576
2717
|
@pulumi.output_type
|
|
2577
2718
|
class GetDispatchRulesRuleNotifyRuleNotifyObjectResult(dict):
|
pulumi_alicloud/cdn/_inputs.py
CHANGED
|
@@ -341,10 +341,6 @@ if not MYPY:
|
|
|
341
341
|
- **free**: free certificate.
|
|
342
342
|
> If the certificate type is **cas**, **PrivateKey** does not need to pass parameters.
|
|
343
343
|
"""
|
|
344
|
-
force_set: NotRequired[pulumi.Input[str]]
|
|
345
|
-
"""
|
|
346
|
-
The force set of the security certificate.
|
|
347
|
-
"""
|
|
348
344
|
private_key: NotRequired[pulumi.Input[str]]
|
|
349
345
|
"""
|
|
350
346
|
The content of the private key. If the certificate is not enabled, you do not need to enter the content of the private key. To configure the certificate, enter the content of the private key.
|
|
@@ -369,7 +365,6 @@ class DomainNewCertificateConfigArgs:
|
|
|
369
365
|
cert_name: Optional[pulumi.Input[str]] = None,
|
|
370
366
|
cert_region: Optional[pulumi.Input[str]] = None,
|
|
371
367
|
cert_type: Optional[pulumi.Input[str]] = None,
|
|
372
|
-
force_set: Optional[pulumi.Input[str]] = None,
|
|
373
368
|
private_key: Optional[pulumi.Input[str]] = None,
|
|
374
369
|
server_certificate: Optional[pulumi.Input[str]] = None,
|
|
375
370
|
server_certificate_status: Optional[pulumi.Input[str]] = None):
|
|
@@ -382,7 +377,6 @@ class DomainNewCertificateConfigArgs:
|
|
|
382
377
|
- **cas**: Cloud Shield certificate.
|
|
383
378
|
- **free**: free certificate.
|
|
384
379
|
> If the certificate type is **cas**, **PrivateKey** does not need to pass parameters.
|
|
385
|
-
:param pulumi.Input[str] force_set: The force set of the security certificate.
|
|
386
380
|
:param pulumi.Input[str] private_key: The content of the private key. If the certificate is not enabled, you do not need to enter the content of the private key. To configure the certificate, enter the content of the private key.
|
|
387
381
|
:param pulumi.Input[str] server_certificate: The content of the security certificate. If the certificate is not enabled, you do not need to enter the content of the security certificate. Please enter the content of the certificate to configure the certificate.
|
|
388
382
|
:param pulumi.Input[str] server_certificate_status: Whether the HTTPS certificate is enabled. Value:
|
|
@@ -397,8 +391,6 @@ class DomainNewCertificateConfigArgs:
|
|
|
397
391
|
pulumi.set(__self__, "cert_region", cert_region)
|
|
398
392
|
if cert_type is not None:
|
|
399
393
|
pulumi.set(__self__, "cert_type", cert_type)
|
|
400
|
-
if force_set is not None:
|
|
401
|
-
pulumi.set(__self__, "force_set", force_set)
|
|
402
394
|
if private_key is not None:
|
|
403
395
|
pulumi.set(__self__, "private_key", private_key)
|
|
404
396
|
if server_certificate is not None:
|
|
@@ -458,18 +450,6 @@ class DomainNewCertificateConfigArgs:
|
|
|
458
450
|
def cert_type(self, value: Optional[pulumi.Input[str]]):
|
|
459
451
|
pulumi.set(self, "cert_type", value)
|
|
460
452
|
|
|
461
|
-
@property
|
|
462
|
-
@pulumi.getter(name="forceSet")
|
|
463
|
-
def force_set(self) -> Optional[pulumi.Input[str]]:
|
|
464
|
-
"""
|
|
465
|
-
The force set of the security certificate.
|
|
466
|
-
"""
|
|
467
|
-
return pulumi.get(self, "force_set")
|
|
468
|
-
|
|
469
|
-
@force_set.setter
|
|
470
|
-
def force_set(self, value: Optional[pulumi.Input[str]]):
|
|
471
|
-
pulumi.set(self, "force_set", value)
|
|
472
|
-
|
|
473
453
|
@property
|
|
474
454
|
@pulumi.getter(name="privateKey")
|
|
475
455
|
def private_key(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -529,7 +509,7 @@ if not MYPY:
|
|
|
529
509
|
"""
|
|
530
510
|
weight: NotRequired[pulumi.Input[int]]
|
|
531
511
|
"""
|
|
532
|
-
Weight of the source. Valid values are from `0` to `100`. Default value is `10`, but if type is `ipaddr`, the value can only be `10`.
|
|
512
|
+
Weight of the source. Valid values are from `0` to `100`. Default value is `10`, but if type is `ipaddr`, the value can only be `10`.
|
|
533
513
|
"""
|
|
534
514
|
elif False:
|
|
535
515
|
DomainNewSourceArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -547,7 +527,7 @@ class DomainNewSourceArgs:
|
|
|
547
527
|
:param pulumi.Input[int] port: The port of source. Valid values are `443` and `80`. Default value is `80`.
|
|
548
528
|
:param pulumi.Input[int] priority: Priority of the source. Valid values are `0` and `100`. Default value is `20`.
|
|
549
529
|
:param pulumi.Input[str] type: The type of the source. Valid values are `ipaddr`, `domain` and `oss`.
|
|
550
|
-
:param pulumi.Input[int] weight: Weight of the source. Valid values are from `0` to `100`. Default value is `10`, but if type is `ipaddr`, the value can only be `10`.
|
|
530
|
+
:param pulumi.Input[int] weight: Weight of the source. Valid values are from `0` to `100`. Default value is `10`, but if type is `ipaddr`, the value can only be `10`.
|
|
551
531
|
"""
|
|
552
532
|
if content is not None:
|
|
553
533
|
pulumi.set(__self__, "content", content)
|
|
@@ -612,7 +592,7 @@ class DomainNewSourceArgs:
|
|
|
612
592
|
@pulumi.getter
|
|
613
593
|
def weight(self) -> Optional[pulumi.Input[int]]:
|
|
614
594
|
"""
|
|
615
|
-
Weight of the source. Valid values are from `0` to `100`. Default value is `10`, but if type is `ipaddr`, the value can only be `10`.
|
|
595
|
+
Weight of the source. Valid values are from `0` to `100`. Default value is `10`, but if type is `ipaddr`, the value can only be `10`.
|
|
616
596
|
"""
|
|
617
597
|
return pulumi.get(self, "weight")
|
|
618
598
|
|