pulumi-alicloud 3.84.0a1757017465__py3-none-any.whl → 3.85.0a1757389637__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 (54) hide show
  1. pulumi_alicloud/__init__.py +64 -0
  2. pulumi_alicloud/amqp/get_instances.py +49 -20
  3. pulumi_alicloud/amqp/outputs.py +20 -20
  4. pulumi_alicloud/amqp/virtual_host.py +46 -20
  5. pulumi_alicloud/cloudsso/__init__.py +1 -0
  6. pulumi_alicloud/cloudsso/delegate_account.py +218 -0
  7. pulumi_alicloud/cs/node_pool.py +7 -0
  8. pulumi_alicloud/ddos/bgp_ip.py +57 -48
  9. pulumi_alicloud/ddos/ddos_bgp_instance.py +246 -106
  10. pulumi_alicloud/dms/__init__.py +1 -0
  11. pulumi_alicloud/dms/enterprise_workspace.py +354 -0
  12. pulumi_alicloud/dns/ddos_bgp_instance.py +246 -106
  13. pulumi_alicloud/eflo/node.py +54 -7
  14. pulumi_alicloud/esa/__init__.py +3 -0
  15. pulumi_alicloud/esa/kv_account.py +145 -0
  16. pulumi_alicloud/esa/routine_related_record.py +226 -0
  17. pulumi_alicloud/esa/url_observation.py +352 -0
  18. pulumi_alicloud/fc/get_service.py +2 -2
  19. pulumi_alicloud/hologram/instance.py +35 -0
  20. pulumi_alicloud/kms/instance.py +47 -0
  21. pulumi_alicloud/log/oss_export.py +6 -0
  22. pulumi_alicloud/message/service_subscription.py +48 -1
  23. pulumi_alicloud/mongodb/sharding_instance.py +338 -0
  24. pulumi_alicloud/nlb/server_group.py +28 -21
  25. pulumi_alicloud/oss/bucket.py +56 -0
  26. pulumi_alicloud/privatelink/vpc_endpoint.py +21 -7
  27. pulumi_alicloud/pulumi-plugin.json +1 -1
  28. pulumi_alicloud/resourcemanager/__init__.py +1 -0
  29. pulumi_alicloud/resourcemanager/delegated_administrator.py +22 -50
  30. pulumi_alicloud/resourcemanager/folder.py +106 -29
  31. pulumi_alicloud/resourcemanager/get_accounts.py +35 -18
  32. pulumi_alicloud/resourcemanager/message_contact.py +572 -0
  33. pulumi_alicloud/resourcemanager/outputs.py +31 -20
  34. pulumi_alicloud/resourcemanager/resource_directory.py +137 -46
  35. pulumi_alicloud/resourcemanager/shared_resource.py +81 -45
  36. pulumi_alicloud/resourcemanager/shared_target.py +60 -24
  37. pulumi_alicloud/sls/__init__.py +4 -0
  38. pulumi_alicloud/sls/_inputs.py +128 -0
  39. pulumi_alicloud/sls/get_logtail_configs.py +395 -0
  40. pulumi_alicloud/sls/get_machine_groups.py +229 -0
  41. pulumi_alicloud/sls/logtail_config.py +692 -0
  42. pulumi_alicloud/sls/machine_group.py +502 -0
  43. pulumi_alicloud/sls/outputs.py +172 -0
  44. pulumi_alicloud/vpc/_inputs.py +87 -54
  45. pulumi_alicloud/vpc/dhcp_options_set.py +97 -58
  46. pulumi_alicloud/vpc/flow_log.py +25 -25
  47. pulumi_alicloud/vpc/ha_vip_attachment.py +41 -60
  48. pulumi_alicloud/vpc/ha_vipv2.py +100 -88
  49. pulumi_alicloud/vpc/network_acl.py +34 -23
  50. pulumi_alicloud/vpc/outputs.py +58 -36
  51. {pulumi_alicloud-3.84.0a1757017465.dist-info → pulumi_alicloud-3.85.0a1757389637.dist-info}/METADATA +1 -1
  52. {pulumi_alicloud-3.84.0a1757017465.dist-info → pulumi_alicloud-3.85.0a1757389637.dist-info}/RECORD +54 -44
  53. {pulumi_alicloud-3.84.0a1757017465.dist-info → pulumi_alicloud-3.85.0a1757389637.dist-info}/WHEEL +0 -0
  54. {pulumi_alicloud-3.84.0a1757017465.dist-info → pulumi_alicloud-3.85.0a1757389637.dist-info}/top_level.txt +0 -0
