From a6324c611af487a5714f585466189e88216d10e2 Mon Sep 17 00:00:00 2001 From: scaleway-bot Date: Mon, 23 Jan 2023 13:58:11 +0000 Subject: [PATCH] feat: update generated APIs --- .../clients/src/api/account/v2/types.gen.ts | 4 +- .../api/applesilicon/v1alpha1/types.gen.ts | 8 +- .../clients/src/api/baremetal/v1/types.gen.ts | 56 +++++----- .../src/api/container/v1beta1/types.gen.ts | 24 ++--- .../src/api/domain/v2beta1/types.gen.ts | 100 +++++++++--------- .../src/api/flexibleip/v1alpha1/types.gen.ts | 22 ++-- .../src/api/function/v1beta1/types.gen.ts | 40 +++---- .../clients/src/api/iam/v1alpha1/types.gen.ts | 56 +++++----- .../clients/src/api/instance/v1/types.gen.ts | 96 ++++++++--------- .../src/api/instance/v1/types.private.gen.ts | 22 ++-- packages/clients/src/api/iot/v1/types.gen.ts | 16 +-- packages/clients/src/api/k8s/v1/types.gen.ts | 66 ++++++------ packages/clients/src/api/lb/v1/types.gen.ts | 80 +++++++------- .../src/api/marketplace/v1/types.gen.ts | 12 +-- .../src/api/marketplace/v2/types.gen.ts | 12 +-- .../clients/src/api/mnq/v1alpha1/types.gen.ts | 4 +- packages/clients/src/api/rdb/v1/types.gen.ts | 88 +++++++-------- .../clients/src/api/redis/v1/types.gen.ts | 60 +++++------ .../clients/src/api/registry/v1/types.gen.ts | 8 +- .../src/api/secret/v1alpha1/types.gen.ts | 12 +-- .../clients/src/api/tem/v1alpha1/types.gen.ts | 20 ++-- packages/clients/src/api/test/v1/types.gen.ts | 2 +- packages/clients/src/api/vpc/v1/types.gen.ts | 18 ++-- .../clients/src/api/vpcgw/v1/types.gen.ts | 58 +++++----- 24 files changed, 442 insertions(+), 442 deletions(-) diff --git a/packages/clients/src/api/account/v2/types.gen.ts b/packages/clients/src/api/account/v2/types.gen.ts index af61fb1d8..da978cd2a 100644 --- a/packages/clients/src/api/account/v2/types.gen.ts +++ b/packages/clients/src/api/account/v2/types.gen.ts @@ -12,7 +12,7 @@ export interface ListProjectsResponse { /** The total number of projects */ totalCount: number /** The paginated returned projects */ - projects: Array + projects: Project[] } /** Project */ @@ -52,7 +52,7 @@ export type ListProjectsRequest = { /** The sort order of the returned projects */ orderBy?: ListProjectsRequestOrderBy /** Filter out by a list of project ID */ - projectIds?: Array + projectIds?: string[] } export type GetProjectRequest = { diff --git a/packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts b/packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts index 21d16060e..37a5ac95f 100644 --- a/packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts +++ b/packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts @@ -27,13 +27,13 @@ export interface ListOSResponse { /** Total number of os */ totalCount: number /** List of OS */ - os: Array + os: OS[] } /** List server types response */ export interface ListServerTypesResponse { /** The available server types */ - serverTypes: Array + serverTypes: ServerType[] } /** List servers response */ @@ -41,7 +41,7 @@ export interface ListServersResponse { /** The total number of servers */ totalCount: number /** The paginated returned servers */ - servers: Array + servers: Server[] } /** Os */ @@ -55,7 +55,7 @@ export interface OS { /** URL of the image */ imageUrl: string /** List of compatible server types */ - compatibleServerTypes: Array + compatibleServerTypes: string[] } /** Server */ diff --git a/packages/clients/src/api/baremetal/v1/types.gen.ts b/packages/clients/src/api/baremetal/v1/types.gen.ts index 3211b9677..86f5461fd 100644 --- a/packages/clients/src/api/baremetal/v1/types.gen.ts +++ b/packages/clients/src/api/baremetal/v1/types.gen.ts @@ -114,7 +114,7 @@ export interface CreateServerRequestInstall { /** Hostname of the server */ hostname: string /** SSH key IDs authorized on the server */ - sshKeyIds: Array + sshKeyIds: string[] /** User used for the installation */ user?: string /** Password used for the installation */ @@ -160,7 +160,7 @@ export interface ListOSResponse { /** Total count of matching OS */ totalCount: number /** OS that match filters */ - os: Array + os: OS[] } /** List offers response */ @@ -168,7 +168,7 @@ export interface ListOffersResponse { /** Total count of matching offers */ totalCount: number /** Offers that match filters */ - offers: Array + offers: Offer[] } /** List options response */ @@ -176,7 +176,7 @@ export interface ListOptionsResponse { /** Total count of matching options */ totalCount: number /** Options that match filters */ - options: Array