import { PageDirection } from "./resource_pb.mjs"; import { AIGateway } from "./aigateway_resource_pb.mjs"; import { GenMessage } from "@bufbuild/protobuf/codegenv2"; import { Message } from "@bufbuild/protobuf"; import { FieldMask } from "@bufbuild/protobuf/wkt"; //#region ../tailor-proto/src/tailor/v1/aigateway_pb.d.ts /** * @generated from message tailor.v1.CreateAIGatewayRequest */ export declare type CreateAIGatewayRequest = Message<"tailor.v1.CreateAIGatewayRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string aigateway_name = 2; */ aigatewayName: string; /** * @generated from field: string auth_namespace = 3; */ authNamespace: string; /** * @generated from field: repeated string cors = 4; */ cors: string[]; }; /** * Describes the message tailor.v1.CreateAIGatewayRequest. * Use `create(CreateAIGatewayRequestSchema)` to create a new message. */ export declare const CreateAIGatewayRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateAIGatewayResponse */ export declare type CreateAIGatewayResponse = Message<"tailor.v1.CreateAIGatewayResponse"> & { /** * @generated from field: tailor.v1.AIGateway aigateway = 1; */ aigateway?: AIGateway; }; /** * Describes the message tailor.v1.CreateAIGatewayResponse. * Use `create(CreateAIGatewayResponseSchema)` to create a new message. */ export declare const CreateAIGatewayResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAIGatewayRequest */ export declare type UpdateAIGatewayRequest = Message<"tailor.v1.UpdateAIGatewayRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string aigateway_name = 2; */ aigatewayName: string; /** * @generated from field: string auth_namespace = 3; */ authNamespace: string; /** * @generated from field: repeated string cors = 4; */ cors: string[]; /** * @generated from field: bool disabled = 5; */ disabled: boolean; /** * @generated from field: google.protobuf.FieldMask update_mask = 100; */ updateMask?: FieldMask; }; /** * Describes the message tailor.v1.UpdateAIGatewayRequest. * Use `create(UpdateAIGatewayRequestSchema)` to create a new message. */ export declare const UpdateAIGatewayRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAIGatewayResponse */ export declare type UpdateAIGatewayResponse = Message<"tailor.v1.UpdateAIGatewayResponse"> & { /** * @generated from field: tailor.v1.AIGateway aigateway = 1; */ aigateway?: AIGateway; }; /** * Describes the message tailor.v1.UpdateAIGatewayResponse. * Use `create(UpdateAIGatewayResponseSchema)` to create a new message. */ export declare const UpdateAIGatewayResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAIGatewayRequest */ export declare type DeleteAIGatewayRequest = Message<"tailor.v1.DeleteAIGatewayRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string aigateway_name = 2; */ aigatewayName: string; }; /** * Describes the message tailor.v1.DeleteAIGatewayRequest. * Use `create(DeleteAIGatewayRequestSchema)` to create a new message. */ export declare const DeleteAIGatewayRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAIGatewayResponse */ export declare type DeleteAIGatewayResponse = Message<"tailor.v1.DeleteAIGatewayResponse"> & {}; /** * Describes the message tailor.v1.DeleteAIGatewayResponse. * Use `create(DeleteAIGatewayResponseSchema)` to create a new message. */ export declare const DeleteAIGatewayResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetAIGatewayRequest */ export declare type GetAIGatewayRequest = Message<"tailor.v1.GetAIGatewayRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string aigateway_name = 2; */ aigatewayName: string; }; /** * Describes the message tailor.v1.GetAIGatewayRequest. * Use `create(GetAIGatewayRequestSchema)` to create a new message. */ export declare const GetAIGatewayRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetAIGatewayResponse */ export declare type GetAIGatewayResponse = Message<"tailor.v1.GetAIGatewayResponse"> & { /** * @generated from field: tailor.v1.AIGateway aigateway = 1; */ aigateway?: AIGateway; }; /** * Describes the message tailor.v1.GetAIGatewayResponse. * Use `create(GetAIGatewayResponseSchema)` to create a new message. */ export declare const GetAIGatewayResponseSchema: GenMessage; /** * @generated from message tailor.v1.ListAIGatewaysRequest */ export declare type ListAIGatewaysRequest = Message<"tailor.v1.ListAIGatewaysRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string page_token = 2; */ pageToken: string; /** * @generated from field: uint32 page_size = 3; */ pageSize: number; /** * @generated from field: tailor.v1.PageDirection page_direction = 4; */ pageDirection: PageDirection; }; /** * Describes the message tailor.v1.ListAIGatewaysRequest. * Use `create(ListAIGatewaysRequestSchema)` to create a new message. */ export declare const ListAIGatewaysRequestSchema: GenMessage; /** * @generated from message tailor.v1.ListAIGatewaysResponse */ export declare type ListAIGatewaysResponse = Message<"tailor.v1.ListAIGatewaysResponse"> & { /** * @generated from field: repeated tailor.v1.AIGateway aigateways = 1; */ aigateways: AIGateway[]; /** * @generated from field: string next_page_token = 2; */ nextPageToken: string; /** * @generated from field: int64 total_count = 3; */ totalCount: bigint; }; /** * Describes the message tailor.v1.ListAIGatewaysResponse. * Use `create(ListAIGatewaysResponseSchema)` to create a new message. */ export declare const ListAIGatewaysResponseSchema: GenMessage; //#endregion