@@ -27,15 +27,10 @@ class HAVipAttachmentArgs:
27
27
  """
28
28
  The set of arguments for constructing a HAVipAttachment resource.
29
29
  :param pulumi.Input[_builtins.str] instance_id: The ID of the ECS instance bound to the HaVip instance.
30
- :param pulumi.Input[_builtins.bool] force: Whether to force the ECS instance or Eni instance bound to AVIP to be unbound. The value is:
31
- - **True**: Force unbinding.
32
- - **False** (default): unbinding is not forced.
33
- > **NOTE:** If the value of this parameter is **False**, the Master instance bound to HaVip cannot be unbound.
30
+ :param pulumi.Input[_builtins.bool] force: Specifies whether to force delete the snapshot.
34
31
  :param pulumi.Input[_builtins.str] ha_vip_id: The ID of the HaVip instance.
35
- :param pulumi.Input[_builtins.str] havip_id: . Field 'havip_id' has been deprecated from provider version 1.211.0. New field 'ha_vip_id' instead.
36
- :param pulumi.Input[_builtins.str] instance_type: The type of the instance associated with the VIIP.
37
-
38
- The following arguments will be discarded. Please use new fields as soon as possible:
32
+ :param pulumi.Input[_builtins.str] havip_id: . Field 'havip_id' has been deprecated from provider version 1.259.0. New field 'ha_vip_id' instead.
33
+ :param pulumi.Input[_builtins.str] instance_type: The type of the instance to be associated with the HAVIP. Valid values: * `EcsInstance`: an ECS instance * `NetworkInterface`: an ENI. If you want to associate the HAVIP with an ENI, this parameter is required.
39
34
  """
40
35
  pulumi.set(__self__, "instance_id", instance_id)
41
36
  if force is not None:
@@ -66,10 +61,7 @@ class HAVipAttachmentArgs:
66
61
  @pulumi.getter
67
62
  def force(self) -> Optional[pulumi.Input[_builtins.bool]]:
68
63
  """
69
- Whether to force the ECS instance or Eni instance bound to AVIP to be unbound. The value is:
70
- - **True**: Force unbinding.
71
- - **False** (default): unbinding is not forced.
72
- > **NOTE:** If the value of this parameter is **False**, the Master instance bound to HaVip cannot be unbound.
64
+ Specifies whether to force delete the snapshot.
73
65
  """
74
66
  return pulumi.get(self, "force")
75
67
 
@@ -94,7 +86,7 @@ class HAVipAttachmentArgs:
94
86
  @_utilities.deprecated("""Field 'havip_id' has been deprecated since provider version 1.211.0. New field 'ha_vip_id' instead.""")
95
87
  def havip_id(self) -> Optional[pulumi.Input[_builtins.str]]:
96
88
  """
97
- . Field 'havip_id' has been deprecated from provider version 1.211.0. New field 'ha_vip_id' instead.
89
+ . Field 'havip_id' has been deprecated from provider version 1.259.0. New field 'ha_vip_id' instead.
98
90
  """
99
91
  return pulumi.get(self, "havip_id")
100
92
 
@@ -106,9 +98,7 @@ class HAVipAttachmentArgs:
106
98
  @pulumi.getter(name="instanceType")
107
99
  def instance_type(self) -> Optional[pulumi.Input[_builtins.str]]:
108
100
  """
109
- The type of the instance associated with the VIIP.
110
-
111
- The following arguments will be discarded. Please use new fields as soon as possible:
101
+ The type of the instance to be associated with the HAVIP. Valid values: * `EcsInstance`: an ECS instance * `NetworkInterface`: an ENI. If you want to associate the HAVIP with an ENI, this parameter is required.
112
102
  """
