pulumi-alicloud 3.77.0a1746163013__py3-none-any.whl → 3.77.0a1746220593__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 +72 -0
- pulumi_alicloud/_inputs.py +13 -0
- pulumi_alicloud/adb/db_cluster_lake_version.py +94 -0
- pulumi_alicloud/alb/_inputs.py +6 -3
- pulumi_alicloud/alb/outputs.py +4 -2
- pulumi_alicloud/apig/environment.py +2 -2
- pulumi_alicloud/apig/http_api.py +2 -2
- pulumi_alicloud/arms/grafana_workspace.py +56 -14
- pulumi_alicloud/cloudfirewall/instance_member.py +4 -4
- pulumi_alicloud/cloudfirewall/vpc_cen_tr_firewall.py +2 -2
- pulumi_alicloud/cloudsso/_inputs.py +697 -7
- pulumi_alicloud/cloudsso/directory.py +345 -65
- pulumi_alicloud/cloudsso/outputs.py +557 -8
- pulumi_alicloud/config/outputs.py +8 -0
- pulumi_alicloud/cs/_inputs.py +18 -18
- pulumi_alicloud/cs/edge_kubernetes.py +136 -100
- pulumi_alicloud/cs/get_kubernetes_node_pools.py +21 -1
- pulumi_alicloud/cs/kubernetes.py +118 -39
- pulumi_alicloud/cs/managed_kubernetes.py +125 -46
- pulumi_alicloud/cs/outputs.py +14 -14
- pulumi_alicloud/cs/serverless_kubernetes.py +66 -73
- pulumi_alicloud/ddos/ddos_coo_instance.py +175 -25
- pulumi_alicloud/dns/ddos_coo_instance.py +175 -25
- pulumi_alicloud/dts/job_monitor_rule.py +2 -2
- pulumi_alicloud/dts/synchronization_job.py +2 -2
- pulumi_alicloud/ecs/get_instance_types.py +4 -4
- pulumi_alicloud/ecs/instance.py +28 -28
- pulumi_alicloud/ecs/outputs.py +2 -2
- pulumi_alicloud/ecs/security_group_rule.py +32 -4
- pulumi_alicloud/eflo/__init__.py +3 -0
- pulumi_alicloud/eflo/_inputs.py +623 -0
- pulumi_alicloud/eflo/experiment_plan.py +573 -0
- pulumi_alicloud/eflo/experiment_plan_template.py +464 -0
- pulumi_alicloud/eflo/outputs.py +476 -0
- pulumi_alicloud/eflo/resource.py +388 -0
- pulumi_alicloud/ens/disk.py +120 -69
- pulumi_alicloud/ens/eip.py +45 -41
- pulumi_alicloud/esa/__init__.py +2 -0
- pulumi_alicloud/esa/scheduled_preload_execution.py +479 -0
- pulumi_alicloud/esa/scheduled_preload_job.py +467 -0
- pulumi_alicloud/gwlb/listener.py +2 -2
- pulumi_alicloud/gwlb/load_balancer.py +2 -2
- pulumi_alicloud/gwlb/server_group.py +2 -2
- pulumi_alicloud/ims/__init__.py +2 -0
- pulumi_alicloud/ims/get_oidc_providers.py +216 -0
- pulumi_alicloud/ims/outputs.py +138 -0
- pulumi_alicloud/mongodb/__init__.py +2 -0
- pulumi_alicloud/mongodb/_inputs.py +154 -0
- pulumi_alicloud/mongodb/instance.py +7 -7
- pulumi_alicloud/mongodb/outputs.py +121 -0
- pulumi_alicloud/mongodb/public_network_address.py +275 -0
- pulumi_alicloud/mongodb/replica_set_role.py +533 -0
- pulumi_alicloud/nas/_inputs.py +252 -18
- pulumi_alicloud/nas/file_system.py +649 -264
- pulumi_alicloud/nas/outputs.py +198 -12
- pulumi_alicloud/nlb/server_group_server_attachment.py +4 -0
- pulumi_alicloud/pai/__init__.py +1 -0
- pulumi_alicloud/pai/flow_pipeline.py +491 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/__init__.py +1 -0
- pulumi_alicloud/ram/get_role_policy_attachments.py +272 -0
- pulumi_alicloud/ram/outputs.py +63 -0
- pulumi_alicloud/ram/security_preference.py +496 -110
- pulumi_alicloud/rdc/organization.py +2 -2
- pulumi_alicloud/rds/instance.py +1 -1
- pulumi_alicloud/sae/application_scaling_rule.py +2 -2
- pulumi_alicloud/sae/ingress.py +2 -2
- pulumi_alicloud/schedulerx/app_group.py +2 -2
- pulumi_alicloud/schedulerx/job.py +2 -2
- pulumi_alicloud/selectdb/db_cluster.py +2 -0
- pulumi_alicloud/selectdb/db_instance.py +43 -13
- pulumi_alicloud/selectdb/get_db_clusters.py +2 -0
- pulumi_alicloud/selectdb/get_db_instances.py +2 -0
- pulumi_alicloud/selectdb/outputs.py +3 -3
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/_inputs.py +295 -0
- pulumi_alicloud/sls/etl.py +516 -0
- pulumi_alicloud/sls/outputs.py +209 -0
- pulumi_alicloud/vpc/network.py +156 -88
- {pulumi_alicloud-3.77.0a1746163013.dist-info → pulumi_alicloud-3.77.0a1746220593.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.77.0a1746163013.dist-info → pulumi_alicloud-3.77.0a1746220593.dist-info}/RECORD +83 -71
- {pulumi_alicloud-3.77.0a1746163013.dist-info → pulumi_alicloud-3.77.0a1746220593.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.77.0a1746163013.dist-info → pulumi_alicloud-3.77.0a1746220593.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,272 @@
|
|
|
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 builtins
|
|
6
|
+
import copy
|
|
7
|
+
import warnings
|
|
8
|
+
import sys
|
|
9
|
+
import pulumi
|
|
10
|
+
import pulumi.runtime
|
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
12
|
+
if sys.version_info >= (3, 11):
|
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
14
|
+
else:
|
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
16
|
+
from .. import _utilities
|
|
17
|
+
from . import outputs
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'GetRolePolicyAttachmentsResult',
|
|
21
|
+
'AwaitableGetRolePolicyAttachmentsResult',
|
|
22
|
+
'get_role_policy_attachments',
|
|
23
|
+
'get_role_policy_attachments_output',
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
@pulumi.output_type
|
|
27
|
+
class GetRolePolicyAttachmentsResult:
|
|
28
|
+
"""
|
|
29
|
+
A collection of values returned by getRolePolicyAttachments.
|
|
30
|
+
"""
|
|
31
|
+
def __init__(__self__, attachments=None, id=None, ids=None, output_file=None, role_name=None):
|
|
32
|
+
if attachments and not isinstance(attachments, list):
|
|
33
|
+
raise TypeError("Expected argument 'attachments' to be a list")
|
|
34
|
+
pulumi.set(__self__, "attachments", attachments)
|
|
35
|
+
if id and not isinstance(id, str):
|
|
36
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
37
|
+
pulumi.set(__self__, "id", id)
|
|
38
|
+
if ids and not isinstance(ids, list):
|
|
39
|
+
raise TypeError("Expected argument 'ids' to be a list")
|
|
40
|
+
pulumi.set(__self__, "ids", ids)
|
|
41
|
+
if output_file and not isinstance(output_file, str):
|
|
42
|
+
raise TypeError("Expected argument 'output_file' to be a str")
|
|
43
|
+
pulumi.set(__self__, "output_file", output_file)
|
|
44
|
+
if role_name and not isinstance(role_name, str):
|
|
45
|
+
raise TypeError("Expected argument 'role_name' to be a str")
|
|
46
|
+
pulumi.set(__self__, "role_name", role_name)
|
|
47
|
+
|
|
48
|
+
@property
|
|
49
|
+
@pulumi.getter
|
|
50
|
+
def attachments(self) -> Sequence['outputs.GetRolePolicyAttachmentsAttachmentResult']:
|
|
51
|
+
"""
|
|
52
|
+
A list of Role Policy Attachment Entries. Each element contains the following attributes:
|
|
53
|
+
"""
|
|
54
|
+
return pulumi.get(self, "attachments")
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
@pulumi.getter
|
|
58
|
+
def id(self) -> builtins.str:
|
|
59
|
+
"""
|
|
60
|
+
The provider-assigned unique ID for this managed resource.
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "id")
|
|
63
|
+
|
|
64
|
+
@property
|
|
65
|
+
@pulumi.getter
|
|
66
|
+
def ids(self) -> Sequence[builtins.str]:
|
|
67
|
+
"""
|
|
68
|
+
A list of Role Policy Attachment IDs.
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "ids")
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
@pulumi.getter(name="outputFile")
|
|
74
|
+
def output_file(self) -> Optional[builtins.str]:
|
|
75
|
+
return pulumi.get(self, "output_file")
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter(name="roleName")
|
|
79
|
+
def role_name(self) -> builtins.str:
|
|
80
|
+
return pulumi.get(self, "role_name")
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
class AwaitableGetRolePolicyAttachmentsResult(GetRolePolicyAttachmentsResult):
|
|
84
|
+
# pylint: disable=using-constant-test
|
|
85
|
+
def __await__(self):
|
|
86
|
+
if False:
|
|
87
|
+
yield self
|
|
88
|
+
return GetRolePolicyAttachmentsResult(
|
|
89
|
+
attachments=self.attachments,
|
|
90
|
+
id=self.id,
|
|
91
|
+
ids=self.ids,
|
|
92
|
+
output_file=self.output_file,
|
|
93
|
+
role_name=self.role_name)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
def get_role_policy_attachments(ids: Optional[Sequence[builtins.str]] = None,
|
|
97
|
+
output_file: Optional[builtins.str] = None,
|
|
98
|
+
role_name: Optional[builtins.str] = None,
|
|
99
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRolePolicyAttachmentsResult:
|
|
100
|
+
"""
|
|
101
|
+
This data source provides Ram Role Policy Attachment available to the user.[What is Role Policy Attachment](https://next.api.alibabacloud.com/document/Ram/2015-05-01/AttachPolicyToRole)
|
|
102
|
+
|
|
103
|
+
> **NOTE:** Available since v1.248.0.
|
|
104
|
+
|
|
105
|
+
## Example Usage
|
|
106
|
+
|
|
107
|
+
```python
|
|
108
|
+
import pulumi
|
|
109
|
+
import pulumi_alicloud as alicloud
|
|
110
|
+
import pulumi_random as random
|
|
111
|
+
|
|
112
|
+
config = pulumi.Config()
|
|
113
|
+
name = config.get("name")
|
|
114
|
+
if name is None:
|
|
115
|
+
name = "terraform-example"
|
|
116
|
+
role = alicloud.ram.Role("role",
|
|
117
|
+
name="roleName",
|
|
118
|
+
document=\"\"\" {
|
|
119
|
+
"Statement": [
|
|
120
|
+
{
|
|
121
|
+
"Action": "sts:AssumeRole",
|
|
122
|
+
"Effect": "Allow",
|
|
123
|
+
"Principal": {
|
|
124
|
+
"Service": [
|
|
125
|
+
"apigateway.aliyuncs.com",
|
|
126
|
+
"ecs.aliyuncs.com"
|
|
127
|
+
]
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
"Version": "1"
|
|
132
|
+
}
|
|
133
|
+
\"\"\",
|
|
134
|
+
description="this is a role test.")
|
|
135
|
+
default_integer = random.index.Integer("default",
|
|
136
|
+
min=10000,
|
|
137
|
+
max=99999)
|
|
138
|
+
policy = alicloud.ram.Policy("policy",
|
|
139
|
+
policy_name=f"tf-example-{default_integer['result']}",
|
|
140
|
+
policy_document=\"\"\" {
|
|
141
|
+
"Statement": [
|
|
142
|
+
{
|
|
143
|
+
"Action": [
|
|
144
|
+
"oss:ListObjects",
|
|
145
|
+
"oss:GetObject"
|
|
146
|
+
],
|
|
147
|
+
"Effect": "Allow",
|
|
148
|
+
"Resource": [
|
|
149
|
+
"acs:oss:*:*:mybucket",
|
|
150
|
+
"acs:oss:*:*:mybucket/*"
|
|
151
|
+
]
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"Version": "1"
|
|
155
|
+
}
|
|
156
|
+
\"\"\",
|
|
157
|
+
description="this is a policy test")
|
|
158
|
+
default_role_policy_attachment = alicloud.ram.RolePolicyAttachment("default",
|
|
159
|
+
policy_name=policy.policy_name,
|
|
160
|
+
policy_type=policy.type,
|
|
161
|
+
role_name=role.name)
|
|
162
|
+
default = alicloud.ram.get_role_policy_attachments_output(ids=[default_role_policy_attachment.id],
|
|
163
|
+
role_name=role.id)
|
|
164
|
+
pulumi.export("alicloudRamRolePolicyAttachmentExampleId", default.attachments[0].id)
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
:param Sequence[builtins.str] ids: A list of Role Policy Attachment IDs. The value is formulated as `role:<policy_name>:<policy_type>:<role_name>`.
|
|
169
|
+
:param builtins.str output_file: File name where to save data source results (after running `pulumi preview`).
|
|
170
|
+
:param builtins.str role_name: The RAM role name.
|
|
171
|
+
"""
|
|
172
|
+
__args__ = dict()
|
|
173
|
+
__args__['ids'] = ids
|
|
174
|
+
__args__['outputFile'] = output_file
|
|
175
|
+
__args__['roleName'] = role_name
|
|
176
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
177
|
+
__ret__ = pulumi.runtime.invoke('alicloud:ram/getRolePolicyAttachments:getRolePolicyAttachments', __args__, opts=opts, typ=GetRolePolicyAttachmentsResult).value
|
|
178
|
+
|
|
179
|
+
return AwaitableGetRolePolicyAttachmentsResult(
|
|
180
|
+
attachments=pulumi.get(__ret__, 'attachments'),
|
|
181
|
+
id=pulumi.get(__ret__, 'id'),
|
|
182
|
+
ids=pulumi.get(__ret__, 'ids'),
|
|
183
|
+
output_file=pulumi.get(__ret__, 'output_file'),
|
|
184
|
+
role_name=pulumi.get(__ret__, 'role_name'))
|
|
185
|
+
def get_role_policy_attachments_output(ids: Optional[pulumi.Input[Optional[Sequence[builtins.str]]]] = None,
|
|
186
|
+
output_file: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
|
187
|
+
role_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
188
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRolePolicyAttachmentsResult]:
|
|
189
|
+
"""
|
|
190
|
+
This data source provides Ram Role Policy Attachment available to the user.[What is Role Policy Attachment](https://next.api.alibabacloud.com/document/Ram/2015-05-01/AttachPolicyToRole)
|
|
191
|
+
|
|
192
|
+
> **NOTE:** Available since v1.248.0.
|
|
193
|
+
|
|
194
|
+
## Example Usage
|
|
195
|
+
|
|
196
|
+
```python
|
|
197
|
+
import pulumi
|
|
198
|
+
import pulumi_alicloud as alicloud
|
|
199
|
+
import pulumi_random as random
|
|
200
|
+
|
|
201
|
+
config = pulumi.Config()
|
|
202
|
+
name = config.get("name")
|
|
203
|
+
if name is None:
|
|
204
|
+
name = "terraform-example"
|
|
205
|
+
role = alicloud.ram.Role("role",
|
|
206
|
+
name="roleName",
|
|
207
|
+
document=\"\"\" {
|
|
208
|
+
"Statement": [
|
|
209
|
+
{
|
|
210
|
+
"Action": "sts:AssumeRole",
|
|
211
|
+
"Effect": "Allow",
|
|
212
|
+
"Principal": {
|
|
213
|
+
"Service": [
|
|
214
|
+
"apigateway.aliyuncs.com",
|
|
215
|
+
"ecs.aliyuncs.com"
|
|
216
|
+
]
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
],
|
|
220
|
+
"Version": "1"
|
|
221
|
+
}
|
|
222
|
+
\"\"\",
|
|
223
|
+
description="this is a role test.")
|
|
224
|
+
default_integer = random.index.Integer("default",
|
|
225
|
+
min=10000,
|
|
226
|
+
max=99999)
|
|
227
|
+
policy = alicloud.ram.Policy("policy",
|
|
228
|
+
policy_name=f"tf-example-{default_integer['result']}",
|
|
229
|
+
policy_document=\"\"\" {
|
|
230
|
+
"Statement": [
|
|
231
|
+
{
|
|
232
|
+
"Action": [
|
|
233
|
+
"oss:ListObjects",
|
|
234
|
+
"oss:GetObject"
|
|
235
|
+
],
|
|
236
|
+
"Effect": "Allow",
|
|
237
|
+
"Resource": [
|
|
238
|
+
"acs:oss:*:*:mybucket",
|
|
239
|
+
"acs:oss:*:*:mybucket/*"
|
|
240
|
+
]
|
|
241
|
+
}
|
|
242
|
+
],
|
|
243
|
+
"Version": "1"
|
|
244
|
+
}
|
|
245
|
+
\"\"\",
|
|
246
|
+
description="this is a policy test")
|
|
247
|
+
default_role_policy_attachment = alicloud.ram.RolePolicyAttachment("default",
|
|
248
|
+
policy_name=policy.policy_name,
|
|
249
|
+
policy_type=policy.type,
|
|
250
|
+
role_name=role.name)
|
|
251
|
+
default = alicloud.ram.get_role_policy_attachments_output(ids=[default_role_policy_attachment.id],
|
|
252
|
+
role_name=role.id)
|
|
253
|
+
pulumi.export("alicloudRamRolePolicyAttachmentExampleId", default.attachments[0].id)
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
:param Sequence[builtins.str] ids: A list of Role Policy Attachment IDs. The value is formulated as `role:<policy_name>:<policy_type>:<role_name>`.
|
|
258
|
+
:param builtins.str output_file: File name where to save data source results (after running `pulumi preview`).
|
|
259
|
+
:param builtins.str role_name: The RAM role name.
|
|
260
|
+
"""
|
|
261
|
+
__args__ = dict()
|
|
262
|
+
__args__['ids'] = ids
|
|
263
|
+
__args__['outputFile'] = output_file
|
|
264
|
+
__args__['roleName'] = role_name
|
|
265
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
266
|
+
__ret__ = pulumi.runtime.invoke_output('alicloud:ram/getRolePolicyAttachments:getRolePolicyAttachments', __args__, opts=opts, typ=GetRolePolicyAttachmentsResult)
|
|
267
|
+
return __ret__.apply(lambda __response__: GetRolePolicyAttachmentsResult(
|
|
268
|
+
attachments=pulumi.get(__response__, 'attachments'),
|
|
269
|
+
id=pulumi.get(__response__, 'id'),
|
|
270
|
+
ids=pulumi.get(__response__, 'ids'),
|
|
271
|
+
output_file=pulumi.get(__response__, 'output_file'),
|
|
272
|
+
role_name=pulumi.get(__response__, 'role_name')))
|
pulumi_alicloud/ram/outputs.py
CHANGED
|
@@ -23,6 +23,7 @@ __all__ = [
|
|
|
23
23
|
'GetPolicyDocumentStatementResult',
|
|
24
24
|
'GetPolicyDocumentStatementConditionResult',
|
|
25
25
|
'GetPolicyDocumentStatementPrincipalResult',
|
|
26
|
+
'GetRolePolicyAttachmentsAttachmentResult',
|
|
26
27
|
'GetRolesRoleResult',
|
|
27
28
|
'GetSamlProvidersProviderResult',
|
|
28
29
|
'GetSystemPolicysPolicyResult',
|
|
@@ -383,6 +384,68 @@ class GetPolicyDocumentStatementPrincipalResult(dict):
|
|
|
383
384
|
return pulumi.get(self, "identifiers")
|
|
384
385
|
|
|
385
386
|
|
|
387
|
+
@pulumi.output_type
|
|
388
|
+
class GetRolePolicyAttachmentsAttachmentResult(dict):
|
|
389
|
+
def __init__(__self__, *,
|
|
390
|
+
attach_date: builtins.str,
|
|
391
|
+
description: builtins.str,
|
|
392
|
+
id: builtins.str,
|
|
393
|
+
policy_name: builtins.str,
|
|
394
|
+
policy_type: builtins.str):
|
|
395
|
+
"""
|
|
396
|
+
:param builtins.str attach_date: The time when the role was attached to the policy.
|
|
397
|
+
:param builtins.str description: The policy description.
|
|
398
|
+
:param builtins.str id: The ID of the resource supplied above. The value is formulated as `role:<policy_name>:<policy_type>:<role_name>`.
|
|
399
|
+
:param builtins.str policy_name: The name of the policy.
|
|
400
|
+
:param builtins.str policy_type: Policy type.- Custom: Custom policy.- System: System policy.
|
|
401
|
+
"""
|
|
402
|
+
pulumi.set(__self__, "attach_date", attach_date)
|
|
403
|
+
pulumi.set(__self__, "description", description)
|
|
404
|
+
pulumi.set(__self__, "id", id)
|
|
405
|
+
pulumi.set(__self__, "policy_name", policy_name)
|
|
406
|
+
pulumi.set(__self__, "policy_type", policy_type)
|
|
407
|
+
|
|
408
|
+
@property
|
|
409
|
+
@pulumi.getter(name="attachDate")
|
|
410
|
+
def attach_date(self) -> builtins.str:
|
|
411
|
+
"""
|
|
412
|
+
The time when the role was attached to the policy.
|
|
413
|
+
"""
|
|
414
|
+
return pulumi.get(self, "attach_date")
|
|
415
|
+
|
|
416
|
+
@property
|
|
417
|
+
@pulumi.getter
|
|
418
|
+
def description(self) -> builtins.str:
|
|
419
|
+
"""
|
|
420
|
+
The policy description.
|
|
421
|
+
"""
|
|
422
|
+
return pulumi.get(self, "description")
|
|
423
|
+
|
|
424
|
+
@property
|
|
425
|
+
@pulumi.getter
|
|
426
|
+
def id(self) -> builtins.str:
|
|
427
|
+
"""
|
|
428
|
+
The ID of the resource supplied above. The value is formulated as `role:<policy_name>:<policy_type>:<role_name>`.
|
|
429
|
+
"""
|
|
430
|
+
return pulumi.get(self, "id")
|
|
431
|
+
|
|
432
|
+
@property
|
|
433
|
+
@pulumi.getter(name="policyName")
|
|
434
|
+
def policy_name(self) -> builtins.str:
|
|
435
|
+
"""
|
|
436
|
+
The name of the policy.
|
|
437
|
+
"""
|
|
438
|
+
return pulumi.get(self, "policy_name")
|
|
439
|
+
|
|
440
|
+
@property
|
|
441
|
+
@pulumi.getter(name="policyType")
|
|
442
|
+
def policy_type(self) -> builtins.str:
|
|
443
|
+
"""
|
|
444
|
+
Policy type.- Custom: Custom policy.- System: System policy.
|
|
445
|
+
"""
|
|
446
|
+
return pulumi.get(self, "policy_type")
|
|
447
|
+
|
|
448
|
+
|
|
386
449
|
@pulumi.output_type
|
|
387
450
|
class GetRolesRoleResult(dict):
|
|
388
451
|
def __init__(__self__, *,
|