@yuntijs/arcadia-bff-sdk 1.2.77 → 1.2.78
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/cjs/sdk.d.ts +16 -4
- package/dist/cjs/sdk.js +8 -0
- package/dist/esm/sdk.d.ts +16 -4
- package/dist/esm/sdk.js +4 -4
- package/dist/umd/index.min.js +1 -1
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/sdk.d.ts
CHANGED
|
@@ -2610,12 +2610,16 @@ export type Sft = {
|
|
|
2610
2610
|
description?: Maybe<Scalars['String']['output']>;
|
|
2611
2611
|
/** 展示名 */
|
|
2612
2612
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
2613
|
+
/** 合并完成时间:记录合并导出任务完成时间。未完成则该字段为空 */
|
|
2614
|
+
exportCompleteTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
2613
2615
|
/** 导出模型的描述 */
|
|
2614
2616
|
exportDescription?: Maybe<Scalars['String']['output']>;
|
|
2615
2617
|
/** 导出模型的展示名 */
|
|
2616
2618
|
exportName: Scalars['String']['output'];
|
|
2617
2619
|
/** 导出的分块大小 */
|
|
2618
2620
|
exportPartSize?: Maybe<Scalars['Int']['output']>;
|
|
2621
|
+
/** 合并开始时间:记录合并导出任务开始的时间。未完成则该字段为空 */
|
|
2622
|
+
exportTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
2619
2623
|
/** 一些用于标记,选择的的标签 */
|
|
2620
2624
|
labels?: Maybe<Scalars['Map']['output']>;
|
|
2621
2625
|
/** SFT 微调节点亲合度配置 */
|
|
@@ -3249,20 +3253,20 @@ export type UpdateSftInput = {
|
|
|
3249
3253
|
additionalEnvs?: InputMaybe<Scalars['Map']['input']>;
|
|
3250
3254
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
3251
3255
|
baseModel?: InputMaybe<TypedObjectReferenceInput>;
|
|
3252
|
-
datasets
|
|
3256
|
+
datasets?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3253
3257
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
3254
3258
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
3255
3259
|
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
3256
3260
|
matchExpressions?: InputMaybe<Array<InputMaybe<NodeSelectorRequirementInput>>>;
|
|
3257
|
-
metrics
|
|
3261
|
+
metrics?: InputMaybe<Array<SftMetricInput>>;
|
|
3258
3262
|
name: Scalars['String']['input'];
|
|
3259
3263
|
namespace: Scalars['String']['input'];
|
|
3260
3264
|
params?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3261
|
-
resources
|
|
3265
|
+
resources?: InputMaybe<ResourcesInput>;
|
|
3262
3266
|
serviceAccountName?: InputMaybe<Scalars['String']['input']>;
|
|
3263
3267
|
storage?: InputMaybe<PersistentVolumeClaimSpecInput>;
|
|
3264
3268
|
suspend?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3265
|
-
type
|
|
3269
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
3266
3270
|
};
|
|
3267
3271
|
export type UpdateVersionedDatasetInput = {
|
|
3268
3272
|
/** 传递方式同label */
|
|
@@ -7970,6 +7974,8 @@ export type ListSftQuery = {
|
|
|
7970
7974
|
description?: string | null;
|
|
7971
7975
|
creationTimestamp?: any | null;
|
|
7972
7976
|
completeTimestamp?: any | null;
|
|
7977
|
+
exportTimestamp?: any | null;
|
|
7978
|
+
exportCompleteTimestamp?: any | null;
|
|
7973
7979
|
type: string;
|
|
7974
7980
|
serviceAccountName: string;
|
|
7975
7981
|
suspend: boolean;
|
|
@@ -8092,6 +8098,8 @@ export type GetSftQuery = {
|
|
|
8092
8098
|
description?: string | null;
|
|
8093
8099
|
creationTimestamp?: any | null;
|
|
8094
8100
|
completeTimestamp?: any | null;
|
|
8101
|
+
exportTimestamp?: any | null;
|
|
8102
|
+
exportCompleteTimestamp?: any | null;
|
|
8095
8103
|
type: string;
|
|
8096
8104
|
serviceAccountName: string;
|
|
8097
8105
|
suspend: boolean;
|
|
@@ -8246,6 +8254,8 @@ export type CreateSftMutation = {
|
|
|
8246
8254
|
description?: string | null;
|
|
8247
8255
|
creationTimestamp?: any | null;
|
|
8248
8256
|
completeTimestamp?: any | null;
|
|
8257
|
+
exportTimestamp?: any | null;
|
|
8258
|
+
exportCompleteTimestamp?: any | null;
|
|
8249
8259
|
type: string;
|
|
8250
8260
|
serviceAccountName: string;
|
|
8251
8261
|
suspend: boolean;
|
|
@@ -8349,6 +8359,8 @@ export type UpdateSftMutation = {
|
|
|
8349
8359
|
description?: string | null;
|
|
8350
8360
|
creationTimestamp?: any | null;
|
|
8351
8361
|
completeTimestamp?: any | null;
|
|
8362
|
+
exportTimestamp?: any | null;
|
|
8363
|
+
exportCompleteTimestamp?: any | null;
|
|
8352
8364
|
type: string;
|
|
8353
8365
|
serviceAccountName: string;
|
|
8354
8366
|
suspend: boolean;
|
package/dist/cjs/sdk.js
CHANGED
|
@@ -2487,6 +2487,8 @@ var ListSftDocument = import_graphql_tag.default`
|
|
|
2487
2487
|
description
|
|
2488
2488
|
creationTimestamp
|
|
2489
2489
|
completeTimestamp
|
|
2490
|
+
exportTimestamp
|
|
2491
|
+
exportCompleteTimestamp
|
|
2490
2492
|
type
|
|
2491
2493
|
storage {
|
|
2492
2494
|
accessModes
|
|
@@ -2582,6 +2584,8 @@ var GetSftDocument = import_graphql_tag.default`
|
|
|
2582
2584
|
description
|
|
2583
2585
|
creationTimestamp
|
|
2584
2586
|
completeTimestamp
|
|
2587
|
+
exportTimestamp
|
|
2588
|
+
exportCompleteTimestamp
|
|
2585
2589
|
type
|
|
2586
2590
|
storage {
|
|
2587
2591
|
accessModes
|
|
@@ -2712,6 +2716,8 @@ var CreateSftDocument = import_graphql_tag.default`
|
|
|
2712
2716
|
description
|
|
2713
2717
|
creationTimestamp
|
|
2714
2718
|
completeTimestamp
|
|
2719
|
+
exportTimestamp
|
|
2720
|
+
exportCompleteTimestamp
|
|
2715
2721
|
type
|
|
2716
2722
|
storage {
|
|
2717
2723
|
accessModes
|
|
@@ -2802,6 +2808,8 @@ var UpdateSftDocument = import_graphql_tag.default`
|
|
|
2802
2808
|
description
|
|
2803
2809
|
creationTimestamp
|
|
2804
2810
|
completeTimestamp
|
|
2811
|
+
exportTimestamp
|
|
2812
|
+
exportCompleteTimestamp
|
|
2805
2813
|
type
|
|
2806
2814
|
storage {
|
|
2807
2815
|
accessModes
|
package/dist/esm/sdk.d.ts
CHANGED
|
@@ -2610,12 +2610,16 @@ export type Sft = {
|
|
|
2610
2610
|
description?: Maybe<Scalars['String']['output']>;
|
|
2611
2611
|
/** 展示名 */
|
|
2612
2612
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
2613
|
+
/** 合并完成时间:记录合并导出任务完成时间。未完成则该字段为空 */
|
|
2614
|
+
exportCompleteTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
2613
2615
|
/** 导出模型的描述 */
|
|
2614
2616
|
exportDescription?: Maybe<Scalars['String']['output']>;
|
|
2615
2617
|
/** 导出模型的展示名 */
|
|
2616
2618
|
exportName: Scalars['String']['output'];
|
|
2617
2619
|
/** 导出的分块大小 */
|
|
2618
2620
|
exportPartSize?: Maybe<Scalars['Int']['output']>;
|
|
2621
|
+
/** 合并开始时间:记录合并导出任务开始的时间。未完成则该字段为空 */
|
|
2622
|
+
exportTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
2619
2623
|
/** 一些用于标记,选择的的标签 */
|
|
2620
2624
|
labels?: Maybe<Scalars['Map']['output']>;
|
|
2621
2625
|
/** SFT 微调节点亲合度配置 */
|
|
@@ -3249,20 +3253,20 @@ export type UpdateSftInput = {
|
|
|
3249
3253
|
additionalEnvs?: InputMaybe<Scalars['Map']['input']>;
|
|
3250
3254
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
3251
3255
|
baseModel?: InputMaybe<TypedObjectReferenceInput>;
|
|
3252
|
-
datasets
|
|
3256
|
+
datasets?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3253
3257
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
3254
3258
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
3255
3259
|
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
3256
3260
|
matchExpressions?: InputMaybe<Array<InputMaybe<NodeSelectorRequirementInput>>>;
|
|
3257
|
-
metrics
|
|
3261
|
+
metrics?: InputMaybe<Array<SftMetricInput>>;
|
|
3258
3262
|
name: Scalars['String']['input'];
|
|
3259
3263
|
namespace: Scalars['String']['input'];
|
|
3260
3264
|
params?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3261
|
-
resources
|
|
3265
|
+
resources?: InputMaybe<ResourcesInput>;
|
|
3262
3266
|
serviceAccountName?: InputMaybe<Scalars['String']['input']>;
|
|
3263
3267
|
storage?: InputMaybe<PersistentVolumeClaimSpecInput>;
|
|
3264
3268
|
suspend?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3265
|
-
type
|
|
3269
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
3266
3270
|
};
|
|
3267
3271
|
export type UpdateVersionedDatasetInput = {
|
|
3268
3272
|
/** 传递方式同label */
|
|
@@ -7970,6 +7974,8 @@ export type ListSftQuery = {
|
|
|
7970
7974
|
description?: string | null;
|
|
7971
7975
|
creationTimestamp?: any | null;
|
|
7972
7976
|
completeTimestamp?: any | null;
|
|
7977
|
+
exportTimestamp?: any | null;
|
|
7978
|
+
exportCompleteTimestamp?: any | null;
|
|
7973
7979
|
type: string;
|
|
7974
7980
|
serviceAccountName: string;
|
|
7975
7981
|
suspend: boolean;
|
|
@@ -8092,6 +8098,8 @@ export type GetSftQuery = {
|
|
|
8092
8098
|
description?: string | null;
|
|
8093
8099
|
creationTimestamp?: any | null;
|
|
8094
8100
|
completeTimestamp?: any | null;
|
|
8101
|
+
exportTimestamp?: any | null;
|
|
8102
|
+
exportCompleteTimestamp?: any | null;
|
|
8095
8103
|
type: string;
|
|
8096
8104
|
serviceAccountName: string;
|
|
8097
8105
|
suspend: boolean;
|
|
@@ -8246,6 +8254,8 @@ export type CreateSftMutation = {
|
|
|
8246
8254
|
description?: string | null;
|
|
8247
8255
|
creationTimestamp?: any | null;
|
|
8248
8256
|
completeTimestamp?: any | null;
|
|
8257
|
+
exportTimestamp?: any | null;
|
|
8258
|
+
exportCompleteTimestamp?: any | null;
|
|
8249
8259
|
type: string;
|
|
8250
8260
|
serviceAccountName: string;
|
|
8251
8261
|
suspend: boolean;
|
|
@@ -8349,6 +8359,8 @@ export type UpdateSftMutation = {
|
|
|
8349
8359
|
description?: string | null;
|
|
8350
8360
|
creationTimestamp?: any | null;
|
|
8351
8361
|
completeTimestamp?: any | null;
|
|
8362
|
+
exportTimestamp?: any | null;
|
|
8363
|
+
exportCompleteTimestamp?: any | null;
|
|
8352
8364
|
type: string;
|
|
8353
8365
|
serviceAccountName: string;
|
|
8354
8366
|
suspend: boolean;
|
package/dist/esm/sdk.js
CHANGED
|
@@ -258,13 +258,13 @@ export var UpdateContentDocument = gql(_templateObject100 || (_templateObject100
|
|
|
258
258
|
export var DeleteContentDocument = gql(_templateObject101 || (_templateObject101 = _taggedTemplateLiteral(["\n mutation deleteContent($contentIDs: [String!]) {\n TuningDataSet {\n deleteContent(contentIDs: $contentIDs)\n }\n}\n "])));
|
|
259
259
|
export var DeleteVersionAllContentDocument = gql(_templateObject102 || (_templateObject102 = _taggedTemplateLiteral(["\n mutation deleteVersionAllContent($id: String!) {\n TuningDataSet {\n deleteVersionAllContent(id: $id)\n }\n}\n "])));
|
|
260
260
|
export var LoadVersionFilesDocument = gql(_templateObject103 || (_templateObject103 = _taggedTemplateLiteral(["\n mutation loadVersionFiles($id: String!, $files: [String!]) {\n TuningDataSet {\n loadVersionFiles(id: $id, files: $files)\n }\n}\n "])));
|
|
261
|
-
export var ListSftDocument = gql(_templateObject104 || (_templateObject104 = _taggedTemplateLiteral(["\n query listSFT($input: ListCommonInput!) {\n SFT {\n listSFT(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on SFT {\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n type\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n resources {\n limits\n requests\n }\n volumeName\n storageClassName\n volumeMode\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n datasets {\n ... on SFTDataset {\n source\n sourceID\n version\n id\n }\n }\n baseModel {\n kind\n name\n namespace\n displayName\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n metrics {\n metricKind\n metricName\n metricNameZH\n metricValue\n metricDefaultValue\n metricType\n metricValidValues\n metricDescription\n }\n resources {\n cpu\n memory\n nvidiaGPU\n }\n matchExpressions {\n key\n operator\n values\n }\n additionalEnvs\n exportName\n exportDescription\n exportPartSize\n }\n }\n }\n }\n}\n "])));
|
|
262
|
-
export var GetSftDocument = gql(_templateObject105 || (_templateObject105 = _taggedTemplateLiteral(["\n query getSFT($name: String!, $namespace: String!) {\n SFT {\n getSFT(name: $name, namespace: $namespace) {\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n type\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n resources {\n limits\n requests\n }\n volumeName\n storageClassName\n volumeMode\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n datasets {\n ... on SFTDataset {\n source\n sourceID\n version\n id\n }\n }\n baseModel {\n kind\n name\n namespace\n displayName\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n metrics {\n metricKind\n metricName\n metricNameZH\n metricValue\n metricDefaultValue\n metricType\n metricValidValues\n metricDescription\n }\n resources {\n cpu\n memory\n nvidiaGPU\n }\n matchExpressions {\n key\n operator\n values\n }\n additionalEnvs\n exportName\n exportDescription\n exportPartSize\n }\n }\n}\n "])));
|
|
261
|
+
export var ListSftDocument = gql(_templateObject104 || (_templateObject104 = _taggedTemplateLiteral(["\n query listSFT($input: ListCommonInput!) {\n SFT {\n listSFT(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on SFT {\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n exportTimestamp\n exportCompleteTimestamp\n type\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n resources {\n limits\n requests\n }\n volumeName\n storageClassName\n volumeMode\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n datasets {\n ... on SFTDataset {\n source\n sourceID\n version\n id\n }\n }\n baseModel {\n kind\n name\n namespace\n displayName\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n metrics {\n metricKind\n metricName\n metricNameZH\n metricValue\n metricDefaultValue\n metricType\n metricValidValues\n metricDescription\n }\n resources {\n cpu\n memory\n nvidiaGPU\n }\n matchExpressions {\n key\n operator\n values\n }\n additionalEnvs\n exportName\n exportDescription\n exportPartSize\n }\n }\n }\n }\n}\n "])));
|
|
262
|
+
export var GetSftDocument = gql(_templateObject105 || (_templateObject105 = _taggedTemplateLiteral(["\n query getSFT($name: String!, $namespace: String!) {\n SFT {\n getSFT(name: $name, namespace: $namespace) {\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n exportTimestamp\n exportCompleteTimestamp\n type\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n resources {\n limits\n requests\n }\n volumeName\n storageClassName\n volumeMode\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n datasets {\n ... on SFTDataset {\n source\n sourceID\n version\n id\n }\n }\n baseModel {\n kind\n name\n namespace\n displayName\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n metrics {\n metricKind\n metricName\n metricNameZH\n metricValue\n metricDefaultValue\n metricType\n metricValidValues\n metricDescription\n }\n resources {\n cpu\n memory\n nvidiaGPU\n }\n matchExpressions {\n key\n operator\n values\n }\n additionalEnvs\n exportName\n exportDescription\n exportPartSize\n }\n }\n}\n "])));
|
|
263
263
|
export var ListSftMetricDocument = gql(_templateObject106 || (_templateObject106 = _taggedTemplateLiteral(["\n query listSFTMetric($kind: String!) {\n SFT {\n listSFTMetric(kind: $kind) {\n ... on SFTMetric {\n metricKind\n metricName\n metricNameZH\n metricValue\n metricDefaultValue\n metricType\n metricValidValues\n metricDescription\n }\n }\n }\n}\n "])));
|
|
264
264
|
export var GetSftMonitorDocument = gql(_templateObject107 || (_templateObject107 = _taggedTemplateLiteral(["\n query getSFTMonitor($name: String!, $namespace: String!) {\n SFT {\n getSFTMonitor(name: $name, namespace: $namespace)\n }\n}\n "])));
|
|
265
265
|
export var GetExportedSftDocument = gql(_templateObject108 || (_templateObject108 = _taggedTemplateLiteral(["\n query getExportedSFT($name: String!, $namespace: String!) {\n SFT {\n getExportedSFT(name: $name, namespace: $namespace) {\n name\n displayName\n description\n partSize\n }\n }\n}\n "])));
|
|
266
|
-
export var CreateSftDocument = gql(_templateObject109 || (_templateObject109 = _taggedTemplateLiteral(["\n mutation createSFT($input: CreateSFTInput!) {\n SFT {\n createSFT(input: $input) {\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n type\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n resources {\n limits\n requests\n }\n volumeName\n storageClassName\n volumeMode\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n datasets {\n ... on SFTDataset {\n source\n sourceID\n version\n id\n }\n }\n baseModel {\n kind\n name\n namespace\n displayName\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n metrics {\n metricKind\n metricName\n metricNameZH\n metricValue\n metricDefaultValue\n metricType\n metricValidValues\n metricDescription\n }\n resources {\n cpu\n memory\n nvidiaGPU\n }\n matchExpressions {\n key\n operator\n values\n }\n additionalEnvs\n }\n }\n}\n "])));
|
|
267
|
-
export var UpdateSftDocument = gql(_templateObject110 || (_templateObject110 = _taggedTemplateLiteral(["\n mutation updateSFT($input: UpdateSFTInput!) {\n SFT {\n updateSFT(input: $input) {\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n type\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n resources {\n limits\n requests\n }\n volumeName\n storageClassName\n volumeMode\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n datasets {\n ... on SFTDataset {\n source\n sourceID\n version\n id\n }\n }\n baseModel {\n kind\n name\n namespace\n displayName\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n metrics {\n metricKind\n metricName\n metricNameZH\n metricValue\n metricDefaultValue\n metricType\n metricValidValues\n metricDescription\n }\n resources {\n cpu\n memory\n nvidiaGPU\n }\n matchExpressions {\n key\n operator\n values\n }\n additionalEnvs\n }\n }\n}\n "])));
|
|
266
|
+
export var CreateSftDocument = gql(_templateObject109 || (_templateObject109 = _taggedTemplateLiteral(["\n mutation createSFT($input: CreateSFTInput!) {\n SFT {\n createSFT(input: $input) {\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n exportTimestamp\n exportCompleteTimestamp\n type\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n resources {\n limits\n requests\n }\n volumeName\n storageClassName\n volumeMode\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n datasets {\n ... on SFTDataset {\n source\n sourceID\n version\n id\n }\n }\n baseModel {\n kind\n name\n namespace\n displayName\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n metrics {\n metricKind\n metricName\n metricNameZH\n metricValue\n metricDefaultValue\n metricType\n metricValidValues\n metricDescription\n }\n resources {\n cpu\n memory\n nvidiaGPU\n }\n matchExpressions {\n key\n operator\n values\n }\n additionalEnvs\n }\n }\n}\n "])));
|
|
267
|
+
export var UpdateSftDocument = gql(_templateObject110 || (_templateObject110 = _taggedTemplateLiteral(["\n mutation updateSFT($input: UpdateSFTInput!) {\n SFT {\n updateSFT(input: $input) {\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n exportTimestamp\n exportCompleteTimestamp\n type\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n resources {\n limits\n requests\n }\n volumeName\n storageClassName\n volumeMode\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n datasets {\n ... on SFTDataset {\n source\n sourceID\n version\n id\n }\n }\n baseModel {\n kind\n name\n namespace\n displayName\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n metrics {\n metricKind\n metricName\n metricNameZH\n metricValue\n metricDefaultValue\n metricType\n metricValidValues\n metricDescription\n }\n resources {\n cpu\n memory\n nvidiaGPU\n }\n matchExpressions {\n key\n operator\n values\n }\n additionalEnvs\n }\n }\n}\n "])));
|
|
268
268
|
export var DeleteSftDocument = gql(_templateObject111 || (_templateObject111 = _taggedTemplateLiteral(["\n mutation deleteSFT($input: DeleteCommonInput!) {\n SFT {\n deleteSFT(input: $input)\n }\n}\n "])));
|
|
269
269
|
export var ExportSftDocument = gql(_templateObject112 || (_templateObject112 = _taggedTemplateLiteral(["\n mutation exportSFT($name: String!, $namespace: String!, $input: ExportSFTInput!) {\n SFT {\n exportSFT(name: $name, namespace: $namespace, input: $input)\n }\n}\n "])));
|
|
270
270
|
export var CreateVersionedDatasetDocument = gql(_templateObject113 || (_templateObject113 = _taggedTemplateLiteral(["\n mutation createVersionedDataset($input: CreateVersionedDatasetInput!) {\n VersionedDataset {\n createVersionedDataset(input: $input) {\n name\n displayName\n creator\n namespace\n version\n updateTimestamp\n creationTimestamp\n released\n syncStatus\n dataProcessStatus\n }\n }\n}\n "])));
|