113
103
  return pulumi.get(self, "instance_type")
114
104
 
@@ -128,17 +118,12 @@ class _HAVipAttachmentState:
128
118
  status: Optional[pulumi.Input[_builtins.str]] = None):
129
119
  """
130
120
  Input properties used for looking up and filtering HAVipAttachment resources.
131
- :param pulumi.Input[_builtins.bool] force: Whether to force the ECS instance or Eni instance bound to AVIP to be unbound. The value is:
132
- - **True**: Force unbinding.
133
- - **False** (default): unbinding is not forced.
134
- > **NOTE:** If the value of this parameter is **False**, the Master instance bound to HaVip cannot be unbound.
121
+ :param pulumi.Input[_builtins.bool] force: Specifies whether to force delete the snapshot.
135
122
  :param pulumi.Input[_builtins.str] ha_vip_id: The ID of the HaVip instance.
136
- :param pulumi.Input[_builtins.str] havip_id: . Field 'havip_id' has been deprecated from provider version 1.211.0. New field 'ha_vip_id' instead.
123
+ :param pulumi.Input[_builtins.str] havip_id: . Field 'havip_id' has been deprecated from provider version 1.259.0. New field 'ha_vip_id' instead.
137
124
  :param pulumi.Input[_builtins.str] instance_id: The ID of the ECS instance bound to the HaVip instance.
138
- :param pulumi.Input[_builtins.str] instance_type: The type of the instance associated with the VIIP.
139
-
140
- The following arguments will be discarded. Please use new fields as soon as possible:
141
- :param pulumi.Input[_builtins.str] status: The status of the resource.
125
+ :param pulumi.Input[_builtins.str] instance_type: The type of the instance to be associated with the HAVIP. Valid values: * `EcsInstance`: an ECS instance * `NetworkInterface`: an ENI. If you want to associate the HAVIP with an ENI, this parameter is required.
126
+ :param pulumi.Input[_builtins.str] status: The status of the resource
142
127
  """
143
128
  if force is not None:
144
129
  pulumi.set(__self__, "force", force)
@@ -160,10 +145,7 @@ class _HAVipAttachmentState:
160
145
  @pulumi.getter
161
146
  def force(self) -> Optional[pulumi.Input[_builtins.bool]]:
162
147
  """
163
- Whether to force the ECS instance or Eni instance bound to AVIP to be unbound. The value is:
164
- - **True**: Force unbinding.
165
- - **False** (default): unbinding is not forced.
166
- > **NOTE:** If the value of this parameter is **False**, the Master instance bound to HaVip cannot be unbound.
148
+ Specifies whether to force delete the snapshot.
167
149
  """
168
150
  return pulumi.get(self, "force")
169
151
 
@@ -188,7 +170,7 @@ class _HAVipAttachmentState:
188
170
  @_utilities.deprecated("""Field 'havip_id' has been deprecated since provider version 1.211.0. New field 'ha_vip_id' instead.""")
189
171
  def havip_id(self) -> Optional[pulumi.Input[_builtins.str]]:
190
172
  """
191
- . Field 'havip_id' has been deprecated from provider version 1.211.0. New field 'ha_vip_id' instead.
173
+ . Field 'havip_id' has been deprecated from provider version 1.259.0. New field 'ha_vip_id' instead.
192
174
  """
193
175
  return pulumi.get(self, "havip_id")
194
176
 
@@ -212,9 +194,7 @@ class _HAVipAttachmentState:
212
194
  @pulumi.getter(name="instanceType")
213
195
  def instance_type(self) -> Optional[pulumi.Input[_builtins.str]]:
214
196
  """
215
- The type of the instance associated with the VIIP.
216
-
217
- The following arguments will be discarded. Please use new fields as soon as possible:
197
+ The type of the instance to be associated with the HAVIP. Valid values: * `EcsInstance`: an ECS instance * `NetworkInterface`: an ENI. If you want to associate the HAVIP with an ENI, this parameter is required.
218
198
  """
