调用CreatePolicy创建一个权限策略。

调试

您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。

请求参数

名称 类型 是否必选 示例值 描述
Action String CreatePolicy

要执行的操作。取值:CreatePolicy。

PolicyDocument String { "Statement": [{ "Action": ["oss:*"], "Effect": "Allow", "Resource": ["acs:oss:*:*:*"]}], "Version": "1"}

权限策略内容。

长度为1~2048个字符。

PolicyName String OSS-Administrator

权限策略名称。

长度为1~128个字符,可包含英文字母、数字和短划线(-)。

Description String OSS管理员权限

权限策略描述。

长度为1~1024个字符。

返回数据

名称 类型 示例值 描述
Policy Struct

权限策略信息。

CreateDate String 2015-01-23T12:33:18Z

权限策略创建时间。

DefaultVersion String v1

权限策略版本号。默认值:v1。

Description String OSS管理员权限

权限策略描述。

PolicyName String OSS-Administrator

权限策略名称。

PolicyType String Custom

权限策略类型。

  • Custom:自定义策略。
  • System:系统策略。
RequestId String 9B34724D-54B0-4A51-B34D-4512372FE1BE

请求ID。

示例

请求示例

https://resourcemanager.aliyuncs.com/?Action=CreatePolicy
&PolicyDocument={ "Statement": [{ "Action": ["oss:*"], "Effect": "Allow", "Resource": ["acs:oss:*:*:*"]}], "Version": "1"}
&PolicyName=OSS-Administrator
&<公共请求参数>

正常返回示例

XML 格式

<CreatePolicyResponse>
	  <RequestId>9B34724D-54B0-4A51-B34D-4512372FE1BE</RequestId>
	  <Policy>
		    <PolicyName>OSS-Administrator</PolicyName>
		    <PolicyType>Custom</PolicyType>
		    <Description>OSS管理员权限</Description>
		    <DefaultVersion>v1</DefaultVersion>
		    <CreateDate>2015-01-23T12:33:18Z</CreateDate>
	  </Policy>
</CreatePolicyResponse>

JSON 格式

{
    "RequestId": "9B34724D-54B0-4A51-B34D-4512372FE1BE",
    "Policy": {
        "PolicyName": "OSS-Administrator",
        "PolicyType": "Custom",
        "Description": "OSS管理员权限",
        "DefaultVersion": "v1",
        "CreateDate": "2015-01-23T12:33:18Z"
    }
}

错误码

HttpCode 错误码 错误信息 描述
400 InvalidParameter.PolicyName.InvalidChars The policy name contains invalid characters. It must only contain upper or lower case letters, numbers, and dash (-). 策略名称包含非法字符。策略名称仅可包含大小写字母、数字以及中划线(-)。
400 InvalidParameter.PolicyName.Length The length of the policy name is invalid. It must be 1 to 128 characters in length. 策略名称长度不符合要求。策略名称长度必须在1~128个字符之间。
400 InvalidParameter.PolicyDocument.Length The maximum length of the policy document is exceeded. It must not exceed 2048 characters. 权限策略内容长度超限。权限策略长度不得长于2048个字符。
400 InvalidParameter.Description.Length The maximum length of the description is exceeded. It must not exceed 1024 characters. 描述长度超限。最大不得超过1024个字符。
409 MalformedPolicyDocument The policy format is invalid. 策略格式错误。
409 EntityAlreadyExists.Policy The policy already exists. 权限策略已存在。
409 LimitExceeded.Policy The maximum number of policies is exceeded. 权限策略数超出限制。

访问错误中心查看更多错误码。