oci-datascience 2.50.2 → 2.50.3
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 +279 -69
- package/lib/client.js +1290 -156
- package/lib/client.js.map +1 -1
- package/lib/datascience-waiter.d.ts +16 -0
- package/lib/datascience-waiter.js +24 -0
- package/lib/datascience-waiter.js.map +1 -1
- package/lib/model/change-pipeline-compartment-details.d.ts +27 -0
- package/lib/model/change-pipeline-compartment-details.js +30 -0
- package/lib/model/change-pipeline-compartment-details.js.map +1 -0
- package/lib/model/change-pipeline-run-compartment-details.d.ts +27 -0
- package/lib/model/change-pipeline-run-compartment-details.js +30 -0
- package/lib/model/change-pipeline-run-compartment-details.js.map +1 -0
- package/lib/model/create-pipeline-details.d.ts +64 -0
- package/lib/model/create-pipeline-details.js +80 -0
- package/lib/model/create-pipeline-details.js.map +1 -0
- package/lib/model/create-pipeline-run-details.d.ts +73 -0
- package/lib/model/create-pipeline-run-details.js +74 -0
- package/lib/model/create-pipeline-run-details.js.map +1 -0
- package/lib/model/index.d.ts +58 -0
- package/lib/model/index.js +61 -2
- package/lib/model/index.js.map +1 -1
- package/lib/model/pipeline-configuration-details.d.ts +23 -0
- package/lib/model/pipeline-configuration-details.js +69 -0
- package/lib/model/pipeline-configuration-details.js.map +1 -0
- package/lib/model/pipeline-custom-script-step-details.d.ts +30 -0
- package/lib/model/pipeline-custom-script-step-details.js +63 -0
- package/lib/model/pipeline-custom-script-step-details.js.map +1 -0
- package/lib/model/pipeline-custom-script-step-run.d.ts +25 -0
- package/lib/model/pipeline-custom-script-step-run.js +55 -0
- package/lib/model/pipeline-custom-script-step-run.js.map +1 -0
- package/lib/model/pipeline-custom-script-step-update-details.d.ts +25 -0
- package/lib/model/pipeline-custom-script-step-update-details.js +55 -0
- package/lib/model/pipeline-custom-script-step-update-details.js.map +1 -0
- package/lib/model/pipeline-default-configuration-details.d.ts +40 -0
- package/lib/model/pipeline-default-configuration-details.js +55 -0
- package/lib/model/pipeline-default-configuration-details.js.map +1 -0
- package/lib/model/pipeline-infrastructure-configuration-details.d.ts +33 -0
- package/lib/model/pipeline-infrastructure-configuration-details.js +58 -0
- package/lib/model/pipeline-infrastructure-configuration-details.js.map +1 -0
- package/lib/model/pipeline-lifecycle-state.d.ts +32 -0
- package/lib/model/pipeline-lifecycle-state.js +43 -0
- package/lib/model/pipeline-lifecycle-state.js.map +1 -0
- package/lib/model/pipeline-log-configuration-details.d.ts +38 -0
- package/lib/model/pipeline-log-configuration-details.js +30 -0
- package/lib/model/pipeline-log-configuration-details.js.map +1 -0
- package/lib/model/pipeline-ml-job-step-details.d.ts +29 -0
- package/lib/model/pipeline-ml-job-step-details.js +55 -0
- package/lib/model/pipeline-ml-job-step-details.js.map +1 -0
- package/lib/model/pipeline-ml-job-step-run.d.ts +29 -0
- package/lib/model/pipeline-ml-job-step-run.js +53 -0
- package/lib/model/pipeline-ml-job-step-run.js.map +1 -0
- package/lib/model/pipeline-ml-job-step-update-details.d.ts +25 -0
- package/lib/model/pipeline-ml-job-step-update-details.js +55 -0
- package/lib/model/pipeline-ml-job-step-update-details.js.map +1 -0
- package/lib/model/pipeline-run-lifecycle-state.d.ts +35 -0
- package/lib/model/pipeline-run-lifecycle-state.js +46 -0
- package/lib/model/pipeline-run-lifecycle-state.js.map +1 -0
- package/lib/model/pipeline-run-log-details.d.ts +30 -0
- package/lib/model/pipeline-run-log-details.js +30 -0
- package/lib/model/pipeline-run-log-details.js.map +1 -0
- package/lib/model/pipeline-run-summary.d.ts +99 -0
- package/lib/model/pipeline-run-summary.js +30 -0
- package/lib/model/pipeline-run-summary.js.map +1 -0
- package/lib/model/pipeline-run.d.ts +111 -0
- package/lib/model/pipeline-run.js +96 -0
- package/lib/model/pipeline-run.js.map +1 -0
- package/lib/model/pipeline-shape-config-details.d.ts +32 -0
- package/lib/model/pipeline-shape-config-details.js +30 -0
- package/lib/model/pipeline-shape-config-details.js.map +1 -0
- package/lib/model/pipeline-step-configuration-details.d.ts +36 -0
- package/lib/model/pipeline-step-configuration-details.js +30 -0
- package/lib/model/pipeline-step-configuration-details.js.map +1 -0
- package/lib/model/pipeline-step-details.d.ts +37 -0
- package/lib/model/pipeline-step-details.js +81 -0
- package/lib/model/pipeline-step-details.js.map +1 -0
- package/lib/model/pipeline-step-override-details.d.ts +28 -0
- package/lib/model/pipeline-step-override-details.js +58 -0
- package/lib/model/pipeline-step-override-details.js.map +1 -0
- package/lib/model/pipeline-step-run.d.ts +59 -0
- package/lib/model/pipeline-step-run.js +90 -0
- package/lib/model/pipeline-step-run.js.map +1 -0
- package/lib/model/pipeline-step-update-details.d.ts +33 -0
- package/lib/model/pipeline-step-update-details.js +81 -0
- package/lib/model/pipeline-step-update-details.js.map +1 -0
- package/lib/model/pipeline-summary.d.ts +87 -0
- package/lib/model/pipeline-summary.js +30 -0
- package/lib/model/pipeline-summary.js.map +1 -0
- package/lib/model/pipeline.d.ts +102 -0
- package/lib/model/pipeline.js +80 -0
- package/lib/model/pipeline.js.map +1 -0
- package/lib/model/update-pipeline-details.d.ts +55 -0
- package/lib/model/update-pipeline-details.js +74 -0
- package/lib/model/update-pipeline-details.js.map +1 -0
- package/lib/model/update-pipeline-run-details.d.ts +44 -0
- package/lib/model/update-pipeline-run-details.js +30 -0
- package/lib/model/update-pipeline-run-details.js.map +1 -0
- package/lib/model/work-request-operation-type.d.ts +5 -0
- package/lib/model/work-request-operation-type.js +5 -0
- package/lib/model/work-request-operation-type.js.map +1 -1
- package/lib/request/activate-model-deployment-request.d.ts +1 -1
- package/lib/request/activate-model-request.d.ts +1 -1
- package/lib/request/activate-notebook-session-request.d.ts +1 -1
- package/lib/request/cancel-job-run-request.d.ts +1 -1
- package/lib/request/cancel-pipeline-run-request.d.ts +41 -0
- package/lib/request/cancel-pipeline-run-request.js +15 -0
- package/lib/request/cancel-pipeline-run-request.js.map +1 -0
- package/lib/request/cancel-work-request-request.d.ts +1 -1
- package/lib/request/change-job-compartment-request.d.ts +1 -1
- package/lib/request/change-job-run-compartment-request.d.ts +1 -1
- package/lib/request/change-model-compartment-request.d.ts +1 -1
- package/lib/request/change-model-deployment-compartment-request.d.ts +1 -1
- package/lib/request/change-model-version-set-compartment-request.d.ts +1 -1
- package/lib/request/change-notebook-session-compartment-request.d.ts +1 -1
- package/lib/request/change-pipeline-compartment-request.d.ts +41 -0
- package/lib/request/change-pipeline-compartment-request.js +15 -0
- package/lib/request/change-pipeline-compartment-request.js.map +1 -0
- package/lib/request/change-pipeline-run-compartment-request.d.ts +41 -0
- package/lib/request/change-pipeline-run-compartment-request.js +15 -0
- package/lib/request/change-pipeline-run-compartment-request.js.map +1 -0
- package/lib/request/change-project-compartment-request.d.ts +1 -1
- package/lib/request/create-job-artifact-request.d.ts +1 -1
- package/lib/request/create-job-request.d.ts +1 -1
- package/lib/request/create-job-run-request.d.ts +1 -1
- package/lib/request/create-model-artifact-request.d.ts +1 -1
- package/lib/request/create-model-deployment-request.d.ts +1 -1
- package/lib/request/create-model-provenance-request.d.ts +1 -1
- package/lib/request/create-model-request.d.ts +1 -1
- package/lib/request/create-model-version-set-request.d.ts +1 -1
- package/lib/request/create-notebook-session-request.d.ts +1 -1
- package/lib/request/create-pipeline-request.d.ts +33 -0
- package/lib/request/create-pipeline-request.js +15 -0
- package/lib/request/create-pipeline-request.js.map +1 -0
- package/lib/request/create-pipeline-run-request.d.ts +33 -0
- package/lib/request/create-pipeline-run-request.js +15 -0
- package/lib/request/create-pipeline-run-request.js.map +1 -0
- package/lib/request/create-project-request.d.ts +1 -1
- package/lib/request/create-step-artifact-request.d.ts +57 -0
- package/lib/request/create-step-artifact-request.js +15 -0
- package/lib/request/create-step-artifact-request.js.map +1 -0
- package/lib/request/deactivate-model-deployment-request.d.ts +1 -1
- package/lib/request/deactivate-model-request.d.ts +1 -1
- package/lib/request/deactivate-notebook-session-request.d.ts +1 -1
- package/lib/request/delete-job-request.d.ts +1 -1
- package/lib/request/delete-job-run-request.d.ts +1 -1
- package/lib/request/delete-model-deployment-request.d.ts +1 -1
- package/lib/request/delete-model-request.d.ts +1 -1
- package/lib/request/delete-model-version-set-request.d.ts +1 -1
- package/lib/request/delete-notebook-session-request.d.ts +1 -1
- package/lib/request/delete-pipeline-request.d.ts +44 -0
- package/lib/request/delete-pipeline-request.js +15 -0
- package/lib/request/delete-pipeline-request.js.map +1 -0
- package/lib/request/delete-pipeline-run-request.d.ts +40 -0
- package/lib/request/delete-pipeline-run-request.js +15 -0
- package/lib/request/delete-pipeline-run-request.js.map +1 -0
- package/lib/request/delete-project-request.d.ts +1 -1
- package/lib/request/export-model-artifact-request.d.ts +1 -1
- package/lib/request/get-job-artifact-content-request.d.ts +1 -1
- package/lib/request/get-job-request.d.ts +1 -1
- package/lib/request/get-job-run-request.d.ts +1 -1
- package/lib/request/get-model-artifact-content-request.d.ts +1 -1
- package/lib/request/get-model-deployment-request.d.ts +1 -1
- package/lib/request/get-model-provenance-request.d.ts +1 -1
- package/lib/request/get-model-request.d.ts +1 -1
- package/lib/request/get-model-version-set-request.d.ts +1 -1
- package/lib/request/get-notebook-session-request.d.ts +1 -1
- package/lib/request/get-pipeline-request.d.ts +27 -0
- package/lib/request/get-pipeline-request.js +15 -0
- package/lib/request/get-pipeline-request.js.map +1 -0
- package/lib/request/get-pipeline-run-request.d.ts +27 -0
- package/lib/request/get-pipeline-run-request.js +15 -0
- package/lib/request/get-pipeline-run-request.js.map +1 -0
- package/lib/request/get-project-request.d.ts +1 -1
- package/lib/request/get-step-artifact-content-request.d.ts +37 -0
- package/lib/request/get-step-artifact-content-request.js +15 -0
- package/lib/request/get-step-artifact-content-request.js.map +1 -0
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/head-job-artifact-request.d.ts +1 -1
- package/lib/request/head-model-artifact-request.d.ts +1 -1
- package/lib/request/head-step-artifact-request.d.ts +31 -0
- package/lib/request/head-step-artifact-request.js +15 -0
- package/lib/request/head-step-artifact-request.js.map +1 -0
- package/lib/request/import-model-artifact-request.d.ts +1 -1
- package/lib/request/index.d.ts +32 -0
- package/lib/request/index.js +5 -1
- package/lib/request/index.js.map +1 -1
- package/lib/request/list-fast-launch-job-configs-request.d.ts +1 -1
- package/lib/request/list-job-runs-request.d.ts +1 -1
- package/lib/request/list-job-shapes-request.d.ts +1 -1
- package/lib/request/list-jobs-request.d.ts +1 -1
- package/lib/request/list-model-deployment-shapes-request.d.ts +1 -1
- package/lib/request/list-model-deployments-request.d.ts +1 -1
- package/lib/request/list-model-version-sets-request.d.ts +1 -1
- package/lib/request/list-models-request.d.ts +1 -1
- package/lib/request/list-notebook-session-shapes-request.d.ts +1 -1
- package/lib/request/list-notebook-sessions-request.d.ts +1 -1
- package/lib/request/list-pipeline-runs-request.d.ts +90 -0
- package/lib/request/list-pipeline-runs-request.js +29 -0
- package/lib/request/list-pipeline-runs-request.js.map +1 -0
- package/lib/request/list-pipelines-request.d.ts +90 -0
- package/lib/request/list-pipelines-request.js +29 -0
- package/lib/request/list-pipelines-request.js.map +1 -0
- package/lib/request/list-projects-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +7 -2
- package/lib/request/list-work-requests-request.js +5 -0
- package/lib/request/list-work-requests-request.js.map +1 -1
- package/lib/request/update-job-request.d.ts +1 -1
- package/lib/request/update-job-run-request.d.ts +1 -1
- package/lib/request/update-model-deployment-request.d.ts +1 -1
- package/lib/request/update-model-provenance-request.d.ts +1 -1
- package/lib/request/update-model-request.d.ts +1 -1
- package/lib/request/update-model-version-set-request.d.ts +1 -1
- package/lib/request/update-notebook-session-request.d.ts +1 -1
- package/lib/request/update-pipeline-request.d.ts +41 -0
- package/lib/request/update-pipeline-request.js +15 -0
- package/lib/request/update-pipeline-request.js.map +1 -0
- package/lib/request/update-pipeline-run-request.d.ts +41 -0
- package/lib/request/update-pipeline-run-request.js +15 -0
- package/lib/request/update-pipeline-run-request.js.map +1 -0
- package/lib/request/update-project-request.d.ts +1 -1
- package/lib/response/cancel-pipeline-run-response.d.ts +20 -0
- package/lib/response/cancel-pipeline-run-response.js +15 -0
- package/lib/response/cancel-pipeline-run-response.js.map +1 -0
- package/lib/response/change-pipeline-compartment-response.d.ts +20 -0
- package/lib/response/change-pipeline-compartment-response.js +15 -0
- package/lib/response/change-pipeline-compartment-response.js.map +1 -0
- package/lib/response/change-pipeline-run-compartment-response.d.ts +20 -0
- package/lib/response/change-pipeline-run-compartment-response.js +15 -0
- package/lib/response/change-pipeline-run-compartment-response.js.map +1 -0
- package/lib/response/create-pipeline-response.d.ts +30 -0
- package/lib/response/create-pipeline-response.js +15 -0
- package/lib/response/create-pipeline-response.js.map +1 -0
- package/lib/response/create-pipeline-run-response.d.ts +35 -0
- package/lib/response/create-pipeline-run-response.js +15 -0
- package/lib/response/create-pipeline-run-response.js.map +1 -0
- package/lib/response/create-step-artifact-response.d.ts +20 -0
- package/lib/response/create-step-artifact-response.js +15 -0
- package/lib/response/create-step-artifact-response.js.map +1 -0
- package/lib/response/delete-pipeline-response.d.ts +26 -0
- package/lib/response/delete-pipeline-response.js +15 -0
- package/lib/response/delete-pipeline-response.js.map +1 -0
- package/lib/response/delete-pipeline-run-response.d.ts +20 -0
- package/lib/response/delete-pipeline-run-response.js +15 -0
- package/lib/response/delete-pipeline-run-response.js.map +1 -0
- package/lib/response/get-pipeline-response.d.ts +30 -0
- package/lib/response/get-pipeline-response.js +15 -0
- package/lib/response/get-pipeline-response.js.map +1 -0
- package/lib/response/get-pipeline-run-response.d.ts +30 -0
- package/lib/response/get-pipeline-run-response.js +15 -0
- package/lib/response/get-pipeline-run-response.js.map +1 -0
- package/lib/response/get-step-artifact-content-response.d.ts +52 -0
- package/lib/response/get-step-artifact-content-response.js +15 -0
- package/lib/response/get-step-artifact-content-response.js.map +1 -0
- package/lib/response/head-step-artifact-response.d.ts +46 -0
- package/lib/response/head-step-artifact-response.js +15 -0
- package/lib/response/head-step-artifact-response.js.map +1 -0
- package/lib/response/index.d.ts +32 -0
- package/lib/response/list-pipeline-runs-response.d.ts +35 -0
- package/lib/response/list-pipeline-runs-response.js +15 -0
- package/lib/response/list-pipeline-runs-response.js.map +1 -0
- package/lib/response/list-pipelines-response.d.ts +35 -0
- package/lib/response/list-pipelines-response.js +15 -0
- package/lib/response/list-pipelines-response.js.map +1 -0
- package/lib/response/update-pipeline-response.d.ts +30 -0
- package/lib/response/update-pipeline-response.js +15 -0
- package/lib/response/update-pipeline-response.js.map +1 -0
- package/lib/response/update-pipeline-run-response.d.ts +30 -0
- package/lib/response/update-pipeline-run-response.js +15 -0
- package/lib/response/update-pipeline-run-response.js.map +1 -0
- package/package.json +3 -3
|
@@ -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, 2023, 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.PipelineRunLogDetails = void 0;
|
|
17
|
+
var PipelineRunLogDetails;
|
|
18
|
+
(function (PipelineRunLogDetails) {
|
|
19
|
+
function getJsonObj(obj) {
|
|
20
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
21
|
+
return jsonObj;
|
|
22
|
+
}
|
|
23
|
+
PipelineRunLogDetails.getJsonObj = getJsonObj;
|
|
24
|
+
function getDeserializedJsonObj(obj) {
|
|
25
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
26
|
+
return jsonObj;
|
|
27
|
+
}
|
|
28
|
+
PipelineRunLogDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
29
|
+
})(PipelineRunLogDetails = exports.PipelineRunLogDetails || (exports.PipelineRunLogDetails = {}));
|
|
30
|
+
//# sourceMappingURL=pipeline-run-log-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipeline-run-log-details.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/pipeline-run-log-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAmBH,IAAiB,qBAAqB,CAWrC;AAXD,WAAiB,qBAAqB;IACpC,SAAgB,UAAU,CAAC,GAA0B;QACnD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA0B;QAC/D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,4CAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAWrC"}
|
|
@@ -0,0 +1,99 @@
|
|
|
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, 2023, 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
|
+
* Summary of the PipelineRun.
|
|
17
|
+
*/
|
|
18
|
+
export interface PipelineRunSummary {
|
|
19
|
+
/**
|
|
20
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline run.
|
|
21
|
+
*/
|
|
22
|
+
"id": string;
|
|
23
|
+
/**
|
|
24
|
+
* The date and time the pipeline run was accepted in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
25
|
+
*/
|
|
26
|
+
"timeAccepted": Date;
|
|
27
|
+
/**
|
|
28
|
+
* The date and time the pipeline run request was started in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
29
|
+
*/
|
|
30
|
+
"timeStarted"?: Date;
|
|
31
|
+
/**
|
|
32
|
+
* The date and time the pipeline run request was finished in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
33
|
+
*/
|
|
34
|
+
"timeFinished"?: Date;
|
|
35
|
+
/**
|
|
36
|
+
* The date and time the pipeline run was updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
37
|
+
*/
|
|
38
|
+
"timeUpdated"?: Date;
|
|
39
|
+
/**
|
|
40
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the pipeline run.
|
|
41
|
+
*/
|
|
42
|
+
"createdBy": string;
|
|
43
|
+
/**
|
|
44
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the pipeline run with.
|
|
45
|
+
*/
|
|
46
|
+
"projectId": string;
|
|
47
|
+
/**
|
|
48
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the pipeline run.
|
|
49
|
+
*/
|
|
50
|
+
"compartmentId": string;
|
|
51
|
+
/**
|
|
52
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline for which pipeline run is created.
|
|
53
|
+
*/
|
|
54
|
+
"pipelineId": string;
|
|
55
|
+
/**
|
|
56
|
+
* A user-friendly display name for the resource.
|
|
57
|
+
*/
|
|
58
|
+
"displayName": string;
|
|
59
|
+
/**
|
|
60
|
+
* The state of the pipeline run.
|
|
61
|
+
*/
|
|
62
|
+
"lifecycleState": model.PipelineRunLifecycleState;
|
|
63
|
+
/**
|
|
64
|
+
* A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
|
|
65
|
+
*/
|
|
66
|
+
"lifecycleDetails"?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
69
|
+
* Example: `{\"Department\": \"Finance\"}`
|
|
70
|
+
*
|
|
71
|
+
*/
|
|
72
|
+
"freeformTags"?: {
|
|
73
|
+
[key: string]: string;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
77
|
+
* Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
|
|
78
|
+
*
|
|
79
|
+
*/
|
|
80
|
+
"definedTags"?: {
|
|
81
|
+
[key: string]: {
|
|
82
|
+
[key: string]: any;
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* Usage of system tag keys. These predefined keys are scoped to namespaces.
|
|
87
|
+
* Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
|
|
88
|
+
*
|
|
89
|
+
*/
|
|
90
|
+
"systemTags"?: {
|
|
91
|
+
[key: string]: {
|
|
92
|
+
[key: string]: any;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
export declare namespace PipelineRunSummary {
|
|
97
|
+
function getJsonObj(obj: PipelineRunSummary): object;
|
|
98
|
+
function getDeserializedJsonObj(obj: PipelineRunSummary): object;
|
|
99
|
+
}
|
|
@@ -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, 2023, 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.PipelineRunSummary = void 0;
|
|
17
|
+
var PipelineRunSummary;
|
|
18
|
+
(function (PipelineRunSummary) {
|
|
19
|
+
function getJsonObj(obj) {
|
|
20
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
21
|
+
return jsonObj;
|
|
22
|
+
}
|
|
23
|
+
PipelineRunSummary.getJsonObj = getJsonObj;
|
|
24
|
+
function getDeserializedJsonObj(obj) {
|
|
25
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
26
|
+
return jsonObj;
|
|
27
|
+
}
|
|
28
|
+
PipelineRunSummary.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
29
|
+
})(PipelineRunSummary = exports.PipelineRunSummary || (exports.PipelineRunSummary = {}));
|
|
30
|
+
//# sourceMappingURL=pipeline-run-summary.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipeline-run-summary.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/pipeline-run-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AA6EH,IAAiB,kBAAkB,CAWlC;AAXD,WAAiB,kBAAkB;IACjC,SAAgB,UAAU,CAAC,GAAuB;QAChD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAuB;QAC5D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,yCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAWlC"}
|
|
@@ -0,0 +1,111 @@
|
|
|
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, 2023, 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
|
+
* Description of PipelineRun.
|
|
17
|
+
*/
|
|
18
|
+
export interface PipelineRun {
|
|
19
|
+
/**
|
|
20
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline run.
|
|
21
|
+
*/
|
|
22
|
+
"id": string;
|
|
23
|
+
/**
|
|
24
|
+
* The date and time the pipeline run was accepted in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
25
|
+
*/
|
|
26
|
+
"timeAccepted": Date;
|
|
27
|
+
/**
|
|
28
|
+
* The date and time the pipeline run request was started in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
29
|
+
*/
|
|
30
|
+
"timeStarted"?: Date;
|
|
31
|
+
/**
|
|
32
|
+
* The date and time the pipeline run was updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
33
|
+
*/
|
|
34
|
+
"timeUpdated"?: Date;
|
|
35
|
+
/**
|
|
36
|
+
* The date and time the pipeline run request was finished in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
37
|
+
*/
|
|
38
|
+
"timeFinished"?: Date;
|
|
39
|
+
/**
|
|
40
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the pipeline run.
|
|
41
|
+
*/
|
|
42
|
+
"createdBy": string;
|
|
43
|
+
/**
|
|
44
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the pipeline run with.
|
|
45
|
+
*/
|
|
46
|
+
"projectId": string;
|
|
47
|
+
/**
|
|
48
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the pipeline run.
|
|
49
|
+
*/
|
|
50
|
+
"compartmentId": string;
|
|
51
|
+
/**
|
|
52
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline.
|
|
53
|
+
*/
|
|
54
|
+
"pipelineId": string;
|
|
55
|
+
/**
|
|
56
|
+
* A user-friendly display name for the resource.
|
|
57
|
+
*/
|
|
58
|
+
"displayName": string;
|
|
59
|
+
"configurationDetails"?: model.PipelineDefaultConfigurationDetails;
|
|
60
|
+
"configurationOverrideDetails"?: model.PipelineDefaultConfigurationDetails;
|
|
61
|
+
"logConfigurationOverrideDetails"?: model.PipelineLogConfigurationDetails;
|
|
62
|
+
/**
|
|
63
|
+
* Array of step override details. Only Step Configuration is allowed to be overridden.
|
|
64
|
+
*/
|
|
65
|
+
"stepOverrideDetails"?: Array<model.PipelineStepOverrideDetails>;
|
|
66
|
+
"logDetails"?: model.PipelineRunLogDetails;
|
|
67
|
+
/**
|
|
68
|
+
* Array of StepRun object for each step.
|
|
69
|
+
*/
|
|
70
|
+
"stepRuns": Array<model.PipelineStepRun>;
|
|
71
|
+
/**
|
|
72
|
+
* The current state of the pipeline run.
|
|
73
|
+
*/
|
|
74
|
+
"lifecycleState": model.PipelineRunLifecycleState;
|
|
75
|
+
/**
|
|
76
|
+
* A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
|
|
77
|
+
*/
|
|
78
|
+
"lifecycleDetails"?: string;
|
|
79
|
+
/**
|
|
80
|
+
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
81
|
+
* Example: `{\"Department\": \"Finance\"}`
|
|
82
|
+
*
|
|
83
|
+
*/
|
|
84
|
+
"freeformTags"?: {
|
|
85
|
+
[key: string]: string;
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
89
|
+
* Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
|
|
90
|
+
*
|
|
91
|
+
*/
|
|
92
|
+
"definedTags"?: {
|
|
93
|
+
[key: string]: {
|
|
94
|
+
[key: string]: any;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* Usage of system tag keys. These predefined keys are scoped to namespaces.
|
|
99
|
+
* Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
|
|
100
|
+
*
|
|
101
|
+
*/
|
|
102
|
+
"systemTags"?: {
|
|
103
|
+
[key: string]: {
|
|
104
|
+
[key: string]: any;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
export declare namespace PipelineRun {
|
|
109
|
+
function getJsonObj(obj: PipelineRun): object;
|
|
110
|
+
function getDeserializedJsonObj(obj: PipelineRun): object;
|
|
111
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
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, 2023, 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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
18
|
+
}) : (function(o, m, k, k2) {
|
|
19
|
+
if (k2 === undefined) k2 = k;
|
|
20
|
+
o[k2] = m[k];
|
|
21
|
+
}));
|
|
22
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
23
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
24
|
+
}) : function(o, v) {
|
|
25
|
+
o["default"] = v;
|
|
26
|
+
});
|
|
27
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35
|
+
exports.PipelineRun = void 0;
|
|
36
|
+
const model = __importStar(require("../model"));
|
|
37
|
+
var PipelineRun;
|
|
38
|
+
(function (PipelineRun) {
|
|
39
|
+
function getJsonObj(obj) {
|
|
40
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
41
|
+
"configurationDetails": obj.configurationDetails
|
|
42
|
+
? model.PipelineConfigurationDetails.getJsonObj(obj.configurationDetails)
|
|
43
|
+
: undefined,
|
|
44
|
+
"configurationOverrideDetails": obj.configurationOverrideDetails
|
|
45
|
+
? model.PipelineConfigurationDetails.getJsonObj(obj.configurationOverrideDetails)
|
|
46
|
+
: undefined,
|
|
47
|
+
"logConfigurationOverrideDetails": obj.logConfigurationOverrideDetails
|
|
48
|
+
? model.PipelineLogConfigurationDetails.getJsonObj(obj.logConfigurationOverrideDetails)
|
|
49
|
+
: undefined,
|
|
50
|
+
"stepOverrideDetails": obj.stepOverrideDetails
|
|
51
|
+
? obj.stepOverrideDetails.map(item => {
|
|
52
|
+
return model.PipelineStepOverrideDetails.getJsonObj(item);
|
|
53
|
+
})
|
|
54
|
+
: undefined,
|
|
55
|
+
"logDetails": obj.logDetails
|
|
56
|
+
? model.PipelineRunLogDetails.getJsonObj(obj.logDetails)
|
|
57
|
+
: undefined,
|
|
58
|
+
"stepRuns": obj.stepRuns
|
|
59
|
+
? obj.stepRuns.map(item => {
|
|
60
|
+
return model.PipelineStepRun.getJsonObj(item);
|
|
61
|
+
})
|
|
62
|
+
: undefined
|
|
63
|
+
});
|
|
64
|
+
return jsonObj;
|
|
65
|
+
}
|
|
66
|
+
PipelineRun.getJsonObj = getJsonObj;
|
|
67
|
+
function getDeserializedJsonObj(obj) {
|
|
68
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
69
|
+
"configurationDetails": obj.configurationDetails
|
|
70
|
+
? model.PipelineConfigurationDetails.getDeserializedJsonObj(obj.configurationDetails)
|
|
71
|
+
: undefined,
|
|
72
|
+
"configurationOverrideDetails": obj.configurationOverrideDetails
|
|
73
|
+
? model.PipelineConfigurationDetails.getDeserializedJsonObj(obj.configurationOverrideDetails)
|
|
74
|
+
: undefined,
|
|
75
|
+
"logConfigurationOverrideDetails": obj.logConfigurationOverrideDetails
|
|
76
|
+
? model.PipelineLogConfigurationDetails.getDeserializedJsonObj(obj.logConfigurationOverrideDetails)
|
|
77
|
+
: undefined,
|
|
78
|
+
"stepOverrideDetails": obj.stepOverrideDetails
|
|
79
|
+
? obj.stepOverrideDetails.map(item => {
|
|
80
|
+
return model.PipelineStepOverrideDetails.getDeserializedJsonObj(item);
|
|
81
|
+
})
|
|
82
|
+
: undefined,
|
|
83
|
+
"logDetails": obj.logDetails
|
|
84
|
+
? model.PipelineRunLogDetails.getDeserializedJsonObj(obj.logDetails)
|
|
85
|
+
: undefined,
|
|
86
|
+
"stepRuns": obj.stepRuns
|
|
87
|
+
? obj.stepRuns.map(item => {
|
|
88
|
+
return model.PipelineStepRun.getDeserializedJsonObj(item);
|
|
89
|
+
})
|
|
90
|
+
: undefined
|
|
91
|
+
});
|
|
92
|
+
return jsonObj;
|
|
93
|
+
}
|
|
94
|
+
PipelineRun.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
95
|
+
})(PipelineRun = exports.PipelineRun || (exports.PipelineRun = {}));
|
|
96
|
+
//# sourceMappingURL=pipeline-run.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipeline-run.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/pipeline-run.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAuFlC,IAAiB,WAAW,CAmE3B;AAnED,WAAiB,WAAW;IAC1B,SAAgB,UAAU,CAAC,GAAgB;QACzC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,sBAAsB,EAAE,GAAG,CAAC,oBAAoB;gBAC9C,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,UAAU,CAAC,GAAG,CAAC,oBAAoB,CAAC;gBACzE,CAAC,CAAC,SAAS;YACb,8BAA8B,EAAE,GAAG,CAAC,4BAA4B;gBAC9D,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,UAAU,CAAC,GAAG,CAAC,4BAA4B,CAAC;gBACjF,CAAC,CAAC,SAAS;YACb,iCAAiC,EAAE,GAAG,CAAC,+BAA+B;gBACpE,CAAC,CAAC,KAAK,CAAC,+BAA+B,CAAC,UAAU,CAAC,GAAG,CAAC,+BAA+B,CAAC;gBACvF,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,2BAA2B,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC5D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YACb,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,GAAG,CAAC,UAAU,CAAC;gBACxD,CAAC,CAAC,SAAS;YACb,UAAU,EAAE,GAAG,CAAC,QAAQ;gBACtB,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACtB,OAAO,KAAK,CAAC,eAAe,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAChD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IA9Be,sBAAU,aA8BzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgB;QACrD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,sBAAsB,EAAE,GAAG,CAAC,oBAAoB;gBAC9C,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,sBAAsB,CAAC,GAAG,CAAC,oBAAoB,CAAC;gBACrF,CAAC,CAAC,SAAS;YACb,8BAA8B,EAAE,GAAG,CAAC,4BAA4B;gBAC9D,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,sBAAsB,CACvD,GAAG,CAAC,4BAA4B,CACjC;gBACH,CAAC,CAAC,SAAS;YACb,iCAAiC,EAAE,GAAG,CAAC,+BAA+B;gBACpE,CAAC,CAAC,KAAK,CAAC,+BAA+B,CAAC,sBAAsB,CAC1D,GAAG,CAAC,+BAA+B,CACpC;gBACH,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,2BAA2B,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACxE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YACb,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,sBAAsB,CAAC,GAAG,CAAC,UAAU,CAAC;gBACpE,CAAC,CAAC,SAAS;YACb,UAAU,EAAE,GAAG,CAAC,QAAQ;gBACtB,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACtB,OAAO,KAAK,CAAC,eAAe,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC5D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAlCe,kCAAsB,yBAkCrC,CAAA;AACH,CAAC,EAnEgB,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAmE3B"}
|
|
@@ -0,0 +1,32 @@
|
|
|
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, 2023, 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
|
+
/**
|
|
15
|
+
* Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
|
|
16
|
+
*/
|
|
17
|
+
export interface PipelineShapeConfigDetails {
|
|
18
|
+
/**
|
|
19
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
|
|
20
|
+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
21
|
+
*/
|
|
22
|
+
"ocpus"?: number;
|
|
23
|
+
/**
|
|
24
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
|
|
25
|
+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
26
|
+
*/
|
|
27
|
+
"memoryInGBs"?: number;
|
|
28
|
+
}
|
|
29
|
+
export declare namespace PipelineShapeConfigDetails {
|
|
30
|
+
function getJsonObj(obj: PipelineShapeConfigDetails): object;
|
|
31
|
+
function getDeserializedJsonObj(obj: PipelineShapeConfigDetails): object;
|
|
32
|
+
}
|
|
@@ -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, 2023, 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.PipelineShapeConfigDetails = void 0;
|
|
17
|
+
var PipelineShapeConfigDetails;
|
|
18
|
+
(function (PipelineShapeConfigDetails) {
|
|
19
|
+
function getJsonObj(obj) {
|
|
20
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
21
|
+
return jsonObj;
|
|
22
|
+
}
|
|
23
|
+
PipelineShapeConfigDetails.getJsonObj = getJsonObj;
|
|
24
|
+
function getDeserializedJsonObj(obj) {
|
|
25
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
26
|
+
return jsonObj;
|
|
27
|
+
}
|
|
28
|
+
PipelineShapeConfigDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
29
|
+
})(PipelineShapeConfigDetails = exports.PipelineShapeConfigDetails || (exports.PipelineShapeConfigDetails = {}));
|
|
30
|
+
//# sourceMappingURL=pipeline-shape-config-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipeline-shape-config-details.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/pipeline-shape-config-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAqBH,IAAiB,0BAA0B,CAW1C;AAXD,WAAiB,0BAA0B;IACzC,SAAgB,UAAU,CAAC,GAA+B;QACxD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,qCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA+B;QACpE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,0BAA0B,GAA1B,kCAA0B,KAA1B,kCAA0B,QAW1C"}
|
|
@@ -0,0 +1,36 @@
|
|
|
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, 2023, 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
|
+
/**
|
|
15
|
+
* The configuration details of a step.
|
|
16
|
+
*/
|
|
17
|
+
export interface PipelineStepConfigurationDetails {
|
|
18
|
+
/**
|
|
19
|
+
* A time bound for the execution of the step. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
20
|
+
*/
|
|
21
|
+
"maximumRuntimeInMinutes"?: number;
|
|
22
|
+
/**
|
|
23
|
+
* Environment variables to set for step.
|
|
24
|
+
*/
|
|
25
|
+
"environmentVariables"?: {
|
|
26
|
+
[key: string]: string;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* The command line arguments to set for step.
|
|
30
|
+
*/
|
|
31
|
+
"commandLineArguments"?: string;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace PipelineStepConfigurationDetails {
|
|
34
|
+
function getJsonObj(obj: PipelineStepConfigurationDetails): object;
|
|
35
|
+
function getDeserializedJsonObj(obj: PipelineStepConfigurationDetails): object;
|
|
36
|
+
}
|
|
@@ -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, 2023, 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.PipelineStepConfigurationDetails = void 0;
|
|
17
|
+
var PipelineStepConfigurationDetails;
|
|
18
|
+
(function (PipelineStepConfigurationDetails) {
|
|
19
|
+
function getJsonObj(obj) {
|
|
20
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
21
|
+
return jsonObj;
|
|
22
|
+
}
|
|
23
|
+
PipelineStepConfigurationDetails.getJsonObj = getJsonObj;
|
|
24
|
+
function getDeserializedJsonObj(obj) {
|
|
25
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
26
|
+
return jsonObj;
|
|
27
|
+
}
|
|
28
|
+
PipelineStepConfigurationDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
29
|
+
})(PipelineStepConfigurationDetails = exports.PipelineStepConfigurationDetails || (exports.PipelineStepConfigurationDetails = {}));
|
|
30
|
+
//# sourceMappingURL=pipeline-step-configuration-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipeline-step-configuration-details.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/pipeline-step-configuration-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAuBH,IAAiB,gCAAgC,CAWhD;AAXD,WAAiB,gCAAgC;IAC/C,SAAgB,UAAU,CAAC,GAAqC;QAC9D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,2CAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAqC;QAC1E,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,uDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,gCAAgC,GAAhC,wCAAgC,KAAhC,wCAAgC,QAWhD"}
|
|
@@ -0,0 +1,37 @@
|
|
|
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, 2023, 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
|
+
* A step in the pipeline.
|
|
17
|
+
*/
|
|
18
|
+
export interface PipelineStepDetails {
|
|
19
|
+
/**
|
|
20
|
+
* The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
|
|
21
|
+
*/
|
|
22
|
+
"stepName": string;
|
|
23
|
+
/**
|
|
24
|
+
* A short description of the step.
|
|
25
|
+
*/
|
|
26
|
+
"description"?: string;
|
|
27
|
+
/**
|
|
28
|
+
* The list of step names this current step depends on for execution.
|
|
29
|
+
*/
|
|
30
|
+
"dependsOn"?: Array<string>;
|
|
31
|
+
"stepConfigurationDetails"?: model.PipelineStepConfigurationDetails;
|
|
32
|
+
"stepType": string;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace PipelineStepDetails {
|
|
35
|
+
function getJsonObj(obj: PipelineStepDetails): object;
|
|
36
|
+
function getDeserializedJsonObj(obj: PipelineStepDetails): object;
|
|
37
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
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, 2023, 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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
18
|
+
}) : (function(o, m, k, k2) {
|
|
19
|
+
if (k2 === undefined) k2 = k;
|
|
20
|
+
o[k2] = m[k];
|
|
21
|
+
}));
|
|
22
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
23
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
24
|
+
}) : function(o, v) {
|
|
25
|
+
o["default"] = v;
|
|
26
|
+
});
|
|
27
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35
|
+
exports.PipelineStepDetails = void 0;
|
|
36
|
+
const model = __importStar(require("../model"));
|
|
37
|
+
const common = require("oci-common");
|
|
38
|
+
var PipelineStepDetails;
|
|
39
|
+
(function (PipelineStepDetails) {
|
|
40
|
+
function getJsonObj(obj) {
|
|
41
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
42
|
+
"stepConfigurationDetails": obj.stepConfigurationDetails
|
|
43
|
+
? model.PipelineStepConfigurationDetails.getJsonObj(obj.stepConfigurationDetails)
|
|
44
|
+
: undefined
|
|
45
|
+
});
|
|
46
|
+
if (obj && "stepType" in obj && obj.stepType) {
|
|
47
|
+
switch (obj.stepType) {
|
|
48
|
+
case "ML_JOB":
|
|
49
|
+
return model.PipelineMLJobStepDetails.getJsonObj(jsonObj, true);
|
|
50
|
+
case "CUSTOM_SCRIPT":
|
|
51
|
+
return model.PipelineCustomScriptStepDetails.getJsonObj(jsonObj, true);
|
|
52
|
+
default:
|
|
53
|
+
if (common.LOG.logger)
|
|
54
|
+
common.LOG.logger.info(`Unknown value for: ${obj.stepType}`);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
return jsonObj;
|
|
58
|
+
}
|
|
59
|
+
PipelineStepDetails.getJsonObj = getJsonObj;
|
|
60
|
+
function getDeserializedJsonObj(obj) {
|
|
61
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
62
|
+
"stepConfigurationDetails": obj.stepConfigurationDetails
|
|
63
|
+
? model.PipelineStepConfigurationDetails.getDeserializedJsonObj(obj.stepConfigurationDetails)
|
|
64
|
+
: undefined
|
|
65
|
+
});
|
|
66
|
+
if (obj && "stepType" in obj && obj.stepType) {
|
|
67
|
+
switch (obj.stepType) {
|
|
68
|
+
case "ML_JOB":
|
|
69
|
+
return model.PipelineMLJobStepDetails.getDeserializedJsonObj(jsonObj, true);
|
|
70
|
+
case "CUSTOM_SCRIPT":
|
|
71
|
+
return model.PipelineCustomScriptStepDetails.getDeserializedJsonObj(jsonObj, true);
|
|
72
|
+
default:
|
|
73
|
+
if (common.LOG.logger)
|
|
74
|
+
common.LOG.logger.info(`Unknown value for: ${obj.stepType}`);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
return jsonObj;
|
|
78
|
+
}
|
|
79
|
+
PipelineStepDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
80
|
+
})(PipelineStepDetails = exports.PipelineStepDetails || (exports.PipelineStepDetails = {}));
|
|
81
|
+
//# sourceMappingURL=pipeline-step-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipeline-step-details.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/pipeline-step-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAClC,qCAAsC;AAuBtC,IAAiB,mBAAmB,CA2DnC;AA3DD,WAAiB,mBAAmB;IAClC,SAAgB,UAAU,CAAC,GAAwB;QACjD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,0BAA0B,EAAE,GAAG,CAAC,wBAAwB;gBACtD,CAAC,CAAC,KAAK,CAAC,gCAAgC,CAAC,UAAU,CAAC,GAAG,CAAC,wBAAwB,CAAC;gBACjF,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,IAAI,GAAG,IAAI,UAAU,IAAI,GAAG,IAAI,GAAG,CAAC,QAAQ,EAAE;YAC5C,QAAQ,GAAG,CAAC,QAAQ,EAAE;gBACpB,KAAK,QAAQ;oBACX,OAAO,KAAK,CAAC,wBAAwB,CAAC,UAAU,CACL,OAAQ,EACjD,IAAI,CACL,CAAC;gBACJ,KAAK,eAAe;oBAClB,OAAO,KAAK,CAAC,+BAA+B,CAAC,UAAU,CACL,OAAQ,EACxD,IAAI,CACL,CAAC;gBACJ;oBACE,IAAI,MAAM,CAAC,GAAG,CAAC,MAAM;wBAAE,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,sBAAsB,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC;aACvF;SACF;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IA3Be,8BAAU,aA2BzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAwB;QAC7D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,0BAA0B,EAAE,GAAG,CAAC,wBAAwB;gBACtD,CAAC,CAAC,KAAK,CAAC,gCAAgC,CAAC,sBAAsB,CAC3D,GAAG,CAAC,wBAAwB,CAC7B;gBACH,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,IAAI,GAAG,IAAI,UAAU,IAAI,GAAG,IAAI,GAAG,CAAC,QAAQ,EAAE;YAC5C,QAAQ,GAAG,CAAC,QAAQ,EAAE;gBACpB,KAAK,QAAQ;oBACX,OAAO,KAAK,CAAC,wBAAwB,CAAC,sBAAsB,CACjB,OAAQ,EACjD,IAAI,CACL,CAAC;gBACJ,KAAK,eAAe;oBAClB,OAAO,KAAK,CAAC,+BAA+B,CAAC,sBAAsB,CACjB,OAAQ,EACxD,IAAI,CACL,CAAC;gBACJ;oBACE,IAAI,MAAM,CAAC,GAAG,CAAC,MAAM;wBAAE,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,sBAAsB,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC;aACvF;SACF;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IA7Be,0CAAsB,yBA6BrC,CAAA;AACH,CAAC,EA3DgB,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QA2DnC"}
|