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
|
@@ -22,26 +22,34 @@ class RealTimeLogDeliveryArgs:
|
|
|
22
22
|
domain: pulumi.Input[str],
|
|
23
23
|
logstore: pulumi.Input[str],
|
|
24
24
|
project: pulumi.Input[str],
|
|
25
|
-
sls_region: pulumi.Input[str]
|
|
25
|
+
sls_region: pulumi.Input[str],
|
|
26
|
+
status: Optional[pulumi.Input[str]] = None):
|
|
26
27
|
"""
|
|
27
28
|
The set of arguments for constructing a RealTimeLogDelivery resource.
|
|
28
|
-
:param pulumi.Input[str] domain: The accelerated domain name for which you want to
|
|
29
|
-
:param pulumi.Input[str] logstore: The
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
:param pulumi.Input[str] domain: The accelerated domain name for which you want to disable real-time log delivery. You can specify multiple domain names and separate them with commas (,).
|
|
30
|
+
:param pulumi.Input[str] logstore: The ID of the region where the Log Service project is deployed. You can specify multiple region IDs and separate them with commas (,).
|
|
31
|
+
|
|
32
|
+
For more information about regions, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
33
|
+
:param pulumi.Input[str] project: The name of the Logstore that collects log data from Alibaba Cloud CDN in real time. You can specify multiple Logstore names and separate them with commas (,).
|
|
34
|
+
:param pulumi.Input[str] sls_region: The ID of the region where the Log Service project is deployed. For more information, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
35
|
+
:param pulumi.Input[str] status: Resource attribute fields that represent the status of the resource.
|
|
32
36
|
|
|
33
|
-
|
|
37
|
+
Value:
|
|
38
|
+
- offline
|
|
39
|
+
- online
|
|
34
40
|
"""
|
|
35
41
|
pulumi.set(__self__, "domain", domain)
|
|
36
42
|
pulumi.set(__self__, "logstore", logstore)
|
|
37
43
|
pulumi.set(__self__, "project", project)
|
|
38
44
|
pulumi.set(__self__, "sls_region", sls_region)
|
|
45
|
+
if status is not None:
|
|
46
|
+
pulumi.set(__self__, "status", status)
|
|
39
47
|
|
|
40
48
|
@property
|
|
41
49
|
@pulumi.getter
|
|
42
50
|
def domain(self) -> pulumi.Input[str]:
|
|
43
51
|
"""
|
|
44
|
-
The accelerated domain name for which you want to
|
|
52
|
+
The accelerated domain name for which you want to disable real-time log delivery. You can specify multiple domain names and separate them with commas (,).
|
|
45
53
|
"""
|
|
46
54
|
return pulumi.get(self, "domain")
|
|
47
55
|
|
|
@@ -53,7 +61,9 @@ class RealTimeLogDeliveryArgs:
|
|
|
53
61
|
@pulumi.getter
|
|
54
62
|
def logstore(self) -> pulumi.Input[str]:
|
|
55
63
|
"""
|
|
56
|
-
The
|
|
64
|
+
The ID of the region where the Log Service project is deployed. You can specify multiple region IDs and separate them with commas (,).
|
|
65
|
+
|
|
66
|
+
For more information about regions, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
57
67
|
"""
|
|
58
68
|
return pulumi.get(self, "logstore")
|
|
59
69
|
|
|
@@ -65,7 +75,7 @@ class RealTimeLogDeliveryArgs:
|
|
|
65
75
|
@pulumi.getter
|
|
66
76
|
def project(self) -> pulumi.Input[str]:
|
|
67
77
|
"""
|
|
68
|
-
The name of the
|
|
78
|
+
The name of the Logstore that collects log data from Alibaba Cloud CDN in real time. You can specify multiple Logstore names and separate them with commas (,).
|
|
69
79
|
"""
|
|
70
80
|
return pulumi.get(self, "project")
|
|
71
81
|
|
|
@@ -77,9 +87,7 @@ class RealTimeLogDeliveryArgs:
|
|
|
77
87
|
@pulumi.getter(name="slsRegion")
|
|
78
88
|
def sls_region(self) -> pulumi.Input[str]:
|
|
79
89
|
"""
|
|
80
|
-
The region where the Log Service project is deployed.
|
|
81
|
-
|
|
82
|
-
> **NOTE:** If your Project and Logstore services already exist, if you continue to create existing content, the created content will overwrite your existing indexes and custom reports. Please be careful to create your existing services to avoid affecting your online services after coverage.
|
|
90
|
+
The ID of the region where the Log Service project is deployed. For more information, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
83
91
|
"""
|
|
84
92
|
return pulumi.get(self, "sls_region")
|
|
85
93
|
|
|
@@ -87,6 +95,22 @@ class RealTimeLogDeliveryArgs:
|
|
|
87
95
|
def sls_region(self, value: pulumi.Input[str]):
|
|
88
96
|
pulumi.set(self, "sls_region", value)
|
|
89
97
|
|
|
98
|
+
@property
|
|
99
|
+
@pulumi.getter
|
|
100
|
+
def status(self) -> Optional[pulumi.Input[str]]:
|
|
101
|
+
"""
|
|
102
|
+
Resource attribute fields that represent the status of the resource.
|
|
103
|
+
|
|
104
|
+
Value:
|
|
105
|
+
- offline
|
|
106
|
+
- online
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "status")
|
|
109
|
+
|
|
110
|
+
@status.setter
|
|
111
|
+
def status(self, value: Optional[pulumi.Input[str]]):
|
|
112
|
+
pulumi.set(self, "status", value)
|
|
113
|
+
|
|
90
114
|
|
|
91
115
|
@pulumi.input_type
|
|
92
116
|
class _RealTimeLogDeliveryState:
|
|
@@ -98,13 +122,17 @@ class _RealTimeLogDeliveryState:
|
|
|
98
122
|
status: Optional[pulumi.Input[str]] = None):
|
|
99
123
|
"""
|
|
100
124
|
Input properties used for looking up and filtering RealTimeLogDelivery resources.
|
|
101
|
-
:param pulumi.Input[str] domain: The accelerated domain name for which you want to
|
|
102
|
-
:param pulumi.Input[str] logstore: The
|
|
103
|
-
|
|
104
|
-
|
|
125
|
+
:param pulumi.Input[str] domain: The accelerated domain name for which you want to disable real-time log delivery. You can specify multiple domain names and separate them with commas (,).
|
|
126
|
+
:param pulumi.Input[str] logstore: The ID of the region where the Log Service project is deployed. You can specify multiple region IDs and separate them with commas (,).
|
|
127
|
+
|
|
128
|
+
For more information about regions, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
129
|
+
:param pulumi.Input[str] project: The name of the Logstore that collects log data from Alibaba Cloud CDN in real time. You can specify multiple Logstore names and separate them with commas (,).
|
|
130
|
+
:param pulumi.Input[str] sls_region: The ID of the region where the Log Service project is deployed. For more information, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
131
|
+
:param pulumi.Input[str] status: Resource attribute fields that represent the status of the resource.
|
|
105
132
|
|
|
106
|
-
|
|
107
|
-
|
|
133
|
+
Value:
|
|
134
|
+
- offline
|
|
135
|
+
- online
|
|
108
136
|
"""
|
|
109
137
|
if domain is not None:
|
|
110
138
|
pulumi.set(__self__, "domain", domain)
|
|
@@ -121,7 +149,7 @@ class _RealTimeLogDeliveryState:
|
|
|
121
149
|
@pulumi.getter
|
|
122
150
|
def domain(self) -> Optional[pulumi.Input[str]]:
|
|
123
151
|
"""
|
|
124
|
-
The accelerated domain name for which you want to
|
|
152
|
+
The accelerated domain name for which you want to disable real-time log delivery. You can specify multiple domain names and separate them with commas (,).
|
|
125
153
|
"""
|
|
126
154
|
return pulumi.get(self, "domain")
|
|
127
155
|
|
|
@@ -133,7 +161,9 @@ class _RealTimeLogDeliveryState:
|
|
|
133
161
|
@pulumi.getter
|
|
134
162
|
def logstore(self) -> Optional[pulumi.Input[str]]:
|
|
135
163
|
"""
|
|
136
|
-
The
|
|
164
|
+
The ID of the region where the Log Service project is deployed. You can specify multiple region IDs and separate them with commas (,).
|
|
165
|
+
|
|
166
|
+
For more information about regions, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
137
167
|
"""
|
|
138
168
|
return pulumi.get(self, "logstore")
|
|
139
169
|
|
|
@@ -145,7 +175,7 @@ class _RealTimeLogDeliveryState:
|
|
|
145
175
|
@pulumi.getter
|
|
146
176
|
def project(self) -> Optional[pulumi.Input[str]]:
|
|
147
177
|
"""
|
|
148
|
-
The name of the
|
|
178
|
+
The name of the Logstore that collects log data from Alibaba Cloud CDN in real time. You can specify multiple Logstore names and separate them with commas (,).
|
|
149
179
|
"""
|
|
150
180
|
return pulumi.get(self, "project")
|
|
151
181
|
|
|
@@ -157,9 +187,7 @@ class _RealTimeLogDeliveryState:
|
|
|
157
187
|
@pulumi.getter(name="slsRegion")
|
|
158
188
|
def sls_region(self) -> Optional[pulumi.Input[str]]:
|
|
159
189
|
"""
|
|
160
|
-
The region where the Log Service project is deployed.
|
|
161
|
-
|
|
162
|
-
> **NOTE:** If your Project and Logstore services already exist, if you continue to create existing content, the created content will overwrite your existing indexes and custom reports. Please be careful to create your existing services to avoid affecting your online services after coverage.
|
|
190
|
+
The ID of the region where the Log Service project is deployed. For more information, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
163
191
|
"""
|
|
164
192
|
return pulumi.get(self, "sls_region")
|
|
165
193
|
|
|
@@ -171,7 +199,11 @@ class _RealTimeLogDeliveryState:
|
|
|
171
199
|
@pulumi.getter
|
|
172
200
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
173
201
|
"""
|
|
174
|
-
|
|
202
|
+
Resource attribute fields that represent the status of the resource.
|
|
203
|
+
|
|
204
|
+
Value:
|
|
205
|
+
- offline
|
|
206
|
+
- online
|
|
175
207
|
"""
|
|
176
208
|
return pulumi.get(self, "status")
|
|
177
209
|
|
|
@@ -189,10 +221,13 @@ class RealTimeLogDelivery(pulumi.CustomResource):
|
|
|
189
221
|
logstore: Optional[pulumi.Input[str]] = None,
|
|
190
222
|
project: Optional[pulumi.Input[str]] = None,
|
|
191
223
|
sls_region: Optional[pulumi.Input[str]] = None,
|
|
224
|
+
status: Optional[pulumi.Input[str]] = None,
|
|
192
225
|
__props__=None):
|
|
193
226
|
"""
|
|
194
227
|
Provides a CDN Real Time Log Delivery resource.
|
|
195
228
|
|
|
229
|
+
Accelerate domain name real-time log push.
|
|
230
|
+
|
|
196
231
|
For information about CDN Real Time Log Delivery and how to use it, see [What is Real Time Log Delivery](https://www.alibabacloud.com/help/en/cdn/developer-reference/api-cdn-2018-05-10-createrealtimelogdelivery).
|
|
197
232
|
|
|
198
233
|
> **NOTE:** Available since v1.134.0.
|
|
@@ -243,17 +278,22 @@ class RealTimeLogDelivery(pulumi.CustomResource):
|
|
|
243
278
|
CDN Real Time Log Delivery can be imported using the id, e.g.
|
|
244
279
|
|
|
245
280
|
```sh
|
|
246
|
-
$ pulumi import alicloud:cdn/realTimeLogDelivery:RealTimeLogDelivery example <
|
|
281
|
+
$ pulumi import alicloud:cdn/realTimeLogDelivery:RealTimeLogDelivery example <id>
|
|
247
282
|
```
|
|
248
283
|
|
|
249
284
|
:param str resource_name: The name of the resource.
|
|
250
285
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
251
|
-
:param pulumi.Input[str] domain: The accelerated domain name for which you want to
|
|
252
|
-
:param pulumi.Input[str] logstore: The
|
|
253
|
-
|
|
254
|
-
|
|
286
|
+
:param pulumi.Input[str] domain: The accelerated domain name for which you want to disable real-time log delivery. You can specify multiple domain names and separate them with commas (,).
|
|
287
|
+
:param pulumi.Input[str] logstore: The ID of the region where the Log Service project is deployed. You can specify multiple region IDs and separate them with commas (,).
|
|
288
|
+
|
|
289
|
+
For more information about regions, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
290
|
+
:param pulumi.Input[str] project: The name of the Logstore that collects log data from Alibaba Cloud CDN in real time. You can specify multiple Logstore names and separate them with commas (,).
|
|
291
|
+
:param pulumi.Input[str] sls_region: The ID of the region where the Log Service project is deployed. For more information, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
292
|
+
:param pulumi.Input[str] status: Resource attribute fields that represent the status of the resource.
|
|
255
293
|
|
|
256
|
-
|
|
294
|
+
Value:
|
|
295
|
+
- offline
|
|
296
|
+
- online
|
|
257
297
|
"""
|
|
258
298
|
...
|
|
259
299
|
@overload
|
|
@@ -264,6 +304,8 @@ class RealTimeLogDelivery(pulumi.CustomResource):
|
|
|
264
304
|
"""
|
|
265
305
|
Provides a CDN Real Time Log Delivery resource.
|
|
266
306
|
|
|
307
|
+
Accelerate domain name real-time log push.
|
|
308
|
+
|
|
267
309
|
For information about CDN Real Time Log Delivery and how to use it, see [What is Real Time Log Delivery](https://www.alibabacloud.com/help/en/cdn/developer-reference/api-cdn-2018-05-10-createrealtimelogdelivery).
|
|
268
310
|
|
|
269
311
|
> **NOTE:** Available since v1.134.0.
|
|
@@ -314,7 +356,7 @@ class RealTimeLogDelivery(pulumi.CustomResource):
|
|
|
314
356
|
CDN Real Time Log Delivery can be imported using the id, e.g.
|
|
315
357
|
|
|
316
358
|
```sh
|
|
317
|
-
$ pulumi import alicloud:cdn/realTimeLogDelivery:RealTimeLogDelivery example <
|
|
359
|
+
$ pulumi import alicloud:cdn/realTimeLogDelivery:RealTimeLogDelivery example <id>
|
|
318
360
|
```
|
|
319
361
|
|
|
320
362
|
:param str resource_name: The name of the resource.
|
|
@@ -336,6 +378,7 @@ class RealTimeLogDelivery(pulumi.CustomResource):
|
|
|
336
378
|
logstore: Optional[pulumi.Input[str]] = None,
|
|
337
379
|
project: Optional[pulumi.Input[str]] = None,
|
|
338
380
|
sls_region: Optional[pulumi.Input[str]] = None,
|
|
381
|
+
status: Optional[pulumi.Input[str]] = None,
|
|
339
382
|
__props__=None):
|
|
340
383
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
341
384
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -357,7 +400,7 @@ class RealTimeLogDelivery(pulumi.CustomResource):
|
|
|
357
400
|
if sls_region is None and not opts.urn:
|
|
358
401
|
raise TypeError("Missing required property 'sls_region'")
|
|
359
402
|
__props__.__dict__["sls_region"] = sls_region
|
|
360
|
-
__props__.__dict__["status"] =
|
|
403
|
+
__props__.__dict__["status"] = status
|
|
361
404
|
super(RealTimeLogDelivery, __self__).__init__(
|
|
362
405
|
'alicloud:cdn/realTimeLogDelivery:RealTimeLogDelivery',
|
|
363
406
|
resource_name,
|
|
@@ -380,13 +423,17 @@ class RealTimeLogDelivery(pulumi.CustomResource):
|
|
|
380
423
|
:param str resource_name: The unique name of the resulting resource.
|
|
381
424
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
382
425
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
383
|
-
:param pulumi.Input[str] domain: The accelerated domain name for which you want to
|
|
384
|
-
:param pulumi.Input[str] logstore: The
|
|
385
|
-
|
|
386
|
-
|
|
426
|
+
:param pulumi.Input[str] domain: The accelerated domain name for which you want to disable real-time log delivery. You can specify multiple domain names and separate them with commas (,).
|
|
427
|
+
:param pulumi.Input[str] logstore: The ID of the region where the Log Service project is deployed. You can specify multiple region IDs and separate them with commas (,).
|
|
428
|
+
|
|
429
|
+
For more information about regions, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
430
|
+
:param pulumi.Input[str] project: The name of the Logstore that collects log data from Alibaba Cloud CDN in real time. You can specify multiple Logstore names and separate them with commas (,).
|
|
431
|
+
:param pulumi.Input[str] sls_region: The ID of the region where the Log Service project is deployed. For more information, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
432
|
+
:param pulumi.Input[str] status: Resource attribute fields that represent the status of the resource.
|
|
387
433
|
|
|
388
|
-
|
|
389
|
-
|
|
434
|
+
Value:
|
|
435
|
+
- offline
|
|
436
|
+
- online
|
|
390
437
|
"""
|
|
391
438
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
392
439
|
|
|
@@ -403,7 +450,7 @@ class RealTimeLogDelivery(pulumi.CustomResource):
|
|
|
403
450
|
@pulumi.getter
|
|
404
451
|
def domain(self) -> pulumi.Output[str]:
|
|
405
452
|
"""
|
|
406
|
-
The accelerated domain name for which you want to
|
|
453
|
+
The accelerated domain name for which you want to disable real-time log delivery. You can specify multiple domain names and separate them with commas (,).
|
|
407
454
|
"""
|
|
408
455
|
return pulumi.get(self, "domain")
|
|
409
456
|
|
|
@@ -411,7 +458,9 @@ class RealTimeLogDelivery(pulumi.CustomResource):
|
|
|
411
458
|
@pulumi.getter
|
|
412
459
|
def logstore(self) -> pulumi.Output[str]:
|
|
413
460
|
"""
|
|
414
|
-
The
|
|
461
|
+
The ID of the region where the Log Service project is deployed. You can specify multiple region IDs and separate them with commas (,).
|
|
462
|
+
|
|
463
|
+
For more information about regions, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
415
464
|
"""
|
|
416
465
|
return pulumi.get(self, "logstore")
|
|
417
466
|
|
|
@@ -419,7 +468,7 @@ class RealTimeLogDelivery(pulumi.CustomResource):
|
|
|
419
468
|
@pulumi.getter
|
|
420
469
|
def project(self) -> pulumi.Output[str]:
|
|
421
470
|
"""
|
|
422
|
-
The name of the
|
|
471
|
+
The name of the Logstore that collects log data from Alibaba Cloud CDN in real time. You can specify multiple Logstore names and separate them with commas (,).
|
|
423
472
|
"""
|
|
424
473
|
return pulumi.get(self, "project")
|
|
425
474
|
|
|
@@ -427,9 +476,7 @@ class RealTimeLogDelivery(pulumi.CustomResource):
|
|
|
427
476
|
@pulumi.getter(name="slsRegion")
|
|
428
477
|
def sls_region(self) -> pulumi.Output[str]:
|
|
429
478
|
"""
|
|
430
|
-
The region where the Log Service project is deployed.
|
|
431
|
-
|
|
432
|
-
> **NOTE:** If your Project and Logstore services already exist, if you continue to create existing content, the created content will overwrite your existing indexes and custom reports. Please be careful to create your existing services to avoid affecting your online services after coverage.
|
|
479
|
+
The ID of the region where the Log Service project is deployed. For more information, see [Regions that support real-time log delivery](https://www.alibabacloud.com/help/en/doc-detail/144883.html).
|
|
433
480
|
"""
|
|
434
481
|
return pulumi.get(self, "sls_region")
|
|
435
482
|
|
|
@@ -437,7 +484,11 @@ class RealTimeLogDelivery(pulumi.CustomResource):
|
|
|
437
484
|
@pulumi.getter
|
|
438
485
|
def status(self) -> pulumi.Output[str]:
|
|
439
486
|
"""
|
|
440
|
-
|
|
487
|
+
Resource attribute fields that represent the status of the resource.
|
|
488
|
+
|
|
489
|
+
Value:
|
|
490
|
+
- offline
|
|
491
|
+
- online
|
|
441
492
|
"""
|
|
442
493
|
return pulumi.get(self, "status")
|
|
443
494
|
|