File tree Expand file tree Collapse file tree 5 files changed +85
-19
lines changed Expand file tree Collapse file tree 5 files changed +85
-19
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,9 @@ export type {
4848 ListPipelinesRequest ,
4949 ListPipelinesRequestOrderBy ,
5050 ListPipelinesResponse ,
51+ ListPipelinesWithStagesRequest ,
52+ ListPipelinesWithStagesRequestOrderBy ,
53+ ListPipelinesWithStagesResponse ,
5154 ListPlansResponse ,
5255 ListPurgeRequestsRequest ,
5356 ListPurgeRequestsRequestOrderBy ,
@@ -61,6 +64,7 @@ export type {
6164 PipelineErrorSeverity ,
6265 PipelineErrorStage ,
6366 PipelineErrorType ,
67+ PipelineStages ,
6468 PipelineStatus ,
6569 Plan ,
6670 PlanDetails ,
Original file line number Diff line number Diff line change @@ -89,6 +89,25 @@ export type UserStatus = 'unknown_status' | 'invitation_pending' | 'activated'
8989
9090export type UserType = 'unknown_type' | 'guest' | 'owner' | 'member'
9191
92+ export interface JWT {
93+ /** JWT ID. */
94+ jti : string
95+ /** ID of the user who issued the JWT. */
96+ issuerId : string
97+ /** ID of the user targeted by the JWT. */
98+ audienceId : string
99+ /** Creation date of the JWT. */
100+ createdAt ?: Date
101+ /** Last update date of the JWT. */
102+ updatedAt ?: Date
103+ /** Expiration date of the JWT. */
104+ expiresAt ?: Date
105+ /** IP address used during the creation of the JWT. */
106+ ip : string
107+ /** User-agent used during the creation of the JWT. */
108+ userAgent : string
109+ }
110+
92111export interface RuleSpecs {
93112 /** Names of permission sets bound to the rule. */
94113 permissionSetNames ?: string [ ]
@@ -121,25 +140,6 @@ export interface CreateUserRequestMember {
121140 password : string
122141}
123142
124- export interface JWT {
125- /** JWT ID. */
126- jti : string
127- /** ID of the user who issued the JWT. */
128- issuerId : string
129- /** ID of the user targeted by the JWT. */
130- audienceId : string
131- /** Creation date of the JWT. */
132- createdAt ?: Date
133- /** Last update date of the JWT. */
134- updatedAt ?: Date
135- /** Expiration date of the JWT. */
136- expiresAt ?: Date
137- /** IP address used during the creation of the JWT. */
138- ip : string
139- /** User-agent used during the creation of the JWT. */
140- userAgent : string
141- }
142-
143143export interface APIKey {
144144 /** Access key of the API key. */
145145 accessKey : string
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ import * as Lb from './lb/index.gen'
2929import * as LlmInference from './llm_inference/index.gen'
3030import * as Marketplace from './marketplace/index.gen'
3131import * as Mnq from './mnq/index.gen'
32+ import * as Mongodb from './mongodb/index.gen'
3233import * as Qaas from './qaas/index.gen'
3334import * as Rdb from './rdb/index.gen'
3435import * as Redis from './redis/index.gen'
@@ -69,6 +70,7 @@ export {
6970 LlmInference ,
7071 Marketplace ,
7172 Mnq ,
73+ Mongodb ,
7274 Qaas ,
7375 Rdb ,
7476 Redis ,
Original file line number Diff line number Diff line change 1+ /**
2+ * This file is automatically generated from /scripts/generate.js PLEASE DO NOT
3+ * EDIT HERE
4+ */
5+
6+ export * as v1alpha1 from './v1alpha1/index.gen'
Original file line number Diff line number Diff line change 1+ // This file was automatically generated. DO NOT EDIT.
2+ // If you have any remark or suggestion do not hesitate to open an issue.
3+ export { API } from './api.gen'
4+ export * from './content.gen'
5+ export type {
6+ CreateInstanceRequest ,
7+ CreateInstanceRequestVolumeDetails ,
8+ CreateSnapshotRequest ,
9+ DeleteInstanceRequest ,
10+ DeleteSnapshotRequest ,
11+ Endpoint ,
12+ EndpointPrivateNetworkDetails ,
13+ EndpointPublicDetails ,
14+ EndpointSpec ,
15+ EndpointSpecPrivateNetworkDetails ,
16+ EndpointSpecPublicDetails ,
17+ GetInstanceCertificateRequest ,
18+ GetInstanceRequest ,
19+ Instance ,
20+ InstanceSetting ,
21+ InstanceStatus ,
22+ ListInstancesRequest ,
23+ ListInstancesRequestOrderBy ,
24+ ListInstancesResponse ,
25+ ListNodeTypesRequest ,
26+ ListNodeTypesResponse ,
27+ ListSnapshotsRequest ,
28+ ListSnapshotsRequestOrderBy ,
29+ ListSnapshotsResponse ,
30+ ListUsersRequest ,
31+ ListUsersRequestOrderBy ,
32+ ListUsersResponse ,
33+ ListVersionsRequest ,
34+ ListVersionsResponse ,
35+ NodeType ,
36+ NodeTypeStock ,
37+ NodeTypeVolumeType ,
38+ RestoreSnapshotRequest ,
39+ RestoreSnapshotRequestVolumeDetails ,
40+ Setting ,
41+ SettingPropertyType ,
42+ Snapshot ,
43+ SnapshotStatus ,
44+ SnapshotVolumeType ,
45+ UpdateInstanceRequest ,
46+ UpdateSnapshotRequest ,
47+ UpdateUserRequest ,
48+ UpgradeInstanceRequest ,
49+ User ,
50+ Version ,
51+ Volume ,
52+ VolumeType ,
53+ } from './types.gen'
54+ export * as ValidationRules from './validation-rules.gen'
You can’t perform that action at this time.
0 commit comments