Reviewed-by: Gergo-Bence Lorincz <a200452876@noreply.gitea.eco.tsi-dev.otc-service.com> Co-authored-by: qiujiandong1 <qiujiandong1@huawei.com> Co-committed-by: qiujiandong1 <qiujiandong1@huawei.com>
21 KiB
Creating a Permission Policy
Function
This API is used to create a permission policy.
URI
POST /v1/permissions/rules
Request Parameters
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
X-Auth-Token |
Yes |
String |
Identity authentication information Minimum length: 1 Maximum length: 16384 |
Content-Type |
Yes |
String |
Request body type or format |
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
metadata |
Yes |
CreateRuleObjectMeta object |
Basic information about the permission policy. Metadata is a collection of attributes. |
spec |
Yes |
RuleSpec object |
Details about the permission policy. UCS creates or updates the permission policy by spec. |
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
name |
Yes |
String |
Permission policy name Minimum length: 1 Maximum: 63 |
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
iamuserids |
No |
Array of strings |
Information of IAM users associated with a permission policy |
type |
No |
String |
Permission policy type. The value can be readonly, develop, admin, or custom. |
contents |
No |
Array of Content objects |
Permission policy content |
description |
No |
String |
Permission policy description Minimum length: 0 Maximum length: 255 |
Response Parameters
Status code: 201
Parameter |
Type |
Description |
|---|---|---|
uid |
String |
Permission policy UID |
Example Requests
Creating a permission policy
{
"metadata" : {
"name" : "xxxxx"
},
"spec" : {
"type" : "admin",
"iamUserIDs" : [ "xxxxx" ]
}
}
Example Responses
Status code: 201
The UID of the new permission policy has been returned.
{
"uid" : "xxxx-xxxx-xxxx-xxxx"
}
Status Codes
Status Code |
Description |
|---|---|
201 |
The UID of the new permission policy has been returned. |
400 |
Client request error. The server could not execute the request. |
500 |
Internal server error. |
Error Codes
See Error Codes.