oci-datascience 2.50.2 → 2.50.4
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,90 @@
|
|
|
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, 2023, 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 * as model from "../model";
|
|
14
|
+
import common = require("oci-common");
|
|
15
|
+
/**
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/ListPipelines.ts.html |here} to see how to use ListPipelinesRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface ListPipelinesRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
|
21
|
+
*/
|
|
22
|
+
"compartmentId": string;
|
|
23
|
+
/**
|
|
24
|
+
* <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project.
|
|
25
|
+
*/
|
|
26
|
+
"projectId"?: string;
|
|
27
|
+
/**
|
|
28
|
+
* <b>Filter</b> results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type.
|
|
29
|
+
*
|
|
30
|
+
*/
|
|
31
|
+
"id"?: string;
|
|
32
|
+
/**
|
|
33
|
+
* <b>Filter</b> results by its user-friendly name.
|
|
34
|
+
*/
|
|
35
|
+
"displayName"?: string;
|
|
36
|
+
/**
|
|
37
|
+
* The current state of the Pipeline.
|
|
38
|
+
*/
|
|
39
|
+
"lifecycleState"?: model.PipelineLifecycleState;
|
|
40
|
+
/**
|
|
41
|
+
* <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource.
|
|
42
|
+
*/
|
|
43
|
+
"createdBy"?: string;
|
|
44
|
+
/**
|
|
45
|
+
* For list pagination. The maximum number of results per page,
|
|
46
|
+
* or items to return in a paginated \"List\" call.
|
|
47
|
+
* 1 is the minimum, 1000 is the maximum.
|
|
48
|
+
* See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/usingapi.htm#nine).
|
|
49
|
+
* <p>
|
|
50
|
+
Example: `500`
|
|
51
|
+
*
|
|
52
|
+
*/
|
|
53
|
+
"limit"?: number;
|
|
54
|
+
/**
|
|
55
|
+
* For list pagination. The value of the `opc-next-page` response
|
|
56
|
+
* header from the previous \"List\" call.
|
|
57
|
+
* <p>
|
|
58
|
+
See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/usingapi.htm#nine).
|
|
59
|
+
*
|
|
60
|
+
*/
|
|
61
|
+
"page"?: string;
|
|
62
|
+
/**
|
|
63
|
+
* Specifies sort order to use, either `ASC` (ascending) or `DESC` (descending).
|
|
64
|
+
*
|
|
65
|
+
*/
|
|
66
|
+
"sortOrder"?: ListPipelinesRequest.SortOrder;
|
|
67
|
+
/**
|
|
68
|
+
* Specifies the field to sort by. Accepts only one field.
|
|
69
|
+
* By default, when you sort by `timeCreated`, the results are shown
|
|
70
|
+
* in descending order. When you sort by `displayName`, the results are
|
|
71
|
+
* shown in ascending order. Sort order for the `displayName` field is case sensitive.
|
|
72
|
+
*
|
|
73
|
+
*/
|
|
74
|
+
"sortBy"?: ListPipelinesRequest.SortBy;
|
|
75
|
+
/**
|
|
76
|
+
* Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, then provide the request ID.
|
|
77
|
+
*
|
|
78
|
+
*/
|
|
79
|
+
"opcRequestId"?: string;
|
|
80
|
+
}
|
|
81
|
+
export declare namespace ListPipelinesRequest {
|
|
82
|
+
enum SortOrder {
|
|
83
|
+
Asc = "ASC",
|
|
84
|
+
Desc = "DESC"
|
|
85
|
+
}
|
|
86
|
+
enum SortBy {
|
|
87
|
+
TimeCreated = "timeCreated",
|
|
88
|
+
DisplayName = "displayName"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
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, 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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.ListPipelinesRequest = void 0;
|
|
16
|
+
var ListPipelinesRequest;
|
|
17
|
+
(function (ListPipelinesRequest) {
|
|
18
|
+
let SortOrder;
|
|
19
|
+
(function (SortOrder) {
|
|
20
|
+
SortOrder["Asc"] = "ASC";
|
|
21
|
+
SortOrder["Desc"] = "DESC";
|
|
22
|
+
})(SortOrder = ListPipelinesRequest.SortOrder || (ListPipelinesRequest.SortOrder = {}));
|
|
23
|
+
let SortBy;
|
|
24
|
+
(function (SortBy) {
|
|
25
|
+
SortBy["TimeCreated"] = "timeCreated";
|
|
26
|
+
SortBy["DisplayName"] = "displayName";
|
|
27
|
+
})(SortBy = ListPipelinesRequest.SortBy || (ListPipelinesRequest.SortBy = {}));
|
|
28
|
+
})(ListPipelinesRequest = exports.ListPipelinesRequest || (exports.ListPipelinesRequest = {}));
|
|
29
|
+
//# sourceMappingURL=list-pipelines-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-pipelines-request.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/request/list-pipelines-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAwEH,IAAiB,oBAAoB,CAUpC;AAVD,WAAiB,oBAAoB;IACnC,IAAY,SAGX;IAHD,WAAY,SAAS;QACnB,wBAAW,CAAA;QACX,0BAAa,CAAA;IACf,CAAC,EAHW,SAAS,GAAT,8BAAS,KAAT,8BAAS,QAGpB;IAED,IAAY,MAGX;IAHD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;IAC7B,CAAC,EAHW,MAAM,GAAN,2BAAM,KAAN,2BAAM,QAGjB;AACH,CAAC,EAVgB,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAUpC"}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/ListProjects.ts.html |here} to see how to use ListProjectsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListProjectsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestLogsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -82,7 +82,12 @@ export declare namespace ListWorkRequestsRequest {
|
|
|
82
82
|
ModelDeploymentUpdate = "MODEL_DEPLOYMENT_UPDATE",
|
|
83
83
|
ProjectDelete = "PROJECT_DELETE",
|
|
84
84
|
WorkrequestCancel = "WORKREQUEST_CANCEL",
|
|
85
|
-
JobDelete = "JOB_DELETE"
|
|
85
|
+
JobDelete = "JOB_DELETE",
|
|
86
|
+
PipelineCreate = "PIPELINE_CREATE",
|
|
87
|
+
PipelineDelete = "PIPELINE_DELETE",
|
|
88
|
+
PipelineRunCreate = "PIPELINE_RUN_CREATE",
|
|
89
|
+
PipelineRunCancel = "PIPELINE_RUN_CANCEL",
|
|
90
|
+
PipelineRunDelete = "PIPELINE_RUN_DELETE"
|
|
86
91
|
}
|
|
87
92
|
enum Status {
|
|
88
93
|
Accepted = "ACCEPTED",
|
|
@@ -32,6 +32,11 @@ var ListWorkRequestsRequest;
|
|
|
32
32
|
OperationType["ProjectDelete"] = "PROJECT_DELETE";
|
|
33
33
|
OperationType["WorkrequestCancel"] = "WORKREQUEST_CANCEL";
|
|
34
34
|
OperationType["JobDelete"] = "JOB_DELETE";
|
|
35
|
+
OperationType["PipelineCreate"] = "PIPELINE_CREATE";
|
|
36
|
+
OperationType["PipelineDelete"] = "PIPELINE_DELETE";
|
|
37
|
+
OperationType["PipelineRunCreate"] = "PIPELINE_RUN_CREATE";
|
|
38
|
+
OperationType["PipelineRunCancel"] = "PIPELINE_RUN_CANCEL";
|
|
39
|
+
OperationType["PipelineRunDelete"] = "PIPELINE_RUN_DELETE";
|
|
35
40
|
})(OperationType = ListWorkRequestsRequest.OperationType || (ListWorkRequestsRequest.OperationType = {}));
|
|
36
41
|
let Status;
|
|
37
42
|
(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,CA2CvC;AA3CD,WAAiB,uBAAuB;IACtC,IAAY,aAqBX;IArBD,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;IAC3C,CAAC,EArBW,aAAa,GAAb,qCAAa,KAAb,qCAAa,QAqBxB;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,EA3CgB,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QA2CvC"}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/UpdateJob.ts.html |here} to see how to use UpdateJobRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateJobRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/UpdateJobRun.ts.html |here} to see how to use UpdateJobRunRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateJobRunRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/UpdateModelDeployment.ts.html |here} to see how to use UpdateModelDeploymentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateModelDeploymentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/UpdateModelProvenance.ts.html |here} to see how to use UpdateModelProvenanceRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateModelProvenanceRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/UpdateModel.ts.html |here} to see how to use UpdateModelRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateModelRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/UpdateModelVersionSet.ts.html |here} to see how to use UpdateModelVersionSetRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateModelVersionSetRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/UpdateNotebookSession.ts.html |here} to see how to use UpdateNotebookSessionRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateNotebookSessionRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -0,0 +1,41 @@
|
|
|
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, 2023, 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 * as model from "../model";
|
|
14
|
+
import common = require("oci-common");
|
|
15
|
+
/**
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/UpdatePipeline.ts.html |here} to see how to use UpdatePipelineRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdatePipelineRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline.
|
|
21
|
+
*/
|
|
22
|
+
"pipelineId": string;
|
|
23
|
+
/**
|
|
24
|
+
* The information to be updated.
|
|
25
|
+
*/
|
|
26
|
+
"updatePipelineDetails": model.UpdatePipelineDetails;
|
|
27
|
+
/**
|
|
28
|
+
* For optimistic concurrency control. In the PUT or DELETE call
|
|
29
|
+
* for a resource, set the `if-match` parameter to the value of the
|
|
30
|
+
* etag from a previous GET or POST response for that resource.
|
|
31
|
+
* The resource is updated or deleted only if the `etag` you
|
|
32
|
+
* provide matches the resource's current `etag` value.
|
|
33
|
+
*
|
|
34
|
+
*/
|
|
35
|
+
"ifMatch"?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, then provide the request ID.
|
|
38
|
+
*
|
|
39
|
+
*/
|
|
40
|
+
"opcRequestId"?: string;
|
|
41
|
+
}
|
|
@@ -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, 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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=update-pipeline-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-pipeline-request.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/request/update-pipeline-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -0,0 +1,41 @@
|
|
|
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, 2023, 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 * as model from "../model";
|
|
14
|
+
import common = require("oci-common");
|
|
15
|
+
/**
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/UpdatePipelineRun.ts.html |here} to see how to use UpdatePipelineRunRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdatePipelineRunRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline run.
|
|
21
|
+
*/
|
|
22
|
+
"pipelineRunId": string;
|
|
23
|
+
/**
|
|
24
|
+
* The information to be updated.
|
|
25
|
+
*/
|
|
26
|
+
"updatePipelineRunDetails": model.UpdatePipelineRunDetails;
|
|
27
|
+
/**
|
|
28
|
+
* For optimistic concurrency control. In the PUT or DELETE call
|
|
29
|
+
* for a resource, set the `if-match` parameter to the value of the
|
|
30
|
+
* etag from a previous GET or POST response for that resource.
|
|
31
|
+
* The resource is updated or deleted only if the `etag` you
|
|
32
|
+
* provide matches the resource's current `etag` value.
|
|
33
|
+
*
|
|
34
|
+
*/
|
|
35
|
+
"ifMatch"?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, then provide the request ID.
|
|
38
|
+
*
|
|
39
|
+
*/
|
|
40
|
+
"opcRequestId"?: string;
|
|
41
|
+
}
|
|
@@ -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, 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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=update-pipeline-run-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-pipeline-run-request.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/request/update-pipeline-run-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.50.4/datascience/UpdateProject.ts.html |here} to see how to use UpdateProjectRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateProjectRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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, 2023, 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 CancelPipelineRunResponse {
|
|
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, 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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=cancel-pipeline-run-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cancel-pipeline-run-response.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/response/cancel-pipeline-run-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -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, 2023, 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 ChangePipelineCompartmentResponse {
|
|
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, 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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=change-pipeline-compartment-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"change-pipeline-compartment-response.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/response/change-pipeline-compartment-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -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, 2023, 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 ChangePipelineRunCompartmentResponse {
|
|
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, 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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=change-pipeline-run-compartment-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"change-pipeline-run-compartment-response.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/response/change-pipeline-run-compartment-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -0,0 +1,30 @@
|
|
|
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, 2023, 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 * as model from "../model";
|
|
14
|
+
export interface CreatePipelineResponse {
|
|
15
|
+
/**
|
|
16
|
+
* For optimistic concurrency control. See [ETags for Optimistic Concurrency Control](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#eleven).
|
|
17
|
+
*
|
|
18
|
+
*/
|
|
19
|
+
"etag": string;
|
|
20
|
+
/**
|
|
21
|
+
* Unique Oracle assigned identifier for the request. If you need to contact
|
|
22
|
+
* Oracle about a particular request, then provide the request ID.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
"opcRequestId": string;
|
|
26
|
+
/**
|
|
27
|
+
* The returned model.Pipeline instance.
|
|
28
|
+
*/
|
|
29
|
+
"pipeline": model.Pipeline;
|
|
30
|
+
}
|
|
@@ -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, 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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=create-pipeline-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-pipeline-response.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/response/create-pipeline-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -0,0 +1,35 @@
|
|
|
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, 2023, 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 * as model from "../model";
|
|
14
|
+
export interface CreatePipelineRunResponse {
|
|
15
|
+
/**
|
|
16
|
+
* For optimistic concurrency control. See [ETags for Optimistic Concurrency Control](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#eleven).
|
|
17
|
+
*
|
|
18
|
+
*/
|
|
19
|
+
"etag": string;
|
|
20
|
+
/**
|
|
21
|
+
* The URI that identifies the entity described in the response body.
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
"location": string;
|
|
25
|
+
/**
|
|
26
|
+
* Unique Oracle assigned identifier for the request. If you need to contact
|
|
27
|
+
* Oracle about a particular request, then provide the request ID.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
"opcRequestId": string;
|
|
31
|
+
/**
|
|
32
|
+
* The returned model.PipelineRun instance.
|
|
33
|
+
*/
|
|
34
|
+
"pipelineRun": model.PipelineRun;
|
|
35
|
+
}
|
|
@@ -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, 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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=create-pipeline-run-response.js.map
|