@scaleway/sdk-qaas 2.8.0 → 2.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,41 @@
1
+ import type { ApplicationType, BookingStatus, JobStatus, ListApplicationsRequestOrderBy, ListBookingsRequestOrderBy, ListJobResultsRequestOrderBy, ListJobsRequestOrderBy, ListModelsRequestOrderBy, ListPlatformsRequestOrderBy, ListProcessResultsRequestOrderBy, ListProcessesRequestOrderBy, ListSessionACLsRequestOrderBy, ListSessionsRequestOrderBy, PlatformAvailability, PlatformTechnology, PlatformType, ProcessStatus, SessionAccess, SessionOriginType, SessionStatus } from './types.gen.js';
2
+ /** Lists all values of the enum {@link ApplicationType}. */
3
+ export declare const APPLICATION_TYPES: ApplicationType[];
4
+ /** Lists all values of the enum {@link BookingStatus}. */
5
+ export declare const BOOKING_STATUSES: BookingStatus[];
6
+ /** Lists all values of the enum {@link JobStatus}. */
7
+ export declare const JOB_STATUSES: JobStatus[];
8
+ /** Lists all values of the enum {@link ListApplicationsRequestOrderBy}. */
9
+ export declare const LIST_APPLICATIONS_REQUEST_ORDER_BIES: ListApplicationsRequestOrderBy[];
10
+ /** Lists all values of the enum {@link ListBookingsRequestOrderBy}. */
11
+ export declare const LIST_BOOKINGS_REQUEST_ORDER_BIES: ListBookingsRequestOrderBy[];
12
+ /** Lists all values of the enum {@link ListJobResultsRequestOrderBy}. */
13
+ export declare const LIST_JOB_RESULTS_REQUEST_ORDER_BIES: ListJobResultsRequestOrderBy[];
14
+ /** Lists all values of the enum {@link ListJobsRequestOrderBy}. */
15
+ export declare const LIST_JOBS_REQUEST_ORDER_BIES: ListJobsRequestOrderBy[];
16
+ /** Lists all values of the enum {@link ListModelsRequestOrderBy}. */
17
+ export declare const LIST_MODELS_REQUEST_ORDER_BIES: ListModelsRequestOrderBy[];
18
+ /** Lists all values of the enum {@link ListPlatformsRequestOrderBy}. */
19
+ export declare const LIST_PLATFORMS_REQUEST_ORDER_BIES: ListPlatformsRequestOrderBy[];
20
+ /** Lists all values of the enum {@link ListProcessResultsRequestOrderBy}. */
21
+ export declare const LIST_PROCESS_RESULTS_REQUEST_ORDER_BIES: ListProcessResultsRequestOrderBy[];
22
+ /** Lists all values of the enum {@link ListProcessesRequestOrderBy}. */
23
+ export declare const LIST_PROCESSES_REQUEST_ORDER_BIES: ListProcessesRequestOrderBy[];
24
+ /** Lists all values of the enum {@link ListSessionACLsRequestOrderBy}. */
25
+ export declare const LIST_SESSION_AC_LS_REQUEST_ORDER_BIES: ListSessionACLsRequestOrderBy[];
26
+ /** Lists all values of the enum {@link ListSessionsRequestOrderBy}. */
27
+ export declare const LIST_SESSIONS_REQUEST_ORDER_BIES: ListSessionsRequestOrderBy[];
28
+ /** Lists all values of the enum {@link PlatformAvailability}. */
29
+ export declare const PLATFORM_AVAILABILITIES: PlatformAvailability[];
30
+ /** Lists all values of the enum {@link PlatformTechnology}. */
31
+ export declare const PLATFORM_TECHNOLOGIES: PlatformTechnology[];
32
+ /** Lists all values of the enum {@link PlatformType}. */
33
+ export declare const PLATFORM_TYPES: PlatformType[];
34
+ /** Lists all values of the enum {@link ProcessStatus}. */
35
+ export declare const PROCESS_STATUSES: ProcessStatus[];
36
+ /** Lists all values of the enum {@link SessionAccess}. */
37
+ export declare const SESSION_ACCESSES: SessionAccess[];
38
+ /** Lists all values of the enum {@link SessionOriginType}. */
39
+ export declare const SESSION_ORIGIN_TYPES: SessionOriginType[];
40
+ /** Lists all values of the enum {@link SessionStatus}. */
41
+ export declare const SESSION_STATUSES: SessionStatus[];
@@ -0,0 +1,153 @@
1
+ //#region src/v1alpha1/constants.gen.ts
2
+ /** Lists all values of the enum {@link ApplicationType}. */
3
+ const APPLICATION_TYPES = ["unknown_type", "vqe"];
4
+ /** Lists all values of the enum {@link BookingStatus}. */
5
+ const BOOKING_STATUSES = [
6
+ "unknown_status",
7
+ "waiting",
8
+ "validating",
9
+ "validated",
10
+ "cancelling",
11
+ "cancelled",
12
+ "error"
13
+ ];
14
+ /** Lists all values of the enum {@link JobStatus}. */
15
+ const JOB_STATUSES = [
16
+ "unknown_status",
17
+ "waiting",
18
+ "error",
19
+ "running",
20
+ "completed",
21
+ "cancelling",
22
+ "cancelled"
23
+ ];
24
+ /** Lists all values of the enum {@link ListApplicationsRequestOrderBy}. */
25
+ const LIST_APPLICATIONS_REQUEST_ORDER_BIES = [
26
+ "name_asc",
27
+ "name_desc",
28
+ "type_asc",
29
+ "type_desc"
30
+ ];
31
+ /** Lists all values of the enum {@link ListBookingsRequestOrderBy}. */
32
+ const LIST_BOOKINGS_REQUEST_ORDER_BIES = [
33
+ "created_at_desc",
34
+ "created_at_asc",
35
+ "started_at_desc",
36
+ "started_at_asc"
37
+ ];
38
+ /** Lists all values of the enum {@link ListJobResultsRequestOrderBy}. */
39
+ const LIST_JOB_RESULTS_REQUEST_ORDER_BIES = ["created_at_desc", "created_at_asc"];
40
+ /** Lists all values of the enum {@link ListJobsRequestOrderBy}. */
41
+ const LIST_JOBS_REQUEST_ORDER_BIES = [
42
+ "created_at_desc",
43
+ "created_at_asc",
44
+ "status_asc",
45
+ "status_desc",
46
+ "platform_name_asc",
47
+ "platform_name_desc",
48
+ "name_asc",
49
+ "name_desc",
50
+ "session_name_asc",
51
+ "session_name_desc"
52
+ ];
53
+ /** Lists all values of the enum {@link ListModelsRequestOrderBy}. */
54
+ const LIST_MODELS_REQUEST_ORDER_BIES = ["created_at_desc", "created_at_asc"];
55
+ /** Lists all values of the enum {@link ListPlatformsRequestOrderBy}. */
56
+ const LIST_PLATFORMS_REQUEST_ORDER_BIES = [
57
+ "name_asc",
58
+ "name_desc",
59
+ "provider_name_asc",
60
+ "provider_name_desc",
61
+ "type_asc",
62
+ "type_desc",
63
+ "technology_asc",
64
+ "technology_desc",
65
+ "backend_name_asc",
66
+ "backend_name_desc"
67
+ ];
68
+ /** Lists all values of the enum {@link ListProcessResultsRequestOrderBy}. */
69
+ const LIST_PROCESS_RESULTS_REQUEST_ORDER_BIES = ["created_at_desc", "created_at_asc"];
70
+ /** Lists all values of the enum {@link ListProcessesRequestOrderBy}. */
71
+ const LIST_PROCESSES_REQUEST_ORDER_BIES = [
72
+ "created_at_desc",
73
+ "created_at_asc",
74
+ "name_asc",
75
+ "name_desc",
76
+ "started_at_asc",
77
+ "started_at_desc",
78
+ "status_asc",
79
+ "status_desc"
80
+ ];
81
+ /** Lists all values of the enum {@link ListSessionACLsRequestOrderBy}. */
82
+ const LIST_SESSION_AC_LS_REQUEST_ORDER_BIES = ["access_asc", "access_desc"];
83
+ /** Lists all values of the enum {@link ListSessionsRequestOrderBy}. */
84
+ const LIST_SESSIONS_REQUEST_ORDER_BIES = [
85
+ "name_asc",
86
+ "name_desc",
87
+ "started_at_asc",
88
+ "started_at_desc",
89
+ "status_asc",
90
+ "status_desc",
91
+ "created_at_desc",
92
+ "created_at_asc"
93
+ ];
94
+ /** Lists all values of the enum {@link PlatformAvailability}. */
95
+ const PLATFORM_AVAILABILITIES = [
96
+ "unknown_availability",
97
+ "available",
98
+ "shortage",
99
+ "scarce",
100
+ "maintenance"
101
+ ];
102
+ /** Lists all values of the enum {@link PlatformTechnology}. */
103
+ const PLATFORM_TECHNOLOGIES = [
104
+ "unknown_technology",
105
+ "photonic",
106
+ "general_purpose",
107
+ "trapped_ion",
108
+ "superconducting",
109
+ "neutral_atom"
110
+ ];
111
+ /** Lists all values of the enum {@link PlatformType}. */
112
+ const PLATFORM_TYPES = [
113
+ "unknown_type",
114
+ "simulator",
115
+ "qpu"
116
+ ];
117
+ /** Lists all values of the enum {@link ProcessStatus}. */
118
+ const PROCESS_STATUSES = [
119
+ "unknown_status",
120
+ "error",
121
+ "starting",
122
+ "running",
123
+ "completed",
124
+ "cancelling",
125
+ "cancelled"
126
+ ];
127
+ /** Lists all values of the enum {@link SessionAccess}. */
128
+ const SESSION_ACCESSES = [
129
+ "unknown_access",
130
+ "full",
131
+ "read_session",
132
+ "read_write_session",
133
+ "read_job_result",
134
+ "read_job_circuit",
135
+ "read_job",
136
+ "read_write_job"
137
+ ];
138
+ /** Lists all values of the enum {@link SessionOriginType}. */
139
+ const SESSION_ORIGIN_TYPES = [
140
+ "unknown_origin_type",
141
+ "customer",
142
+ "process"
143
+ ];
144
+ /** Lists all values of the enum {@link SessionStatus}. */
145
+ const SESSION_STATUSES = [
146
+ "unknown_status",
147
+ "running",
148
+ "stopped",
149
+ "starting",
150
+ "stopping"
151
+ ];
152
+ //#endregion
153
+ export { APPLICATION_TYPES, BOOKING_STATUSES, JOB_STATUSES, LIST_APPLICATIONS_REQUEST_ORDER_BIES, LIST_BOOKINGS_REQUEST_ORDER_BIES, LIST_JOBS_REQUEST_ORDER_BIES, LIST_JOB_RESULTS_REQUEST_ORDER_BIES, LIST_MODELS_REQUEST_ORDER_BIES, LIST_PLATFORMS_REQUEST_ORDER_BIES, LIST_PROCESSES_REQUEST_ORDER_BIES, LIST_PROCESS_RESULTS_REQUEST_ORDER_BIES, LIST_SESSIONS_REQUEST_ORDER_BIES, LIST_SESSION_AC_LS_REQUEST_ORDER_BIES, PLATFORM_AVAILABILITIES, PLATFORM_TECHNOLOGIES, PLATFORM_TYPES, PROCESS_STATUSES, SESSION_ACCESSES, SESSION_ORIGIN_TYPES, SESSION_STATUSES };
@@ -1,5 +1,6 @@
1
1
  export { API, } from './api.gen.js';
