From 43859e989a632861ee02b810f411c45794090f1c Mon Sep 17 00:00:00 2001 From: scaleway-bot Date: Tue, 28 Nov 2023 15:21:59 +0000 Subject: [PATCH] feat: update generated APIs --- .../clients/src/api/webhosting/v1alpha1/marshalling.gen.ts | 3 +++ packages/clients/src/api/webhosting/v1alpha1/types.gen.ts | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts b/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts index 0d795332f..aa6bfe3b5 100644 --- a/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts +++ b/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts @@ -66,11 +66,14 @@ export const unmarshalHosting = (data: unknown): Hosting => { dnsStatus: data.dns_status, domain: data.domain, id: data.id, + ipv4: data.ipv4, + ipv6: data.ipv6, offerEndOfLife: data.offer_end_of_life, offerId: data.offer_id, offerName: data.offer_name, options: unmarshalArrayOfObject(data.options, unmarshalHostingOption), organizationId: data.organization_id, + platformGroup: data.platform_group, platformHostname: data.platform_hostname, platformNumber: data.platform_number, projectId: data.project_id, diff --git a/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts b/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts index 26d7176b6..9f1b5dacb 100644 --- a/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts +++ b/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts @@ -143,6 +143,12 @@ export interface Hosting { offerEndOfLife: boolean /** Name of the control panel. */ controlPanelName: string + /** Group of the hosting's host server/platform. */ + platformGroup: string + /** IPv4 address of the hosting's host server. */ + ipv4: string + /** IPv6 address of the hosting's host server. */ + ipv6: string /** Region where the Web Hosting plan is hosted. */ region: Region }