oci-modeldeployment 2.109.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/LICENSE.txt +89 -0
  2. package/NOTICE.txt +1 -0
  3. package/README.md +22 -0
  4. package/THIRD_PARTY_LICENSES.txt +576 -0
  5. package/index.d.ts +23 -0
  6. package/index.js +46 -0
  7. package/index.js.map +1 -0
  8. package/lib/client.d.ts +111 -0
  9. package/lib/client.js +303 -0
  10. package/lib/client.js.map +1 -0
  11. package/lib/model/index.d.ts +17 -0
  12. package/lib/model/index.js +40 -0
  13. package/lib/model/index.js.map +1 -0
  14. package/lib/model/inference-result.d.ts +28 -0
  15. package/lib/model/inference-result.js +32 -0
  16. package/lib/model/inference-result.js.map +1 -0
  17. package/lib/request/index.d.ts +19 -0
  18. package/lib/request/index.js +18 -0
  19. package/lib/request/index.js.map +1 -0
  20. package/lib/request/predict-request.d.ts +30 -0
  21. package/lib/request/predict-request.js +15 -0
  22. package/lib/request/predict-request.js.map +1 -0
  23. package/lib/request/predict-with-response-stream-request.d.ts +30 -0
  24. package/lib/request/predict-with-response-stream-request.js +15 -0
  25. package/lib/request/predict-with-response-stream-request.js.map +1 -0
  26. package/lib/response/index.d.ts +19 -0
  27. package/lib/response/index.js +18 -0
  28. package/lib/response/index.js.map +1 -0
  29. package/lib/response/predict-response.d.ts +24 -0
  30. package/lib/response/predict-response.js +15 -0
  31. package/lib/response/predict-response.js.map +1 -0
  32. package/lib/response/predict-with-response-stream-response.d.ts +26 -0
  33. package/lib/response/predict-with-response-stream-response.js +15 -0
  34. package/lib/response/predict-with-response-stream-response.js.map +1 -0
  35. package/package.json +29 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"predict-request.js","sourceRoot":"","sources":["../../../../../lib/modeldeployment/lib/request/predict-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20240424
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
11
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
+ */
13
+ import common = require("oci-common");
14
+ /**
15
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/modeldeployment/PredictWithResponseStream.ts.html |here} to see how to use PredictWithResponseStreamRequest.
16
+ */
17
+ export interface PredictWithResponseStreamRequest extends common.BaseRequest {
18
+ /**
19
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model deployment.
20
+ */
21
+ "modelDeploymentId": string;
22
+ /**
23
+ * Input data details for making a prediction call
24
+ */
25
+ "requestBody": string;
26
+ /**
27
+ * Unique Oracle identifier for request
28
+ */
29
+ "opcRequestId"?: string;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20240424
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, 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=predict-with-response-stream-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"predict-with-response-stream-request.js","sourceRoot":"","sources":["../../../../../lib/modeldeployment/lib/request/predict-with-response-stream-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Model Deployment Data Plane API
3
+ * Model deployments are a managed resource in the OCI Data Science service to use to deploy machine learning models as HTTP endpoints in OCI. Deploying machine learning models as web applications (HTTP API endpoints) serving predictions in real time is the most common way that models are productionized. HTTP endpoints are flexible and can serve requests for model predictions.
4
+
5
+ For more information, see [Model Deployments](https://docs.oracle.com/en-us/iaas/data-science/using/model-dep-about.htm)
6
+
7
+ * OpenAPI spec version: 20240424
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OracleSDKGenerator.
11
+ * Do not edit the class manually.
12
+ *
13
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
14
+ * 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.
15
+ */
16
+ import * as PredictResponse from "./predict-response";
17
+ export import PredictResponse = PredictResponse.PredictResponse;
18
+ import * as PredictWithResponseStreamResponse from "./predict-with-response-stream-response";
19
+ export import PredictWithResponseStreamResponse = PredictWithResponseStreamResponse.PredictWithResponseStreamResponse;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ /**
3
+ * Model Deployment Data Plane API
4
+ * Model deployments are a managed resource in the OCI Data Science service to use to deploy machine learning models as HTTP endpoints in OCI. Deploying machine learning models as web applications (HTTP API endpoints) serving predictions in real time is the most common way that models are productionized. HTTP endpoints are flexible and can serve requests for model predictions.
5
+
6
+ For more information, see [Model Deployments](https://docs.oracle.com/en-us/iaas/data-science/using/model-dep-about.htm)
7
+
8
+ * OpenAPI spec version: 20240424
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OracleSDKGenerator.
12
+ * Do not edit the class manually.
13
+ *
14
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
15
+ * 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.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/modeldeployment/lib/response/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG"}
@@ -0,0 +1,24 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20240424
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, 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 PredictResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the request. If you need to contact
16
+ * Oracle about a particular request, please provide the request ID.
17
+ *
18
+ */
19
+ "opcRequestId": string;
20
+ /**
21
+ * The returned string instance.
22
+ */
23
+ "value": string;
24
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20240424
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, 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=predict-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"predict-response.js","sourceRoot":"","sources":["../../../../../lib/modeldeployment/lib/response/predict-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,26 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20240424
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, 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
+ /// <reference types="node" />
14
+ import stream = require("stream");
15
+ export interface PredictWithResponseStreamResponse {
16
+ /**
17
+ * Unique Oracle-assigned identifier for the request. If you need to contact
18
+ * Oracle about a particular request, please provide the request ID.
19
+ *
20
+ */
21
+ "opcRequestId": string;
22
+ /**
23
+ * The returned stream.Readable | ReadableStream instance.
24
+ */
25
+ "value": stream.Readable | ReadableStream;
26
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20240424
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, 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=predict-with-response-stream-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"predict-with-response-stream-response.js","sourceRoot":"","sources":["../../../../../lib/modeldeployment/lib/response/predict-with-response-stream-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "oci-modeldeployment",
3
+ "version": "2.109.0",
4
+ "description": "OCI NodeJS client for Model Deployment Service",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/oracle/oci-typescript-sdk"
8
+ },
9
+ "main": "./index.js",
10
+ "typings": "./index",
11
+ "scripts": {},
12
+ "author": {
13
+ "name": "Oracle Cloud Infrastructure",
14
+ "email": ""
15
+ },
16
+ "license": "(UPL-1.0 OR Apache-2.0)",
17
+ "dependencies": {
18
+ "oci-common": "2.109.0",
19
+ "oci-workrequests": "2.109.0"
20
+ },
21
+ "publishConfig": {
22
+ "registry": "https://registry.npmjs.org"
23
+ },
24
+ "contributors": [
25
+ "Jyoti Saini <jyoti.s.saini@oracle.com>",
26
+ "Joe Levy <joe.levy@oracle.com>",
27
+ "Walt Tran <walt.tran@oracle.com>"
28
+ ]
29
+ }