pulumi-alicloud 3.66.0a1731501166__py3-none-any.whl → 3.66.0a1731648019__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.

Files changed (35) hide show
  1. pulumi_alicloud/alb/load_balancer.py +1 -1
  2. pulumi_alicloud/arms/environment.py +7 -7
  3. pulumi_alicloud/arms/get_remote_writes.py +4 -4
  4. pulumi_alicloud/arms/prometheus_alert_rule.py +58 -0
  5. pulumi_alicloud/arms/remote_write.py +2 -2
  6. pulumi_alicloud/cen/transit_router_vbr_attachment.py +96 -74
  7. pulumi_alicloud/cms/hybrid_monitor_fc_task.py +28 -26
  8. pulumi_alicloud/cr/chain.py +22 -14
  9. pulumi_alicloud/cr/chart_repository.py +14 -6
  10. pulumi_alicloud/cr/repo.py +8 -8
  11. pulumi_alicloud/cr/vpc_endpoint_linked_vpc.py +14 -6
  12. pulumi_alicloud/databasefilesystem/instance_attachment.py +59 -63
  13. pulumi_alicloud/databasefilesystem/snapshot.py +53 -109
  14. pulumi_alicloud/ecs/instance.py +7 -7
  15. pulumi_alicloud/ess/scaling_configuration.py +7 -7
  16. pulumi_alicloud/fc/trigger.py +202 -138
  17. pulumi_alicloud/ga/custom_routing_endpoint_traffic_policy.py +48 -44
  18. pulumi_alicloud/governance/_inputs.py +54 -0
  19. pulumi_alicloud/governance/account.py +49 -14
  20. pulumi_alicloud/governance/outputs.py +51 -0
  21. pulumi_alicloud/gpdb/instance.py +196 -15
  22. pulumi_alicloud/kms/instance.py +28 -0
  23. pulumi_alicloud/nas/data_flow.py +6 -6
  24. pulumi_alicloud/nas/fileset.py +6 -6
  25. pulumi_alicloud/nas/lifecycle_policy.py +6 -6
  26. pulumi_alicloud/nas/recycle_bin.py +6 -6
  27. pulumi_alicloud/nas/snapshot.py +6 -6
  28. pulumi_alicloud/pulumi-plugin.json +1 -1
  29. pulumi_alicloud/redis/tair_instance.py +1102 -71
  30. pulumi_alicloud/threatdetection/honeypot_preset.py +2 -0
  31. pulumi_alicloud/vpn/gateway_vco_route.py +28 -8
  32. {pulumi_alicloud-3.66.0a1731501166.dist-info → pulumi_alicloud-3.66.0a1731648019.dist-info}/METADATA +1 -1
  33. {pulumi_alicloud-3.66.0a1731501166.dist-info → pulumi_alicloud-3.66.0a1731648019.dist-info}/RECORD +35 -35
  34. {pulumi_alicloud-3.66.0a1731501166.dist-info → pulumi_alicloud-3.66.0a1731648019.dist-info}/WHEEL +0 -0
  35. {pulumi_alicloud-3.66.0a1731501166.dist-info → pulumi_alicloud-3.66.0a1731648019.dist-info}/top_level.txt +0 -0
@@ -285,6 +285,7 @@ class _InstanceState:
285
285
  bind_vpcs: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceBindVpcArgs']]]] = None,
286
286
  ca_certificate_chain_pem: Optional[pulumi.Input[str]] = None,
287
287
  create_time: Optional[pulumi.Input[str]] = None,
288
+ end_date: Optional[pulumi.Input[str]] = None,
288
289
  force_delete_without_backup: Optional[pulumi.Input[str]] = None,
289
290
  instance_name: Optional[pulumi.Input[str]] = None,
290
291
  key_num: Optional[pulumi.Input[int]] = None,
@@ -307,6 +308,7 @@ class _InstanceState:
307
308
  :param pulumi.Input[Sequence[pulumi.Input['InstanceBindVpcArgs']]] bind_vpcs: Aucillary VPCs used to access this KMS instance. See `bind_vpcs` below.
308
309
  :param pulumi.Input[str] ca_certificate_chain_pem: KMS instance certificate chain in PEM format.
309
310
  :param pulumi.Input[str] create_time: The creation time of the resource.
311
+ :param pulumi.Input[str] end_date: (Available since v1.233.1) Instance expiration time.
310
312
  :param pulumi.Input[str] force_delete_without_backup: Whether to force deletion even without backup.
