获取群组绑定的策略
所属服务
sam
接口方法
GET
请求url
/sam?Action=GetGroupPolicy&Version=2018-03-22&GroupName=
url 参数
参数名称 | 说明 | 参数类型 | 是否必填 | 备注 |
---|---|---|---|---|
Action | GetGroupPolicy | string | 是 | |
Version | 2018-03-22 | string | 是 | |
GroupName | 组名(1-64位小写字母、数字、中划线组成,以字母开头,字母或数字结尾) | string | 是 |
返回参数
参数名称 | 说明 | 参数类型 | 是否必填 | 备注 |
---|---|---|---|---|
Policies | 策略列表 | array | 否 | 详细信息见下表 |
Code | Code | string | 是 | |
Message | Message | string | 是 |
Policies
参数名称 | 说明 | 参数类型 | 是否必填 | 备注 |
---|---|---|---|---|
PolicyName | 策略名称 | string | 否 | |
Description | 策略描述 | string | 否 | |
CurrentVersionId | 当前使用版本 | string | 否 | |
AttachmentCount | 引用次数 | string | 否 | |
PolicyType | 策略类型 | string | 否 | |
PolicyDocument | 策略授权语言 | string | 否 | |
CreateTime | 创建时间 | string | 否 |
状态码
错误码(Code) | 错误提示(Message) | http status code | 说明 |
---|---|---|---|
ProductNotActive | 400 | null | |
MissingParameter | 400 | null | |
EntityNotExist | 400 | null |
请求示例
https://open.cn-east-1.163yun.com/sam?Action=GetGroupPolicy&Version=2018-03-22&GroupName=grouptest
返回示例
{
"Policies": [{
"PolicyName": "Policytest",
"Description": "test",
"CurrentVersionId": 1.0,
"AttachmentCount": 1.0,
"PolicyType": "Custom",
"PolicyDocument": "{\"version\": 1, \"statement\": [{\"action\": [\"comb:nvm:*\"], \"effect\": \"allow\", \"resource\": [\"comb:nvm:*:*:*\"]}]}",
"CreateTime": "2020-01-17T07:44:41Z"
}],
"Message": "调用成功",
"RequestId": "f494077c-d87d-49ce-880e-38530f80008a",
"Code": "Success"
}