@sap-ai-sdk/ai-api 2.1.0 → 2.1.1-20251113013327.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.
- package/dist/client/AI_CORE_API/execution-api.d.ts +69 -1
- package/dist/client/AI_CORE_API/execution-api.d.ts.map +1 -1
- package/dist/client/AI_CORE_API/execution-api.js +67 -0
- package/dist/client/AI_CORE_API/execution-api.js.map +1 -1
- package/dist/client/AI_CORE_API/index.d.ts +0 -1
- package/dist/client/AI_CORE_API/index.d.ts.map +1 -1
- package/dist/client/AI_CORE_API/index.js +0 -1
- package/dist/client/AI_CORE_API/index.js.map +1 -1
- package/dist/client/AI_CORE_API/resource-api.d.ts +9 -1
- package/dist/client/AI_CORE_API/resource-api.d.ts.map +1 -1
- package/dist/client/AI_CORE_API/resource-api.js +8 -0
- package/dist/client/AI_CORE_API/resource-api.js.map +1 -1
- package/dist/client/AI_CORE_API/schema/bcknd-generic-secret-details.d.ts +2 -0
- package/dist/client/AI_CORE_API/schema/bcknd-generic-secret-details.d.ts.map +1 -1
- package/dist/client/AI_CORE_API/schema/bcknd-generic-secret-details.js +0 -5
- package/dist/client/AI_CORE_API/schema/bcknd-generic-secret-details.js.map +1 -1
- package/dist/client/AI_CORE_API/schema/bcknd-generic-secret-patch-body.d.ts +2 -0
- package/dist/client/AI_CORE_API/schema/bcknd-generic-secret-patch-body.d.ts.map +1 -1
- package/dist/client/AI_CORE_API/schema/bcknd-instance-type-get-response.d.ts +8 -0
- package/dist/client/AI_CORE_API/schema/bcknd-instance-type-get-response.d.ts.map +1 -0
- package/dist/client/AI_CORE_API/schema/bcknd-instance-type-get-response.js +2 -0
- package/dist/client/AI_CORE_API/schema/bcknd-instance-type-get-response.js.map +1 -0
- package/dist/client/AI_CORE_API/schema/bcknd-instance-type.d.ts +22 -0
- package/dist/client/AI_CORE_API/schema/bcknd-instance-type.d.ts.map +1 -0
- package/dist/client/AI_CORE_API/schema/bcknd-instance-type.js +7 -0
- package/dist/client/AI_CORE_API/schema/bcknd-instance-type.js.map +1 -0
- package/dist/client/AI_CORE_API/schema/bcknd-service-capabilities.d.ts +4 -0
- package/dist/client/AI_CORE_API/schema/bcknd-service-capabilities.d.ts.map +1 -1
- package/dist/client/AI_CORE_API/schema/index.d.ts +141 -139
- package/dist/client/AI_CORE_API/schema/index.d.ts.map +1 -1
- package/dist/client/AI_CORE_API/schema/index.js +141 -139
- package/dist/client/AI_CORE_API/schema/index.js.map +1 -1
- package/package.json +2 -2
- package/dist/client/AI_CORE_API/execution-schedule-api.d.ts +0 -78
- package/dist/client/AI_CORE_API/execution-schedule-api.d.ts.map +0 -1
- package/dist/client/AI_CORE_API/execution-schedule-api.js +0 -81
- package/dist/client/AI_CORE_API/execution-schedule-api.js.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OpenApiRequestBuilder } from '@sap-ai-sdk/core';
|
|
2
|
-
import type { AiExecutionList, AiEnactmentCreationRequest, AiExecutionCreationResponse, AiExecutionBulkModificationRequest, AiExecutionBulkModificationResponse, AiExecutionResponseWithDetails, AiExecutionModificationRequest, AiExecutionModificationResponse, AiExecutionDeletionResponse, RTALogCommonResponse } from './schema/index.js';
|
|
2
|
+
import type { AiExecutionList, AiEnactmentCreationRequest, AiExecutionCreationResponse, AiExecutionBulkModificationRequest, AiExecutionBulkModificationResponse, AiExecutionResponseWithDetails, AiExecutionModificationRequest, AiExecutionModificationResponse, AiExecutionDeletionResponse, AiExecutionScheduleList, AiExecutionScheduleCreationData, AiExecutionScheduleCreationResponse, AiExecutionSchedule, AiExecutionScheduleModificationRequest, AiExecutionScheduleModificationResponse, AiExecutionScheduleDeletionResponse, RTALogCommonResponse } from './schema/index.js';
|
|
3
3
|
/**
|
|
4
4
|
* Representation of the 'ExecutionApi'.
|
|
5
5
|
* This API is part of the 'AI_CORE_API' service.
|
|
@@ -77,6 +77,60 @@ export declare const ExecutionApi: {
|
|
|
77
77
|
executionDelete: (executionId: string, headerParameters: {
|
|
78
78
|
"AI-Resource-Group": string;
|
|
79
79
|
}) => OpenApiRequestBuilder<AiExecutionDeletionResponse>;
|
|
80
|
+
/**
|
|
81
|
+
* Retrieve a list of execution schedules that match the specified filter criteria.
|
|
82
|
+
* Filter criteria include executionScheduleStatus or a configurationId.
|
|
83
|
+
* With top/skip parameters it is possible to paginate the result list.
|
|
84
|
+
*
|
|
85
|
+
* @param queryParameters - Object containing the following keys: configurationId, status, $top, $skip.
|
|
86
|
+
* @param headerParameters - Object containing the following keys: AI-Resource-Group.
|
|
87
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
88
|
+
*/
|
|
89
|
+
executionScheduleQuery: (queryParameters: {
|
|
90
|
+
configurationId?: string;
|
|
91
|
+
status?: "ACTIVE" | "INACTIVE";
|
|
92
|
+
$top?: number;
|
|
93
|
+
$skip?: number;
|
|
94
|
+
}, headerParameters: {
|
|
95
|
+
"AI-Resource-Group": string;
|
|
96
|
+
}) => OpenApiRequestBuilder<AiExecutionScheduleList>;
|
|
97
|
+
/**
|
|
98
|
+
* Create an execution schedule using the configuration specified by configurationId, and schedule.
|
|
99
|
+
* @param body - Request body.
|
|
100
|
+
* @param headerParameters - Object containing the following keys: AI-Resource-Group.
|
|
101
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
102
|
+
*/
|
|
103
|
+
executionScheduleCreate: (body: AiExecutionScheduleCreationData, headerParameters: {
|
|
104
|
+
"AI-Resource-Group": string;
|
|
105
|
+
}) => OpenApiRequestBuilder<AiExecutionScheduleCreationResponse>;
|
|
106
|
+
/**
|
|
107
|
+
* Retrieve details for execution schedule with executionScheduleId.
|
|
108
|
+
* @param executionScheduleId - Execution Schedule identifier
|
|
109
|
+
* @param headerParameters - Object containing the following keys: AI-Resource-Group.
|
|
110
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
111
|
+
*/
|
|
112
|
+
executionScheduleGet: (executionScheduleId: string, headerParameters: {
|
|
113
|
+
"AI-Resource-Group": string;
|
|
114
|
+
}) => OpenApiRequestBuilder<AiExecutionSchedule>;
|
|
115
|
+
/**
|
|
116
|
+
* Update details of an execution schedule
|
|
117
|
+
* @param executionScheduleId - Execution Schedule identifier
|
|
118
|
+
* @param body - Request body.
|
|
119
|
+
* @param headerParameters - Object containing the following keys: AI-Resource-Group.
|
|
120
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
121
|
+
*/
|
|
122
|
+
executionScheduleModify: (executionScheduleId: string, body: AiExecutionScheduleModificationRequest, headerParameters: {
|
|
123
|
+
"AI-Resource-Group": string;
|
|
124
|
+
}) => OpenApiRequestBuilder<AiExecutionScheduleModificationResponse>;
|
|
125
|
+
/**
|
|
126
|
+
* Delete the execution schedule with executionScheduleId.
|
|
127
|
+
* @param executionScheduleId - Execution Schedule identifier
|
|
128
|
+
* @param headerParameters - Object containing the following keys: AI-Resource-Group.
|
|
129
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
130
|
+
*/
|
|
131
|
+
executionScheduleDelete: (executionScheduleId: string, headerParameters: {
|
|
132
|
+
"AI-Resource-Group": string;
|
|
133
|
+
}) => OpenApiRequestBuilder<AiExecutionScheduleDeletionResponse>;
|
|
80
134
|
/**
|
|
81
135
|
* Retrieve the number of available executions. The number can be filtered by
|
|
82
136
|
* scenarioId, configurationId, executableIdsList or by execution status.
|
|
@@ -94,6 +148,20 @@ export declare const ExecutionApi: {
|
|
|
94
148
|
}, headerParameters: {
|
|
95
149
|
"AI-Resource-Group": string;
|
|
96
150
|
}) => OpenApiRequestBuilder<number>;
|
|
151
|
+
/**
|
|
152
|
+
* Retrieve the number of scheduled executions. The number can be filtered by
|
|
153
|
+
* configurationId or executionScheduleStatus.
|
|
154
|
+
*
|
|
155
|
+
* @param queryParameters - Object containing the following keys: configurationId, status.
|
|
156
|
+
* @param headerParameters - Object containing the following keys: AI-Resource-Group.
|
|
157
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
158
|
+
*/
|
|
159
|
+
executionScheduleCount: (queryParameters: {
|
|
160
|
+
configurationId?: string;
|
|
161
|
+
status?: "ACTIVE" | "INACTIVE";
|
|
162
|
+
}, headerParameters: {
|
|
163
|
+
"AI-Resource-Group": string;
|
|
164
|
+
}) => OpenApiRequestBuilder<number>;
|
|
97
165
|
/**
|
|
98
166
|
* Retrieve logs of an execution for getting insight into the execution results or failures.
|
|
99
167
|
* @param executionId - Execution identifier
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execution-api.d.ts","sourceRoot":"","sources":["../../../src/client/AI_CORE_API/execution-api.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,KAAK,EACV,eAAe,EACf,0BAA0B,EAC1B,2BAA2B,EAC3B,kCAAkC,EAClC,mCAAmC,EACnC,8BAA8B,EAC9B,8BAA8B,EAC9B,+BAA+B,EAC/B,2BAA2B,EAC3B,oBAAoB,EACrB,MAAM,mBAAmB,CAAC;AAC3B;;;GAGG;AACH,eAAO,MAAM,YAAY;;IAEvB;;;;;;;;;OASG;sCAEgB;QACf,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;QACzB,eAAe,CAAC,EAAE,MAAM,CAAC;QACzB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,mBAAmB,CAAC,EAAE,MAAM,CAAC;QAC7B,MAAM,CAAC,EACH,SAAS,GACT,SAAS,GACT,WAAW,GACX,MAAM,GACN,UAAU,GACV,SAAS,GACT,SAAS,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,OAAO,CAAC,EAAE,QAAQ,CAAC;KACpB,oBACiB;QAAE,mBAAmB,EAAE,MAAM,CAAA;KAAE;IAWnD;;;;;OAKG;4BAEK,0BAA0B,oBACd;QAAE,mBAAmB,EAAE,MAAM,CAAA;KAAE;IAWnD;;;;;OAKG;iCAEK,kCAAkC,oBACtB;QAAE,mBAAmB,EAAE,MAAM,CAAA;KAAE;IAWnD;;;;;;OAMG;gCAEY,MAAM,mBACF;QAAE,OAAO,CAAC,EAAE,QAAQ,CAAA;KAAE,oBACrB;QAAE,mBAAmB,EAAE,MAAM,CAAA;KAAE;IAYnD;;;;;;OAMG;mCAEY,MAAM,QACb,8BAA8B,oBAClB;QAAE,mBAAmB,EAAE,MAAM,CAAA;KAAE;IAYnD;;;;;OAKG;mCAEY,MAAM,oBACD;QAAE,mBAAmB,EAAE,MAAM,CAAA;KAAE;IAWnD;;;;;;;OAOG;sCAEgB;QACf,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;QACzB,eAAe,CAAC,EAAE,MAAM,CAAC;QACzB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,mBAAmB,CAAC,EAAE,MAAM,CAAC;QAC7B,MAAM,CAAC,EACH,SAAS,GACT,SAAS,GACT,WAAW,GACX,MAAM,GACN,UAAU,GACV,SAAS,GACT,SAAS,CAAC;KACf,oBACiB;QAAE,mBAAmB,EAAE,MAAM,CAAA;KAAE;IAWnD;;;;;;OAMG;iDAEY,MAAM,oBACD;QAChB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,MAAM,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;KACzB,qBACkB;QAAE,aAAa,CAAC,EAAE,MAAM,CAAA;KAAE;CAYhD,CAAC"}
|
|
1
|
+
{"version":3,"file":"execution-api.d.ts","sourceRoot":"","sources":["../../../src/client/AI_CORE_API/execution-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -78,6 +78,61 @@ export const ExecutionApi = {
|
|
|
78
78
|
pathParameters: { executionId },
|
|
79
79
|
headerParameters
|
|
80
80
|
}, ExecutionApi._defaultBasePath),
|
|
81
|
+
/**
|
|
82
|
+
* Retrieve a list of execution schedules that match the specified filter criteria.
|
|
83
|
+
* Filter criteria include executionScheduleStatus or a configurationId.
|
|
84
|
+
* With top/skip parameters it is possible to paginate the result list.
|
|
85
|
+
*
|
|
86
|
+
* @param queryParameters - Object containing the following keys: configurationId, status, $top, $skip.
|
|
87
|
+
* @param headerParameters - Object containing the following keys: AI-Resource-Group.
|
|
88
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
89
|
+
*/
|
|
90
|
+
executionScheduleQuery: (queryParameters, headerParameters) => new OpenApiRequestBuilder('get', '/lm/executionSchedules', {
|
|
91
|
+
queryParameters,
|
|
92
|
+
headerParameters
|
|
93
|
+
}, ExecutionApi._defaultBasePath),
|
|
94
|
+
/**
|
|
95
|
+
* Create an execution schedule using the configuration specified by configurationId, and schedule.
|
|
96
|
+
* @param body - Request body.
|
|
97
|
+
* @param headerParameters - Object containing the following keys: AI-Resource-Group.
|
|
98
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
99
|
+
*/
|
|
100
|
+
executionScheduleCreate: (body, headerParameters) => new OpenApiRequestBuilder('post', '/lm/executionSchedules', {
|
|
101
|
+
body,
|
|
102
|
+
headerParameters
|
|
103
|
+
}, ExecutionApi._defaultBasePath),
|
|
104
|
+
/**
|
|
105
|
+
* Retrieve details for execution schedule with executionScheduleId.
|
|
106
|
+
* @param executionScheduleId - Execution Schedule identifier
|
|
107
|
+
* @param headerParameters - Object containing the following keys: AI-Resource-Group.
|
|
108
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
109
|
+
*/
|
|
110
|
+
executionScheduleGet: (executionScheduleId, headerParameters) => new OpenApiRequestBuilder('get', '/lm/executionSchedules/{executionScheduleId}', {
|
|
111
|
+
pathParameters: { executionScheduleId },
|
|
112
|
+
headerParameters
|
|
113
|
+
}, ExecutionApi._defaultBasePath),
|
|
114
|
+
/**
|
|
115
|
+
* Update details of an execution schedule
|
|
116
|
+
* @param executionScheduleId - Execution Schedule identifier
|
|
117
|
+
* @param body - Request body.
|
|
118
|
+
* @param headerParameters - Object containing the following keys: AI-Resource-Group.
|
|
119
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
120
|
+
*/
|
|
121
|
+
executionScheduleModify: (executionScheduleId, body, headerParameters) => new OpenApiRequestBuilder('patch', '/lm/executionSchedules/{executionScheduleId}', {
|
|
122
|
+
pathParameters: { executionScheduleId },
|
|
123
|
+
body,
|
|
124
|
+
headerParameters
|
|
125
|
+
}, ExecutionApi._defaultBasePath),
|
|
126
|
+
/**
|
|
127
|
+
* Delete the execution schedule with executionScheduleId.
|
|
128
|
+
* @param executionScheduleId - Execution Schedule identifier
|
|
129
|
+
* @param headerParameters - Object containing the following keys: AI-Resource-Group.
|
|
130
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
131
|
+
*/
|
|
132
|
+
executionScheduleDelete: (executionScheduleId, headerParameters) => new OpenApiRequestBuilder('delete', '/lm/executionSchedules/{executionScheduleId}', {
|
|
133
|
+
pathParameters: { executionScheduleId },
|
|
134
|
+
headerParameters
|
|
135
|
+
}, ExecutionApi._defaultBasePath),
|
|
81
136
|
/**
|
|
82
137
|
* Retrieve the number of available executions. The number can be filtered by
|
|
83
138
|
* scenarioId, configurationId, executableIdsList or by execution status.
|
|
@@ -90,6 +145,18 @@ export const ExecutionApi = {
|
|
|
90
145
|
queryParameters,
|
|
91
146
|
headerParameters
|
|
92
147
|
}, ExecutionApi._defaultBasePath),
|
|
148
|
+
/**
|
|
149
|
+
* Retrieve the number of scheduled executions. The number can be filtered by
|
|
150
|
+
* configurationId or executionScheduleStatus.
|
|
151
|
+
*
|
|
152
|
+
* @param queryParameters - Object containing the following keys: configurationId, status.
|
|
153
|
+
* @param headerParameters - Object containing the following keys: AI-Resource-Group.
|
|
154
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
155
|
+
*/
|
|
156
|
+
executionScheduleCount: (queryParameters, headerParameters) => new OpenApiRequestBuilder('get', '/lm/executionSchedules/$count', {
|
|
157
|
+
queryParameters,
|
|
158
|
+
headerParameters
|
|
159
|
+
}, ExecutionApi._defaultBasePath),
|
|
93
160
|
/**
|
|
94
161
|
* Retrieve logs of an execution for getting insight into the execution results or failures.
|
|
95
162
|
* @param executionId - Execution identifier
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execution-api.js","sourceRoot":"","sources":["../../../src/client/AI_CORE_API/execution-api.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"execution-api.js","sourceRoot":"","sources":["../../../src/client/AI_CORE_API/execution-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,6 @@ export * from './artifact-api.js';
|
|
|
2
2
|
export * from './configuration-api.js';
|
|
3
3
|
export * from './deployment-api.js';
|
|
4
4
|
export * from './execution-api.js';
|
|
5
|
-
export * from './execution-schedule-api.js';
|
|
6
5
|
export * from './scenario-api.js';
|
|
7
6
|
export * from './executable-api.js';
|
|
8
7
|
export * from './meta-api.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/client/AI_CORE_API/index.ts"],"names":[],"mappings":"AAKA,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/client/AI_CORE_API/index.ts"],"names":[],"mappings":"AAKA,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iCAAiC,CAAC;AAChD,cAAc,kBAAkB,CAAC;AACjC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC"}
|
|
@@ -7,7 +7,6 @@ export * from './artifact-api.js';
|
|
|
7
7
|
export * from './configuration-api.js';
|
|
8
8
|
export * from './deployment-api.js';
|
|
9
9
|
export * from './execution-api.js';
|
|
10
|
-
export * from './execution-schedule-api.js';
|
|
11
10
|
export * from './scenario-api.js';
|
|
12
11
|
export * from './executable-api.js';
|
|
13
12
|
export * from './meta-api.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/client/AI_CORE_API/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/client/AI_CORE_API/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iCAAiC,CAAC;AAChD,cAAc,kBAAkB,CAAC;AACjC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OpenApiRequestBuilder } from '@sap-ai-sdk/core';
|
|
2
|
-
import type { BckndResourceGetResponse, BckndResourcePatchBody, BckndResourcePatchResponse } from './schema/index.js';
|
|
2
|
+
import type { BckndResourceGetResponse, BckndResourcePatchBody, BckndResourcePatchResponse, BckndInstanceTypeGetResponse } from './schema/index.js';
|
|
3
3
|
/**
|
|
4
4
|
* Representation of the 'ResourceApi'.
|
|
5
5
|
* This API is part of the 'AI_CORE_API' service.
|
|
@@ -23,5 +23,13 @@ export declare const ResourceApi: {
|
|
|
23
23
|
kubesubmitV4ResourcesPatch: (body: BckndResourcePatchBody, headerParameters?: {
|
|
24
24
|
Authorization?: string;
|
|
25
25
|
}) => OpenApiRequestBuilder<BckndResourcePatchResponse>;
|
|
26
|
+
/**
|
|
27
|
+
* Lists all the instance types available in the cluster.
|
|
28
|
+
* @param headerParameters - Object containing the following keys: Authorization.
|
|
29
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
30
|
+
*/
|
|
31
|
+
kubesubmitV4InstanceTypesGet: (headerParameters?: {
|
|
32
|
+
Authorization?: string;
|
|
33
|
+
}) => OpenApiRequestBuilder<BckndInstanceTypeGetResponse>;
|
|
26
34
|
};
|
|
27
35
|
//# sourceMappingURL=resource-api.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource-api.d.ts","sourceRoot":"","sources":["../../../src/client/AI_CORE_API/resource-api.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,KAAK,EACV,wBAAwB,EACxB,sBAAsB,EACtB,0BAA0B,
|
|
1
|
+
{"version":3,"file":"resource-api.d.ts","sourceRoot":"","sources":["../../../src/client/AI_CORE_API/resource-api.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,KAAK,EACV,wBAAwB,EACxB,sBAAsB,EACtB,0BAA0B,EAC1B,4BAA4B,EAC7B,MAAM,mBAAmB,CAAC;AAC3B;;;GAGG;AACH,eAAO,MAAM,WAAW;;IAEtB;;;;OAIG;kDAC2C;QAAE,aAAa,CAAC,EAAE,MAAM,CAAA;KAAE;IASxE;;;;;OAKG;uCAEK,sBAAsB,qBACT;QAAE,aAAa,CAAC,EAAE,MAAM,CAAA;KAAE;IAW/C;;;;OAIG;sDAC+C;QAChD,aAAa,CAAC,EAAE,MAAM,CAAC;KACxB;CASF,CAAC"}
|
|
@@ -27,6 +27,14 @@ export const ResourceApi = {
|
|
|
27
27
|
kubesubmitV4ResourcesPatch: (body, headerParameters) => new OpenApiRequestBuilder('patch', '/admin/resources/nodes', {
|
|
28
28
|
body,
|
|
29
29
|
headerParameters
|
|
30
|
+
}, ResourceApi._defaultBasePath),
|
|
31
|
+
/**
|
|
32
|
+
* Lists all the instance types available in the cluster.
|
|
33
|
+
* @param headerParameters - Object containing the following keys: Authorization.
|
|
34
|
+
* @returns The request builder, use the `execute()` method to trigger the request.
|
|
35
|
+
*/
|
|
36
|
+
kubesubmitV4InstanceTypesGet: (headerParameters) => new OpenApiRequestBuilder('get', '/admin/resources/instanceTypes', {
|
|
37
|
+
headerParameters
|
|
30
38
|
}, ResourceApi._defaultBasePath)
|
|
31
39
|
};
|
|
32
40
|
//# sourceMappingURL=resource-api.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource-api.js","sourceRoot":"","sources":["../../../src/client/AI_CORE_API/resource-api.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"resource-api.js","sourceRoot":"","sources":["../../../src/client/AI_CORE_API/resource-api.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AAOzD;;;GAGG;AACH,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,gBAAgB,EAAE,SAAS;IAC3B;;;;OAIG;IACH,wBAAwB,EAAE,CAAC,gBAA6C,EAAE,EAAE,CAC1E,IAAI,qBAAqB,CACvB,KAAK,EACL,wBAAwB,EACxB;QACE,gBAAgB;KACjB,EACD,WAAW,CAAC,gBAAgB,CAC7B;IACH;;;;;OAKG;IACH,0BAA0B,EAAE,CAC1B,IAA4B,EAC5B,gBAA6C,EAC7C,EAAE,CACF,IAAI,qBAAqB,CACvB,OAAO,EACP,wBAAwB,EACxB;QACE,IAAI;QACJ,gBAAgB;KACjB,EACD,WAAW,CAAC,gBAAgB,CAC7B;IACH;;;;OAIG;IACH,4BAA4B,EAAE,CAAC,gBAE9B,EAAE,EAAE,CACH,IAAI,qBAAqB,CACvB,KAAK,EACL,gCAAgC,EAChC;QACE,gBAAgB;KACjB,EACD,WAAW,CAAC,gBAAgB,CAC7B;CACJ,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BckndGenericSecretLabels } from './bcknd-generic-secret-labels.js';
|
|
1
2
|
/**
|
|
2
3
|
* Representation of the 'BckndGenericSecretDetails' schema.
|
|
3
4
|
*/
|
|
@@ -10,6 +11,7 @@ export type BckndGenericSecretDetails = {
|
|
|
10
11
|
* Timestamp at which secret was created
|
|
11
12
|
*/
|
|
12
13
|
createdAt: string;
|
|
14
|
+
labels?: BckndGenericSecretLabels;
|
|
13
15
|
/**
|
|
14
16
|
* Sync status of the replicated secrets in all resource groups of the tenant
|
|
15
17
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bcknd-generic-secret-details.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/bcknd-generic-secret-details.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"bcknd-generic-secret-details.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/bcknd-generic-secret-details.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AACjF;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG;IACtC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,wBAAwB,CAAC;IAClC;;OAEG;IACH,8BAA8B,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAC1D,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bcknd-generic-secret-details.js","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/bcknd-generic-secret-details.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"bcknd-generic-secret-details.js","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/bcknd-generic-secret-details.ts"],"names":[],"mappings":""}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import type { BckndGenericSecretData } from './bcknd-generic-secret-data.js';
|
|
2
|
+
import type { BckndGenericSecretLabels } from './bcknd-generic-secret-labels.js';
|
|
2
3
|
/**
|
|
3
4
|
* Representation of the 'BckndGenericSecretPatchBody' schema.
|
|
4
5
|
*/
|
|
5
6
|
export type BckndGenericSecretPatchBody = {
|
|
6
7
|
data: BckndGenericSecretData;
|
|
8
|
+
labels?: BckndGenericSecretLabels;
|
|
7
9
|
} & Record<string, any>;
|
|
8
10
|
//# sourceMappingURL=bcknd-generic-secret-patch-body.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bcknd-generic-secret-patch-body.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/bcknd-generic-secret-patch-body.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAC7E;;GAEG;AACH,MAAM,MAAM,2BAA2B,GAAG;IACxC,IAAI,EAAE,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"bcknd-generic-secret-patch-body.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/bcknd-generic-secret-patch-body.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AACjF;;GAEG;AACH,MAAM,MAAM,2BAA2B,GAAG;IACxC,IAAI,EAAE,sBAAsB,CAAC;IAC7B,MAAM,CAAC,EAAE,wBAAwB,CAAC;CACnC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { BckndInstanceType } from './bcknd-instance-type.js';
|
|
2
|
+
/**
|
|
3
|
+
* Representation of the 'BckndInstanceTypeGetResponse' schema.
|
|
4
|
+
*/
|
|
5
|
+
export type BckndInstanceTypeGetResponse = {
|
|
6
|
+
instanceTypes: BckndInstanceType;
|
|
7
|
+
} & Record<string, any>;
|
|
8
|
+
//# sourceMappingURL=bcknd-instance-type-get-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bcknd-instance-type-get-response.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/bcknd-instance-type-get-response.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAClE;;GAEG;AACH,MAAM,MAAM,4BAA4B,GAAG;IACzC,aAAa,EAAE,iBAAiB,CAAC;CAClC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bcknd-instance-type-get-response.js","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/bcknd-instance-type-get-response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Representation of the 'BckndInstanceType' schema.
|
|
3
|
+
*/
|
|
4
|
+
export type BckndInstanceType = Record<string, {
|
|
5
|
+
/**
|
|
6
|
+
* Memory allocated for the instance type (e.g., "16Gi")
|
|
7
|
+
*/
|
|
8
|
+
memory: string;
|
|
9
|
+
/**
|
|
10
|
+
* Number of CPU cores allocated for the instance type
|
|
11
|
+
*/
|
|
12
|
+
cpu: number;
|
|
13
|
+
/**
|
|
14
|
+
* Number of GPUs allocated for the instance type
|
|
15
|
+
*/
|
|
16
|
+
gpu: number;
|
|
17
|
+
/**
|
|
18
|
+
* Number of billable units per hour for the instance type
|
|
19
|
+
*/
|
|
20
|
+
billableUnitsPerHour: number;
|
|
21
|
+
} & Record<string, any>>;
|
|
22
|
+
//# sourceMappingURL=bcknd-instance-type.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bcknd-instance-type.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/bcknd-instance-type.ts"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,MAAM,CACpC,MAAM,EACN;IACE;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,oBAAoB,EAAE,MAAM,CAAC;CAC9B,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CACxB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bcknd-instance-type.js","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/bcknd-instance-type.ts"],"names":[],"mappings":"AAAA;;;;GAIG"}
|
|
@@ -25,6 +25,10 @@ export type BckndServiceCapabilities = {
|
|
|
25
25
|
* Services that only support deployment typically neither allow create executions. For these, createExecutions == false
|
|
26
26
|
*/
|
|
27
27
|
createExecutions?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Services that only support create, read and delete of prompt templates
|
|
30
|
+
*/
|
|
31
|
+
userPromptTemplates?: boolean;
|
|
28
32
|
/**
|
|
29
33
|
* true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario)
|
|
30
34
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bcknd-service-capabilities.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/bcknd-service-capabilities.ts"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACrC;;OAEG;IACH,IAAI,CAAC,EAAE;QACL,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,UAAU,CAAC,EAAE,OAAO,CAAC;KACtB,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACxB;;OAEG;IACH,KAAK,CAAC,EAAE;QACN;;WAEG;QACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;QAC5B;;WAEG;QACH,eAAe,CAAC,EAAE,OAAO,CAAC;QAC1B;;WAEG;QACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;QAC3B;;WAEG;QACH,WAAW,CAAC,EAAE,OAAO,CAAC;KACvB,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CACzB,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"bcknd-service-capabilities.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/bcknd-service-capabilities.ts"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACrC;;OAEG;IACH,IAAI,CAAC,EAAE;QACL,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,UAAU,CAAC,EAAE,OAAO,CAAC;KACtB,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACxB;;OAEG;IACH,KAAK,CAAC,EAAE;QACN;;WAEG;QACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;QAC5B;;WAEG;QACH,eAAe,CAAC,EAAE,OAAO,CAAC;QAC1B;;WAEG;QACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;QAC3B;;WAEG;QACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;QAC9B;;WAEG;QACH,WAAW,CAAC,EAAE,OAAO,CAAC;KACvB,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CACzB,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC"}
|