pulumi-alicloud 3.65.1__py3-none-any.whl → 3.66.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.

Files changed (44) hide show
  1. pulumi_alicloud/__init__.py +94 -0
  2. pulumi_alicloud/alikafka/instance.py +112 -0
  3. pulumi_alicloud/cloudsso/_inputs.py +9 -9
  4. pulumi_alicloud/cloudsso/access_configuration.py +100 -34
  5. pulumi_alicloud/cloudsso/outputs.py +6 -6
  6. pulumi_alicloud/esa/__init__.py +9 -0
  7. pulumi_alicloud/esa/rate_plan_instance.py +626 -0
  8. pulumi_alicloud/esa/site.py +533 -0
  9. pulumi_alicloud/fc/_inputs.py +243 -135
  10. pulumi_alicloud/fc/outputs.py +173 -90
  11. pulumi_alicloud/fc/v3_alias.py +28 -0
  12. pulumi_alicloud/fc/v3_async_invoke_config.py +56 -0
  13. pulumi_alicloud/fc/v3_concurrency_config.py +28 -0
  14. pulumi_alicloud/fc/v3_custom_domain.py +118 -6
  15. pulumi_alicloud/fc/v3_function.py +308 -0
  16. pulumi_alicloud/fc/v3_function_version.py +30 -2
  17. pulumi_alicloud/fc/v3_layer_version.py +104 -1
  18. pulumi_alicloud/fc/v3_provision_config.py +86 -2
  19. pulumi_alicloud/fc/v3_trigger.py +114 -0
  20. pulumi_alicloud/gwlb/__init__.py +12 -0
  21. pulumi_alicloud/gwlb/_inputs.py +673 -0
  22. pulumi_alicloud/gwlb/listener.py +434 -0
  23. pulumi_alicloud/gwlb/load_balancer.py +537 -0
  24. pulumi_alicloud/gwlb/outputs.py +533 -0
  25. pulumi_alicloud/gwlb/server_group.py +780 -0
  26. pulumi_alicloud/oss/__init__.py +2 -0
  27. pulumi_alicloud/oss/_inputs.py +194 -0
  28. pulumi_alicloud/oss/bucket_cname.py +509 -0
  29. pulumi_alicloud/oss/bucket_cname_token.py +239 -0
  30. pulumi_alicloud/oss/outputs.py +141 -0
  31. pulumi_alicloud/pulumi-plugin.json +1 -1
  32. pulumi_alicloud/quotas/_inputs.py +6 -6
  33. pulumi_alicloud/quotas/outputs.py +4 -4
  34. pulumi_alicloud/quotas/quota_application.py +21 -28
  35. pulumi_alicloud/redis/tair_instance.py +21 -77
  36. pulumi_alicloud/vpc/__init__.py +4 -0
  37. pulumi_alicloud/vpc/ipam_ipam.py +531 -0
  38. pulumi_alicloud/vpc/ipam_ipam_pool.py +850 -0
  39. pulumi_alicloud/vpc/ipam_ipam_pool_cidr.py +313 -0
  40. pulumi_alicloud/vpc/ipam_ipam_scope.py +537 -0
  41. {pulumi_alicloud-3.65.1.dist-info → pulumi_alicloud-3.66.0.dist-info}/METADATA +1 -1
  42. {pulumi_alicloud-3.65.1.dist-info → pulumi_alicloud-3.66.0.dist-info}/RECORD +44 -29
  43. {pulumi_alicloud-3.65.1.dist-info → pulumi_alicloud-3.66.0.dist-info}/WHEEL +0 -0
  44. {pulumi_alicloud-3.65.1.dist-info → pulumi_alicloud-3.66.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,537 @@
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
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = ['IpamIpamScopeArgs', 'IpamIpamScope']
18
+
19
+ @pulumi.input_type
20
+ class IpamIpamScopeArgs:
21
+ def __init__(__self__, *,
22
+ ipam_id: pulumi.Input[str],
23
+ ipam_scope_description: Optional[pulumi.Input[str]] = None,
24
+ ipam_scope_name: Optional[pulumi.Input[str]] = None,
25
+ ipam_scope_type: Optional[pulumi.Input[str]] = None,
26
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
27
+ """
28
+ The set of arguments for constructing a IpamIpamScope resource.
29
+ :param pulumi.Input[str] ipam_id: The id of the Ipam instance.
30
+ :param pulumi.Input[str] ipam_scope_description: The description of the IPAM's scope of action.
31
+
32
+ It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
33
+ :param pulumi.Input[str] ipam_scope_name: The name of the resource.
34
+ :param pulumi.Input[str] ipam_scope_type: IPAM scope of action type:
35
+ `private`.
36
+
37
+
38
+ > **NOTE:** Currently, only the role scope of the private network is supported.
39
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource.
40
+ """
41
+ pulumi.set(__self__, "ipam_id", ipam_id)
42
+ if ipam_scope_description is not None:
43
+ pulumi.set(__self__, "ipam_scope_description", ipam_scope_description)
44
+ if ipam_scope_name is not None:
45
+ pulumi.set(__self__, "ipam_scope_name", ipam_scope_name)
46
+ if ipam_scope_type is not None:
47
+ pulumi.set(__self__, "ipam_scope_type", ipam_scope_type)
48
+ if tags is not None:
49
+ pulumi.set(__self__, "tags", tags)
50
+
51
+ @property
52
+ @pulumi.getter(name="ipamId")
53
+ def ipam_id(self) -> pulumi.Input[str]:
54
+ """
55
+ The id of the Ipam instance.
56
+ """
57
+ return pulumi.get(self, "ipam_id")
58
+
59
+ @ipam_id.setter
60
+ def ipam_id(self, value: pulumi.Input[str]):
61
+ pulumi.set(self, "ipam_id", value)
62
+
63
+ @property
64
+ @pulumi.getter(name="ipamScopeDescription")
65
+ def ipam_scope_description(self) -> Optional[pulumi.Input[str]]:
66
+ """
67
+ The description of the IPAM's scope of action.
68
+
69
+ It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
70
+ """
71
+ return pulumi.get(self, "ipam_scope_description")
72
+
73
+ @ipam_scope_description.setter
74
+ def ipam_scope_description(self, value: Optional[pulumi.Input[str]]):
75
+ pulumi.set(self, "ipam_scope_description", value)
76
+
77
+ @property
78
+ @pulumi.getter(name="ipamScopeName")
79
+ def ipam_scope_name(self) -> Optional[pulumi.Input[str]]:
80
+ """
81
+ The name of the resource.
82
+ """
83
+ return pulumi.get(self, "ipam_scope_name")
84
+
85
+ @ipam_scope_name.setter
86
+ def ipam_scope_name(self, value: Optional[pulumi.Input[str]]):
87
+ pulumi.set(self, "ipam_scope_name", value)
88
+
89
+ @property
90
+ @pulumi.getter(name="ipamScopeType")
91
+ def ipam_scope_type(self) -> Optional[pulumi.Input[str]]:
92
+ """
93
+ IPAM scope of action type:
94
+ `private`.
95
+
96
+
97
+ > **NOTE:** Currently, only the role scope of the private network is supported.
98
+ """
99
+ return pulumi.get(self, "ipam_scope_type")
100
+
101
+ @ipam_scope_type.setter
102
+ def ipam_scope_type(self, value: Optional[pulumi.Input[str]]):
103
+ pulumi.set(self, "ipam_scope_type", value)
104
+
105
+ @property
106
+ @pulumi.getter
107
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
108
+ """
109
+ The tag of the resource.
110
+ """
111
+ return pulumi.get(self, "tags")
112
+
113
+ @tags.setter
114
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
115
+ pulumi.set(self, "tags", value)
116
+
117
+
118
+ @pulumi.input_type
119
+ class _IpamIpamScopeState:
120
+ def __init__(__self__, *,
121
+ create_time: Optional[pulumi.Input[str]] = None,
122
+ ipam_id: Optional[pulumi.Input[str]] = None,
123
+ ipam_scope_description: Optional[pulumi.Input[str]] = None,
124
+ ipam_scope_name: Optional[pulumi.Input[str]] = None,
125
+ ipam_scope_type: Optional[pulumi.Input[str]] = None,
126
+ region_id: Optional[pulumi.Input[str]] = None,
127
+ status: Optional[pulumi.Input[str]] = None,
128
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
129
+ """
130
+ Input properties used for looking up and filtering IpamIpamScope resources.
131
+ :param pulumi.Input[str] create_time: The creation time of the resource.
132
+ :param pulumi.Input[str] ipam_id: The id of the Ipam instance.
133
+ :param pulumi.Input[str] ipam_scope_description: The description of the IPAM's scope of action.
134
+
135
+ It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
136
+ :param pulumi.Input[str] ipam_scope_name: The name of the resource.
137
+ :param pulumi.Input[str] ipam_scope_type: IPAM scope of action type:
138
+ `private`.
139
+
140
+
141
+ > **NOTE:** Currently, only the role scope of the private network is supported.
142
+ :param pulumi.Input[str] region_id: The region ID of the resource.
143
+ :param pulumi.Input[str] status: The status of the resource.
144
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource.
145
+ """
146
+ if create_time is not None:
147
+ pulumi.set(__self__, "create_time", create_time)
148
+ if ipam_id is not None:
149
+ pulumi.set(__self__, "ipam_id", ipam_id)
150
+ if ipam_scope_description is not None:
151
+ pulumi.set(__self__, "ipam_scope_description", ipam_scope_description)
152
+ if ipam_scope_name is not None:
153
+ pulumi.set(__self__, "ipam_scope_name", ipam_scope_name)
154
+ if ipam_scope_type is not None:
155
+ pulumi.set(__self__, "ipam_scope_type", ipam_scope_type)
156
+ if region_id is not None:
157
+ pulumi.set(__self__, "region_id", region_id)
158
+ if status is not None:
159
+ pulumi.set(__self__, "status", status)
160
+ if tags is not None:
161
+ pulumi.set(__self__, "tags", tags)
162
+
163
+ @property
164
+ @pulumi.getter(name="createTime")
165
+ def create_time(self) -> Optional[pulumi.Input[str]]:
166
+ """
167
+ The creation time of the resource.
168
+ """
169
+ return pulumi.get(self, "create_time")
170
+
171
+ @create_time.setter
172
+ def create_time(self, value: Optional[pulumi.Input[str]]):
173
+ pulumi.set(self, "create_time", value)
174
+
175
+ @property
176
+ @pulumi.getter(name="ipamId")
177
+ def ipam_id(self) -> Optional[pulumi.Input[str]]:
178
+ """
179
+ The id of the Ipam instance.
180
+ """
181
+ return pulumi.get(self, "ipam_id")
182
+
183
+ @ipam_id.setter
184
+ def ipam_id(self, value: Optional[pulumi.Input[str]]):
185
+ pulumi.set(self, "ipam_id", value)
186
+
187
+ @property
188
+ @pulumi.getter(name="ipamScopeDescription")
189
+ def ipam_scope_description(self) -> Optional[pulumi.Input[str]]:
190
+ """
191
+ The description of the IPAM's scope of action.
192
+
193
+ It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
194
+ """
195
+ return pulumi.get(self, "ipam_scope_description")
196
+
197
+ @ipam_scope_description.setter
198
+ def ipam_scope_description(self, value: Optional[pulumi.Input[str]]):
199
+ pulumi.set(self, "ipam_scope_description", value)
200
+
201
+ @property
202
+ @pulumi.getter(name="ipamScopeName")
203
+ def ipam_scope_name(self) -> Optional[pulumi.Input[str]]:
204
+ """
205
+ The name of the resource.
206
+ """
207
+ return pulumi.get(self, "ipam_scope_name")
208
+
209
+ @ipam_scope_name.setter
210
+ def ipam_scope_name(self, value: Optional[pulumi.Input[str]]):
211
+ pulumi.set(self, "ipam_scope_name", value)
212
+
213
+ @property
214
+ @pulumi.getter(name="ipamScopeType")
215
+ def ipam_scope_type(self) -> Optional[pulumi.Input[str]]:
216
+ """
217
+ IPAM scope of action type:
218
+ `private`.
219
+
220
+
221
+ > **NOTE:** Currently, only the role scope of the private network is supported.
222
+ """
223
+ return pulumi.get(self, "ipam_scope_type")
224
+
225
+ @ipam_scope_type.setter
226
+ def ipam_scope_type(self, value: Optional[pulumi.Input[str]]):
227
+ pulumi.set(self, "ipam_scope_type", value)
228
+
229
+ @property
230
+ @pulumi.getter(name="regionId")
231
+ def region_id(self) -> Optional[pulumi.Input[str]]:
232
+ """
233
+ The region ID of the resource.
234
+ """
235
+ return pulumi.get(self, "region_id")
236
+
237
+ @region_id.setter
238
+ def region_id(self, value: Optional[pulumi.Input[str]]):
239
+ pulumi.set(self, "region_id", value)
240
+
241
+ @property
242
+ @pulumi.getter
243
+ def status(self) -> Optional[pulumi.Input[str]]:
244
+ """
245
+ The status of the resource.
246
+ """
247
+ return pulumi.get(self, "status")
248
+
249
+ @status.setter
250
+ def status(self, value: Optional[pulumi.Input[str]]):
251
+ pulumi.set(self, "status", value)
252
+
253
+ @property
254
+ @pulumi.getter
255
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
256
+ """
257
+ The tag of the resource.
258
+ """
259
+ return pulumi.get(self, "tags")
260
+
261
+ @tags.setter
262
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
263
+ pulumi.set(self, "tags", value)
264
+
265
+
266
+ class IpamIpamScope(pulumi.CustomResource):
267
+ @overload
268
+ def __init__(__self__,
269
+ resource_name: str,
270
+ opts: Optional[pulumi.ResourceOptions] = None,
271
+ ipam_id: Optional[pulumi.Input[str]] = None,
272
+ ipam_scope_description: Optional[pulumi.Input[str]] = None,
273
+ ipam_scope_name: Optional[pulumi.Input[str]] = None,
274
+ ipam_scope_type: Optional[pulumi.Input[str]] = None,
275
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
276
+ __props__=None):
277
+ """
278
+ Provides a Vpc Ipam Ipam Scope resource.
279
+
280
+ IP Address Management Scope.
281
+
282
+ For information about Vpc Ipam Ipam Scope and how to use it, see [What is Ipam Scope](https://www.alibabacloud.com/help/en/).
283
+
284
+ > **NOTE:** Available since v1.234.0.
285
+
286
+ ## Example Usage
287
+
288
+ Basic Usage
289
+
290
+ ```python
291
+ import pulumi
292
+ import pulumi_alicloud as alicloud
293
+
294
+ config = pulumi.Config()
295
+ name = config.get("name")
296
+ if name is None:
297
+ name = "terraform-example"
298
+ default_ipam = alicloud.vpc.IpamIpam("defaultIpam",
299
+ operating_region_lists=["cn-hangzhou"],
300
+ ipam_name=name)
301
+ default = alicloud.vpc.IpamIpamScope("default",
302
+ ipam_scope_name=name,
303
+ ipam_id=default_ipam.id,
304
+ ipam_scope_description="This is a ipam scope.",
305
+ ipam_scope_type="private")
306
+ ```
307
+
308
+ ## Import
309
+
310
+ Vpc Ipam Ipam Scope can be imported using the id, e.g.
311
+
312
+ ```sh
313
+ $ pulumi import alicloud:vpc/ipamIpamScope:IpamIpamScope example <id>
314
+ ```
315
+
316
+ :param str resource_name: The name of the resource.
317
+ :param pulumi.ResourceOptions opts: Options for the resource.
318
+ :param pulumi.Input[str] ipam_id: The id of the Ipam instance.
319
+ :param pulumi.Input[str] ipam_scope_description: The description of the IPAM's scope of action.
320
+
321
+ It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
322
+ :param pulumi.Input[str] ipam_scope_name: The name of the resource.
323
+ :param pulumi.Input[str] ipam_scope_type: IPAM scope of action type:
324
+ `private`.
325
+
326
+
327
+ > **NOTE:** Currently, only the role scope of the private network is supported.
328
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource.
329
+ """
330
+ ...
331
+ @overload
332
+ def __init__(__self__,
333
+ resource_name: str,
334
+ args: IpamIpamScopeArgs,
335
+ opts: Optional[pulumi.ResourceOptions] = None):
336
+ """
337
+ Provides a Vpc Ipam Ipam Scope resource.
338
+
339
+ IP Address Management Scope.
340
+
341
+ For information about Vpc Ipam Ipam Scope and how to use it, see [What is Ipam Scope](https://www.alibabacloud.com/help/en/).
342
+
343
+ > **NOTE:** Available since v1.234.0.
344
+
345
+ ## Example Usage
346
+
347
+ Basic Usage
348
+
349
+ ```python
350
+ import pulumi
351
+ import pulumi_alicloud as alicloud
352
+
353
+ config = pulumi.Config()
354
+ name = config.get("name")
355
+ if name is None:
356
+ name = "terraform-example"
357
+ default_ipam = alicloud.vpc.IpamIpam("defaultIpam",
358
+ operating_region_lists=["cn-hangzhou"],
359
+ ipam_name=name)
360
+ default = alicloud.vpc.IpamIpamScope("default",
361
+ ipam_scope_name=name,
362
+ ipam_id=default_ipam.id,
363
+ ipam_scope_description="This is a ipam scope.",
364
+ ipam_scope_type="private")
365
+ ```
366
+
367
+ ## Import
368
+
369
+ Vpc Ipam Ipam Scope can be imported using the id, e.g.
370
+
371
+ ```sh
372
+ $ pulumi import alicloud:vpc/ipamIpamScope:IpamIpamScope example <id>
373
+ ```
374
+
375
+ :param str resource_name: The name of the resource.
376
+ :param IpamIpamScopeArgs args: The arguments to use to populate this resource's properties.
377
+ :param pulumi.ResourceOptions opts: Options for the resource.
378
+ """
379
+ ...
380
+ def __init__(__self__, resource_name: str, *args, **kwargs):
381
+ resource_args, opts = _utilities.get_resource_args_opts(IpamIpamScopeArgs, pulumi.ResourceOptions, *args, **kwargs)
382
+ if resource_args is not None:
383
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
384
+ else:
385
+ __self__._internal_init(resource_name, *args, **kwargs)
386
+
387
+ def _internal_init(__self__,
388
+ resource_name: str,
389
+ opts: Optional[pulumi.ResourceOptions] = None,
390
+ ipam_id: Optional[pulumi.Input[str]] = None,
391
+ ipam_scope_description: Optional[pulumi.Input[str]] = None,
392
+ ipam_scope_name: Optional[pulumi.Input[str]] = None,
393
+ ipam_scope_type: Optional[pulumi.Input[str]] = None,
394
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
395
+ __props__=None):
396
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
397
+ if not isinstance(opts, pulumi.ResourceOptions):
398
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
399
+ if opts.id is None:
400
+ if __props__ is not None:
401
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
402
+ __props__ = IpamIpamScopeArgs.__new__(IpamIpamScopeArgs)
403
+
404
+ if ipam_id is None and not opts.urn:
405
+ raise TypeError("Missing required property 'ipam_id'")
406
+ __props__.__dict__["ipam_id"] = ipam_id
407
+ __props__.__dict__["ipam_scope_description"] = ipam_scope_description
408
+ __props__.__dict__["ipam_scope_name"] = ipam_scope_name
409
+ __props__.__dict__["ipam_scope_type"] = ipam_scope_type
410
+ __props__.__dict__["tags"] = tags
411
+ __props__.__dict__["create_time"] = None
412
+ __props__.__dict__["region_id"] = None
413
+ __props__.__dict__["status"] = None
414
+ super(IpamIpamScope, __self__).__init__(
415
+ 'alicloud:vpc/ipamIpamScope:IpamIpamScope',
416
+ resource_name,
417
+ __props__,
418
+ opts)
419
+
420
+ @staticmethod
421
+ def get(resource_name: str,
422
+ id: pulumi.Input[str],
423
+ opts: Optional[pulumi.ResourceOptions] = None,
424
+ create_time: Optional[pulumi.Input[str]] = None,
425
+ ipam_id: Optional[pulumi.Input[str]] = None,
426
+ ipam_scope_description: Optional[pulumi.Input[str]] = None,
427
+ ipam_scope_name: Optional[pulumi.Input[str]] = None,
428
+ ipam_scope_type: Optional[pulumi.Input[str]] = None,
429
+ region_id: Optional[pulumi.Input[str]] = None,
430
+ status: Optional[pulumi.Input[str]] = None,
431
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'IpamIpamScope':
432
+ """
433
+ Get an existing IpamIpamScope resource's state with the given name, id, and optional extra
434
+ properties used to qualify the lookup.
435
+
436
+ :param str resource_name: The unique name of the resulting resource.
437
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
438
+ :param pulumi.ResourceOptions opts: Options for the resource.
439
+ :param pulumi.Input[str] create_time: The creation time of the resource.
440
+ :param pulumi.Input[str] ipam_id: The id of the Ipam instance.
441
+ :param pulumi.Input[str] ipam_scope_description: The description of the IPAM's scope of action.
442
+
443
+ It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
444
+ :param pulumi.Input[str] ipam_scope_name: The name of the resource.
445
+ :param pulumi.Input[str] ipam_scope_type: IPAM scope of action type:
446
+ `private`.
447
+
448
+
449
+ > **NOTE:** Currently, only the role scope of the private network is supported.
450
+ :param pulumi.Input[str] region_id: The region ID of the resource.
451
+ :param pulumi.Input[str] status: The status of the resource.
452
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource.
453
+ """
454
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
455
+
456
+ __props__ = _IpamIpamScopeState.__new__(_IpamIpamScopeState)
457
+
458
+ __props__.__dict__["create_time"] = create_time
459
+ __props__.__dict__["ipam_id"] = ipam_id
460
+ __props__.__dict__["ipam_scope_description"] = ipam_scope_description
461
+ __props__.__dict__["ipam_scope_name"] = ipam_scope_name
462
+ __props__.__dict__["ipam_scope_type"] = ipam_scope_type
463
+ __props__.__dict__["region_id"] = region_id
464
+ __props__.__dict__["status"] = status
465
+ __props__.__dict__["tags"] = tags
466
+ return IpamIpamScope(resource_name, opts=opts, __props__=__props__)
467
+
468
+ @property
469
+ @pulumi.getter(name="createTime")
470
+ def create_time(self) -> pulumi.Output[str]:
471
+ """
472
+ The creation time of the resource.
473
+ """
474
+ return pulumi.get(self, "create_time")
475
+
476
+ @property
477
+ @pulumi.getter(name="ipamId")
478
+ def ipam_id(self) -> pulumi.Output[str]:
479
+ """
480
+ The id of the Ipam instance.
481
+ """
482
+ return pulumi.get(self, "ipam_id")
483
+
484
+ @property
485
+ @pulumi.getter(name="ipamScopeDescription")
486
+ def ipam_scope_description(self) -> pulumi.Output[Optional[str]]:
487
+ """
488
+ The description of the IPAM's scope of action.
489
+
490
+ It must be 2 to 256 characters in length and must start with a lowercase letter, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
491
+ """
492
+ return pulumi.get(self, "ipam_scope_description")
493
+
494
+ @property
495
+ @pulumi.getter(name="ipamScopeName")
496
+ def ipam_scope_name(self) -> pulumi.Output[Optional[str]]:
497
+ """
498
+ The name of the resource.
499
+ """
500
+ return pulumi.get(self, "ipam_scope_name")
501
+
502
+ @property
503
+ @pulumi.getter(name="ipamScopeType")
504
+ def ipam_scope_type(self) -> pulumi.Output[Optional[str]]:
505
+ """
506
+ IPAM scope of action type:
507
+ `private`.
508
+
509
+
510
+ > **NOTE:** Currently, only the role scope of the private network is supported.
511
+ """
512
+ return pulumi.get(self, "ipam_scope_type")
513
+
514
+ @property
515
+ @pulumi.getter(name="regionId")
516
+ def region_id(self) -> pulumi.Output[str]:
517
+ """
518
+ The region ID of the resource.
519
+ """
520
+ return pulumi.get(self, "region_id")
521
+
522
+ @property
523
+ @pulumi.getter
524
+ def status(self) -> pulumi.Output[str]:
525
+ """
526
+ The status of the resource.
527
+ """
528
+ return pulumi.get(self, "status")
529
+
530
+ @property
531
+ @pulumi.getter
532
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
533
+ """
534
+ The tag of the resource.
535
+ """
536
+ return pulumi.get(self, "tags")
537
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_alicloud
3
- Version: 3.65.1
3
+ Version: 3.66.0
4
4
  Summary: A Pulumi package for creating and managing AliCloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io