311
313
  :param pulumi.Input[str] instance_name: The name of the resource.
312
314
  :param pulumi.Input[int] key_num: Maximum number of stored keys. The attribute is valid when the attribute `payment_type` is `Subscription`.
@@ -331,6 +333,8 @@ class _InstanceState:
331
333
  pulumi.set(__self__, "ca_certificate_chain_pem", ca_certificate_chain_pem)
332
334
  if create_time is not None:
333
335
  pulumi.set(__self__, "create_time", create_time)
336
+ if end_date is not None:
337
+ pulumi.set(__self__, "end_date", end_date)
334
338
  if force_delete_without_backup is not None:
335
339
  pulumi.set(__self__, "force_delete_without_backup", force_delete_without_backup)
336
340
  if instance_name is not None:
@@ -402,6 +406,18 @@ class _InstanceState:
402
406
  def create_time(self, value: Optional[pulumi.Input[str]]):
403
407
  pulumi.set(self, "create_time", value)
404
408
 
409
+ @property
410
+ @pulumi.getter(name="endDate")
411
+ def end_date(self) -> Optional[pulumi.Input[str]]:
412
+ """
413
+ (Available since v1.233.1) Instance expiration time.
414
+ """
415
+ return pulumi.get(self, "end_date")
416
+
417
+ @end_date.setter
418
+ def end_date(self, value: Optional[pulumi.Input[str]]):
419
+ pulumi.set(self, "end_date", value)
420
+
405
421
  @property
406
422
  @pulumi.getter(name="forceDeleteWithoutBackup")
407
423
  def force_delete_without_backup(self) -> Optional[pulumi.Input[str]]:
@@ -808,6 +824,7 @@ class Instance(pulumi.CustomResource):
808
824
  __props__.__dict__["zone_ids"] = zone_ids
809
825
  __props__.__dict__["ca_certificate_chain_pem"] = None
810
826
  __props__.__dict__["create_time"] = None
827
+ __props__.__dict__["end_date"] = None
811
828
  __props__.__dict__["instance_name"] = None
812
829
  __props__.__dict__["status"] = None
