Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudSecuritycenterV2IamBinding

import type { GoogleCloudSecuritycenterV2IamBinding } from "https://googleapis.deno.dev/v1/securitycenter:v1.ts";

Represents a particular IAM binding, which captures a member's role addition, removal, or state.

interface GoogleCloudSecuritycenterV2IamBinding {
action?: "ACTION_UNSPECIFIED" | "ADD" | "REMOVE";
member?: string;
role?: string;
}

§Properties

§
action?: "ACTION_UNSPECIFIED" | "ADD" | "REMOVE"
[src]

The action that was performed on a Binding.

§
member?: string
[src]

A single identity requesting access for a Cloud Platform resource, for example, "foo@google.com".

§
role?: string
[src]

Role that is assigned to "members". For example, "roles/viewer", "roles/editor", or "roles/owner".