@apistudio/apim-cli
Version:
CLI for API Management Products
34 lines (28 loc) • 898 B
text/typescript
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
// versions:
// protoc-gen-ts_proto v1.181.1
// protoc v3.12.4
// source: api/ApiProject.proto
/* eslint-disable */
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 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;
}