// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
// versions:
//   protoc-gen-ts_proto  v1.181.1
//   protoc               v3.12.4
// source: policy/iam/AuthorizeUser.proto

/* eslint-disable */
import { type Metadata } from "../../common/Metadata.js";

/** Copyright Super iPaaS Integration LLC, an IBM Company 2024 */

/** related information is captured in the message AuthorizeUser. */
export interface AuthorizeUser {
  kind?: string | undefined;
  apiVersion?:
    | string
    | undefined;
  /** common metadata to identify a specific asset in the files */
  metadata?: Metadata | undefined;
  kindEnum?: AuthorizeUser_KindEnums | undefined;
  spec?: AuthorizeUser_Spec | undefined;
}

/** Kind id supported for Authorize User */
export enum AuthorizeUser_KindEnums {
  AuthorizeUser = "AuthorizeUser",
}

/** The Spec is used to define the list of users,groups and teams */
export interface AuthorizeUser_Spec {
  enabled?: boolean | undefined;
  users?: string[] | undefined;
  groups?: string[] | undefined;
  teams?: string[] | undefined;
}
