@apistudio/apim-cli
Version:
CLI for API Management Products
21 lines • 758 B
TypeScript
import { type Metadata } from "../common/Metadata.js";
import { type Ref } from "../common/Ref.js";
/** Copyright Super iPaaS Integration LLC, an IBM Company 2024 */
export interface Project {
kind?: string | undefined;
/** common metadata to identify a specific asset in the files */
metadata?: Metadata | undefined;
spec?: Project_Spec | undefined;
kindEnum?: Project_KindEnums | undefined;
apiVersion?: string | undefined;
}
/** Kind id supported for project */
export declare enum Project_KindEnums {
Project = "Project"
}
/** The Spec is used to define the list of api */
export interface Project_Spec {
/** Multiple instances of api can be given */
api?: Ref[] | undefined;
}
//# sourceMappingURL=ApiProject.d.ts.map