REST Resource: permissions
资源:Permissions
JSON 表示法 |
{
"issuerId": string,
"permissions": [
{
object (Permission )
}
]
} |
字段 |
issuerId |
string (int64 format)
权限列表所引用的发卡机构的 ID。
|
permissions[] |
object (Permission )
发卡机构账号权限的完整列表。
|
权限
JSON 表示法 |
{
"emailAddress": string,
"role": enum (Role )
} |
字段 |
emailAddress |
string
该权限所指向的用户、群组或服务账号的电子邮件地址。
|
role |
enum (Role )
此权限授予的角色。
|
角色
枚举 |
ROLE_UNSPECIFIED |
|
OWNER |
|
owner |
OWNER 的旧别名,已弃用。
|
READER |
|
reader |
READER 的旧别名。已弃用。
|
WRITER |
|
writer |
WRITER 的旧别名,已弃用。
|
方法 |
|
返回指定发卡机构 ID 的权限。 |
|
更新指定发卡机构的权限。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-11-07。
[null,null,["最后更新时间 (UTC):2024-11-07。"],[[["Permissions define access levels (OWNER, READER, WRITER) for users, groups, or service accounts associated with an issuer ID."],["Permissions can be managed through the `get` and `update` methods to retrieve and modify access rights."],["Permissions are structured with an issuer ID and an array of individual permissions, each specifying an email address and a role."],["The `Permissions` resource provides a comprehensive list of permissions for a given issuer, enabling centralized access control."]]],["Permissions are managed for an issuer, identified by an `issuerId`. The permission structure includes a list of `permissions`, each specifying an `emailAddress` and a granted `role`. Roles can be `OWNER`, `READER`, or `WRITER`; lowercase versions are deprecated aliases. Permissions can be retrieved using the `get` method by issuer id. The `update` method allows modifying the permissions list associated with a specified issuer.\n"]]