oci-datascience 2.95.2 → 2.97.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/lib/client.d.ts +9 -0
- package/lib/client.js +58 -0
- package/lib/client.js.map +1 -1
- package/lib/model/backup-operation-details.d.ts +35 -0
- package/lib/model/backup-operation-details.js +30 -0
- package/lib/model/backup-operation-details.js.map +1 -0
- package/lib/model/backup-setting.d.ts +35 -0
- package/lib/model/backup-setting.js +30 -0
- package/lib/model/backup-setting.js.map +1 -0
- package/lib/model/create-model-details.d.ts +2 -0
- package/lib/model/create-model-details.js +12 -0
- package/lib/model/create-model-details.js.map +1 -1
- package/lib/model/index.d.ts +12 -0
- package/lib/model/index.js +16 -4
- package/lib/model/index.js.map +1 -1
- package/lib/model/model-setting-action-state.d.ts +30 -0
- package/lib/model/model-setting-action-state.js +41 -0
- package/lib/model/model-setting-action-state.js.map +1 -0
- package/lib/model/model-setting-customer-notification-type.d.ts +31 -0
- package/lib/model/model-setting-customer-notification-type.js +42 -0
- package/lib/model/model-setting-customer-notification-type.js.map +1 -0
- package/lib/model/model-summary.d.ts +4 -0
- package/lib/model/model-summary.js.map +1 -1
- package/lib/model/model.d.ts +8 -0
- package/lib/model/model.js +24 -0
- package/lib/model/model.js.map +1 -1
- package/lib/model/retention-operation-details.d.ts +47 -0
- package/lib/model/retention-operation-details.js +30 -0
- package/lib/model/retention-operation-details.js.map +1 -0
- package/lib/model/retention-setting.d.ts +35 -0
- package/lib/model/retention-setting.js +30 -0
- package/lib/model/retention-setting.js.map +1 -0
- package/lib/model/update-model-details.d.ts +2 -0
- package/lib/model/update-model-details.js +12 -0
- package/lib/model/update-model-details.js.map +1 -1
- package/lib/model/work-request-operation-type.d.ts +1 -0
- package/lib/model/work-request-operation-type.js +1 -0
- package/lib/model/work-request-operation-type.js.map +1 -1
- package/lib/request/index.d.ts +2 -0
- package/lib/request/list-work-requests-request.d.ts +2 -1
- package/lib/request/list-work-requests-request.js +1 -0
- package/lib/request/list-work-requests-request.js.map +1 -1
- package/lib/request/restore-archived-model-artifact-request.d.ts +45 -0
- package/lib/request/restore-archived-model-artifact-request.js +15 -0
- package/lib/request/restore-archived-model-artifact-request.js.map +1 -0
- package/lib/response/index.d.ts +2 -0
- package/lib/response/restore-archived-model-artifact-response.d.ts +20 -0
- package/lib/response/restore-archived-model-artifact-response.js +15 -0
- package/lib/response/restore-archived-model-artifact-response.js.map +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Data Science API
|
|
3
|
+
* Use the Data Science API to organize your data science work, access data and computing resources, and build, train, deploy and manage models and model deployments. For more information, see [Data Science](https://docs.oracle.com/iaas/data-science/using/data-science.htm).
|
|
4
|
+
|
|
5
|
+
* OpenAPI spec version: 20190101
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
import * as model from "../model";
|
|
15
|
+
/**
|
|
16
|
+
* Retention operation details for the model.
|
|
17
|
+
*/
|
|
18
|
+
export interface RetentionOperationDetails {
|
|
19
|
+
/**
|
|
20
|
+
* The archival status of model.
|
|
21
|
+
*/
|
|
22
|
+
"archiveState": model.ModelSettingActionState;
|
|
23
|
+
/**
|
|
24
|
+
* The archival state details of the model.
|
|
25
|
+
*/
|
|
26
|
+
"archiveStateDetails": string;
|
|
27
|
+
/**
|
|
28
|
+
* The estimated archival time of the model based on the provided retention setting.
|
|
29
|
+
*/
|
|
30
|
+
"timeArchivalScheduled": Date;
|
|
31
|
+
/**
|
|
32
|
+
* The deletion status of the archived model.
|
|
33
|
+
*/
|
|
34
|
+
"deleteState": model.ModelSettingActionState;
|
|
35
|
+
/**
|
|
36
|
+
* The deletion status details of the archived model.
|
|
37
|
+
*/
|
|
38
|
+
"deleteStateDetails": string;
|
|
39
|
+
/**
|
|
40
|
+
* The estimated deletion time of the model based on the provided retention setting.
|
|
41
|
+
*/
|
|
42
|
+
"timeDeletionScheduled": Date;
|
|
43
|
+
}
|
|
44
|
+
export declare namespace RetentionOperationDetails {
|
|
45
|
+
function getJsonObj(obj: RetentionOperationDetails): object;
|
|
46
|
+
function getDeserializedJsonObj(obj: RetentionOperationDetails): object;
|
|
47
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Data Science API
|
|
4
|
+
* Use the Data Science API to organize your data science work, access data and computing resources, and build, train, deploy and manage models and model deployments. For more information, see [Data Science](https://docs.oracle.com/iaas/data-science/using/data-science.htm).
|
|
5
|
+
|
|
6
|
+
* OpenAPI spec version: 20190101
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*
|
|
12
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
13
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.RetentionOperationDetails = void 0;
|
|
17
|
+
var RetentionOperationDetails;
|
|
18
|
+
(function (RetentionOperationDetails) {
|
|
19
|
+
function getJsonObj(obj) {
|
|
20
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
21
|
+
return jsonObj;
|
|
22
|
+
}
|
|
23
|
+
RetentionOperationDetails.getJsonObj = getJsonObj;
|
|
24
|
+
function getDeserializedJsonObj(obj) {
|
|
25
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
26
|
+
return jsonObj;
|
|
27
|
+
}
|
|
28
|
+
RetentionOperationDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
29
|
+
})(RetentionOperationDetails = exports.RetentionOperationDetails || (exports.RetentionOperationDetails = {}));
|
|
30
|
+
//# sourceMappingURL=retention-operation-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retention-operation-details.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/retention-operation-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAmCH,IAAiB,yBAAyB,CAWzC;AAXD,WAAiB,yBAAyB;IACxC,SAAgB,UAAU,CAAC,GAA8B;QACvD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA8B;QACnE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAWzC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Data Science API
|
|
3
|
+
* Use the Data Science API to organize your data science work, access data and computing resources, and build, train, deploy and manage models and model deployments. For more information, see [Data Science](https://docs.oracle.com/iaas/data-science/using/data-science.htm).
|
|
4
|
+
|
|
5
|
+
* OpenAPI spec version: 20190101
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
import * as model from "../model";
|
|
15
|
+
/**
|
|
16
|
+
* Retention setting details of the model.
|
|
17
|
+
*/
|
|
18
|
+
export interface RetentionSetting {
|
|
19
|
+
/**
|
|
20
|
+
* Number of days after which the model will be archived. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
21
|
+
*/
|
|
22
|
+
"archiveAfterDays": number;
|
|
23
|
+
/**
|
|
24
|
+
* Number of days after which the archived model will be deleted. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
25
|
+
*/
|
|
26
|
+
"deleteAfterDays"?: number;
|
|
27
|
+
/**
|
|
28
|
+
* Customer notification options on success/failure of archival, deletion events.
|
|
29
|
+
*/
|
|
30
|
+
"customerNotificationType"?: model.ModelSettingCustomerNotificationType;
|
|
31
|
+
}
|
|
32
|
+
export declare namespace RetentionSetting {
|
|
33
|
+
function getJsonObj(obj: RetentionSetting): object;
|
|
34
|
+
function getDeserializedJsonObj(obj: RetentionSetting): object;
|
|
35
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Data Science API
|
|
4
|
+
* Use the Data Science API to organize your data science work, access data and computing resources, and build, train, deploy and manage models and model deployments. For more information, see [Data Science](https://docs.oracle.com/iaas/data-science/using/data-science.htm).
|
|
5
|
+
|
|
6
|
+
* OpenAPI spec version: 20190101
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*
|
|
12
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
13
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.RetentionSetting = void 0;
|
|
17
|
+
var RetentionSetting;
|
|
18
|
+
(function (RetentionSetting) {
|
|
19
|
+
function getJsonObj(obj) {
|
|
20
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
21
|
+
return jsonObj;
|
|
22
|
+
}
|
|
23
|
+
RetentionSetting.getJsonObj = getJsonObj;
|
|
24
|
+
function getDeserializedJsonObj(obj) {
|
|
25
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
26
|
+
return jsonObj;
|
|
27
|
+
}
|
|
28
|
+
RetentionSetting.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
29
|
+
})(RetentionSetting = exports.RetentionSetting || (exports.RetentionSetting = {}));
|
|
30
|
+
//# sourceMappingURL=retention-setting.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retention-setting.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/retention-setting.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAuBH,IAAiB,gBAAgB,CAWhC;AAXD,WAAiB,gBAAgB;IAC/B,SAAgB,UAAU,CAAC,GAAqB;QAC9C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,2BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAqB;QAC1D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,uCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAWhC"}
|
|
@@ -61,6 +61,8 @@ export interface UpdateModelDetails {
|
|
|
61
61
|
* The version label can add an additional description of the lifecycle state of the model or the application using/training the model.
|
|
62
62
|
*/
|
|
63
63
|
"versionLabel"?: string;
|
|
64
|
+
"retentionSetting"?: model.RetentionSetting;
|
|
65
|
+
"backupSetting"?: model.BackupSetting;
|
|
64
66
|
}
|
|
65
67
|
export declare namespace UpdateModelDetails {
|
|
66
68
|
function getJsonObj(obj: UpdateModelDetails): object;
|
|
@@ -47,6 +47,12 @@ var UpdateModelDetails;
|
|
|
47
47
|
? obj.definedMetadataList.map(item => {
|
|
48
48
|
return model.Metadata.getJsonObj(item);
|
|
49
49
|
})
|
|
50
|
+
: undefined,
|
|
51
|
+
"retentionSetting": obj.retentionSetting
|
|
52
|
+
? model.RetentionSetting.getJsonObj(obj.retentionSetting)
|
|
53
|
+
: undefined,
|
|
54
|
+
"backupSetting": obj.backupSetting
|
|
55
|
+
? model.BackupSetting.getJsonObj(obj.backupSetting)
|
|
50
56
|
: undefined
|
|
51
57
|
});
|
|
52
58
|
return jsonObj;
|
|
@@ -63,6 +69,12 @@ var UpdateModelDetails;
|
|
|
63
69
|
? obj.definedMetadataList.map(item => {
|
|
64
70
|
return model.Metadata.getDeserializedJsonObj(item);
|
|
65
71
|
})
|
|
72
|
+
: undefined,
|
|
73
|
+
"retentionSetting": obj.retentionSetting
|
|
74
|
+
? model.RetentionSetting.getDeserializedJsonObj(obj.retentionSetting)
|
|
75
|
+
: undefined,
|
|
76
|
+
"backupSetting": obj.backupSetting
|
|
77
|
+
? model.BackupSetting.getDeserializedJsonObj(obj.backupSetting)
|
|
66
78
|
: undefined
|
|
67
79
|
});
|
|
68
80
|
return jsonObj;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-model-details.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/update-model-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"update-model-details.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/update-model-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAkDlC,IAAiB,kBAAkB,CAqDlC;AArDD,WAAiB,kBAAkB;IACjC,SAAgB,UAAU,CAAC,GAAuB;QAChD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,oBAAoB,EAAE,GAAG,CAAC,kBAAkB;gBAC1C,CAAC,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAChC,OAAO,KAAK,CAAC,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACzC,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YACb,qBAAqB,EAAE,GAAG,CAAC,mBAAmB;gBAC5C,CAAC,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACjC,OAAO,KAAK,CAAC,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACzC,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YAEb,kBAAkB,EAAE,GAAG,CAAC,gBAAgB;gBACtC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,UAAU,CAAC,GAAG,CAAC,gBAAgB,CAAC;gBACzD,CAAC,CAAC,SAAS;YACb,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,UAAU,CAAC,GAAG,CAAC,aAAa,CAAC;gBACnD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAzBe,6BAAU,aAyBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAuB;QAC5D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,oBAAoB,EAAE,GAAG,CAAC,kBAAkB;gBAC1C,CAAC,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAChC,OAAO,KAAK,CAAC,QAAQ,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACrD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YACb,qBAAqB,EAAE,GAAG,CAAC,mBAAmB;gBAC5C,CAAC,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACjC,OAAO,KAAK,CAAC,QAAQ,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACrD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YAEb,kBAAkB,EAAE,GAAG,CAAC,gBAAgB;gBACtC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,sBAAsB,CAAC,GAAG,CAAC,gBAAgB,CAAC;gBACrE,CAAC,CAAC,SAAS;YACb,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,sBAAsB,CAAC,GAAG,CAAC,aAAa,CAAC;gBAC/D,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAzBe,yCAAsB,yBAyBrC,CAAA;AACH,CAAC,EArDgB,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAqDlC"}
|
|
@@ -39,6 +39,7 @@ export declare enum WorkRequestOperationType {
|
|
|
39
39
|
PrivateEndpointDelete = "PRIVATE_ENDPOINT_DELETE",
|
|
40
40
|
PrivateEndpointMove = "PRIVATE_ENDPOINT_MOVE",
|
|
41
41
|
PrivateEndpointUpdate = "PRIVATE_ENDPOINT_UPDATE",
|
|
42
|
+
RestoreArchivedModel = "RESTORE_ARCHIVED_MODEL",
|
|
42
43
|
/**
|
|
43
44
|
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
44
45
|
* version of the SDK.
|
|
@@ -43,6 +43,7 @@ var WorkRequestOperationType;
|
|
|
43
43
|
WorkRequestOperationType["PrivateEndpointDelete"] = "PRIVATE_ENDPOINT_DELETE";
|
|
44
44
|
WorkRequestOperationType["PrivateEndpointMove"] = "PRIVATE_ENDPOINT_MOVE";
|
|
45
45
|
WorkRequestOperationType["PrivateEndpointUpdate"] = "PRIVATE_ENDPOINT_UPDATE";
|
|
46
|
+
WorkRequestOperationType["RestoreArchivedModel"] = "RESTORE_ARCHIVED_MODEL";
|
|
46
47
|
/**
|
|
47
48
|
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
48
49
|
* version of the SDK.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"work-request-operation-type.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/work-request-operation-type.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAKH;;IAEI;AACJ,IAAY,
|
|
1
|
+
{"version":3,"file":"work-request-operation-type.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/work-request-operation-type.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAKH;;IAEI;AACJ,IAAY,wBAgCX;AAhCD,WAAY,wBAAwB;IAClC,6EAAiD,CAAA;IACjD,6EAAiD,CAAA;IACjD,iFAAqD,CAAA;IACrD,qFAAyD,CAAA;IACzD,4EAAgD,CAAA;IAChD,yEAA6C,CAAA;IAC7C,yEAA6C,CAAA;IAC7C,6EAAiD,CAAA;IACjD,6EAAiD,CAAA;IACjD,iFAAqD,CAAA;IACrD,qFAAyD,CAAA;IACzD,6EAAiD,CAAA;IACjD,4DAAgC,CAAA;IAChC,oEAAwC,CAAA;IACxC,oDAAwB,CAAA;IACxB,8DAAkC,CAAA;IAClC,8DAAkC,CAAA;IAClC,qEAAyC,CAAA;IACzC,qEAAyC,CAAA;IACzC,qEAAyC,CAAA;IACzC,6EAAiD,CAAA;IACjD,6EAAiD,CAAA;IACjD,yEAA6C,CAAA;IAC7C,6EAAiD,CAAA;IACjD,2EAA+C,CAAA;IAE/C;;;OAGG;IACH,0DAA8B,CAAA;AAChC,CAAC,EAhCW,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAgCnC;AAED,WAAiB,wBAAwB;IACvC,SAAgB,UAAU,CAAC,GAA6B;QACtD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,mCAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA6B;QAClE,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,+CAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAOxC"}
|
package/lib/request/index.d.ts
CHANGED
|
@@ -171,6 +171,8 @@ import * as ListWorkRequestLogsRequest from "./list-work-request-logs-request";
|
|
|
171
171
|
export import ListWorkRequestLogsRequest = ListWorkRequestLogsRequest.ListWorkRequestLogsRequest;
|
|
172
172
|
import * as ListWorkRequestsRequest from "./list-work-requests-request";
|
|
173
173
|
export import ListWorkRequestsRequest = ListWorkRequestsRequest.ListWorkRequestsRequest;
|
|
174
|
+
import * as RestoreArchivedModelArtifactRequest from "./restore-archived-model-artifact-request";
|
|
175
|
+
export import RestoreArchivedModelArtifactRequest = RestoreArchivedModelArtifactRequest.RestoreArchivedModelArtifactRequest;
|
|
174
176
|
import * as UpdateDataSciencePrivateEndpointRequest from "./update-data-science-private-endpoint-request";
|
|
175
177
|
export import UpdateDataSciencePrivateEndpointRequest = UpdateDataSciencePrivateEndpointRequest.UpdateDataSciencePrivateEndpointRequest;
|
|
176
178
|
import * as UpdateJobRequest from "./update-job-request";
|
|
@@ -91,7 +91,8 @@ export declare namespace ListWorkRequestsRequest {
|
|
|
91
91
|
PrivateEndpointCreate = "PRIVATE_ENDPOINT_CREATE",
|
|
92
92
|
PrivateEndpointDelete = "PRIVATE_ENDPOINT_DELETE",
|
|
93
93
|
PrivateEndpointMove = "PRIVATE_ENDPOINT_MOVE",
|
|
94
|
-
PrivateEndpointUpdate = "PRIVATE_ENDPOINT_UPDATE"
|
|
94
|
+
PrivateEndpointUpdate = "PRIVATE_ENDPOINT_UPDATE",
|
|
95
|
+
RestoreArchivedModel = "RESTORE_ARCHIVED_MODEL"
|
|
95
96
|
}
|
|
96
97
|
enum Status {
|
|
97
98
|
Accepted = "ACCEPTED",
|
|
@@ -41,6 +41,7 @@ var ListWorkRequestsRequest;
|
|
|
41
41
|
OperationType["PrivateEndpointDelete"] = "PRIVATE_ENDPOINT_DELETE";
|
|
42
42
|
OperationType["PrivateEndpointMove"] = "PRIVATE_ENDPOINT_MOVE";
|
|
43
43
|
OperationType["PrivateEndpointUpdate"] = "PRIVATE_ENDPOINT_UPDATE";
|
|
44
|
+
OperationType["RestoreArchivedModel"] = "RESTORE_ARCHIVED_MODEL";
|
|
44
45
|
})(OperationType = ListWorkRequestsRequest.OperationType || (ListWorkRequestsRequest.OperationType = {}));
|
|
45
46
|
let Status;
|
|
46
47
|
(function (Status) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-work-requests-request.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/request/list-work-requests-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AA6DH,IAAiB,uBAAuB,
|
|
1
|
+
{"version":3,"file":"list-work-requests-request.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/request/list-work-requests-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AA6DH,IAAiB,uBAAuB,CAgDvC;AAhDD,WAAiB,uBAAuB;IACtC,IAAY,aA0BX;IA1BD,WAAY,aAAa;QACvB,kEAAiD,CAAA;QACjD,kEAAiD,CAAA;QACjD,sEAAqD,CAAA;QACrD,0EAAyD,CAAA;QACzD,iEAAgD,CAAA;QAChD,8DAA6C,CAAA;QAC7C,8DAA6C,CAAA;QAC7C,kEAAiD,CAAA;QACjD,kEAAiD,CAAA;QACjD,sEAAqD,CAAA;QACrD,0EAAyD,CAAA;QACzD,kEAAiD,CAAA;QACjD,iDAAgC,CAAA;QAChC,yDAAwC,CAAA;QACxC,yCAAwB,CAAA;QACxB,mDAAkC,CAAA;QAClC,mDAAkC,CAAA;QAClC,0DAAyC,CAAA;QACzC,0DAAyC,CAAA;QACzC,0DAAyC,CAAA;QACzC,kEAAiD,CAAA;QACjD,kEAAiD,CAAA;QACjD,8DAA6C,CAAA;QAC7C,kEAAiD,CAAA;QACjD,gEAA+C,CAAA;IACjD,CAAC,EA1BW,aAAa,GAAb,qCAAa,KAAb,qCAAa,QA0BxB;IAED,IAAY,MAOX;IAPD,WAAY,MAAM;QAChB,+BAAqB,CAAA;QACrB,oCAA0B,CAAA;QAC1B,2BAAiB,CAAA;QACjB,iCAAuB,CAAA;QACvB,iCAAuB,CAAA;QACvB,+BAAqB,CAAA;IACvB,CAAC,EAPW,MAAM,GAAN,8BAAM,KAAN,8BAAM,QAOjB;IAED,IAAY,SAGX;IAHD,WAAY,SAAS;QACnB,wBAAW,CAAA;QACX,0BAAa,CAAA;IACf,CAAC,EAHW,SAAS,GAAT,iCAAS,KAAT,iCAAS,QAGpB;IAED,IAAY,MAIX;IAJD,WAAY,MAAM;QAChB,yCAA+B,CAAA;QAC/B,2BAAiB,CAAA;QACjB,uCAA6B,CAAA;IAC/B,CAAC,EAJW,MAAM,GAAN,8BAAM,KAAN,8BAAM,QAIjB;AACH,CAAC,EAhDgB,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAgDvC"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20190101
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import common = require("oci-common");
|
|
14
|
+
/**
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/datascience/RestoreArchivedModelArtifact.ts.html |here} to see how to use RestoreArchivedModelArtifactRequest.
|
|
16
|
+
*/
|
|
17
|
+
export interface RestoreArchivedModelArtifactRequest extends common.BaseRequest {
|
|
18
|
+
/**
|
|
19
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model.
|
|
20
|
+
*/
|
|
21
|
+
"modelId": string;
|
|
22
|
+
/**
|
|
23
|
+
* Duration in hours for which the archived model is available for access.
|
|
24
|
+
*/
|
|
25
|
+
"restoreModelForHoursSpecified"?: number;
|
|
26
|
+
/**
|
|
27
|
+
* Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, then provide the request ID.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
"opcRequestId"?: string;
|
|
31
|
+
/**
|
|
32
|
+
* A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations. For example, if a resource has been deleted and purged from the system, then a retry of the original creation request might be rejected.
|
|
33
|
+
*
|
|
34
|
+
*/
|
|
35
|
+
"opcRetryToken"?: string;
|
|
36
|
+
/**
|
|
37
|
+
* For optimistic concurrency control. In the PUT or DELETE call
|
|
38
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
39
|
+
* etag from a previous GET or POST response for that resource.
|
|
40
|
+
* The resource is updated or deleted only if the {@code etag} you
|
|
41
|
+
* provide matches the resource's current {@code etag} value.
|
|
42
|
+
*
|
|
43
|
+
*/
|
|
44
|
+
"ifMatch"?: string;
|
|
45
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20190101
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=restore-archived-model-artifact-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"restore-archived-model-artifact-request.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/request/restore-archived-model-artifact-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/lib/response/index.d.ts
CHANGED
|
@@ -171,6 +171,8 @@ import * as ListWorkRequestLogsResponse from "./list-work-request-logs-response"
|
|
|
171
171
|
export import ListWorkRequestLogsResponse = ListWorkRequestLogsResponse.ListWorkRequestLogsResponse;
|
|
172
172
|
import * as ListWorkRequestsResponse from "./list-work-requests-response";
|
|
173
173
|
export import ListWorkRequestsResponse = ListWorkRequestsResponse.ListWorkRequestsResponse;
|
|
174
|
+
import * as RestoreArchivedModelArtifactResponse from "./restore-archived-model-artifact-response";
|
|
175
|
+
export import RestoreArchivedModelArtifactResponse = RestoreArchivedModelArtifactResponse.RestoreArchivedModelArtifactResponse;
|
|
174
176
|
import * as UpdateDataSciencePrivateEndpointResponse from "./update-data-science-private-endpoint-response";
|
|
175
177
|
export import UpdateDataSciencePrivateEndpointResponse = UpdateDataSciencePrivateEndpointResponse.UpdateDataSciencePrivateEndpointResponse;
|
|
176
178
|
import * as UpdateJobResponse from "./update-job-response";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20190101
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
export interface RestoreArchivedModelArtifactResponse {
|
|
14
|
+
/**
|
|
15
|
+
* Unique Oracle assigned identifier for the request. If you need to contact
|
|
16
|
+
* Oracle about a particular request, then provide the request ID.
|
|
17
|
+
*
|
|
18
|
+
*/
|
|
19
|
+
"opcRequestId": string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20190101
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=restore-archived-model-artifact-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"restore-archived-model-artifact-response.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/response/restore-archived-model-artifact-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-datascience",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.97.0",
|
|
4
4
|
"description": "OCI NodeJS client for Data Science Service",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.97.0",
|
|
19
|
+
"oci-workrequests": "2.97.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|