813
830
  super(Instance, __self__).__init__(
@@ -823,6 +840,7 @@ class Instance(pulumi.CustomResource):
823
840
  bind_vpcs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceBindVpcArgs', 'InstanceBindVpcArgsDict']]]]] = None,
824
841
  ca_certificate_chain_pem: Optional[pulumi.Input[str]] = None,
825
842
  create_time: Optional[pulumi.Input[str]] = None,
843
+ end_date: Optional[pulumi.Input[str]] = None,
826
844
  force_delete_without_backup: Optional[pulumi.Input[str]] = None,
827
845
  instance_name: Optional[pulumi.Input[str]] = None,
828
846
  key_num: Optional[pulumi.Input[int]] = None,
@@ -850,6 +868,7 @@ class Instance(pulumi.CustomResource):
850
868
  :param pulumi.Input[Sequence[pulumi.Input[Union['InstanceBindVpcArgs', 'InstanceBindVpcArgsDict']]]] bind_vpcs: Aucillary VPCs used to access this KMS instance. See `bind_vpcs` below.
851
869
  :param pulumi.Input[str] ca_certificate_chain_pem: KMS instance certificate chain in PEM format.
852
870
  :param pulumi.Input[str] create_time: The creation time of the resource.
871
+ :param pulumi.Input[str] end_date: (Available since v1.233.1) Instance expiration time.
853
872
  :param pulumi.Input[str] force_delete_without_backup: Whether to force deletion even without backup.
854
873
  :param pulumi.Input[str] instance_name: The name of the resource.
855
874
  :param pulumi.Input[int] key_num: Maximum number of stored keys. The attribute is valid when the attribute `payment_type` is `Subscription`.
@@ -875,6 +894,7 @@ class Instance(pulumi.CustomResource):
875
894
  __props__.__dict__["bind_vpcs"] = bind_vpcs
876
895
  __props__.__dict__["ca_certificate_chain_pem"] = ca_certificate_chain_pem
877
896
  __props__.__dict__["create_time"] = create_time
897
+ __props__.__dict__["end_date"] = end_date
878
898
  __props__.__dict__["force_delete_without_backup"] = force_delete_without_backup
879
899
  __props__.__dict__["instance_name"] = instance_name
880
900
  __props__.__dict__["key_num"] = key_num
@@ -918,6 +938,14 @@ class Instance(pulumi.CustomResource):
918
938
  """
919
939
  return pulumi.get(self, "create_time")
920
940
 
941
+ @property
942
+ @pulumi.getter(name="endDate")
943
+ def end_date(self) -> pulumi.Output[str]:
944
+ """
945
+ (Available since v1.233.1) Instance expiration time.
946
+ """
947
+ return pulumi.get(self, "end_date")
948
+
921
949
  @property
922
950
  @pulumi.getter(name="forceDeleteWithoutBackup")
923
951
  def force_delete_without_backup(self) -> pulumi.Output[Optional[str]]:
@@ -335,15 +335,15 @@ class DataFlow(pulumi.CustomResource):
335
335
  throughput: Optional[pulumi.Input[int]] = None,
336
336
  __props__=None):
337
337
  """
338
- Provides a Apsara File Storage (NAS) Data Flow resource.
338
+ Provides a File Storage (NAS) Data Flow resource.
339
339
 
340
- For information about Apsara File Storage (NAS) Data Flow and how to use it, see [What is Data Flow](https://www.alibabacloud.com/help/en/doc-detail/27530.html).
340
+ For information about File Storage (NAS) Data Flow and how to use it, see [What is Data Flow](https://www.alibabacloud.com/help/en/doc-detail/27530.html).
341
341
 
342
342
  > **NOTE:** Available since v1.153.0.
343
343
 
344
344
  ## Import
345
345
 
346
- Apsara File Storage (NAS) Data Flow can be imported using the id, e.g.
346
+ File Storage (NAS) Data Flow can be imported using the id, e.g.
347
347
 
348
348
  ```sh
349
349
  $ pulumi import alicloud:nas/dataFlow:DataFlow example <file_system_id>:<data_flow_id>
@@ -372,15 +372,15 @@ class DataFlow(pulumi.CustomResource):
372
372
  args: DataFlowArgs,
373
373
  opts: Optional[pulumi.ResourceOptions] = None):
374
374
  """
375
- Provides a Apsara File Storage (NAS) Data Flow resource.
375
+ Provides a File Storage (NAS) Data Flow resource.
376
376
 
377
- For information about Apsara File Storage (NAS) Data Flow and how to use it, see [What is Data Flow](https://www.alibabacloud.com/help/en/doc-detail/27530.html).
377
+ For information about File Storage (NAS) Data Flow and how to use it, see [What is Data Flow](https://www.alibabacloud.com/help/en/doc-detail/27530.html).
378
378
 
379
379
  > **NOTE:** Available since v1.153.0.
380
380
 
381
381
  ## Import
382
382
 
383
- Apsara File Storage (NAS) Data Flow can be imported using the id, e.g.
383
+ File Storage (NAS) Data Flow can be imported using the id, e.g.
384
384
 
385
385
  ```sh
386
386
  $ pulumi import alicloud:nas/dataFlow:DataFlow example <file_system_id>:<data_flow_id>
@@ -201,9 +201,9 @@ class Fileset(pulumi.CustomResource):
201
201
  file_system_path: Optional[pulumi.Input[str]] = None,
202
202
  __props__=None):
203
203
  """
204
- Provides a Apsara File Storage (NAS) Fileset resource.
204
+ Provides a File Storage (NAS) Fileset resource.
205
205
 
206
- For information about Apsara File Storage (NAS) Fileset and how to use it, see [What is Fileset](https://www.alibabacloud.com/help/en/doc-detail/27530.html).
206
+ For information about File Storage (NAS) Fileset and how to use it, see [What is Fileset](https://www.alibabacloud.com/help/en/doc-detail/27530.html).
207
207
 
208
208
  > **NOTE:** Available in v1.153.0+.
209
209
 
@@ -240,7 +240,7 @@ class Fileset(pulumi.CustomResource):
240
240
 
241
241
  ## Import
242
242
 
243
- Apsara File Storage (NAS) Fileset can be imported using the id, e.g.
243
+ File Storage (NAS) Fileset can be imported using the id, e.g.
244
244
 
245
245
  ```sh
246
246
  $ pulumi import alicloud:nas/fileset:Fileset example <file_system_id>:<fileset_id>
@@ -260,9 +260,9 @@ class Fileset(pulumi.CustomResource):
260
260
  args: FilesetArgs,
261
261
  opts: Optional[pulumi.ResourceOptions] = None):
262
262
  """
263
- Provides a Apsara File Storage (NAS) Fileset resource.
263
+ Provides a File Storage (NAS) Fileset resource.
264
264
 
265
- For information about Apsara File Storage (NAS) Fileset and how to use it, see [What is Fileset](https://www.alibabacloud.com/help/en/doc-detail/27530.html).
265
+ For information about File Storage (NAS) Fileset and how to use it, see [What is Fileset](https://www.alibabacloud.com/help/en/doc-detail/27530.html).
266
266
 
267
267
  > **NOTE:** Available in v1.153.0+.
268
268
 
@@ -299,7 +299,7 @@ class Fileset(pulumi.CustomResource):
299
299
 
300
300
  ## Import
301
301
 
302
- Apsara File Storage (NAS) Fileset can be imported using the id, e.g.
302
+ File Storage (NAS) Fileset can be imported using the id, e.g.
303
303
 
304
304
  ```sh
305
305
  $ pulumi import alicloud:nas/fileset:Fileset example <file_system_id>:<fileset_id>
@@ -199,9 +199,9 @@ class LifecyclePolicy(pulumi.CustomResource):
199
199
  storage_type: Optional[pulumi.Input[str]] = None,
200
200
  __props__=None):
201
201
  """
202
- Provides a Apsara File Storage (NAS) Lifecycle Policy resource.
202
+ Provides a File Storage (NAS) Lifecycle Policy resource.
203
203
 
204
- For information about Apsara File Storage (NAS) Lifecycle Policy and how to use it, see [What is Lifecycle Policy](https://www.alibabacloud.com/help/en/doc-detail/169362.html).
204
+ For information about File Storage (NAS) Lifecycle Policy and how to use it, see [What is Lifecycle Policy](https://www.alibabacloud.com/help/en/doc-detail/169362.html).
205
205
 
206
206
  > **NOTE:** Available in v1.153.0+.
207
207
 
@@ -226,7 +226,7 @@ class LifecyclePolicy(pulumi.CustomResource):
226
226
 
227
227
  ## Import
228
228
 
229
- Apsara File Storage (NAS) Lifecycle Policy can be imported using the id, e.g.
229
+ File Storage (NAS) Lifecycle Policy can be imported using the id, e.g.
230
230
 
231
231
  ```sh
232
232
  $ pulumi import alicloud:nas/lifecyclePolicy:LifecyclePolicy example <file_system_id>:<lifecycle_policy_name>
@@ -247,9 +247,9 @@ class LifecyclePolicy(pulumi.CustomResource):
247
247
  args: LifecyclePolicyArgs,
248
248
  opts: Optional[pulumi.ResourceOptions] = None):
249
249
  """
250
- Provides a Apsara File Storage (NAS) Lifecycle Policy resource.
250
+ Provides a File Storage (NAS) Lifecycle Policy resource.
251
251
 
252
- For information about Apsara File Storage (NAS) Lifecycle Policy and how to use it, see [What is Lifecycle Policy](https://www.alibabacloud.com/help/en/doc-detail/169362.html).
252
+ For information about File Storage (NAS) Lifecycle Policy and how to use it, see [What is Lifecycle Policy](https://www.alibabacloud.com/help/en/doc-detail/169362.html).
253
253
 
254
254
  > **NOTE:** Available in v1.153.0+.
255
255
 
@@ -274,7 +274,7 @@ class LifecyclePolicy(pulumi.CustomResource):
274
274
 
275
275
  ## Import
276
276
 
277
- Apsara File Storage (NAS) Lifecycle Policy can be imported using the id, e.g.
277
+ File Storage (NAS) Lifecycle Policy can be imported using the id, e.g.
278
278
 
279
279
  ```sh
280
280
  $ pulumi import alicloud:nas/lifecyclePolicy:LifecyclePolicy example <file_system_id>:<lifecycle_policy_name>
@@ -120,9 +120,9 @@ class RecycleBin(pulumi.CustomResource):
120
120
  reserved_days: Optional[pulumi.Input[int]] = None,
121
121
  __props__=None):
122
122
  """
123
- Provides a Apsara File Storage (NAS) Recycle Bin resource.
123
+ Provides a File Storage (NAS) Recycle Bin resource.
124
124
 
125
- For information about Apsara File Storage (NAS) Recycle Bin and how to use it, see [What is Recycle Bin](https://www.alibabacloud.com/help/en/doc-detail/264185.html).
125
+ For information about File Storage (NAS) Recycle Bin and how to use it, see [What is Recycle Bin](https://www.alibabacloud.com/help/en/doc-detail/264185.html).
126
126
 
127
127
  > **NOTE:** Available in v1.155.0+.
128
128
 
@@ -148,7 +148,7 @@ class RecycleBin(pulumi.CustomResource):
148
148
 
149
149
  ## Import
150
150
 
151
- Apsara File Storage (NAS) Recycle Bin can be imported using the id, e.g.
151
+ File Storage (NAS) Recycle Bin can be imported using the id, e.g.
152
152
 
153
153
  ```sh
154
154
  $ pulumi import alicloud:nas/recycleBin:RecycleBin example <file_system_id>
@@ -166,9 +166,9 @@ class RecycleBin(pulumi.CustomResource):
166
166
  args: RecycleBinArgs,
167
167
  opts: Optional[pulumi.ResourceOptions] = None):
168
168
  """
169
- Provides a Apsara File Storage (NAS) Recycle Bin resource.
169
+ Provides a File Storage (NAS) Recycle Bin resource.
170
170
 
171
- For information about Apsara File Storage (NAS) Recycle Bin and how to use it, see [What is Recycle Bin](https://www.alibabacloud.com/help/en/doc-detail/264185.html).
171
+ For information about File Storage (NAS) Recycle Bin and how to use it, see [What is Recycle Bin](https://www.alibabacloud.com/help/en/doc-detail/264185.html).
172
172
 
173
173
  > **NOTE:** Available in v1.155.0+.
174
174
 
@@ -194,7 +194,7 @@ class RecycleBin(pulumi.CustomResource):
194
194
 
195
195
  ## Import
196
196
 
197
- Apsara File Storage (NAS) Recycle Bin can be imported using the id, e.g.
197
+ File Storage (NAS) Recycle Bin can be imported using the id, e.g.
198
198
 
199
199
  ```sh
200
200
  $ pulumi import alicloud:nas/recycleBin:RecycleBin example <file_system_id>
@@ -190,9 +190,9 @@ class Snapshot(pulumi.CustomResource):
190
190
  snapshot_name: Optional[pulumi.Input[str]] = None,
191
191
  __props__=None):
192
192
  """
193
- Provides a Apsara File Storage (NAS) Snapshot resource.
193
+ Provides a File Storage (NAS) Snapshot resource.
194
194
 
195
- For information about Apsara File Storage (NAS) Snapshot and how to use it, see [What is Snapshot](https://www.alibabacloud.com/help/en/doc-detail/126549.html).
195
+ For information about File Storage (NAS) Snapshot and how to use it, see [What is Snapshot](https://www.alibabacloud.com/help/en/doc-detail/126549.html).
196
196
 
197
197
  > **NOTE:** Available in v1.152.0+.
198
198
 
@@ -226,7 +226,7 @@ class Snapshot(pulumi.CustomResource):
226
226
 
227
227
  ## Import
228
228
 
229
- Apsara File Storage (NAS) Snapshot can be imported using the id, e.g.
229
+ File Storage (NAS) Snapshot can be imported using the id, e.g.
230
230
 
231
231
  ```sh
232
232
  $ pulumi import alicloud:nas/snapshot:Snapshot example <id>
@@ -247,9 +247,9 @@ class Snapshot(pulumi.CustomResource):
247
247
  args: SnapshotArgs,
248
248
  opts: Optional[pulumi.ResourceOptions] = None):
249
249
  """
250
- Provides a Apsara File Storage (NAS) Snapshot resource.
250
+ Provides a File Storage (NAS) Snapshot resource.
251
251
 
252
- For information about Apsara File Storage (NAS) Snapshot and how to use it, see [What is Snapshot](https://www.alibabacloud.com/help/en/doc-detail/126549.html).
252
+ For information about File Storage (NAS) Snapshot and how to use it, see [What is Snapshot](https://www.alibabacloud.com/help/en/doc-detail/126549.html).
253
253
 
254
254
  > **NOTE:** Available in v1.152.0+.
255
255
 
@@ -283,7 +283,7 @@ class Snapshot(pulumi.CustomResource):
283
283
 
284
284
  ## Import
285
285
 
286
- Apsara File Storage (NAS) Snapshot can be imported using the id, e.g.
286
+ File Storage (NAS) Snapshot can be imported using the id, e.g.
287
287
 
288
288
  ```sh
289
289
  $ pulumi import alicloud:nas/snapshot:Snapshot example <id>
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "alicloud",
4
- "version": "3.66.0-alpha.1731501166"
4
+ "version": "3.66.0-alpha.1731648019"
5
5
  }