pulumi-alicloud 3.73.0a1736949061__py3-none-any.whl → 3.74.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 +80 -0
- pulumi_alicloud/alb/__init__.py +1 -0
- pulumi_alicloud/alb/_inputs.py +907 -244
- pulumi_alicloud/alb/get_server_groups.py +55 -25
- pulumi_alicloud/alb/listener.py +269 -174
- pulumi_alicloud/alb/load_balancer.py +239 -118
- pulumi_alicloud/alb/load_balancer_zone_shifted_attachment.py +303 -0
- pulumi_alicloud/alb/outputs.py +716 -218
- pulumi_alicloud/alb/server_group.py +532 -122
- pulumi_alicloud/cen/_inputs.py +34 -0
- pulumi_alicloud/cen/outputs.py +37 -0
- pulumi_alicloud/cen/transit_router_multicast_domain.py +123 -36
- pulumi_alicloud/cs/_inputs.py +349 -1
- pulumi_alicloud/cs/kubernetes.py +15 -15
- pulumi_alicloud/cs/node_pool.py +77 -2
- pulumi_alicloud/cs/outputs.py +265 -1
- pulumi_alicloud/dfs/file_system.py +62 -23
- pulumi_alicloud/dfs/mount_point.py +48 -22
- pulumi_alicloud/esa/__init__.py +3 -0
- pulumi_alicloud/esa/_inputs.py +81 -0
- pulumi_alicloud/esa/http_request_header_modification_rule.py +531 -0
- pulumi_alicloud/esa/list.py +361 -0
- pulumi_alicloud/esa/outputs.py +48 -0
- pulumi_alicloud/esa/page.py +376 -0
- pulumi_alicloud/esa/rate_plan_instance.py +63 -7
- pulumi_alicloud/ess/get_scaling_groups.py +64 -10
- pulumi_alicloud/ess/get_scaling_rules.py +74 -10
- pulumi_alicloud/ess/outputs.py +357 -17
- pulumi_alicloud/eventbridge/get_service.py +2 -6
- pulumi_alicloud/fc/_inputs.py +75 -75
- pulumi_alicloud/fc/outputs.py +50 -50
- pulumi_alicloud/fc/v3_function.py +53 -6
- pulumi_alicloud/kms/__init__.py +1 -0
- pulumi_alicloud/kms/get_instances.py +160 -0
- pulumi_alicloud/kms/instance.py +0 -60
- pulumi_alicloud/kms/outputs.py +19 -0
- pulumi_alicloud/maxcompute/__init__.py +5 -0
- pulumi_alicloud/maxcompute/_inputs.py +615 -42
- pulumi_alicloud/maxcompute/outputs.py +486 -28
- pulumi_alicloud/maxcompute/project.py +63 -31
- pulumi_alicloud/maxcompute/quota_plan.py +412 -0
- pulumi_alicloud/maxcompute/quota_schedule.py +260 -0
- pulumi_alicloud/maxcompute/role.py +423 -0
- pulumi_alicloud/maxcompute/role_user_attachment.py +368 -0
- pulumi_alicloud/maxcompute/tunnel_quota_timer.py +287 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rds/instance.py +68 -0
- pulumi_alicloud/vpc/__init__.py +1 -0
- pulumi_alicloud/vpc/ipam_ipam_pool.py +47 -0
- pulumi_alicloud/vpc/ipam_ipam_scope.py +47 -0
- pulumi_alicloud/vpc/ipam_service.py +144 -0
- pulumi_alicloud/vpc/ipv4_cidr_block.py +162 -51
- {pulumi_alicloud-3.73.0a1736949061.dist-info → pulumi_alicloud-3.74.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.73.0a1736949061.dist-info → pulumi_alicloud-3.74.0.dist-info}/RECORD +56 -45
- {pulumi_alicloud-3.73.0a1736949061.dist-info → pulumi_alicloud-3.74.0.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.73.0a1736949061.dist-info → pulumi_alicloud-3.74.0.dist-info}/top_level.txt +0 -0
|
@@ -77,7 +77,7 @@ class GetServerGroupsResult:
|
|
|
77
77
|
@pulumi.getter
|
|
78
78
|
def groups(self) -> Sequence['outputs.GetServerGroupsGroupResult']:
|
|
79
79
|
"""
|
|
80
|
-
A list of
|
|
80
|
+
A list of Server Groups. Each element contains the following attributes:
|
|
81
81
|
"""
|
|
82
82
|
return pulumi.get(self, "groups")
|
|
83
83
|
|
|
@@ -126,7 +126,7 @@ class GetServerGroupsResult:
|
|
|
126
126
|
@pulumi.getter(name="serverGroupName")
|
|
127
127
|
def server_group_name(self) -> Optional[str]:
|
|
128
128
|
"""
|
|
129
|
-
The name of the
|
|
129
|
+
The name of the Server Group.
|
|
130
130
|
"""
|
|
131
131
|
return pulumi.get(self, "server_group_name")
|
|
132
132
|
|
|
@@ -134,7 +134,7 @@ class GetServerGroupsResult:
|
|
|
134
134
|
@pulumi.getter
|
|
135
135
|
def status(self) -> Optional[str]:
|
|
136
136
|
"""
|
|
137
|
-
The status of the
|
|
137
|
+
The status of the server.
|
|
138
138
|
"""
|
|
139
139
|
return pulumi.get(self, "status")
|
|
140
140
|
|
|
@@ -142,7 +142,7 @@ class GetServerGroupsResult:
|
|
|
142
142
|
@pulumi.getter
|
|
143
143
|
def tags(self) -> Optional[Mapping[str, str]]:
|
|
144
144
|
"""
|
|
145
|
-
The tags of the resource.
|
|
145
|
+
The tags of the resource. **Note:** `tags` takes effect only if `enable_details` is set to `true`.
|
|
146
146
|
"""
|
|
147
147
|
return pulumi.get(self, "tags")
|
|
148
148
|
|
|
@@ -150,7 +150,7 @@ class GetServerGroupsResult:
|
|
|
150
150
|
@pulumi.getter(name="vpcId")
|
|
151
151
|
def vpc_id(self) -> Optional[str]:
|
|
152
152
|
"""
|
|
153
|
-
The ID of the VPC
|
|
153
|
+
The ID of the VPC.
|
|
154
154
|
"""
|
|
155
155
|
return pulumi.get(self, "vpc_id")
|
|
156
156
|
|
|
@@ -200,23 +200,38 @@ def get_server_groups(enable_details: Optional[bool] = None,
|
|
|
200
200
|
import pulumi
|
|
201
201
|
import pulumi_alicloud as alicloud
|
|
202
202
|
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
203
|
+
config = pulumi.Config()
|
|
204
|
+
name = config.get("name")
|
|
205
|
+
if name is None:
|
|
206
|
+
name = "terraform-example"
|
|
207
|
+
default = alicloud.vpc.Network("default",
|
|
208
|
+
vpc_name=name,
|
|
209
|
+
cidr_block="192.168.0.0/16")
|
|
210
|
+
default_server_group = alicloud.alb.ServerGroup("default",
|
|
211
|
+
protocol="HTTP",
|
|
212
|
+
vpc_id=default.id,
|
|
213
|
+
server_group_name=name,
|
|
214
|
+
health_check_config={
|
|
215
|
+
"health_check_enabled": False,
|
|
216
|
+
},
|
|
217
|
+
sticky_session_config={
|
|
218
|
+
"sticky_session_enabled": False,
|
|
219
|
+
})
|
|
220
|
+
ids = alicloud.alb.get_server_groups_output(ids=[default_server_group.id])
|
|
221
|
+
pulumi.export("albServerGroupId0", ids.groups[0].id)
|
|
207
222
|
```
|
|
208
223
|
|
|
209
224
|
|
|
210
|
-
:param bool enable_details:
|
|
225
|
+
:param bool enable_details: Whether to query the detailed list of resource attributes. Default value: `false`.
|
|
211
226
|
:param Sequence[str] ids: A list of Server Group IDs.
|
|
212
227
|
:param str name_regex: A regex string to filter results by Server Group name.
|
|
213
228
|
:param str output_file: File name where to save data source results (after running `pulumi preview`).
|
|
214
229
|
:param str resource_group_id: The ID of the resource group.
|
|
215
|
-
:param Sequence[str] server_group_ids: The server group
|
|
216
|
-
:param str server_group_name: The
|
|
217
|
-
:param str status: The status of the
|
|
218
|
-
:param Mapping[str, str] tags: A
|
|
219
|
-
:param str vpc_id: The ID of the
|
|
230
|
+
:param Sequence[str] server_group_ids: The server group IDs.
|
|
231
|
+
:param str server_group_name: The names of the Server Group.
|
|
232
|
+
:param str status: The status of the Server Group. Valid values: `Available`, `Configuring`, `Provisioning`.
|
|
233
|
+
:param Mapping[str, str] tags: A mapping of tags to assign to the resource.
|
|
234
|
+
:param str vpc_id: The ID of the virtual private cloud (VPC).
|
|
220
235
|
"""
|
|
221
236
|
__args__ = dict()
|
|
222
237
|
__args__['enableDetails'] = enable_details
|
|
@@ -270,23 +285,38 @@ def get_server_groups_output(enable_details: Optional[pulumi.Input[Optional[bool
|
|
|
270
285
|
import pulumi
|
|
271
286
|
import pulumi_alicloud as alicloud
|
|
272
287
|
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
288
|
+
config = pulumi.Config()
|
|
289
|
+
name = config.get("name")
|
|
290
|
+
if name is None:
|
|
291
|
+
name = "terraform-example"
|
|
292
|
+
default = alicloud.vpc.Network("default",
|
|
293
|
+
vpc_name=name,
|
|
294
|
+
cidr_block="192.168.0.0/16")
|
|
295
|
+
default_server_group = alicloud.alb.ServerGroup("default",
|
|
296
|
+
protocol="HTTP",
|
|
297
|
+
vpc_id=default.id,
|
|
298
|
+
server_group_name=name,
|
|
299
|
+
health_check_config={
|
|
300
|
+
"health_check_enabled": False,
|
|
301
|
+
},
|
|
302
|
+
sticky_session_config={
|
|
303
|
+
"sticky_session_enabled": False,
|
|
304
|
+
})
|
|
305
|
+
ids = alicloud.alb.get_server_groups_output(ids=[default_server_group.id])
|
|
306
|
+
pulumi.export("albServerGroupId0", ids.groups[0].id)
|
|
277
307
|
```
|
|
278
308
|
|
|
279
309
|
|
|
280
|
-
:param bool enable_details:
|
|
310
|
+
:param bool enable_details: Whether to query the detailed list of resource attributes. Default value: `false`.
|
|
281
311
|
:param Sequence[str] ids: A list of Server Group IDs.
|
|
282
312
|
:param str name_regex: A regex string to filter results by Server Group name.
|
|
283
313
|
:param str output_file: File name where to save data source results (after running `pulumi preview`).
|
|
284
314
|
:param str resource_group_id: The ID of the resource group.
|
|
285
|
-
:param Sequence[str] server_group_ids: The server group
|
|
286
|
-
:param str server_group_name: The
|
|
287
|
-
:param str status: The status of the
|
|
288
|
-
:param Mapping[str, str] tags: A
|
|
289
|
-
:param str vpc_id: The ID of the
|
|
315
|
+
:param Sequence[str] server_group_ids: The server group IDs.
|
|
316
|
+
:param str server_group_name: The names of the Server Group.
|
|
317
|
+
:param str status: The status of the Server Group. Valid values: `Available`, `Configuring`, `Provisioning`.
|
|
318
|
+
:param Mapping[str, str] tags: A mapping of tags to assign to the resource.
|
|
319
|
+
:param str vpc_id: The ID of the virtual private cloud (VPC).
|
|
290
320
|
"""
|
|
291
321
|
__args__ = dict()
|
|
292
322
|
__args__['enableDetails'] = enable_details
|