pulumi-alicloud 3.74.0a1737523155__py3-none-any.whl → 3.74.0a1737989015__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.74.0a1737523155.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.74.0a1737523155.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/RECORD +56 -45
- {pulumi_alicloud-3.74.0a1737523155.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.74.0a1737523155.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/top_level.txt +0 -0
|
@@ -34,10 +34,12 @@ class ProjectArgs:
|
|
|
34
34
|
"""
|
|
35
35
|
The set of arguments for constructing a Project resource.
|
|
36
36
|
:param pulumi.Input[str] comment: Project description information. The length is 1 to 256 English or Chinese characters. The default value is blank.
|
|
37
|
-
:param pulumi.Input[str] default_quota: Used to implement computing resource allocation.
|
|
37
|
+
:param pulumi.Input[str] default_quota: Used to implement computing resource allocation. Valid values: subQuota Nickname
|
|
38
|
+
If the calculation Quota is not specified, the default Quota resource will be consumed by jobs initiated by the project. For more information about computing resource usage, see [Computing Resource Usage](https://www.alibabacloud.com/help/en/maxcompute/user-guide/use-of-computing-resources).
|
|
38
39
|
:param pulumi.Input['ProjectIpWhiteListArgs'] ip_white_list: IP whitelist See `ip_white_list` below.
|
|
39
|
-
:param pulumi.Input[str] is_logical:
|
|
40
|
-
|
|
40
|
+
:param pulumi.Input[str] is_logical: Whether to logically delete. Default value: true. Value: (ture/false),
|
|
41
|
+
|
|
42
|
+
> **NOTE:** -- ture: In this case, the project status will be changed to' deleting' and completely deleted after 14 days. -- false: delete immediately, that is, completely deleted and permanently irrecoverable.
|
|
41
43
|
:param pulumi.Input[str] project_name: The name begins with a letter, containing letters, digits, and underscores (_). It can be 3 to 28 characters in length and is globally unique.
|
|
42
44
|
:param pulumi.Input['ProjectPropertiesArgs'] properties: Project base attributes See `properties` below.
|
|
43
45
|
:param pulumi.Input['ProjectSecurityPropertiesArgs'] security_properties: Security-related attributes See `security_properties` below.
|
|
@@ -81,7 +83,8 @@ class ProjectArgs:
|
|
|
81
83
|
@pulumi.getter(name="defaultQuota")
|
|
82
84
|
def default_quota(self) -> Optional[pulumi.Input[str]]:
|
|
83
85
|
"""
|
|
84
|
-
Used to implement computing resource allocation.
|
|
86
|
+
Used to implement computing resource allocation. Valid values: subQuota Nickname
|
|
87
|
+
If the calculation Quota is not specified, the default Quota resource will be consumed by jobs initiated by the project. For more information about computing resource usage, see [Computing Resource Usage](https://www.alibabacloud.com/help/en/maxcompute/user-guide/use-of-computing-resources).
|
|
85
88
|
"""
|
|
86
89
|
return pulumi.get(self, "default_quota")
|
|
87
90
|
|
|
@@ -105,7 +108,9 @@ class ProjectArgs:
|
|
|
105
108
|
@pulumi.getter(name="isLogical")
|
|
106
109
|
def is_logical(self) -> Optional[pulumi.Input[str]]:
|
|
107
110
|
"""
|
|
108
|
-
|
|
111
|
+
Whether to logically delete. Default value: true. Value: (ture/false),
|
|
112
|
+
|
|
113
|
+
> **NOTE:** -- ture: In this case, the project status will be changed to' deleting' and completely deleted after 14 days. -- false: delete immediately, that is, completely deleted and permanently irrecoverable.
|
|
109
114
|
"""
|
|
110
115
|
return pulumi.get(self, "is_logical")
|
|
111
116
|
|
|
@@ -116,9 +121,6 @@ class ProjectArgs:
|
|
|
116
121
|
@property
|
|
117
122
|
@pulumi.getter(name="productType")
|
|
118
123
|
def product_type(self) -> Optional[pulumi.Input[str]]:
|
|
119
|
-
"""
|
|
120
|
-
Quota payment type, support `PayAsYouGo`, `Subscription`, `Dev`.
|
|
121
|
-
"""
|
|
122
124
|
return pulumi.get(self, "product_type")
|
|
123
125
|
|
|
124
126
|
@product_type.setter
|
|
@@ -198,6 +200,7 @@ class _ProjectState:
|
|
|
198
200
|
product_type: Optional[pulumi.Input[str]] = None,
|
|
199
201
|
project_name: Optional[pulumi.Input[str]] = None,
|
|
200
202
|
properties: Optional[pulumi.Input['ProjectPropertiesArgs']] = None,
|
|
203
|
+
region_id: Optional[pulumi.Input[str]] = None,
|
|
201
204
|
security_properties: Optional[pulumi.Input['ProjectSecurityPropertiesArgs']] = None,
|
|
202
205
|
status: Optional[pulumi.Input[str]] = None,
|
|
203
206
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
@@ -206,13 +209,16 @@ class _ProjectState:
|
|
|
206
209
|
Input properties used for looking up and filtering Project resources.
|
|
207
210
|
:param pulumi.Input[str] comment: Project description information. The length is 1 to 256 English or Chinese characters. The default value is blank.
|
|
208
211
|
:param pulumi.Input[str] create_time: Represents the creation time of the project
|
|
209
|
-
:param pulumi.Input[str] default_quota: Used to implement computing resource allocation.
|
|
212
|
+
:param pulumi.Input[str] default_quota: Used to implement computing resource allocation. Valid values: subQuota Nickname
|
|
213
|
+
If the calculation Quota is not specified, the default Quota resource will be consumed by jobs initiated by the project. For more information about computing resource usage, see [Computing Resource Usage](https://www.alibabacloud.com/help/en/maxcompute/user-guide/use-of-computing-resources).
|
|
210
214
|
:param pulumi.Input['ProjectIpWhiteListArgs'] ip_white_list: IP whitelist See `ip_white_list` below.
|
|
211
|
-
:param pulumi.Input[str] is_logical:
|
|
215
|
+
:param pulumi.Input[str] is_logical: Whether to logically delete. Default value: true. Value: (ture/false),
|
|
216
|
+
|
|
217
|
+
> **NOTE:** -- ture: In this case, the project status will be changed to' deleting' and completely deleted after 14 days. -- false: delete immediately, that is, completely deleted and permanently irrecoverable.
|
|
212
218
|
:param pulumi.Input[str] owner: Project owner
|
|
213
|
-
:param pulumi.Input[str] product_type: Quota payment type, support `PayAsYouGo`, `Subscription`, `Dev`.
|
|
214
219
|
:param pulumi.Input[str] project_name: The name begins with a letter, containing letters, digits, and underscores (_). It can be 3 to 28 characters in length and is globally unique.
|
|
215
220
|
:param pulumi.Input['ProjectPropertiesArgs'] properties: Project base attributes See `properties` below.
|
|
221
|
+
:param pulumi.Input[str] region_id: The region ID of the resource
|
|
216
222
|
:param pulumi.Input['ProjectSecurityPropertiesArgs'] security_properties: Security-related attributes See `security_properties` below.
|
|
217
223
|
:param pulumi.Input[str] status: The project status. Default value: AVAILABLE. Value: (AVAILABLE/READONLY/FROZEN/DELETING)
|
|
218
224
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
|
|
@@ -236,6 +242,8 @@ class _ProjectState:
|
|
|
236
242
|
pulumi.set(__self__, "project_name", project_name)
|
|
237
243
|
if properties is not None:
|
|
238
244
|
pulumi.set(__self__, "properties", properties)
|
|
245
|
+
if region_id is not None:
|
|
246
|
+
pulumi.set(__self__, "region_id", region_id)
|
|
239
247
|
if security_properties is not None:
|
|
240
248
|
pulumi.set(__self__, "security_properties", security_properties)
|
|
241
249
|
if status is not None:
|
|
@@ -273,7 +281,8 @@ class _ProjectState:
|
|
|
273
281
|
@pulumi.getter(name="defaultQuota")
|
|
274
282
|
def default_quota(self) -> Optional[pulumi.Input[str]]:
|
|
275
283
|
"""
|
|
276
|
-
Used to implement computing resource allocation.
|
|
284
|
+
Used to implement computing resource allocation. Valid values: subQuota Nickname
|
|
285
|
+
If the calculation Quota is not specified, the default Quota resource will be consumed by jobs initiated by the project. For more information about computing resource usage, see [Computing Resource Usage](https://www.alibabacloud.com/help/en/maxcompute/user-guide/use-of-computing-resources).
|
|
277
286
|
"""
|
|
278
287
|
return pulumi.get(self, "default_quota")
|
|
279
288
|
|
|
@@ -297,7 +306,9 @@ class _ProjectState:
|
|
|
297
306
|
@pulumi.getter(name="isLogical")
|
|
298
307
|
def is_logical(self) -> Optional[pulumi.Input[str]]:
|
|
299
308
|
"""
|
|
300
|
-
|
|
309
|
+
Whether to logically delete. Default value: true. Value: (ture/false),
|
|
310
|
+
|
|
311
|
+
> **NOTE:** -- ture: In this case, the project status will be changed to' deleting' and completely deleted after 14 days. -- false: delete immediately, that is, completely deleted and permanently irrecoverable.
|
|
301
312
|
"""
|
|
302
313
|
return pulumi.get(self, "is_logical")
|
|
303
314
|
|
|
@@ -320,9 +331,6 @@ class _ProjectState:
|
|
|
320
331
|
@property
|
|
321
332
|
@pulumi.getter(name="productType")
|
|
322
333
|
def product_type(self) -> Optional[pulumi.Input[str]]:
|
|
323
|
-
"""
|
|
324
|
-
Quota payment type, support `PayAsYouGo`, `Subscription`, `Dev`.
|
|
325
|
-
"""
|
|
326
334
|
return pulumi.get(self, "product_type")
|
|
327
335
|
|
|
328
336
|
@product_type.setter
|
|
@@ -353,6 +361,18 @@ class _ProjectState:
|
|
|
353
361
|
def properties(self, value: Optional[pulumi.Input['ProjectPropertiesArgs']]):
|
|
354
362
|
pulumi.set(self, "properties", value)
|
|
355
363
|
|
|
364
|
+
@property
|
|
365
|
+
@pulumi.getter(name="regionId")
|
|
366
|
+
def region_id(self) -> Optional[pulumi.Input[str]]:
|
|
367
|
+
"""
|
|
368
|
+
The region ID of the resource
|
|
369
|
+
"""
|
|
370
|
+
return pulumi.get(self, "region_id")
|
|
371
|
+
|
|
372
|
+
@region_id.setter
|
|
373
|
+
def region_id(self, value: Optional[pulumi.Input[str]]):
|
|
374
|
+
pulumi.set(self, "region_id", value)
|
|
375
|
+
|
|
356
376
|
@property
|
|
357
377
|
@pulumi.getter(name="securityProperties")
|
|
358
378
|
def security_properties(self) -> Optional[pulumi.Input['ProjectSecurityPropertiesArgs']]:
|
|
@@ -427,8 +447,6 @@ class Project(pulumi.CustomResource):
|
|
|
427
447
|
|
|
428
448
|
> **NOTE:** Available since v1.77.0.
|
|
429
449
|
|
|
430
|
-
> **NOTE:** Field `name`, `specification_type`, `order_type` has been removed from provider version 1.227.1.
|
|
431
|
-
|
|
432
450
|
## Example Usage
|
|
433
451
|
|
|
434
452
|
Basic Usage
|
|
@@ -459,10 +477,12 @@ class Project(pulumi.CustomResource):
|
|
|
459
477
|
:param str resource_name: The name of the resource.
|
|
460
478
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
461
479
|
:param pulumi.Input[str] comment: Project description information. The length is 1 to 256 English or Chinese characters. The default value is blank.
|
|
462
|
-
:param pulumi.Input[str] default_quota: Used to implement computing resource allocation.
|
|
480
|
+
:param pulumi.Input[str] default_quota: Used to implement computing resource allocation. Valid values: subQuota Nickname
|
|
481
|
+
If the calculation Quota is not specified, the default Quota resource will be consumed by jobs initiated by the project. For more information about computing resource usage, see [Computing Resource Usage](https://www.alibabacloud.com/help/en/maxcompute/user-guide/use-of-computing-resources).
|
|
463
482
|
:param pulumi.Input[Union['ProjectIpWhiteListArgs', 'ProjectIpWhiteListArgsDict']] ip_white_list: IP whitelist See `ip_white_list` below.
|
|
464
|
-
:param pulumi.Input[str] is_logical:
|
|
465
|
-
|
|
483
|
+
:param pulumi.Input[str] is_logical: Whether to logically delete. Default value: true. Value: (ture/false),
|
|
484
|
+
|
|
485
|
+
> **NOTE:** -- ture: In this case, the project status will be changed to' deleting' and completely deleted after 14 days. -- false: delete immediately, that is, completely deleted and permanently irrecoverable.
|
|
466
486
|
:param pulumi.Input[str] project_name: The name begins with a letter, containing letters, digits, and underscores (_). It can be 3 to 28 characters in length and is globally unique.
|
|
467
487
|
:param pulumi.Input[Union['ProjectPropertiesArgs', 'ProjectPropertiesArgsDict']] properties: Project base attributes See `properties` below.
|
|
468
488
|
:param pulumi.Input[Union['ProjectSecurityPropertiesArgs', 'ProjectSecurityPropertiesArgsDict']] security_properties: Security-related attributes See `security_properties` below.
|
|
@@ -484,8 +504,6 @@ class Project(pulumi.CustomResource):
|
|
|
484
504
|
|
|
485
505
|
> **NOTE:** Available since v1.77.0.
|
|
486
506
|
|
|
487
|
-
> **NOTE:** Field `name`, `specification_type`, `order_type` has been removed from provider version 1.227.1.
|
|
488
|
-
|
|
489
507
|
## Example Usage
|
|
490
508
|
|
|
491
509
|
Basic Usage
|
|
@@ -559,6 +577,7 @@ class Project(pulumi.CustomResource):
|
|
|
559
577
|
__props__.__dict__["tags"] = tags
|
|
560
578
|
__props__.__dict__["create_time"] = None
|
|
561
579
|
__props__.__dict__["owner"] = None
|
|
580
|
+
__props__.__dict__["region_id"] = None
|
|
562
581
|
__props__.__dict__["type"] = None
|
|
563
582
|
super(Project, __self__).__init__(
|
|
564
583
|
'alicloud:maxcompute/project:Project',
|
|
@@ -579,6 +598,7 @@ class Project(pulumi.CustomResource):
|
|
|
579
598
|
product_type: Optional[pulumi.Input[str]] = None,
|
|
580
599
|
project_name: Optional[pulumi.Input[str]] = None,
|
|
581
600
|
properties: Optional[pulumi.Input[Union['ProjectPropertiesArgs', 'ProjectPropertiesArgsDict']]] = None,
|
|
601
|
+
region_id: Optional[pulumi.Input[str]] = None,
|
|
582
602
|
security_properties: Optional[pulumi.Input[Union['ProjectSecurityPropertiesArgs', 'ProjectSecurityPropertiesArgsDict']]] = None,
|
|
583
603
|
status: Optional[pulumi.Input[str]] = None,
|
|
584
604
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
@@ -592,13 +612,16 @@ class Project(pulumi.CustomResource):
|
|
|
592
612
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
593
613
|
:param pulumi.Input[str] comment: Project description information. The length is 1 to 256 English or Chinese characters. The default value is blank.
|
|
594
614
|
:param pulumi.Input[str] create_time: Represents the creation time of the project
|
|
595
|
-
:param pulumi.Input[str] default_quota: Used to implement computing resource allocation.
|
|
615
|
+
:param pulumi.Input[str] default_quota: Used to implement computing resource allocation. Valid values: subQuota Nickname
|
|
616
|
+
If the calculation Quota is not specified, the default Quota resource will be consumed by jobs initiated by the project. For more information about computing resource usage, see [Computing Resource Usage](https://www.alibabacloud.com/help/en/maxcompute/user-guide/use-of-computing-resources).
|
|
596
617
|
:param pulumi.Input[Union['ProjectIpWhiteListArgs', 'ProjectIpWhiteListArgsDict']] ip_white_list: IP whitelist See `ip_white_list` below.
|
|
597
|
-
:param pulumi.Input[str] is_logical:
|
|
618
|
+
:param pulumi.Input[str] is_logical: Whether to logically delete. Default value: true. Value: (ture/false),
|
|
619
|
+
|
|
620
|
+
> **NOTE:** -- ture: In this case, the project status will be changed to' deleting' and completely deleted after 14 days. -- false: delete immediately, that is, completely deleted and permanently irrecoverable.
|
|
598
621
|
:param pulumi.Input[str] owner: Project owner
|
|
599
|
-
:param pulumi.Input[str] product_type: Quota payment type, support `PayAsYouGo`, `Subscription`, `Dev`.
|
|
600
622
|
:param pulumi.Input[str] project_name: The name begins with a letter, containing letters, digits, and underscores (_). It can be 3 to 28 characters in length and is globally unique.
|
|
601
623
|
:param pulumi.Input[Union['ProjectPropertiesArgs', 'ProjectPropertiesArgsDict']] properties: Project base attributes See `properties` below.
|
|
624
|
+
:param pulumi.Input[str] region_id: The region ID of the resource
|
|
602
625
|
:param pulumi.Input[Union['ProjectSecurityPropertiesArgs', 'ProjectSecurityPropertiesArgsDict']] security_properties: Security-related attributes See `security_properties` below.
|
|
603
626
|
:param pulumi.Input[str] status: The project status. Default value: AVAILABLE. Value: (AVAILABLE/READONLY/FROZEN/DELETING)
|
|
604
627
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
|
|
@@ -617,6 +640,7 @@ class Project(pulumi.CustomResource):
|
|
|
617
640
|
__props__.__dict__["product_type"] = product_type
|
|
618
641
|
__props__.__dict__["project_name"] = project_name
|
|
619
642
|
__props__.__dict__["properties"] = properties
|
|
643
|
+
__props__.__dict__["region_id"] = region_id
|
|
620
644
|
__props__.__dict__["security_properties"] = security_properties
|
|
621
645
|
__props__.__dict__["status"] = status
|
|
622
646
|
__props__.__dict__["tags"] = tags
|
|
@@ -643,7 +667,8 @@ class Project(pulumi.CustomResource):
|
|
|
643
667
|
@pulumi.getter(name="defaultQuota")
|
|
644
668
|
def default_quota(self) -> pulumi.Output[Optional[str]]:
|
|
645
669
|
"""
|
|
646
|
-
Used to implement computing resource allocation.
|
|
670
|
+
Used to implement computing resource allocation. Valid values: subQuota Nickname
|
|
671
|
+
If the calculation Quota is not specified, the default Quota resource will be consumed by jobs initiated by the project. For more information about computing resource usage, see [Computing Resource Usage](https://www.alibabacloud.com/help/en/maxcompute/user-guide/use-of-computing-resources).
|
|
647
672
|
"""
|
|
648
673
|
return pulumi.get(self, "default_quota")
|
|
649
674
|
|
|
@@ -659,7 +684,9 @@ class Project(pulumi.CustomResource):
|
|
|
659
684
|
@pulumi.getter(name="isLogical")
|
|
660
685
|
def is_logical(self) -> pulumi.Output[Optional[str]]:
|
|
661
686
|
"""
|
|
662
|
-
|
|
687
|
+
Whether to logically delete. Default value: true. Value: (ture/false),
|
|
688
|
+
|
|
689
|
+
> **NOTE:** -- ture: In this case, the project status will be changed to' deleting' and completely deleted after 14 days. -- false: delete immediately, that is, completely deleted and permanently irrecoverable.
|
|
663
690
|
"""
|
|
664
691
|
return pulumi.get(self, "is_logical")
|
|
665
692
|
|
|
@@ -674,9 +701,6 @@ class Project(pulumi.CustomResource):
|
|
|
674
701
|
@property
|
|
675
702
|
@pulumi.getter(name="productType")
|
|
676
703
|
def product_type(self) -> pulumi.Output[Optional[str]]:
|
|
677
|
-
"""
|
|
678
|
-
Quota payment type, support `PayAsYouGo`, `Subscription`, `Dev`.
|
|
679
|
-
"""
|
|
680
704
|
return pulumi.get(self, "product_type")
|
|
681
705
|
|
|
682
706
|
@property
|
|
@@ -695,6 +719,14 @@ class Project(pulumi.CustomResource):
|
|
|
695
719
|
"""
|
|
696
720
|
return pulumi.get(self, "properties")
|
|
697
721
|
|
|
722
|
+
@property
|
|
723
|
+
@pulumi.getter(name="regionId")
|
|
724
|
+
def region_id(self) -> pulumi.Output[str]:
|
|
725
|
+
"""
|
|
726
|
+
The region ID of the resource
|
|
727
|
+
"""
|
|
728
|
+
return pulumi.get(self, "region_id")
|
|
729
|
+
|
|
698
730
|
@property
|
|
699
731
|
@pulumi.getter(name="securityProperties")
|
|
700
732
|
def security_properties(self) -> pulumi.Output['outputs.ProjectSecurityProperties']:
|