219
199
  return pulumi.get(self, "instance_type")
220
200
 
@@ -226,7 +206,7 @@ class _HAVipAttachmentState:
226
206
  @pulumi.getter
227
207
  def status(self) -> Optional[pulumi.Input[_builtins.str]]:
228
208
  """
229
- The status of the resource.
209
+ The status of the resource
230
210
  """
231
211
  return pulumi.get(self, "status")
232
212
 
@@ -248,6 +228,14 @@ class HAVipAttachment(pulumi.CustomResource):
248
228
  instance_type: Optional[pulumi.Input[_builtins.str]] = None,
249
229
  __props__=None):
250
230
  """
231
+ Provides a VPC Ha Vip Attachment resource.
232
+
233
+ Attaching ECS instance to Havip.
234
+
235
+ For information about VPC Ha Vip Attachment and how to use it, see [What is Ha Vip Attachment](https://next.api.alibabacloud.com/document/Vpc/2016-04-28/AssociateHaVip).
236
+
237
+ > **NOTE:** Available since v1.18.0.
238
+
251
239
  ## Example Usage
252
240
 
253
241
  Basic Usage
@@ -307,16 +295,11 @@ class HAVipAttachment(pulumi.CustomResource):
307
295
 
308
296
  :param str resource_name: The name of the resource.
309
297
  :param pulumi.ResourceOptions opts: Options for the resource.
310
- :param pulumi.Input[_builtins.bool] force: Whether to force the ECS instance or Eni instance bound to AVIP to be unbound. The value is:
311
- - **True**: Force unbinding.
312
- - **False** (default): unbinding is not forced.
313
- > **NOTE:** If the value of this parameter is **False**, the Master instance bound to HaVip cannot be unbound.
298
+ :param pulumi.Input[_builtins.bool] force: Specifies whether to force delete the snapshot.
314
299
  :param pulumi.Input[_builtins.str] ha_vip_id: The ID of the HaVip instance.
315
- :param pulumi.Input[_builtins.str] havip_id: . Field 'havip_id' has been deprecated from provider version 1.211.0. New field 'ha_vip_id' instead.
300
+ :param pulumi.Input[_builtins.str] havip_id: . Field 'havip_id' has been deprecated from provider version 1.259.0. New field 'ha_vip_id' instead.
316
301
  :param pulumi.Input[_builtins.str] instance_id: The ID of the ECS instance bound to the HaVip instance.
317
- :param pulumi.Input[_builtins.str] instance_type: The type of the instance associated with the VIIP.
318
-
319
- The following arguments will be discarded. Please use new fields as soon as possible:
302
+ :param pulumi.Input[_builtins.str] instance_type: The type of the instance to be associated with the HAVIP. Valid values: * `EcsInstance`: an ECS instance * `NetworkInterface`: an ENI. If you want to associate the HAVIP with an ENI, this parameter is required.
320
303
  """
321
304
  ...
322
305
  @overload
@@ -325,6 +308,14 @@ class HAVipAttachment(pulumi.CustomResource):
325
308
  args: HAVipAttachmentArgs,
326
309
  opts: Optional[pulumi.ResourceOptions] = None):