2
2
  export * from './content.gen.js';
3
+ export * from './constants.gen.js';
3
4
  export * from './marshalling.gen.js';
4
5
  export type { Application, ApplicationType, Booking, BookingStatus, CancelJobRequest, CancelProcessRequest, CreateJobRequest, CreateModelRequest, CreateProcessRequest, CreateSessionRequest, CreateSessionRequestBookingDemand, DeleteJobRequest, DeleteProcessRequest, DeleteSessionRequest, GetApplicationRequest, GetBookingRequest, GetJobCircuitRequest, GetJobRequest, GetModelRequest, GetPlatformRequest, GetProcessRequest, GetSessionRequest, Job, JobCircuit, JobResult, JobStatus, ListApplicationsRequest, ListApplicationsRequestOrderBy, ListApplicationsResponse, ListBookingsRequest, ListBookingsRequestOrderBy, ListBookingsResponse, ListJobResultsRequest, ListJobResultsRequestOrderBy, ListJobResultsResponse, ListJobsRequest, ListJobsRequestOrderBy, ListJobsResponse, ListModelsRequest, ListModelsRequestOrderBy, ListModelsResponse, ListPlatformsRequest, ListPlatformsRequestOrderBy, ListPlatformsResponse, ListProcessResultsRequest, ListProcessResultsRequestOrderBy, ListProcessResultsResponse, ListProcessesRequest, ListProcessesRequestOrderBy, ListProcessesResponse, ListSessionACLsRequest, ListSessionACLsRequestOrderBy, ListSessionACLsResponse, ListSessionsRequest, ListSessionsRequestOrderBy, ListSessionsResponse, Model, Platform, PlatformAvailability, PlatformBookingRequirement, PlatformHardware, PlatformTechnology, PlatformType, Process, ProcessResult, ProcessStatus, Session, SessionAccess, SessionOriginType, SessionStatus, TerminateSessionRequest, UpdateBookingRequest, UpdateJobRequest, UpdateProcessRequest, UpdateSessionRequest, } from './types.gen.js';
