pulumi-alicloud 3.65.0a1730524658__py3-none-any.whl → 3.65.1__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 (55) hide show
  1. pulumi_alicloud/__init__.py +19 -0
  2. pulumi_alicloud/alb/load_balancer.py +1 -1
  3. pulumi_alicloud/arms/environment.py +7 -7
  4. pulumi_alicloud/arms/get_remote_writes.py +4 -4
  5. pulumi_alicloud/arms/prometheus_alert_rule.py +58 -0
  6. pulumi_alicloud/arms/remote_write.py +2 -2
  7. pulumi_alicloud/cen/transit_router_route_table_association.py +72 -68
  8. pulumi_alicloud/cen/transit_router_vbr_attachment.py +96 -74
  9. pulumi_alicloud/cloudstoragegateway/gateway.py +134 -58
  10. pulumi_alicloud/cms/hybrid_monitor_fc_task.py +28 -26
  11. pulumi_alicloud/cr/chain.py +22 -14
  12. pulumi_alicloud/cr/chart_repository.py +14 -6
  13. pulumi_alicloud/cr/repo.py +8 -8
  14. pulumi_alicloud/cr/vpc_endpoint_linked_vpc.py +14 -6
  15. pulumi_alicloud/cs/_inputs.py +6 -6
  16. pulumi_alicloud/cs/outputs.py +4 -4
  17. pulumi_alicloud/databasefilesystem/instance_attachment.py +59 -63
  18. pulumi_alicloud/databasefilesystem/snapshot.py +53 -109
  19. pulumi_alicloud/ecs/instance.py +7 -7
  20. pulumi_alicloud/ess/scaling_configuration.py +8 -8
  21. pulumi_alicloud/ess/scaling_group.py +54 -7
  22. pulumi_alicloud/fc/_inputs.py +3 -3
  23. pulumi_alicloud/fc/outputs.py +2 -2
  24. pulumi_alicloud/fc/trigger.py +202 -138
  25. pulumi_alicloud/ga/custom_routing_endpoint_traffic_policy.py +48 -44
  26. pulumi_alicloud/governance/_inputs.py +54 -0
  27. pulumi_alicloud/governance/account.py +49 -14
  28. pulumi_alicloud/governance/outputs.py +51 -0
  29. pulumi_alicloud/gpdb/instance.py +196 -15
  30. pulumi_alicloud/kms/get_secrets.py +5 -5
  31. pulumi_alicloud/kms/instance.py +28 -0
  32. pulumi_alicloud/kms/outputs.py +18 -18
  33. pulumi_alicloud/mse/__init__.py +2 -0
  34. pulumi_alicloud/mse/get_nacos_configs.py +394 -0
  35. pulumi_alicloud/mse/nacos_config.py +762 -0
  36. pulumi_alicloud/mse/outputs.py +129 -0
  37. pulumi_alicloud/nas/data_flow.py +6 -6
  38. pulumi_alicloud/nas/fileset.py +6 -6
  39. pulumi_alicloud/nas/lifecycle_policy.py +6 -6
  40. pulumi_alicloud/nas/recycle_bin.py +6 -6
  41. pulumi_alicloud/nas/snapshot.py +6 -6
  42. pulumi_alicloud/ocean/base_instance.py +2 -2
  43. pulumi_alicloud/pai/__init__.py +8 -0
  44. pulumi_alicloud/pai/workspace_workspace.py +447 -0
  45. pulumi_alicloud/polardb/cluster.py +14 -14
  46. pulumi_alicloud/pulumi-plugin.json +1 -1
  47. pulumi_alicloud/redis/tair_instance.py +1102 -71
  48. pulumi_alicloud/threatdetection/honeypot_preset.py +2 -0
  49. pulumi_alicloud/vpc/subnet.py +59 -27
  50. pulumi_alicloud/vpc/switch.py +104 -87
  51. pulumi_alicloud/vpn/gateway_vco_route.py +28 -8
  52. {pulumi_alicloud-3.65.0a1730524658.dist-info → pulumi_alicloud-3.65.1.dist-info}/METADATA +1 -1
  53. {pulumi_alicloud-3.65.0a1730524658.dist-info → pulumi_alicloud-3.65.1.dist-info}/RECORD +55 -51
  54. {pulumi_alicloud-3.65.0a1730524658.dist-info → pulumi_alicloud-3.65.1.dist-info}/WHEEL +1 -1
  55. {pulumi_alicloud-3.65.0a1730524658.dist-info → pulumi_alicloud-3.65.1.dist-info}/top_level.txt +0 -0
@@ -22,6 +22,7 @@ __all__ = [
22
22
  'GetEngineNamespacesNamespaceResult',
23
23
  'GetGatewaysGatewayResult',
24
24
  'GetGatewaysGatewaySlbListResult',
25
+ 'GetNacosConfigsConfigResult',
25
26
  'GetZnodesZnodeResult',
26
27
  ]
27
28
 
@@ -825,6 +826,134 @@ class GetGatewaysGatewaySlbListResult(dict):
825
826
  return pulumi.get(self, "type")
826
827
 
827
828
 
