Skip to content

Commit 8e37fc8

Browse files
authored
feat(product_catalog): add support for v2alpha1 (#2000)
1 parent e9bf780 commit 8e37fc8

File tree

20 files changed

+824
-23
lines changed

20 files changed

+824
-23
lines changed

packages/clients/src/api/baremetal/v1/types.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ export interface Offer {
561561
*/
562562
commercialRange: string
563563
/**
564-
* Price of the offer for the next 60 minutes (a server order at 11h32 will be payed until 12h32).
564+
* Price of the offer for the next 60 minutes (a server order at 11h32 will be paid until 12h32).
565565
*/
566566
pricePerHour?: Money
567567
/**

packages/clients/src/api/dedibox/v1/types.gen.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ export interface OfferSANInfo {
321321
*/
322322
size: number
323323
/**
324-
* High availabilty offer.
324+
* High availability offer.
325325
*/
326326
ha: boolean
327327
/**
@@ -562,11 +562,11 @@ export interface OS {
562562
*/
563563
panelPasswordRegex?: string
564564
/**
565-
* If both requires_valid_hostname & hostname_regex are set, it means that at least one of the criterias must be valid.
565+
* If both requires_valid_hostname & hostname_regex are set, it means that at least one of the criteria must be valid.
566566
*/
567567
requiresValidHostname?: boolean
568568
/**
569-
* If both requires_valid_hostname & hostname_regex are set, it means that at least one of the criterias must be valid.
569+
* If both requires_valid_hostname & hostname_regex are set, it means that at least one of the criteria must be valid.
570570
*/
571571
hostnameRegex?: string
572572
/**

packages/clients/src/api/function/v1beta1/types.gen.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ export interface Token {
486486
*/
487487
functionId?: string
488488
/**
489-
* UUID of the namespace the token is assoicated with.
489+
* UUID of the namespace the token is associated with.
490490
*
491491
* One-of ('scope'): at most one of 'functionId', 'namespaceId' could be set.
492492
*/
@@ -619,7 +619,7 @@ export type CreateFunctionRequest = {
619619
*/
620620
environmentVariables?: Record<string, string>
621621
/**
622-
* Minumum number of instances to scale the function to.
622+
* Minimum number of instances to scale the function to.
623623
*/
624624
minScale?: number
625625
/**
@@ -981,7 +981,7 @@ export type ListDomainsRequest = {
981981
*/
982982
orderBy?: ListDomainsRequestOrderBy
983983
/**
984-
* UUID of the function the domain is assoicated with.
984+
* UUID of the function the domain is associated with.
985985
*/
986986
functionId: string
987987
}
@@ -1041,7 +1041,7 @@ export type ListFunctionsRequest = {
10411041
*/
10421042
name?: string
10431043
/**
1044-
* UUID of the Organziation the function belongs to.
1044+
* UUID of the Organization the function belongs to.
10451045
*/
10461046
organizationId?: string
10471047
/**
@@ -1118,7 +1118,7 @@ export type ListTokensRequest = {
11181118
*/
11191119
orderBy?: ListTokensRequestOrderBy
11201120
/**
1121-
* UUID of the function the token is assoicated with.
1121+
* UUID of the function the token is associated with.
11221122
*/
11231123
functionId?: string
11241124
/**
@@ -1221,7 +1221,7 @@ export type UpdateFunctionRequest = {
12211221
*/
12221222
environmentVariables?: Record<string, string>
12231223
/**
1224-
* Minumum number of instances to scale the function to.
1224+
* Minimum number of instances to scale the function to.
12251225
*/
12261226
minScale?: number
12271227
/**

packages/clients/src/api/iam/v1alpha1/api.gen.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ export class API extends ParentAPI {
651651
)
652652

653653
/**
654-
* Get a group. Retrive information about a given group, specified by the `group_id` parameter. The group's full details, including `user_ids` and `application_ids` are returned in the response.
654+
* Get a group. Retrieve information about a given group, specified by the `group_id` parameter. The group's full details, including `user_ids` and `application_ids` are returned in the response.
655655
*
656656
* @param request - The request {@link GetGroupRequest}
657657
* @returns A Promise of Group
@@ -1039,7 +1039,7 @@ export class API extends ParentAPI {
10391039
)
10401040

10411041
/**
1042-
* Get an API key. Retrive information about an API key, specified by the `access_key` parameter. The API key's details, including either the `user_id` or `application_id` of its bearer are returned in the response. Note that the string value for the `secret_key` is nullable, and therefore is not displayed in the response. The `secret_key` value is only displayed upon API key creation.
1042+
* Get an API key. Retrieve information about an API key, specified by the `access_key` parameter. The API key's details, including either the `user_id` or `application_id` of its bearer are returned in the response. Note that the string value for the `secret_key` is nullable, and therefore is not displayed in the response. The `secret_key` value is only displayed upon API key creation.
10431043
*
10441044
* @param request - The request {@link GetAPIKeyRequest}
10451045
* @returns A Promise of APIKey

packages/clients/src/api/index.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ import * as LlmInference from './llm_inference/index.gen'
3232
import * as Marketplace from './marketplace/index.gen'
3333
import * as Mnq from './mnq/index.gen'
3434
import * as Mongodb from './mongodb/index.gen'
35+
import * as ProductCatalog from './product_catalog/index.gen'
3536
import * as Qaas from './qaas/index.gen'
3637
import * as Rdb from './rdb/index.gen'
3738
import * as Redis from './redis/index.gen'
@@ -75,6 +76,7 @@ export {
7576
Marketplace,
7677
Mnq,
7778
Mongodb,
79+
ProductCatalog,
7880
Qaas,
7981
Rdb,
8082
Redis,

packages/clients/src/api/inference/v1beta1/api.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ The CA certificate will be returned as a PEM file.
324324
)
325325

326326
/**
327-
* Delete an exising ACL.
327+
* Delete an existing ACL.
328328
*
329329
* @param request - The request {@link DeleteDeploymentACLRuleRequest}
330330
*/

packages/clients/src/api/interlink/v1beta1/api.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export class API extends ParentAPI {
331331
)
332332

333333
/**
334-
* Create a link. Create a link (InterLink session / logical InterLink resource) in a given PoP, specifying its various configuration details. Links can either be hosted (faciliated by partners' shared physical connections) or self-hosted (for users who have purchased a dedicated physical connection).
334+
* Create a link. Create a link (InterLink session / logical InterLink resource) in a given PoP, specifying its various configuration details. Links can either be hosted (facilitated by partners' shared physical connections) or self-hosted (for users who have purchased a dedicated physical connection).
335335
*
336336
* @param request - The request {@link CreateLinkRequest}
337337
* @returns A Promise of Link

packages/clients/src/api/iot/v1/types.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ export type ListDevicesRequest = {
851851
*/
852852
hubId?: string
853853
/**
854-
* Defines wheter to filter the allow_insecure flag.
854+
* Defines whether to filter the allow_insecure flag.
855855
*/
856856
allowInsecure?: boolean
857857
/**

packages/clients/src/api/mongodb/v1alpha1/types.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export interface NodeTypeVolumeType {
141141
*/
142142
description: string
143143
/**
144-
* Mimimum size required for the volume.
144+
* Minimum size required for the volume.
145145
*/
146146
minSize: number
147147
/**
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* This file is automatically generated from /scripts/generate.js
3+
* PLEASE DO NOT EDIT HERE
4+
*/
5+
6+
export * as v2alpha1 from './v2alpha1/index.gen'

0 commit comments

Comments
 (0)