5
6
  export * as ValidationRules from './validation-rules.gen.js';
@@ -2,13 +2,34 @@ import { __exportAll } from "../_virtual/_rolldown/runtime.js";
2
2
  import { BOOKING_TRANSIENT_STATUSES, JOB_TRANSIENT_STATUSES, PROCESS_TRANSIENT_STATUSES, SESSION_TRANSIENT_STATUSES } from "./content.gen.js";
3
3
  import { marshalCreateJobRequest, marshalCreateModelRequest, marshalCreateProcessRequest, marshalCreateSessionRequest, marshalUpdateBookingRequest, marshalUpdateJobRequest, marshalUpdateProcessRequest, marshalUpdateSessionRequest, unmarshalApplication, unmarshalBooking, unmarshalJob, unmarshalJobCircuit, unmarshalListApplicationsResponse, unmarshalListBookingsResponse, unmarshalListJobResultsResponse, unmarshalListJobsResponse, unmarshalListModelsResponse, unmarshalListPlatformsResponse, unmarshalListProcessResultsResponse, unmarshalListProcessesResponse, unmarshalListSessionACLsResponse, unmarshalListSessionsResponse, unmarshalModel, unmarshalPlatform, unmarshalProcess, unmarshalSession } from "./marshalling.gen.js";
