@apistudio/apim-cli
Version:
CLI for API Management Products
36 lines (28 loc) • 895 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: mock/MockEndpoint.proto
/* eslint-disable */
import { type Metadata } from "../common/Metadata.js";
/** Copyright Super iPaaS Integration LLC, an IBM Company 2024 */
export interface MockEndpoint {
kind?: string | undefined;
apiVersion?: string | undefined;
metadata?: Metadata | undefined;
spec?: MockEndpoint_Spec | undefined;
kindEnum?: MockEndpoint_KindEnums | undefined;
}
export enum MockEndpoint_KindEnums {
MockEndpoint = "MockEndpoint",
}
export interface MockEndpoint_Response {
$ref?: string | undefined;
}
export interface MockEndpoint_Config {
condition?: string | undefined;
response?: MockEndpoint_Response | undefined;
}
export interface MockEndpoint_Spec {
config?: MockEndpoint_Config[] | undefined;
}