Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 31 additions & 24 deletions packages/aigateway/src/v1/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,15 +207,12 @@ export type RateLimit_RateLimitRenewalPeriod =
/** Request to create a new MCP service. */
export interface CreateMcpServiceRequest {
/**
* Resource name of the parent schema.
* Name of the parent schema.
* Format: `schemas/{catalog}.{schema}`.
* Each `{...}` component is capped at 255 characters individually.
*/
parent?: string | undefined;
/**
* Leaf identifier for the MCP service (the unqualified name within the
* parent schema, e.g. "my_mcp_service").
*/
/** Name for the MCP service, e.g. "my_mcp_service". */
mcpServiceId?: string | undefined;
/**
* The MCP service to create. The server populates `name` from `parent` +
Expand All @@ -227,15 +224,12 @@ export interface CreateMcpServiceRequest {
/** Request to create a new model provider service. */
export interface CreateModelProviderServiceRequest {
/**
* Resource name of the parent schema.
* Name of the parent schema.
* Format: `schemas/{catalog}.{schema}`.
* Each `{...}` component is capped at 255 characters individually.
*/
parent?: string | undefined;
/**
* Leaf identifier for the provider service (the unqualified name within the
* parent schema, e.g. "openai_prod").
*/
/** Name for the model provider service, e.g. "openai_prod". */
modelProviderServiceId?: string | undefined;
/**
* The model provider service to create. The server populates `name` from
Expand All @@ -247,15 +241,12 @@ export interface CreateModelProviderServiceRequest {
/** Request to create a new model service. */
export interface CreateModelServiceRequest {
/**
* Resource name of the parent schema.
* Name of the parent schema.
* Format: `schemas/{catalog}.{schema}`.
* Each `{...}` component is capped at 255 characters individually.
*/
parent?: string | undefined;
/**
* Leaf identifier for the model service (the unqualified name within the
* parent schema, e.g. "my_model_service").
*/
/** Name for the model service, e.g. "my_model_service". */
modelServiceId?: string | undefined;
/**
* The model service to create. The server populates `name` from `parent` +
Expand Down Expand Up @@ -393,19 +384,23 @@ export interface InferenceTableConfig {
*/
export interface ListMcpServicesRequest {
/**
* Resource name of the parent schema to list within, as
* Name of the parent schema to list within, as
* `schemas/{catalog}.{schema}`. Each `{...}` component is capped at 255
* characters individually.
*/
parent?: string | undefined;
/**
* Maximum number of MCP services to return. Defaults to 100 when unset or 0;
* the maximum is 100. Use `next_page_token` to retrieve additional pages.
* the maximum is 100. Use `page_token` to retrieve additional pages.
*/
pageSize?: number | undefined;
/** Opaque pagination token from a previous request. */
pageToken?: string | undefined;
/** View selector controlling which fields are populated per row. */
/**
* View selector controlling which fields are populated per row. `FULL`
* returns the full representation of the service; `BASIC` returns a more
* compact version. Defaults to `BASIC` when unset.
*/
view?: ListMcpServicesRequest_View | undefined;
}

Expand All @@ -423,19 +418,23 @@ export interface ListMcpServicesResponse {
*/
export interface ListModelProviderServicesRequest {
/**
* Resource name of the parent schema to list within, as
* Name of the parent schema to list within, as
* `schemas/{catalog}.{schema}`. Each `{...}` component is capped at 255
* characters individually.
*/
parent?: string | undefined;
/**
* Maximum number of provider services to return. Defaults to 100 when unset or
* 0; the maximum is 100. Use `next_page_token` to retrieve additional pages.
* 0; the maximum is 100. Use `page_token` to retrieve additional pages.
*/
pageSize?: number | undefined;
/** Opaque pagination token from a previous request. */
pageToken?: string | undefined;
/** View selector controlling which fields are populated per row. */
/**
* View selector controlling which fields are populated per row. `FULL`
* returns the full representation of the service; `BASIC` returns a more
* compact version. Defaults to `BASIC` when unset.
*/
view?: ListModelProviderServicesRequest_View | undefined;
}

Expand All @@ -453,19 +452,23 @@ export interface ListModelProviderServicesResponse {
*/
export interface ListModelServicesRequest {
/**
* Resource name of the parent schema to list within, as
* Name of the parent schema to list within, as
* `schemas/{catalog}.{schema}`. Each `{...}` component is capped at 255
* characters individually.
*/
parent?: string | undefined;
/**
* Maximum number of model services to return. Defaults to 100 when unset or 0;
* the maximum is 100. Use `next_page_token` to retrieve additional pages.
* the maximum is 100. Use `page_token` to retrieve additional pages.
*/
pageSize?: number | undefined;
/** Opaque pagination token from a previous request. */
pageToken?: string | undefined;
/** View selector controlling which fields are populated per row. */
/**
* View selector controlling which fields are populated per row. `FULL`
* returns the full representation of the service; `BASIC` returns a more
* compact version. Defaults to `BASIC` when unset.
*/
view?: ListModelServicesRequest_View | undefined;
}

Expand Down Expand Up @@ -585,6 +588,10 @@ export interface McpServiceConfig {
*/
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
export interface McpServiceConfig_SourceConnection {
/**
* Name of the UC connection that hosts the MCP server, as
* `connections/{catalog}.{schema}.{connection}`.
*/
name?: string | undefined;
isDeleted?: boolean | undefined;
}
Expand Down
4 changes: 4 additions & 0 deletions packages/database/src/v1/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,10 @@ export const SyncedTableSpec_PgSpecificType = {
PG_SPECIFIC_TYPE_UNSPECIFIED: 'PG_SPECIFIC_TYPE_UNSPECIFIED',
/** Maps the column to the pgvector vector type. */
PG_SPECIFIC_TYPE_VECTOR: 'PG_SPECIFIC_TYPE_VECTOR',
/** Maps the column to the pgvector half-precision halfvec type. */
PG_SPECIFIC_TYPE_HALFVEC: 'PG_SPECIFIC_TYPE_HALFVEC',
/** Maps the column to a length-bounded character varying(N) type. */
PG_SPECIFIC_TYPE_VARCHAR: 'PG_SPECIFIC_TYPE_VARCHAR',
} as const;
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.
export type SyncedTableSpec_PgSpecificType =
Expand Down
4 changes: 4 additions & 0 deletions packages/postgres/src/v1/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,10 @@ export const SyncedTable_SyncedTableSpec_PgSpecificType = {
PG_SPECIFIC_TYPE_UNSPECIFIED: 'PG_SPECIFIC_TYPE_UNSPECIFIED',
/** Maps the column to the pgvector vector type. */
PG_SPECIFIC_TYPE_VECTOR: 'PG_SPECIFIC_TYPE_VECTOR',
/** Maps the column to the pgvector half-precision halfvec type. */
PG_SPECIFIC_TYPE_HALFVEC: 'PG_SPECIFIC_TYPE_HALFVEC',
/** Maps the column to a length-bounded character varying(N) type. */
PG_SPECIFIC_TYPE_VARCHAR: 'PG_SPECIFIC_TYPE_VARCHAR',
} as const;
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.
export type SyncedTable_SyncedTableSpec_PgSpecificType =
Expand Down
Loading