829
+ @pulumi.output_type
830
+ class GetNacosConfigsConfigResult(dict):
831
+ def __init__(__self__, *,
832
+ app_name: str,
833
+ beta_ips: str,
834
+ content: str,
835
+ data_id: str,
836
+ desc: str,
837
+ encrypted_data_key: str,
838
+ group: str,
839
+ id: str,
840
+ md5: str,
841
+ tags: str,
842
+ type: str):
843
+ """
844
+ :param str app_name: The name of the application.
845
+ :param str beta_ips: The list of IP addresses where the beta release of the configuration is performed.
846
+ :param str content: The content of the configuration.
847
+ :param str data_id: The ID of the data.
848
+ :param str desc: The description of the configuration.
849
+ :param str encrypted_data_key: The encryption key.
850
+ :param str group: The ID of the group.
851
+ :param str id: The ID of the Nacos Config. It is formatted to `<instance_id>:<namespace_id>:<data_id>:<group>`.
852
+ :param str md5: The message digest of the configuration.
853
+ :param str tags: The tags of the configuration.
854
+ :param str type: The format of the configuration. Supported formats include TEXT, JSON, and XML.
855
+ """
856
+ pulumi.set(__self__, "app_name", app_name)
857
+ pulumi.set(__self__, "beta_ips", beta_ips)
858
+ pulumi.set(__self__, "content", content)
859
+ pulumi.set(__self__, "data_id", data_id)
860
+ pulumi.set(__self__, "desc", desc)
861
+ pulumi.set(__self__, "encrypted_data_key", encrypted_data_key)
862
+ pulumi.set(__self__, "group", group)
863
+ pulumi.set(__self__, "id", id)
864
+ pulumi.set(__self__, "md5", md5)
865
+ pulumi.set(__self__, "tags", tags)
866
+ pulumi.set(__self__, "type", type)
867
+
868
+ @property
869
+ @pulumi.getter(name="appName")
870
+ def app_name(self) -> str:
871
+ """
872
+ The name of the application.
873
+ """
874
+ return pulumi.get(self, "app_name")
875
+
876
+ @property
877
+ @pulumi.getter(name="betaIps")
878
+ def beta_ips(self) -> str:
879
+ """
880
+ The list of IP addresses where the beta release of the configuration is performed.
881
+ """
882
+ return pulumi.get(self, "beta_ips")
883
+
884
+ @property
885
+ @pulumi.getter
886
+ def content(self) -> str:
887
+ """
888
+ The content of the configuration.
889
+ """
890
+ return pulumi.get(self, "content")
891
+
892
+ @property
893
+ @pulumi.getter(name="dataId")
894
+ def data_id(self) -> str:
895
+ """
896
+ The ID of the data.
897
+ """
898
+ return pulumi.get(self, "data_id")
899
+
900
+ @property
901
+ @pulumi.getter
902
+ def desc(self) -> str:
903
+ """
904
+ The description of the configuration.
905
+ """
906
+ return pulumi.get(self, "desc")
907
+
908
+ @property
909
+ @pulumi.getter(name="encryptedDataKey")
910
+ def encrypted_data_key(self) -> str:
911
+ """
912
+ The encryption key.
913
+ """
914
+ return pulumi.get(self, "encrypted_data_key")
915
+
916
+ @property
917
+ @pulumi.getter
918
+ def group(self) -> str:
919
+ """
920
+ The ID of the group.
921
+ """
922
+ return pulumi.get(self, "group")
923
+
924
+ @property
925
+ @pulumi.getter
926
+ def id(self) -> str:
927
+ """
928
+ The ID of the Nacos Config. It is formatted to `<instance_id>:<namespace_id>:<data_id>:<group>`.
929
+ """
930
+ return pulumi.get(self, "id")
931
+
932
+ @property
933
+ @pulumi.getter
934
+ def md5(self) -> str:
935
+ """
936
+ The message digest of the configuration.
937
+ """
938
+ return pulumi.get(self, "md5")
939
+
940
+ @property
941
+ @pulumi.getter
942
+ def tags(self) -> str:
943
+ """
944
+ The tags of the configuration.
945
+ """
946
+ return pulumi.get(self, "tags")
947
+
948
+ @property
949
+ @pulumi.getter
950
+ def type(self) -> str:
951
+ """
952
+ The format of the configuration. Supported formats include TEXT, JSON, and XML.
953
+ """
954
+ return pulumi.get(self, "type")
955
+
956
+
828
957
  @pulumi.output_type
829
958
  class GetZnodesZnodeResult(dict):
830
959
  def __init__(__self__, *,
@@ -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>
@@ -991,7 +991,7 @@ class BaseInstance(pulumi.CustomResource):
991
991
  auto_renew=False,
992
992
  disk_size=100,
993
993
  payment_type="PayAsYouGo",
994
- instance_class="8C32GB",
994
+ instance_class="8C32G",
995
995
  backup_retain_mode="delete_all",
996
996
  series="normal",
997
997
  instance_name=name)
@@ -1123,7 +1123,7 @@ class BaseInstance(pulumi.CustomResource):
1123
1123
  auto_renew=False,
1124
1124
  disk_size=100,
1125
1125
  payment_type="PayAsYouGo",
1126
- instance_class="8C32GB",
1126
+ instance_class="8C32G",
1127
1127
  backup_retain_mode="delete_all",
1128
1128
  series="normal",
1129
1129
  instance_name=name)
@@ -0,0 +1,8 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ from .. import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from .workspace_workspace import *