UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

23 lines 915 B
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 declare 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; } //# sourceMappingURL=AuthorizeUser.d.ts.map