327
310
  """
311
+ Provides a VPC Ha Vip Attachment resource.
312
+
313
+ Attaching ECS instance to Havip.
314
+
315
+ For information about VPC Ha Vip Attachment and how to use it, see [What is Ha Vip Attachment](https://next.api.alibabacloud.com/document/Vpc/2016-04-28/AssociateHaVip).
316
+
317
+ > **NOTE:** Available since v1.18.0.
318
+
328
319
  ## Example Usage
329
320
 
330
321
  Basic Usage
@@ -442,17 +433,12 @@ class HAVipAttachment(pulumi.CustomResource):
442
433
  :param str resource_name: The unique name of the resulting resource.
443
434
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
444
435
  :param pulumi.ResourceOptions opts: Options for the resource.
445
- :param pulumi.Input[_builtins.bool] force: Whether to force the ECS instance or Eni instance bound to AVIP to be unbound. The value is:
446
- - **True**: Force unbinding.
447
- - **False** (default): unbinding is not forced.
448
- > **NOTE:** If the value of this parameter is **False**, the Master instance bound to HaVip cannot be unbound.
436
+ :param pulumi.Input[_builtins.bool] force: Specifies whether to force delete the snapshot.
449
437
  :param pulumi.Input[_builtins.str] ha_vip_id: The ID of the HaVip instance.
450
- :param pulumi.Input[_builtins.str] havip_id: . Field 'havip_id' has been deprecated from provider version 1.211.0. New field 'ha_vip_id' instead.
438
+ :param pulumi.Input[_builtins.str] havip_id: . Field 'havip_id' has been deprecated from provider version 1.259.0. New field 'ha_vip_id' instead.
451
439
  :param pulumi.Input[_builtins.str] instance_id: The ID of the ECS instance bound to the HaVip instance.
452
- :param pulumi.Input[_builtins.str] instance_type: The type of the instance associated with the VIIP.
453
-
454
- The following arguments will be discarded. Please use new fields as soon as possible:
455
- :param pulumi.Input[_builtins.str] status: The status of the resource.
440
+ :param pulumi.Input[_builtins.str] instance_type: The type of the instance to be associated with the HAVIP. Valid values: * `EcsInstance`: an ECS instance * `NetworkInterface`: an ENI. If you want to associate the HAVIP with an ENI, this parameter is required.
441
+ :param pulumi.Input[_builtins.str] status: The status of the resource
456
442
  """
457
443
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
458
444
 
@@ -470,10 +456,7 @@ class HAVipAttachment(pulumi.CustomResource):
470
456
  @pulumi.getter
471
457
  def force(self) -> pulumi.Output[Optional[_builtins.bool]]:
472
458
  """
473
- Whether to force the ECS instance or Eni instance bound to AVIP to be unbound. The value is:
474
- - **True**: Force unbinding.
475
- - **False** (default): unbinding is not forced.
476
- > **NOTE:** If the value of this parameter is **False**, the Master instance bound to HaVip cannot be unbound.
459
+ Specifies whether to force delete the snapshot.
477
460
  """
478
461
  return pulumi.get(self, "force")
479
462
 
@@ -490,7 +473,7 @@ class HAVipAttachment(pulumi.CustomResource):
490
473
  @_utilities.deprecated("""Field 'havip_id' has been deprecated since provider version 1.211.0. New field 'ha_vip_id' instead.""")
491
474
  def havip_id(self) -> pulumi.Output[_builtins.str]:
492
475
  """
493
- . Field 'havip_id' has been deprecated from provider version 1.211.0. New field 'ha_vip_id' instead.
476
+ . Field 'havip_id' has been deprecated from provider version 1.259.0. New field 'ha_vip_id' instead.
494
477
  """
495
478
  return pulumi.get(self, "havip_id")
496
479
 
@@ -506,9 +489,7 @@ class HAVipAttachment(pulumi.CustomResource):
506
489
  @pulumi.getter(name="instanceType")
507
490
  def instance_type(self) -> pulumi.Output[_builtins.str]:
508
491
  """
509
- The type of the instance associated with the VIIP.
510
-
511
- The following arguments will be discarded. Please use new fields as soon as possible:
492
+ The type of the instance to be associated with the HAVIP. Valid values: * `EcsInstance`: an ECS instance * `NetworkInterface`: an ENI. If you want to associate the HAVIP with an ENI, this parameter is required.
512
493
  """
513
494
  return pulumi.get(self, "instance_type")
514
495
 
@@ -516,7 +497,7 @@ class HAVipAttachment(pulumi.CustomResource):
516
497
  @pulumi.getter
517
498
  def status(self) -> pulumi.Output[_builtins.str]:
518
499
  """
519
- The status of the resource.
500
+ The status of the resource
520
501
  """
521
502
  return pulumi.get(self, "status")
522
503