diff --git a/packages/clients/src/api/block/v1alpha1/marshalling.gen.ts b/packages/clients/src/api/block/v1alpha1/marshalling.gen.ts index 3aff55dec..d60c7d43e 100644 --- a/packages/clients/src/api/block/v1alpha1/marshalling.gen.ts +++ b/packages/clients/src/api/block/v1alpha1/marshalling.gen.ts @@ -30,7 +30,7 @@ import type { VolumeType, } from './types.gen' -export const unmarshalReference = (data: unknown): Reference => { +const unmarshalReference = (data: unknown): Reference => { if (!isJSONObject(data)) { throw new TypeError( `Unmarshalling the type 'Reference' failed as data isn't a dictionary.`, diff --git a/packages/clients/src/api/inference/v1/types.gen.ts b/packages/clients/src/api/inference/v1/types.gen.ts index eca976491..356524d85 100644 --- a/packages/clients/src/api/inference/v1/types.gen.ts +++ b/packages/clients/src/api/inference/v1/types.gen.ts @@ -228,7 +228,7 @@ export interface NodeType { region: ScwRegion } -export interface CreateDeploymentRequest { +export type CreateDeploymentRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -259,7 +259,7 @@ export interface CreateDeploymentRequest { quantization?: DeploymentQuantization } -export interface CreateEndpointRequest { +export type CreateEndpointRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -271,7 +271,7 @@ export interface CreateEndpointRequest { endpoint: EndpointSpec } -export interface CreateModelRequest { +export type CreateModelRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -285,7 +285,7 @@ export interface CreateModelRequest { source: ModelSource } -export interface DeleteDeploymentRequest { +export type DeleteDeploymentRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -295,7 +295,7 @@ export interface DeleteDeploymentRequest { deploymentId: string } -export interface DeleteEndpointRequest { +export type DeleteEndpointRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -305,7 +305,7 @@ export interface DeleteEndpointRequest { endpointId: string } -export interface DeleteModelRequest { +export type DeleteModelRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -315,7 +315,7 @@ export interface DeleteModelRequest { modelId: string } -export interface GetDeploymentCertificateRequest { +export type GetDeploymentCertificateRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -324,7 +324,7 @@ export interface GetDeploymentCertificateRequest { deploymentId: string } -export interface GetDeploymentRequest { +export type GetDeploymentRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -334,7 +334,7 @@ export interface GetDeploymentRequest { deploymentId: string } -export interface GetModelRequest { +export type GetModelRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -344,7 +344,7 @@ export interface GetModelRequest { modelId: string } -export interface ListDeploymentsRequest { +export type ListDeploymentsRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -373,7 +373,7 @@ export interface ListDeploymentsResponse { totalCount: number } -export interface ListModelsRequest { +export type ListModelsRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -400,7 +400,7 @@ export interface ListModelsResponse { totalCount: number } -export interface ListNodeTypesRequest { +export type ListNodeTypesRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -421,7 +421,7 @@ export interface ListNodeTypesResponse { totalCount: number } -export interface UpdateDeploymentRequest { +export type UpdateDeploymentRequest = { /** * Region to target. If none is passed will use default region from the * config. @@ -439,7 +439,7 @@ export interface UpdateDeploymentRequest { maxSize?: number } -export interface UpdateEndpointRequest { +export type UpdateEndpointRequest = { /** * Region to target. If none is passed will use default region from the * config. diff --git a/packages/clients/src/api/lb/v1/types.gen.ts b/packages/clients/src/api/lb/v1/types.gen.ts index c57888b37..f1f45d9e3 100644 --- a/packages/clients/src/api/lb/v1/types.gen.ts +++ b/packages/clients/src/api/lb/v1/types.gen.ts @@ -595,7 +595,7 @@ export interface RouteMatch { */ sni?: string /** - * Value to match in the HTTP Host request header from an incoming connection. + * Value to match in the HTTP Host request header from an incoming request. * This field should be set for routes on HTTP Load Balancers. * * One-of ('matchType'): at most one of 'sni', 'hostHeader' could be set.