pulumi-alicloud 3.69.0a1733375908__py3-none-any.whl → 3.69.0a1733740345__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +56 -0
- pulumi_alicloud/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/cfg/rule.py +4 -4
- pulumi_alicloud/cs/autoscaling_config.py +51 -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 +34 -0
- 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 +37 -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/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.69.0a1733375908.dist-info → pulumi_alicloud-3.69.0a1733740345.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.69.0a1733375908.dist-info → pulumi_alicloud-3.69.0a1733740345.dist-info}/RECORD +47 -38
- {pulumi_alicloud-3.69.0a1733375908.dist-info → pulumi_alicloud-3.69.0a1733740345.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.69.0a1733375908.dist-info → pulumi_alicloud-3.69.0a1733740345.dist-info}/top_level.txt +0 -0
pulumi_alicloud/__init__.py
CHANGED
|
@@ -918,6 +918,14 @@ _utilities.register(
|
|
|
918
918
|
"alicloud:arms/alertContactGroup:AlertContactGroup": "AlertContactGroup"
|
|
919
919
|
}
|
|
920
920
|
},
|
|
921
|
+
{
|
|
922
|
+
"pkg": "alicloud",
|
|
923
|
+
"mod": "arms/alertRobot",
|
|
924
|
+
"fqn": "pulumi_alicloud.arms",
|
|
925
|
+
"classes": {
|
|
926
|
+
"alicloud:arms/alertRobot:AlertRobot": "AlertRobot"
|
|
927
|
+
}
|
|
928
|
+
},
|
|
921
929
|
{
|
|
922
930
|
"pkg": "alicloud",
|
|
923
931
|
"mod": "arms/dispatchRule",
|
|
@@ -2358,6 +2366,22 @@ _utilities.register(
|
|
|
2358
2366
|
"alicloud:datahub/topic:Topic": "Topic"
|
|
2359
2367
|
}
|
|
2360
2368
|
},
|
|
2369
|
+
{
|
|
2370
|
+
"pkg": "alicloud",
|
|
2371
|
+
"mod": "dataworks/dataSource",
|
|
2372
|
+
"fqn": "pulumi_alicloud.dataworks",
|
|
2373
|
+
"classes": {
|
|
2374
|
+
"alicloud:dataworks/dataSource:DataSource": "DataSource"
|
|
2375
|
+
}
|
|
2376
|
+
},
|
|
2377
|
+
{
|
|
2378
|
+
"pkg": "alicloud",
|
|
2379
|
+
"mod": "dataworks/dataSourceSharedRule",
|
|
2380
|
+
"fqn": "pulumi_alicloud.dataworks",
|
|
2381
|
+
"classes": {
|
|
2382
|
+
"alicloud:dataworks/dataSourceSharedRule:DataSourceSharedRule": "DataSourceSharedRule"
|
|
2383
|
+
}
|
|
2384
|
+
},
|
|
2361
2385
|
{
|
|
2362
2386
|
"pkg": "alicloud",
|
|
2363
2387
|
"mod": "dataworks/folder",
|
|
@@ -2374,6 +2398,14 @@ _utilities.register(
|
|
|
2374
2398
|
"alicloud:dataworks/project:Project": "Project"
|
|
2375
2399
|
}
|
|
2376
2400
|
},
|
|
2401
|
+
{
|
|
2402
|
+
"pkg": "alicloud",
|
|
2403
|
+
"mod": "dataworks/projectMember",
|
|
2404
|
+
"fqn": "pulumi_alicloud.dataworks",
|
|
2405
|
+
"classes": {
|
|
2406
|
+
"alicloud:dataworks/projectMember:ProjectMember": "ProjectMember"
|
|
2407
|
+
}
|
|
2408
|
+
},
|
|
2377
2409
|
{
|
|
2378
2410
|
"pkg": "alicloud",
|
|
2379
2411
|
"mod": "dbs/backupPlan",
|
|
@@ -3302,6 +3334,14 @@ _utilities.register(
|
|
|
3302
3334
|
"alicloud:ecs/imageImport:ImageImport": "ImageImport"
|
|
3303
3335
|
}
|
|
3304
3336
|
},
|
|
3337
|
+
{
|
|
3338
|
+
"pkg": "alicloud",
|
|
3339
|
+
"mod": "ecs/imagePipelineExecution",
|
|
3340
|
+
"fqn": "pulumi_alicloud.ecs",
|
|
3341
|
+
"classes": {
|
|
3342
|
+
"alicloud:ecs/imagePipelineExecution:ImagePipelineExecution": "ImagePipelineExecution"
|
|
3343
|
+
}
|
|
3344
|
+
},
|
|
3305
3345
|
{
|
|
3306
3346
|
"pkg": "alicloud",
|
|
3307
3347
|
"mod": "ecs/imageSharePermission",
|
|
@@ -5654,6 +5694,14 @@ _utilities.register(
|
|
|
5654
5694
|
"alicloud:oss/bucketVersioning:BucketVersioning": "BucketVersioning"
|
|
5655
5695
|
}
|
|
5656
5696
|
},
|
|
5697
|
+
{
|
|
5698
|
+
"pkg": "alicloud",
|
|
5699
|
+
"mod": "oss/bucketWebsite",
|
|
5700
|
+
"fqn": "pulumi_alicloud.oss",
|
|
5701
|
+
"classes": {
|
|
5702
|
+
"alicloud:oss/bucketWebsite:BucketWebsite": "BucketWebsite"
|
|
5703
|
+
}
|
|
5704
|
+
},
|
|
5657
5705
|
{
|
|
5658
5706
|
"pkg": "alicloud",
|
|
5659
5707
|
"mod": "ots/instance",
|
|
@@ -7022,6 +7070,14 @@ _utilities.register(
|
|
|
7022
7070
|
"alicloud:sls/collectionPolicy:CollectionPolicy": "CollectionPolicy"
|
|
7023
7071
|
}
|
|
7024
7072
|
},
|
|
7073
|
+
{
|
|
7074
|
+
"pkg": "alicloud",
|
|
7075
|
+
"mod": "sls/ossExportSink",
|
|
7076
|
+
"fqn": "pulumi_alicloud.sls",
|
|
7077
|
+
"classes": {
|
|
7078
|
+
"alicloud:sls/ossExportSink:OssExportSink": "OssExportSink"
|
|
7079
|
+
}
|
|
7080
|
+
},
|
|
7025
7081
|
{
|
|
7026
7082
|
"pkg": "alicloud",
|
|
7027
7083
|
"mod": "sls/scheduledSql",
|
|
@@ -65,6 +65,7 @@ class DBClusterArgs:
|
|
|
65
65
|
:param pulumi.Input[str] elastic_io_resource_size: The specifications of a single elastic resource node. Default Value: `8Core64GB`. Valid values:
|
|
66
66
|
- `8Core64GB`: If you set `elastic_io_resource_size` to `8Core64GB`, the specifications of an EIU are 24 cores and 192 GB memory.
|
|
67
67
|
- `12Core96GB`: If you set `elastic_io_resource_size` to `12Core96GB`, the specifications of an EIU are 36 cores and 288 GB memory.
|
|
68
|
+
- `16Core128GB`: (Available since v1.237.0)If you set `elastic_io_resource_size` to `16Core128GB`, the specifications of an EIU are 48 cores and 384 GB memory.
|
|
68
69
|
:param pulumi.Input[bool] enable_ssl: Specifies whether to enable SSL encryption. Default Value: `false`. Valid values: `true`, `false`.
|
|
69
70
|
:param pulumi.Input[str] kms_id: The Key Management Service (KMS) ID that is used for disk encryption. `kms_id` is valid only when `disk_encryption` is set to `true`.
|
|
70
71
|
:param pulumi.Input[str] maintain_time: The maintenance window of the cluster. Format: hh:mmZ-hh:mmZ.
|
|
@@ -310,6 +311,7 @@ class DBClusterArgs:
|
|
|
310
311
|
The specifications of a single elastic resource node. Default Value: `8Core64GB`. Valid values:
|
|
311
312
|
- `8Core64GB`: If you set `elastic_io_resource_size` to `8Core64GB`, the specifications of an EIU are 24 cores and 192 GB memory.
|
|
312
313
|
- `12Core96GB`: If you set `elastic_io_resource_size` to `12Core96GB`, the specifications of an EIU are 36 cores and 288 GB memory.
|
|
314
|
+
- `16Core128GB`: (Available since v1.237.0)If you set `elastic_io_resource_size` to `16Core128GB`, the specifications of an EIU are 48 cores and 384 GB memory.
|
|
313
315
|
"""
|
|
314
316
|
return pulumi.get(self, "elastic_io_resource_size")
|
|
315
317
|
|
|
@@ -544,6 +546,7 @@ class _DBClusterState:
|
|
|
544
546
|
:param pulumi.Input[str] elastic_io_resource_size: The specifications of a single elastic resource node. Default Value: `8Core64GB`. Valid values:
|
|
545
547
|
- `8Core64GB`: If you set `elastic_io_resource_size` to `8Core64GB`, the specifications of an EIU are 24 cores and 192 GB memory.
|
|
546
548
|
- `12Core96GB`: If you set `elastic_io_resource_size` to `12Core96GB`, the specifications of an EIU are 36 cores and 288 GB memory.
|
|
549
|
+
- `16Core128GB`: (Available since v1.237.0)If you set `elastic_io_resource_size` to `16Core128GB`, the specifications of an EIU are 48 cores and 384 GB memory.
|
|
547
550
|
:param pulumi.Input[bool] enable_ssl: Specifies whether to enable SSL encryption. Default Value: `false`. Valid values: `true`, `false`.
|
|
548
551
|
:param pulumi.Input[str] kms_id: The Key Management Service (KMS) ID that is used for disk encryption. `kms_id` is valid only when `disk_encryption` is set to `true`.
|
|
549
552
|
:param pulumi.Input[str] maintain_time: The maintenance window of the cluster. Format: hh:mmZ-hh:mmZ.
|
|
@@ -800,6 +803,7 @@ class _DBClusterState:
|
|
|
800
803
|
The specifications of a single elastic resource node. Default Value: `8Core64GB`. Valid values:
|
|
801
804
|
- `8Core64GB`: If you set `elastic_io_resource_size` to `8Core64GB`, the specifications of an EIU are 24 cores and 192 GB memory.
|
|
802
805
|
- `12Core96GB`: If you set `elastic_io_resource_size` to `12Core96GB`, the specifications of an EIU are 36 cores and 288 GB memory.
|
|
806
|
+
- `16Core128GB`: (Available since v1.237.0)If you set `elastic_io_resource_size` to `16Core128GB`, the specifications of an EIU are 48 cores and 384 GB memory.
|
|
803
807
|
"""
|
|
804
808
|
return pulumi.get(self, "elastic_io_resource_size")
|
|
805
809
|
|
|
@@ -1078,6 +1082,7 @@ class DBCluster(pulumi.CustomResource):
|
|
|
1078
1082
|
:param pulumi.Input[str] elastic_io_resource_size: The specifications of a single elastic resource node. Default Value: `8Core64GB`. Valid values:
|
|
1079
1083
|
- `8Core64GB`: If you set `elastic_io_resource_size` to `8Core64GB`, the specifications of an EIU are 24 cores and 192 GB memory.
|
|
1080
1084
|
- `12Core96GB`: If you set `elastic_io_resource_size` to `12Core96GB`, the specifications of an EIU are 36 cores and 288 GB memory.
|
|
1085
|
+
- `16Core128GB`: (Available since v1.237.0)If you set `elastic_io_resource_size` to `16Core128GB`, the specifications of an EIU are 48 cores and 384 GB memory.
|
|
1081
1086
|
:param pulumi.Input[bool] enable_ssl: Specifies whether to enable SSL encryption. Default Value: `false`. Valid values: `true`, `false`.
|
|
1082
1087
|
:param pulumi.Input[str] kms_id: The Key Management Service (KMS) ID that is used for disk encryption. `kms_id` is valid only when `disk_encryption` is set to `true`.
|
|
1083
1088
|
:param pulumi.Input[str] maintain_time: The maintenance window of the cluster. Format: hh:mmZ-hh:mmZ.
|
|
@@ -1265,6 +1270,7 @@ class DBCluster(pulumi.CustomResource):
|
|
|
1265
1270
|
:param pulumi.Input[str] elastic_io_resource_size: The specifications of a single elastic resource node. Default Value: `8Core64GB`. Valid values:
|
|
1266
1271
|
- `8Core64GB`: If you set `elastic_io_resource_size` to `8Core64GB`, the specifications of an EIU are 24 cores and 192 GB memory.
|
|
1267
1272
|
- `12Core96GB`: If you set `elastic_io_resource_size` to `12Core96GB`, the specifications of an EIU are 36 cores and 288 GB memory.
|
|
1273
|
+
- `16Core128GB`: (Available since v1.237.0)If you set `elastic_io_resource_size` to `16Core128GB`, the specifications of an EIU are 48 cores and 384 GB memory.
|
|
1268
1274
|
:param pulumi.Input[bool] enable_ssl: Specifies whether to enable SSL encryption. Default Value: `false`. Valid values: `true`, `false`.
|
|
1269
1275
|
:param pulumi.Input[str] kms_id: The Key Management Service (KMS) ID that is used for disk encryption. `kms_id` is valid only when `disk_encryption` is set to `true`.
|
|
1270
1276
|
:param pulumi.Input[str] maintain_time: The maintenance window of the cluster. Format: hh:mmZ-hh:mmZ.
|
|
@@ -1437,6 +1443,7 @@ class DBCluster(pulumi.CustomResource):
|
|
|
1437
1443
|
The specifications of a single elastic resource node. Default Value: `8Core64GB`. Valid values:
|
|
1438
1444
|
- `8Core64GB`: If you set `elastic_io_resource_size` to `8Core64GB`, the specifications of an EIU are 24 cores and 192 GB memory.
|
|
1439
1445
|
- `12Core96GB`: If you set `elastic_io_resource_size` to `12Core96GB`, the specifications of an EIU are 36 cores and 288 GB memory.
|
|
1446
|
+
- `16Core128GB`: (Available since v1.237.0)If you set `elastic_io_resource_size` to `16Core128GB`, the specifications of an EIU are 48 cores and 384 GB memory.
|
|
1440
1447
|
"""
|
|
1441
1448
|
return pulumi.get(self, "elastic_io_resource_size")
|
|
1442
1449
|
|
pulumi_alicloud/arms/__init__.py
CHANGED
|
@@ -8,6 +8,7 @@ import typing
|
|
|
8
8
|
from .addon_release import *
|
|
9
9
|
from .alert_contact import *
|
|
10
10
|
from .alert_contact_group import *
|
|
11
|
+
from .alert_robot import *
|
|
11
12
|
from .dispatch_rule import *
|
|
12
13
|
from .env_custom_job import *
|
|
13
14
|
from .env_feature import *
|
|
@@ -16,6 +17,7 @@ from .env_service_monitor import *
|
|
|
16
17
|
from .environment import *
|
|
17
18
|
from .get_alert_contact_groups import *
|
|
18
19
|
from .get_alert_contacts import *
|
|
20
|
+
from .get_alert_robots import *
|
|
19
21
|
from .get_dispatch_rules import *
|
|
20
22
|
from .get_integration_exporters import *
|
|
21
23
|
from .get_prometheis import *
|
pulumi_alicloud/arms/_inputs.py
CHANGED
|
@@ -341,10 +341,18 @@ if not MYPY:
|
|
|
341
341
|
"""
|
|
342
342
|
The notification method. Valid values: dingTalk, sms, webhook, email, and wechat.
|
|
343
343
|
"""
|
|
344
|
+
notify_end_time: pulumi.Input[str]
|
|
345
|
+
"""
|
|
346
|
+
End time of notification.
|
|
347
|
+
"""
|
|
344
348
|
notify_objects: pulumi.Input[Sequence[pulumi.Input['DispatchRuleNotifyRuleNotifyObjectArgsDict']]]
|
|
345
349
|
"""
|
|
346
350
|
Sets the notification object. See `notify_objects` below.
|
|
347
351
|
"""
|
|
352
|
+
notify_start_time: pulumi.Input[str]
|
|
353
|
+
"""
|
|
354
|
+
Start time of notification.
|
|
355
|
+
"""
|
|
348
356
|
elif False:
|
|
349
357
|
DispatchRuleNotifyRuleArgsDict: TypeAlias = Mapping[str, Any]
|
|
350
358
|
|
|
@@ -352,13 +360,19 @@ elif False:
|
|
|
352
360
|
class DispatchRuleNotifyRuleArgs:
|
|
353
361
|
def __init__(__self__, *,
|
|
354
362
|
notify_channels: pulumi.Input[Sequence[pulumi.Input[str]]],
|
|
355
|
-
|
|
363
|
+
notify_end_time: pulumi.Input[str],
|
|
364
|
+
notify_objects: pulumi.Input[Sequence[pulumi.Input['DispatchRuleNotifyRuleNotifyObjectArgs']]],
|
|
365
|
+
notify_start_time: pulumi.Input[str]):
|
|
356
366
|
"""
|
|
357
367
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] notify_channels: The notification method. Valid values: dingTalk, sms, webhook, email, and wechat.
|
|
368
|
+
:param pulumi.Input[str] notify_end_time: End time of notification.
|
|
358
369
|
:param pulumi.Input[Sequence[pulumi.Input['DispatchRuleNotifyRuleNotifyObjectArgs']]] notify_objects: Sets the notification object. See `notify_objects` below.
|
|
370
|
+
:param pulumi.Input[str] notify_start_time: Start time of notification.
|
|
359
371
|
"""
|
|
360
372
|
pulumi.set(__self__, "notify_channels", notify_channels)
|
|
373
|
+
pulumi.set(__self__, "notify_end_time", notify_end_time)
|
|
361
374
|
pulumi.set(__self__, "notify_objects", notify_objects)
|
|
375
|
+
pulumi.set(__self__, "notify_start_time", notify_start_time)
|
|
362
376
|
|
|
363
377
|
@property
|
|
364
378
|
@pulumi.getter(name="notifyChannels")
|
|
@@ -372,6 +386,18 @@ class DispatchRuleNotifyRuleArgs:
|
|
|
372
386
|
def notify_channels(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
373
387
|
pulumi.set(self, "notify_channels", value)
|
|
374
388
|
|
|
389
|
+
@property
|
|
390
|
+
@pulumi.getter(name="notifyEndTime")
|
|
391
|
+
def notify_end_time(self) -> pulumi.Input[str]:
|
|
392
|
+
"""
|
|
393
|
+
End time of notification.
|
|
394
|
+
"""
|
|
395
|
+
return pulumi.get(self, "notify_end_time")
|
|
396
|
+
|
|
397
|
+
@notify_end_time.setter
|
|
398
|
+
def notify_end_time(self, value: pulumi.Input[str]):
|
|
399
|
+
pulumi.set(self, "notify_end_time", value)
|
|
400
|
+
|
|
375
401
|
@property
|
|
376
402
|
@pulumi.getter(name="notifyObjects")
|
|
377
403
|
def notify_objects(self) -> pulumi.Input[Sequence[pulumi.Input['DispatchRuleNotifyRuleNotifyObjectArgs']]]:
|
|
@@ -384,6 +410,18 @@ class DispatchRuleNotifyRuleArgs:
|
|
|
384
410
|
def notify_objects(self, value: pulumi.Input[Sequence[pulumi.Input['DispatchRuleNotifyRuleNotifyObjectArgs']]]):
|
|
385
411
|
pulumi.set(self, "notify_objects", value)
|
|
386
412
|
|
|
413
|
+
@property
|
|
414
|
+
@pulumi.getter(name="notifyStartTime")
|
|
415
|
+
def notify_start_time(self) -> pulumi.Input[str]:
|
|
416
|
+
"""
|
|
417
|
+
Start time of notification.
|
|
418
|
+
"""
|
|
419
|
+
return pulumi.get(self, "notify_start_time")
|
|
420
|
+
|
|
421
|
+
@notify_start_time.setter
|
|
422
|
+
def notify_start_time(self, value: pulumi.Input[str]):
|
|
423
|
+
pulumi.set(self, "notify_start_time", value)
|
|
424
|
+
|
|
387
425
|
|
|
388
426
|
if not MYPY:
|
|
389
427
|
class DispatchRuleNotifyRuleNotifyObjectArgsDict(TypedDict):
|
|
@@ -397,7 +435,7 @@ if not MYPY:
|
|
|
397
435
|
"""
|
|
398
436
|
notify_type: pulumi.Input[str]
|
|
399
437
|
"""
|
|
400
|
-
The type of the alert contact. Valid values: ARMS_CONTACT: contact. ARMS_CONTACT_GROUP: contact group.
|
|
438
|
+
The type of the alert contact. Valid values: ARMS_ROBOT: robot. ARMS_CONTACT: contact. ARMS_CONTACT_GROUP: contact group.
|
|
401
439
|
"""
|
|
402
440
|
elif False:
|
|
403
441
|
DispatchRuleNotifyRuleNotifyObjectArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -411,7 +449,7 @@ class DispatchRuleNotifyRuleNotifyObjectArgs:
|
|
|
411
449
|
"""
|
|
412
450
|
:param pulumi.Input[str] name: The name of the contact or contact group.
|
|
413
451
|
:param pulumi.Input[str] notify_object_id: The ID of the contact or contact group.
|
|
414
|
-
:param pulumi.Input[str] notify_type: The type of the alert contact. Valid values: ARMS_CONTACT: contact. ARMS_CONTACT_GROUP: contact group.
|
|
452
|
+
:param pulumi.Input[str] notify_type: The type of the alert contact. Valid values: ARMS_ROBOT: robot. ARMS_CONTACT: contact. ARMS_CONTACT_GROUP: contact group.
|
|
415
453
|
"""
|
|
416
454
|
pulumi.set(__self__, "name", name)
|
|
417
455
|
pulumi.set(__self__, "notify_object_id", notify_object_id)
|
|
@@ -445,7 +483,7 @@ class DispatchRuleNotifyRuleNotifyObjectArgs:
|
|
|
445
483
|
@pulumi.getter(name="notifyType")
|
|
446
484
|
def notify_type(self) -> pulumi.Input[str]:
|
|
447
485
|
"""
|
|
448
|
-
The type of the alert contact. Valid values: ARMS_CONTACT: contact. ARMS_CONTACT_GROUP: contact group.
|
|
486
|
+
The type of the alert contact. Valid values: ARMS_ROBOT: robot. ARMS_CONTACT: contact. ARMS_CONTACT_GROUP: contact group.
|
|
449
487
|
"""
|
|
450
488
|
return pulumi.get(self, "notify_type")
|
|
451
489
|
|