4
4
  import { API } from "./api.gen.js";
5
+ import { APPLICATION_TYPES, BOOKING_STATUSES, JOB_STATUSES, LIST_APPLICATIONS_REQUEST_ORDER_BIES, LIST_BOOKINGS_REQUEST_ORDER_BIES, LIST_JOBS_REQUEST_ORDER_BIES, LIST_JOB_RESULTS_REQUEST_ORDER_BIES, LIST_MODELS_REQUEST_ORDER_BIES, LIST_PLATFORMS_REQUEST_ORDER_BIES, LIST_PROCESSES_REQUEST_ORDER_BIES, LIST_PROCESS_RESULTS_REQUEST_ORDER_BIES, LIST_SESSIONS_REQUEST_ORDER_BIES, LIST_SESSION_AC_LS_REQUEST_ORDER_BIES, PLATFORM_AVAILABILITIES, PLATFORM_TECHNOLOGIES, PLATFORM_TYPES, PROCESS_STATUSES, SESSION_ACCESSES, SESSION_ORIGIN_TYPES, SESSION_STATUSES } from "./constants.gen.js";
5
6
  import { validation_rules_gen_exports } from "./validation-rules.gen.js";
6
7
  //#region src/v1alpha1/index.gen.ts
7
8
  var index_gen_exports = /* @__PURE__ */ __exportAll({
8
9
  API: () => API,
10
+ APPLICATION_TYPES: () => APPLICATION_TYPES,
11
+ BOOKING_STATUSES: () => BOOKING_STATUSES,
9
12
  BOOKING_TRANSIENT_STATUSES: () => BOOKING_TRANSIENT_STATUSES,
13
+ JOB_STATUSES: () => JOB_STATUSES,
10
14
  JOB_TRANSIENT_STATUSES: () => JOB_TRANSIENT_STATUSES,
15
+ LIST_APPLICATIONS_REQUEST_ORDER_BIES: () => LIST_APPLICATIONS_REQUEST_ORDER_BIES,
16
+ LIST_BOOKINGS_REQUEST_ORDER_BIES: () => LIST_BOOKINGS_REQUEST_ORDER_BIES,
17
+ LIST_JOBS_REQUEST_ORDER_BIES: () => LIST_JOBS_REQUEST_ORDER_BIES,
18
+ LIST_JOB_RESULTS_REQUEST_ORDER_BIES: () => LIST_JOB_RESULTS_REQUEST_ORDER_BIES,
19
+ LIST_MODELS_REQUEST_ORDER_BIES: () => LIST_MODELS_REQUEST_ORDER_BIES,
20
+ LIST_PLATFORMS_REQUEST_ORDER_BIES: () => LIST_PLATFORMS_REQUEST_ORDER_BIES,
21
+ LIST_PROCESSES_REQUEST_ORDER_BIES: () => LIST_PROCESSES_REQUEST_ORDER_BIES,
22
+ LIST_PROCESS_RESULTS_REQUEST_ORDER_BIES: () => LIST_PROCESS_RESULTS_REQUEST_ORDER_BIES,
23
+ LIST_SESSIONS_REQUEST_ORDER_BIES: () => LIST_SESSIONS_REQUEST_ORDER_BIES,
24
+ LIST_SESSION_AC_LS_REQUEST_ORDER_BIES: () => LIST_SESSION_AC_LS_REQUEST_ORDER_BIES,
25
+ PLATFORM_AVAILABILITIES: () => PLATFORM_AVAILABILITIES,
26
+ PLATFORM_TECHNOLOGIES: () => PLATFORM_TECHNOLOGIES,
27
+ PLATFORM_TYPES: () => PLATFORM_TYPES,
28
+ PROCESS_STATUSES: () => PROCESS_STATUSES,
11
29
  PROCESS_TRANSIENT_STATUSES: () => PROCESS_TRANSIENT_STATUSES,
30
+ SESSION_ACCESSES: () => SESSION_ACCESSES,
31
+ SESSION_ORIGIN_TYPES: () => SESSION_ORIGIN_TYPES,
32
+ SESSION_STATUSES: () => SESSION_STATUSES,
12
33
  SESSION_TRANSIENT_STATUSES: () => SESSION_TRANSIENT_STATUSES,
13
34
  ValidationRules: () => validation_rules_gen_exports,
14
35
  marshalCreateJobRequest: () => marshalCreateJobRequest,
@@ -39,4 +60,4 @@ var index_gen_exports = /* @__PURE__ */ __exportAll({
39
60
  unmarshalSession: () => unmarshalSession
40
61
  });
41
62
  //#endregion
42
- export { API, BOOKING_TRANSIENT_STATUSES, JOB_TRANSIENT_STATUSES, PROCESS_TRANSIENT_STATUSES, SESSION_TRANSIENT_STATUSES, validation_rules_gen_exports as ValidationRules, index_gen_exports, marshalCreateJobRequest, marshalCreateModelRequest, marshalCreateProcessRequest, marshalCreateSessionRequest, marshalUpdateBookingRequest, marshalUpdateJobRequest, marshalUpdateProcessRequest, marshalUpdateSessionRequest, unmarshalApplication, unmarshalBooking, unmarshalJob, unmarshalJobCircuit, unmarshalListApplicationsResponse, unmarshalListBookingsResponse, unmarshalListJobResultsResponse, unmarshalListJobsResponse, unmarshalListModelsResponse, unmarshalListPlatformsResponse, unmarshalListProcessResultsResponse, unmarshalListProcessesResponse, unmarshalListSessionACLsResponse, unmarshalListSessionsResponse, unmarshalModel, unmarshalPlatform, unmarshalProcess, unmarshalSession };
63
+ export { API, APPLICATION_TYPES, BOOKING_STATUSES, BOOKING_TRANSIENT_STATUSES, JOB_STATUSES, JOB_TRANSIENT_STATUSES, LIST_APPLICATIONS_REQUEST_ORDER_BIES, LIST_BOOKINGS_REQUEST_ORDER_BIES, LIST_JOBS_REQUEST_ORDER_BIES, LIST_JOB_RESULTS_REQUEST_ORDER_BIES, LIST_MODELS_REQUEST_ORDER_BIES, LIST_PLATFORMS_REQUEST_ORDER_BIES, LIST_PROCESSES_REQUEST_ORDER_BIES, LIST_PROCESS_RESULTS_REQUEST_ORDER_BIES, LIST_SESSIONS_REQUEST_ORDER_BIES, LIST_SESSION_AC_LS_REQUEST_ORDER_BIES, PLATFORM_AVAILABILITIES, PLATFORM_TECHNOLOGIES, PLATFORM_TYPES, PROCESS_STATUSES, PROCESS_TRANSIENT_STATUSES, SESSION_ACCESSES, SESSION_ORIGIN_TYPES, SESSION_STATUSES, SESSION_TRANSIENT_STATUSES, validation_rules_gen_exports as ValidationRules, index_gen_exports, marshalCreateJobRequest, marshalCreateModelRequest, marshalCreateProcessRequest, marshalCreateSessionRequest, marshalUpdateBookingRequest, marshalUpdateJobRequest, marshalUpdateProcessRequest, marshalUpdateSessionRequest, unmarshalApplication, unmarshalBooking, unmarshalJob, unmarshalJobCircuit, unmarshalListApplicationsResponse, unmarshalListBookingsResponse, unmarshalListJobResultsResponse, unmarshalListJobsResponse, unmarshalListModelsResponse, unmarshalListPlatformsResponse, unmarshalListProcessResultsResponse, unmarshalListProcessesResponse, unmarshalListSessionACLsResponse, unmarshalListSessionsResponse, unmarshalModel, unmarshalPlatform, unmarshalProcess, unmarshalSession };
@@ -9,6 +9,7 @@ export declare const queriesMetadata: {
9
9
  readonly protoName: 'GetJob';
10
10
  readonly paramsType: 'GetJobRequest';
11
11
  readonly returnType: 'Job';
12
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
12
13
  readonly isList: false;
13
14
  readonly paginationType: 'none';
14
15
  readonly isPrivate: false;
@@ -19,10 +20,12 @@ export declare const queriesMetadata: {
19
20
  readonly protoName: 'ListJobs';
20
21
  readonly paramsType: 'ListJobsRequest';
21
22
  readonly returnType: 'ListJobsResponse';
23
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
22
24
  readonly isList: true;
23
25
  readonly paginationType: 'offset';
24
26
  readonly pageParamKey: 'page';
25
27
  readonly listItemType: 'Job';
28
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
26
29
  readonly isPrivate: false;
27
30
  readonly description: '"';
28
31
  }, {
@@ -30,10 +33,12 @@ export declare const queriesMetadata: {
30
33
  readonly protoName: 'ListJobResults';
31
34
  readonly paramsType: 'ListJobResultsRequest';
32
35
  readonly returnType: 'ListJobResultsResponse';
36
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
33
37
  readonly isList: true;
34
38
  readonly paginationType: 'offset';
35
39
  readonly pageParamKey: 'page';
36
40
  readonly listItemType: 'JobResult';
41
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
37
42
  readonly isPrivate: false;
38
43
  readonly description: '"';
39
44
  }, {
@@ -41,6 +46,7 @@ export declare const queriesMetadata: {
41
46
  readonly protoName: 'GetJobCircuit';
42
47
  readonly paramsType: 'GetJobCircuitRequest';
43
48
  readonly returnType: 'JobCircuit';
49
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
44
50
  readonly isList: false;
45
51
  readonly paginationType: 'none';
46
52
  readonly isPrivate: false;
@@ -50,6 +56,7 @@ export declare const queriesMetadata: {
50
56
  readonly protoName: 'GetPlatform';
51
57
  readonly paramsType: 'GetPlatformRequest';
52
58
  readonly returnType: 'Platform';
59
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
53
60
  readonly isList: false;
54
61
  readonly paginationType: 'none';
55
62
  readonly isPrivate: false;
@@ -59,10 +66,12 @@ export declare const queriesMetadata: {
59
66
  readonly protoName: 'ListPlatforms';
60
67
  readonly paramsType: 'ListPlatformsRequest';
61
68
  readonly returnType: 'ListPlatformsResponse';
69
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
62
70
  readonly isList: true;
63
71
  readonly paginationType: 'offset';
64
72
  readonly pageParamKey: 'page';
65
73
  readonly listItemType: 'Platform';
74
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
66
75
  readonly isPrivate: false;
67
76
  readonly description: '"';
68
77
  }, {
@@ -70,6 +79,7 @@ export declare const queriesMetadata: {
70
79
  readonly protoName: 'GetSession';
71
80
  readonly paramsType: 'GetSessionRequest';
72
81
  readonly returnType: 'Session';
82
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
73
83
  readonly isList: false;
74
84
  readonly paginationType: 'none';
75
85
  readonly isPrivate: false;
@@ -80,10 +90,12 @@ export declare const queriesMetadata: {
80
90
  readonly protoName: 'ListSessions';
81
91
  readonly paramsType: 'ListSessionsRequest';
82
92
  readonly returnType: 'ListSessionsResponse';
93
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
83
94
  readonly isList: true;
84
95
  readonly paginationType: 'offset';
85
96
  readonly pageParamKey: 'page';
86
97
  readonly listItemType: 'Session';
98
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
87
99
  readonly isPrivate: false;
88
100
  readonly description: '"';
89
101
  }, {
@@ -91,10 +103,12 @@ export declare const queriesMetadata: {
91
103
  readonly protoName: 'ListSessionACLs';
92
104
  readonly paramsType: 'ListSessionACLsRequest';
93
105
  readonly returnType: 'ListSessionACLsResponse';
106
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
94
107
  readonly isList: true;
95
108
  readonly paginationType: 'offset';
96
109
  readonly pageParamKey: 'page';
97
110
  readonly listItemType: 'SessionAccess';
111
+ readonly listItemTypeNamespace: 'SessionAccess';
98
112
  readonly isPrivate: false;
99
113
  readonly description: '"';
100
114
  }, {
@@ -102,6 +116,7 @@ export declare const queriesMetadata: {
102
116
  readonly protoName: 'GetProcess';
103
117
  readonly paramsType: 'GetProcessRequest';
104
118
  readonly returnType: 'Process';
119
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
105
120
  readonly isList: false;
106
121
  readonly paginationType: 'none';
107
122
  readonly isPrivate: false;
@@ -112,10 +127,12 @@ export declare const queriesMetadata: {
112
127
  readonly protoName: 'ListProcesses';
113
128
  readonly paramsType: 'ListProcessesRequest';
114
129
  readonly returnType: 'ListProcessesResponse';
130
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
115
131
  readonly isList: true;
116
132
  readonly paginationType: 'offset';
117
133
  readonly pageParamKey: 'page';
118
134
  readonly listItemType: 'Process';
135
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
119
136
  readonly isPrivate: false;
120
137
  readonly description: '"';
121
138
  }, {
@@ -123,10 +140,12 @@ export declare const queriesMetadata: {
123
140
  readonly protoName: 'ListProcessResults';
124
141
  readonly paramsType: 'ListProcessResultsRequest';
125
142
  readonly returnType: 'ListProcessResultsResponse';
143
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
126
144
  readonly isList: true;
127
145
  readonly paginationType: 'offset';
128
146
  readonly pageParamKey: 'page';
129
147
  readonly listItemType: 'ProcessResult';
148
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
130
149
  readonly isPrivate: false;
131
150
  readonly description: '"';
132
151
  }, {
@@ -134,6 +153,7 @@ export declare const queriesMetadata: {
134
153
  readonly protoName: 'GetApplication';
135
154
  readonly paramsType: 'GetApplicationRequest';
136
155
  readonly returnType: 'Application';
156
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
137
157
  readonly isList: false;
138
158
  readonly paginationType: 'none';
139
159
  readonly isPrivate: false;
@@ -143,10 +163,12 @@ export declare const queriesMetadata: {
143
163
  readonly protoName: 'ListApplications';
144
164
  readonly paramsType: 'ListApplicationsRequest';
145
165
  readonly returnType: 'ListApplicationsResponse';
166
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
146
167
  readonly isList: true;
147
168
  readonly paginationType: 'offset';
148
169
  readonly pageParamKey: 'page';
149
170
  readonly listItemType: 'Application';
171
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
150
172
  readonly isPrivate: false;
151
173
  readonly description: '"';
152
174
  }, {
@@ -154,6 +176,7 @@ export declare const queriesMetadata: {
154
176
  readonly protoName: 'GetBooking';
155
177
  readonly paramsType: 'GetBookingRequest';
156
178
  readonly returnType: 'Booking';
179
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
157
180
  readonly isList: false;
158
181
  readonly paginationType: 'none';
159
182
  readonly isPrivate: false;
@@ -164,10 +187,12 @@ export declare const queriesMetadata: {
164
187
  readonly protoName: 'ListBookings';
165
188
  readonly paramsType: 'ListBookingsRequest';
166
189
  readonly returnType: 'ListBookingsResponse';
190
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
167
191
  readonly isList: true;
168
192
  readonly paginationType: 'offset';
169
193
  readonly pageParamKey: 'page';
170
194
  readonly listItemType: 'Booking';
195
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
171
196
  readonly isPrivate: false;
172
197
  readonly description: '"';
173
198
  }, {
@@ -175,6 +200,7 @@ export declare const queriesMetadata: {
175
200
  readonly protoName: 'GetModel';
176
201
  readonly paramsType: 'GetModelRequest';
177
202
  readonly returnType: 'Model';
203
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
178
204
  readonly isList: false;
179
205
  readonly paginationType: 'none';
180
206
  readonly isPrivate: false;
@@ -184,10 +210,12 @@ export declare const queriesMetadata: {
184
210
  readonly protoName: 'ListModels';
185
211
  readonly paramsType: 'ListModelsRequest';
186
212
  readonly returnType: 'ListModelsResponse';
213
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
187
214
  readonly isList: true;
188
215
  readonly paginationType: 'offset';
189
216
  readonly pageParamKey: 'page';
190
217
  readonly listItemType: 'Model';
218
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-qaas/v1alpha1';
191
219
  readonly isPrivate: false;
192
220
  readonly description: '"';
193
221
  }];
@@ -11,6 +11,7 @@ const queriesMetadata = {
11
11
  protoName: "GetJob",
12
12
  paramsType: "GetJobRequest",
13
13
  returnType: "Job",
14
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
14
15
  isList: false,
15
16
  paginationType: "none",
16
17
  isPrivate: false,
@@ -22,10 +23,12 @@ const queriesMetadata = {
22
23
  protoName: "ListJobs",
23
24
  paramsType: "ListJobsRequest",
24
25
  returnType: "ListJobsResponse",
26
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
25
27
  isList: true,
26
28
  paginationType: "offset",
27
29
  pageParamKey: "page",
28
30
  listItemType: "Job",
31
+ listItemTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
29
32
  isPrivate: false,
30
33
  description: "\""
31
34
  },
@@ -34,10 +37,12 @@ const queriesMetadata = {
34
37
  protoName: "ListJobResults",
35
38
  paramsType: "ListJobResultsRequest",
36
39
  returnType: "ListJobResultsResponse",
40
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
37
41
  isList: true,
38
42
  paginationType: "offset",
39
43
  pageParamKey: "page",
40
44
  listItemType: "JobResult",
45
+ listItemTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
41
46
  isPrivate: false,
42
47
  description: "\""
43
48
  },
@@ -46,6 +51,7 @@ const queriesMetadata = {
46
51
  protoName: "GetJobCircuit",
47
52
  paramsType: "GetJobCircuitRequest",
48
53
  returnType: "JobCircuit",
54
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
49
55
  isList: false,
50
56
  paginationType: "none",
51
57
  isPrivate: false,
@@ -56,6 +62,7 @@ const queriesMetadata = {
56
62
  protoName: "GetPlatform",
57
63
  paramsType: "GetPlatformRequest",
58
64
  returnType: "Platform",
65
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
59
66
  isList: false,
60
67
  paginationType: "none",
61
68
  isPrivate: false,
@@ -66,10 +73,12 @@ const queriesMetadata = {
66
73
  protoName: "ListPlatforms",
67
74
  paramsType: "ListPlatformsRequest",
68
75
  returnType: "ListPlatformsResponse",
76
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
69
77
  isList: true,
70
78
  paginationType: "offset",
71
79
  pageParamKey: "page",
72
80
  listItemType: "Platform",
81
+ listItemTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
73
82
  isPrivate: false,
74
83
  description: "\""
75
84
  },
@@ -78,6 +87,7 @@ const queriesMetadata = {
78
87
  protoName: "GetSession",
79
88
  paramsType: "GetSessionRequest",
80
89
  returnType: "Session",
90
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
81
91
  isList: false,
82
92
  paginationType: "none",
83
93
  isPrivate: false,
@@ -89,10 +99,12 @@ const queriesMetadata = {
89
99
  protoName: "ListSessions",
90
100
  paramsType: "ListSessionsRequest",
91
101
  returnType: "ListSessionsResponse",
102
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
92
103
  isList: true,
93
104
  paginationType: "offset",
94
105
  pageParamKey: "page",
95
106
  listItemType: "Session",
107
+ listItemTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
96
108
  isPrivate: false,
97
109
  description: "\""
98
110
  },
@@ -101,10 +113,12 @@ const queriesMetadata = {
101
113
  protoName: "ListSessionACLs",
102
114
  paramsType: "ListSessionACLsRequest",
103
115
  returnType: "ListSessionACLsResponse",
116
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
104
117
  isList: true,
105
118
  paginationType: "offset",
106
119
  pageParamKey: "page",
107
120
  listItemType: "SessionAccess",
121
+ listItemTypeNamespace: "SessionAccess",
108
122
  isPrivate: false,
109
123
  description: "\""
110
124
  },
@@ -113,6 +127,7 @@ const queriesMetadata = {
113
127
  protoName: "GetProcess",
114
128
  paramsType: "GetProcessRequest",
115
129
  returnType: "Process",
130
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
116
131
  isList: false,
117
132
  paginationType: "none",
118
133
  isPrivate: false,
@@ -124,10 +139,12 @@ const queriesMetadata = {
124
139
  protoName: "ListProcesses",
125
140
  paramsType: "ListProcessesRequest",
126
141
  returnType: "ListProcessesResponse",
142
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
127
143
  isList: true,
128
144
  paginationType: "offset",
129
145
  pageParamKey: "page",
130
146
  listItemType: "Process",
147
+ listItemTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
131
148
  isPrivate: false,
132
149
  description: "\""
133
150
  },
@@ -136,10 +153,12 @@ const queriesMetadata = {
136
153
  protoName: "ListProcessResults",
137
154
  paramsType: "ListProcessResultsRequest",
138
155
  returnType: "ListProcessResultsResponse",
156
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
139
157
  isList: true,
140
158
  paginationType: "offset",
141
159
  pageParamKey: "page",
142
160
  listItemType: "ProcessResult",
161
+ listItemTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
143
162
  isPrivate: false,
144
163
  description: "\""
145
164
  },
@@ -148,6 +167,7 @@ const queriesMetadata = {
148
167
  protoName: "GetApplication",
149
168
  paramsType: "GetApplicationRequest",
150
169
  returnType: "Application",
170
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
151
171
  isList: false,
152
172
  paginationType: "none",
153
173
  isPrivate: false,
@@ -158,10 +178,12 @@ const queriesMetadata = {
158
178
  protoName: "ListApplications",
159
179
  paramsType: "ListApplicationsRequest",
160
180
  returnType: "ListApplicationsResponse",
181
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
161
182
  isList: true,
162
183
  paginationType: "offset",
163
184
  pageParamKey: "page",
164
185
  listItemType: "Application",
186
+ listItemTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
165
187
  isPrivate: false,
166
188
  description: "\""
167
189
  },
@@ -170,6 +192,7 @@ const queriesMetadata = {
170
192
  protoName: "GetBooking",
171
193
  paramsType: "GetBookingRequest",
172
194
  returnType: "Booking",
195
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
173
196
  isList: false,
174
197
  paginationType: "none",
175
198
  isPrivate: false,
@@ -181,10 +204,12 @@ const queriesMetadata = {
181
204
  protoName: "ListBookings",
182
205
  paramsType: "ListBookingsRequest",
183
206
  returnType: "ListBookingsResponse",
207
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
184
208
  isList: true,
185
209
  paginationType: "offset",
186
210
  pageParamKey: "page",
187
211
  listItemType: "Booking",
212
+ listItemTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
188
213
  isPrivate: false,
189
214
  description: "\""
190
215
  },
@@ -193,6 +218,7 @@ const queriesMetadata = {
193
218
  protoName: "GetModel",
194
219
  paramsType: "GetModelRequest",
195
220
  returnType: "Model",
221
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
196
222
  isList: false,
197
223
  paginationType: "none",
198
224
  isPrivate: false,
@@ -203,10 +229,12 @@ const queriesMetadata = {
203
229
  protoName: "ListModels",
204
230
  paramsType: "ListModelsRequest",
205
231
  returnType: "ListModelsResponse",
232
+ returnTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
206
233
  isList: true,
207
234
  paginationType: "offset",
208
235
  pageParamKey: "page",
209
236
  listItemType: "Model",
237
+ listItemTypeNamespace: "@scaleway-internal/sdk-qaas/v1alpha1",
210
238
  isPrivate: false,
211
239
  description: "\""
212
240
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/sdk-qaas",
3
- "version": "2.8.0",
3
+ "version": "2.10.0",
4
4
  "description": "Scaleway SDK qaas",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@scaleway/random-name": "6.0.2",
36
- "@scaleway/sdk-std": "2.6.0"
36
+ "@scaleway/sdk-std": "2.7.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@repo/configs": "^0.1.1",