Binding

Associates members with a role.

API ManagementCloud ComputingInfrastructurePlatform as a Service

Properties

Name Type Description
role string The role that is assigned to the list of members. Example: roles/resourcemanager.projectViewer.
members array The identities requesting access. Supports user, serviceAccount, group, and domain members.
condition object
View JSON Schema on GitHub

JSON Schema

google-cloud-platform-binding-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Binding",
  "title": "Binding",
  "type": "object",
  "description": "Associates members with a role.",
  "properties": {
    "role": {
      "type": "string",
      "description": "The role that is assigned to the list of members. Example: roles/resourcemanager.projectViewer.",
      "examples": [
        "roles/resourcemanager.projectViewer"
      ]
    },
    "members": {
      "type": "array",
      "description": "The identities requesting access. Supports user, serviceAccount, group, and domain members.",
      "items": {
        "type": "string"
      },
      "examples": [
        [
          "user:[email protected]",
          "serviceAccount:[email protected]",
          "group:[email protected]",
          "domain:example.com"
        ]
      ]
    },
    "condition": {
      "$ref": "#/components/schemas/Expr"
    }
  }
}