oci-opensearch 2.104.0 → 2.106.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 (74) hide show
  1. package/index.d.ts +3 -0
  2. package/index.js +4 -1
  3. package/index.js.map +1 -1
  4. package/lib/client.d.ts +128 -0
  5. package/lib/client.js +482 -1
  6. package/lib/client.js.map +1 -1
  7. package/lib/model/create-opensearch-cluster-pipeline-details.d.ts +25 -25
  8. package/lib/model/create-opensearch-cluster-pipeline-details.js +34 -2
  9. package/lib/model/create-opensearch-cluster-pipeline-details.js.map +1 -1
  10. package/lib/model/{pipeline-validation-error-details.d.ts → force-patch-pipeline-details.d.ts} +13 -6
  11. package/lib/model/{pipeline-validation-error-details.js → force-patch-pipeline-details.js} +7 -7
  12. package/lib/model/force-patch-pipeline-details.js.map +1 -0
  13. package/lib/model/index.d.ts +6 -6
  14. package/lib/model/index.js +8 -8
  15. package/lib/model/index.js.map +1 -1
  16. package/lib/model/opensearch-cluster-pipeline-collection.d.ts +1 -1
  17. package/lib/model/opensearch-cluster-pipeline-summary.d.ts +26 -13
  18. package/lib/model/opensearch-cluster-pipeline-summary.js.map +1 -1
  19. package/lib/model/opensearch-cluster-pipeline.d.ts +40 -12
  20. package/lib/model/opensearch-cluster-pipeline.js +49 -2
  21. package/lib/model/opensearch-cluster-pipeline.js.map +1 -1
  22. package/lib/model/opensearch-pipeline-reverse-connection-endpoint.d.ts +30 -0
  23. package/lib/model/opensearch-pipeline-reverse-connection-endpoint.js +29 -0
  24. package/lib/model/opensearch-pipeline-reverse-connection-endpoint.js.map +1 -0
  25. package/lib/model/update-opensearch-cluster-pipeline-details.d.ts +55 -11
  26. package/lib/model/update-opensearch-cluster-pipeline-details.js +34 -2
  27. package/lib/model/update-opensearch-cluster-pipeline-details.js.map +1 -1
  28. package/lib/model/update-pipeline-status-details.d.ts +29 -0
  29. package/lib/model/{validate-opensearch-pipeline-details.js → update-pipeline-status-details.js} +7 -7
  30. package/lib/model/update-pipeline-status-details.js.map +1 -0
  31. package/lib/opensearchclusterpipeline-waiter.d.ts +29 -0
  32. package/lib/opensearchclusterpipeline-waiter.js +65 -0
  33. package/lib/opensearchclusterpipeline-waiter.js.map +1 -0
  34. package/lib/request/create-opensearch-cluster-pipeline-request.d.ts +42 -0
  35. package/lib/request/create-opensearch-cluster-pipeline-request.js +15 -0
  36. package/lib/request/create-opensearch-cluster-pipeline-request.js.map +1 -0
  37. package/lib/request/delete-opensearch-cluster-pipeline-request.d.ts +35 -0
  38. package/lib/request/delete-opensearch-cluster-pipeline-request.js +15 -0
  39. package/lib/request/delete-opensearch-cluster-pipeline-request.js.map +1 -0
  40. package/lib/request/get-opensearch-cluster-pipeline-request.d.ts +26 -0
  41. package/lib/request/get-opensearch-cluster-pipeline-request.js +15 -0
  42. package/lib/request/get-opensearch-cluster-pipeline-request.js.map +1 -0
  43. package/lib/request/index.d.ts +10 -0
  44. package/lib/request/index.js +3 -1
  45. package/lib/request/index.js.map +1 -1
  46. package/lib/request/list-opensearch-cluster-pipelines-request.d.ts +66 -0
  47. package/lib/request/list-opensearch-cluster-pipelines-request.js +24 -0
  48. package/lib/request/list-opensearch-cluster-pipelines-request.js.map +1 -0
  49. package/lib/request/update-opensearch-cluster-pipeline-request.d.ts +46 -0
  50. package/lib/request/update-opensearch-cluster-pipeline-request.js +15 -0
  51. package/lib/request/update-opensearch-cluster-pipeline-request.js.map +1 -0
  52. package/lib/response/create-opensearch-cluster-pipeline-response.d.ts +25 -0
  53. package/lib/response/create-opensearch-cluster-pipeline-response.js +15 -0
  54. package/lib/response/create-opensearch-cluster-pipeline-response.js.map +1 -0
  55. package/lib/response/delete-opensearch-cluster-pipeline-response.d.ts +25 -0
  56. package/lib/response/delete-opensearch-cluster-pipeline-response.js +15 -0
  57. package/lib/response/delete-opensearch-cluster-pipeline-response.js.map +1 -0
  58. package/lib/response/get-opensearch-cluster-pipeline-response.d.ts +30 -0
  59. package/lib/response/get-opensearch-cluster-pipeline-response.js +15 -0
  60. package/lib/response/get-opensearch-cluster-pipeline-response.js.map +1 -0
  61. package/lib/response/index.d.ts +10 -0
  62. package/lib/response/list-opensearch-cluster-pipelines-response.d.ts +32 -0
  63. package/lib/response/list-opensearch-cluster-pipelines-response.js +15 -0
  64. package/lib/response/list-opensearch-cluster-pipelines-response.js.map +1 -0
  65. package/lib/response/update-opensearch-cluster-pipeline-response.d.ts +25 -0
  66. package/lib/response/update-opensearch-cluster-pipeline-response.js +15 -0
  67. package/lib/response/update-opensearch-cluster-pipeline-response.js.map +1 -0
  68. package/package.json +3 -3
  69. package/lib/model/opensearch-pipeline-validation-response.d.ts +0 -30
  70. package/lib/model/opensearch-pipeline-validation-response.js +0 -61
  71. package/lib/model/opensearch-pipeline-validation-response.js.map +0 -1
  72. package/lib/model/pipeline-validation-error-details.js.map +0 -1
  73. package/lib/model/validate-opensearch-pipeline-details.d.ts +0 -30
  74. package/lib/model/validate-opensearch-pipeline-details.js.map +0 -1
@@ -0,0 +1,42 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20180828
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 * as model from "../model";
14
+ import common = require("oci-common");
15
+ /**
16
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/opensearch/CreateOpensearchClusterPipeline.ts.html |here} to see how to use CreateOpensearchClusterPipelineRequest.
17
+ */
18
+ export interface CreateOpensearchClusterPipelineRequest extends common.BaseRequest {
19
+ /**
20
+ * Details for the new OpensearchCluster Pipeline.
21
+ */
22
+ "createOpensearchClusterPipelineDetails": model.CreateOpensearchClusterPipelineDetails;
23
+ /**
24
+ * A token that uniquely identifies a request so it can be retried in case of a timeout or
25
+ * server error without risk of executing that same action again. Retry tokens expire after 24
26
+ * hours, but can be invalidated before then due to conflicting operations. For example, if a resource
27
+ * has been deleted and purged from the system, then a retry of the original creation request
28
+ * might be rejected.
29
+ *
30
+ */
31
+ "opcRetryToken"?: string;
32
+ /**
33
+ * The client request ID for tracing.
34
+ */
35
+ "opcRequestId"?: string;
36
+ /**
37
+ * Indicates that the request is a dry run, if set to \"true\". A dry run request does not modify the
38
+ * configuration item details and is used only to perform validation on the submitted data.
39
+ *
40
+ */
41
+ "opcDryRun"?: boolean;
42
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20180828
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=create-opensearch-cluster-pipeline-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-opensearch-cluster-pipeline-request.js","sourceRoot":"","sources":["../../../../../lib/opensearch/lib/request/create-opensearch-cluster-pipeline-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,35 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20180828
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/opensearch/DeleteOpensearchClusterPipeline.ts.html |here} to see how to use DeleteOpensearchClusterPipelineRequest.
16
+ */
17
+ export interface DeleteOpensearchClusterPipelineRequest extends common.BaseRequest {
18
+ /**
19
+ * unique OpensearchClusterPipeline identifier
20
+ */
21
+ "opensearchClusterPipelineId": string;
22
+ /**
23
+ * For optimistic concurrency control. In the PUT or DELETE call
24
+ * for a resource, set the {@code if-match} parameter to the value of the
25
+ * etag from a previous GET or POST response for that resource.
26
+ * The resource will be updated or deleted only if the etag you
27
+ * provide matches the resource's current etag value.
28
+ *
29
+ */
30
+ "ifMatch"?: string;
31
+ /**
32
+ * The client request ID for tracing.
33
+ */
34
+ "opcRequestId"?: string;
35
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20180828
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=delete-opensearch-cluster-pipeline-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-opensearch-cluster-pipeline-request.js","sourceRoot":"","sources":["../../../../../lib/opensearch/lib/request/delete-opensearch-cluster-pipeline-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,26 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20180828
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/opensearch/GetOpensearchClusterPipeline.ts.html |here} to see how to use GetOpensearchClusterPipelineRequest.
16
+ */
17
+ export interface GetOpensearchClusterPipelineRequest extends common.BaseRequest {
18
+ /**
19
+ * unique OpensearchClusterPipeline identifier
20
+ */
21
+ "opensearchClusterPipelineId": string;
22
+ /**
23
+ * The client request ID for tracing.
24
+ */
25
+ "opcRequestId"?: string;
26
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20180828
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=get-opensearch-cluster-pipeline-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-opensearch-cluster-pipeline-request.js","sourceRoot":"","sources":["../../../../../lib/opensearch/lib/request/get-opensearch-cluster-pipeline-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -50,3 +50,13 @@ import * as ListOpensearchClusterBackupsRequest from "./list-opensearch-cluster-
50
50
  export import ListOpensearchClusterBackupsRequest = ListOpensearchClusterBackupsRequest.ListOpensearchClusterBackupsRequest;
51
51
  import * as UpdateOpensearchClusterBackupRequest from "./update-opensearch-cluster-backup-request";
52
52
  export import UpdateOpensearchClusterBackupRequest = UpdateOpensearchClusterBackupRequest.UpdateOpensearchClusterBackupRequest;
53
+ import * as CreateOpensearchClusterPipelineRequest from "./create-opensearch-cluster-pipeline-request";
54
+ export import CreateOpensearchClusterPipelineRequest = CreateOpensearchClusterPipelineRequest.CreateOpensearchClusterPipelineRequest;
55
+ import * as DeleteOpensearchClusterPipelineRequest from "./delete-opensearch-cluster-pipeline-request";
56
+ export import DeleteOpensearchClusterPipelineRequest = DeleteOpensearchClusterPipelineRequest.DeleteOpensearchClusterPipelineRequest;
57
+ import * as GetOpensearchClusterPipelineRequest from "./get-opensearch-cluster-pipeline-request";
58
+ export import GetOpensearchClusterPipelineRequest = GetOpensearchClusterPipelineRequest.GetOpensearchClusterPipelineRequest;
59
+ import * as ListOpensearchClusterPipelinesRequest from "./list-opensearch-cluster-pipelines-request";
60
+ export import ListOpensearchClusterPipelinesRequest = ListOpensearchClusterPipelinesRequest.ListOpensearchClusterPipelinesRequest;
61
+ import * as UpdateOpensearchClusterPipelineRequest from "./update-opensearch-cluster-pipeline-request";
62
+ export import UpdateOpensearchClusterPipelineRequest = UpdateOpensearchClusterPipelineRequest.UpdateOpensearchClusterPipelineRequest;
@@ -31,9 +31,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
31
31
  return result;
32
32
  };
33
33
  Object.defineProperty(exports, "__esModule", { value: true });
34
- exports.ListOpensearchClusterBackupsRequest = exports.ListOpensearchClustersRequest = void 0;
34
+ exports.ListOpensearchClusterPipelinesRequest = exports.ListOpensearchClusterBackupsRequest = exports.ListOpensearchClustersRequest = void 0;
35
35
  const ListOpensearchClustersRequest = __importStar(require("./list-opensearch-clusters-request"));
36
36
  exports.ListOpensearchClustersRequest = ListOpensearchClustersRequest.ListOpensearchClustersRequest;
37
37
  const ListOpensearchClusterBackupsRequest = __importStar(require("./list-opensearch-cluster-backups-request"));
38
38
  exports.ListOpensearchClusterBackupsRequest = ListOpensearchClusterBackupsRequest.ListOpensearchClusterBackupsRequest;
39
+ const ListOpensearchClusterPipelinesRequest = __importStar(require("./list-opensearch-cluster-pipelines-request"));
40
+ exports.ListOpensearchClusterPipelinesRequest = ListOpensearchClusterPipelinesRequest.ListOpensearchClusterPipelinesRequest;
39
41
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/opensearch/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAcH,kGAAoF;AACtE,QAAA,6BAA6B,GAAG,6BAA6B,CAAC,6BAA6B,CAAC;AAuB1G,+GAAiG;AACnF,QAAA,mCAAmC,GAAG,mCAAmC,CAAC,mCAAmC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/opensearch/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAcH,kGAAoF;AACtE,QAAA,6BAA6B,GAAG,6BAA6B,CAAC,6BAA6B,CAAC;AAuB1G,+GAAiG;AACnF,QAAA,mCAAmC,GAAG,mCAAmC,CAAC,mCAAmC,CAAC;AAS5H,mHAAqG;AACvF,QAAA,qCAAqC,GAAG,qCAAqC,CAAC,qCAAqC,CAAC"}
@@ -0,0 +1,66 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20180828
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 * as model from "../model";
14
+ import common = require("oci-common");
15
+ /**
16
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/opensearch/ListOpensearchClusterPipelines.ts.html |here} to see how to use ListOpensearchClusterPipelinesRequest.
17
+ */
18
+ export interface ListOpensearchClusterPipelinesRequest extends common.BaseRequest {
19
+ /**
20
+ * The ID of the compartment in which to list resources.
21
+ */
22
+ "compartmentId": string;
23
+ /**
24
+ * A filter to return only resources their lifecycleState matches the given lifecycleState.
25
+ */
26
+ "lifecycleState"?: string;
27
+ /**
28
+ * A filter to return pipelines whose any component has the given pipelineComponentId.
29
+ */
30
+ "pipelineComponentId"?: string;
31
+ /**
32
+ * A filter to return only resources that match the entire display name given.
33
+ */
34
+ "displayName"?: string;
35
+ /**
36
+ * unique OpensearchClusterPipeline identifier
37
+ */
38
+ "id"?: string;
39
+ /**
40
+ * The maximum number of items to return.
41
+ */
42
+ "limit"?: number;
43
+ /**
44
+ * The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call.
45
+ */
46
+ "page"?: string;
47
+ /**
48
+ * The sort order to use, either 'asc' or 'desc'.
49
+ */
50
+ "sortOrder"?: model.SortOrder;
51
+ /**
52
+ * The field to sort by. Only one sort order may be provided. Default order for timeCreated is descending. Default order for displayName is ascending. If no value is specified timeCreated is default.
53
+ *
54
+ */
55
+ "sortBy"?: ListOpensearchClusterPipelinesRequest.SortBy;
56
+ /**
57
+ * The client request ID for tracing.
58
+ */
59
+ "opcRequestId"?: string;
60
+ }
61
+ export declare namespace ListOpensearchClusterPipelinesRequest {
62
+ enum SortBy {
63
+ TimeCreated = "timeCreated",
64
+ DisplayName = "displayName"
65
+ }
66
+ }
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20180828
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
+ exports.ListOpensearchClusterPipelinesRequest = void 0;
16
+ var ListOpensearchClusterPipelinesRequest;
17
+ (function (ListOpensearchClusterPipelinesRequest) {
18
+ let SortBy;
19
+ (function (SortBy) {
20
+ SortBy["TimeCreated"] = "timeCreated";
21
+ SortBy["DisplayName"] = "displayName";
22
+ })(SortBy = ListOpensearchClusterPipelinesRequest.SortBy || (ListOpensearchClusterPipelinesRequest.SortBy = {}));
23
+ })(ListOpensearchClusterPipelinesRequest = exports.ListOpensearchClusterPipelinesRequest || (exports.ListOpensearchClusterPipelinesRequest = {}));
24
+ //# sourceMappingURL=list-opensearch-cluster-pipelines-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-opensearch-cluster-pipelines-request.js","sourceRoot":"","sources":["../../../../../lib/opensearch/lib/request/list-opensearch-cluster-pipelines-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAoDH,IAAiB,qCAAqC,CAKrD;AALD,WAAiB,qCAAqC;IACpD,IAAY,MAGX;IAHD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;IAC7B,CAAC,EAHW,MAAM,GAAN,4CAAM,KAAN,4CAAM,QAGjB;AACH,CAAC,EALgB,qCAAqC,GAArC,6CAAqC,KAArC,6CAAqC,QAKrD"}
@@ -0,0 +1,46 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20180828
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 * as model from "../model";
14
+ import common = require("oci-common");
15
+ /**
16
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/opensearch/UpdateOpensearchClusterPipeline.ts.html |here} to see how to use UpdateOpensearchClusterPipelineRequest.
17
+ */
18
+ export interface UpdateOpensearchClusterPipelineRequest extends common.BaseRequest {
19
+ /**
20
+ * unique OpensearchClusterPipeline identifier
21
+ */
22
+ "opensearchClusterPipelineId": string;
23
+ /**
24
+ * Update the opensearch cluster pipeline details.
25
+ */
26
+ "updateOpensearchClusterPipelineDetails": model.UpdateOpensearchClusterPipelineDetails;
27
+ /**
28
+ * For optimistic concurrency control. In the PUT or DELETE call
29
+ * for a resource, set the {@code if-match} parameter to the value of the
30
+ * etag from a previous GET or POST response for that resource.
31
+ * The resource will be updated or deleted only if the etag you
32
+ * provide matches the resource's current etag value.
33
+ *
34
+ */
35
+ "ifMatch"?: string;
36
+ /**
37
+ * The client request ID for tracing.
38
+ */
39
+ "opcRequestId"?: string;
40
+ /**
41
+ * Indicates that the request is a dry run, if set to \"true\". A dry run request does not modify the
42
+ * configuration item details and is used only to perform validation on the submitted data.
43
+ *
44
+ */
45
+ "opcDryRun"?: boolean;
46
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20180828
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=update-opensearch-cluster-pipeline-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-opensearch-cluster-pipeline-request.js","sourceRoot":"","sources":["../../../../../lib/opensearch/lib/request/update-opensearch-cluster-pipeline-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20180828
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 CreateOpensearchClusterPipelineResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation.
16
+ *
17
+ */
18
+ "opcWorkRequestId": string;
19
+ /**
20
+ * Unique Oracle-assigned identifier for the request. If you need to contact
21
+ * Oracle about a particular request, please provide the request ID.
22
+ *
23
+ */
24
+ "opcRequestId": string;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20180828
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=create-opensearch-cluster-pipeline-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-opensearch-cluster-pipeline-response.js","sourceRoot":"","sources":["../../../../../lib/opensearch/lib/response/create-opensearch-cluster-pipeline-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20180828
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 DeleteOpensearchClusterPipelineResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation.
16
+ *
17
+ */
18
+ "opcWorkRequestId": string;
19
+ /**
20
+ * Unique Oracle-assigned identifier for the request. If you need to contact
21
+ * Oracle about a particular request, please provide the request ID.
22
+ *
23
+ */
24
+ "opcRequestId": string;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20180828
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=delete-opensearch-cluster-pipeline-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-opensearch-cluster-pipeline-response.js","sourceRoot":"","sources":["../../../../../lib/opensearch/lib/response/delete-opensearch-cluster-pipeline-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20180828
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 * as model from "../model";
14
+ export interface GetOpensearchClusterPipelineResponse {
15
+ /**
16
+ * For optimistic concurrency control. See {@code if-match}.
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, please provide the request ID.
23
+ *
24
+ */
25
+ "opcRequestId": string;
26
+ /**
27
+ * The returned model.OpensearchClusterPipeline instance.
28
+ */
29
+ "opensearchClusterPipeline": model.OpensearchClusterPipeline;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20180828
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=get-opensearch-cluster-pipeline-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-opensearch-cluster-pipeline-response.js","sourceRoot":"","sources":["../../../../../lib/opensearch/lib/response/get-opensearch-cluster-pipeline-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -50,3 +50,13 @@ import * as ListOpensearchClusterBackupsResponse from "./list-opensearch-cluster
50
50
  export import ListOpensearchClusterBackupsResponse = ListOpensearchClusterBackupsResponse.ListOpensearchClusterBackupsResponse;
51
51
  import * as UpdateOpensearchClusterBackupResponse from "./update-opensearch-cluster-backup-response";
52
52
  export import UpdateOpensearchClusterBackupResponse = UpdateOpensearchClusterBackupResponse.UpdateOpensearchClusterBackupResponse;
53
+ import * as CreateOpensearchClusterPipelineResponse from "./create-opensearch-cluster-pipeline-response";
54
+ export import CreateOpensearchClusterPipelineResponse = CreateOpensearchClusterPipelineResponse.CreateOpensearchClusterPipelineResponse;
55
+ import * as DeleteOpensearchClusterPipelineResponse from "./delete-opensearch-cluster-pipeline-response";
56
+ export import DeleteOpensearchClusterPipelineResponse = DeleteOpensearchClusterPipelineResponse.DeleteOpensearchClusterPipelineResponse;
57
+ import * as GetOpensearchClusterPipelineResponse from "./get-opensearch-cluster-pipeline-response";
58
+ export import GetOpensearchClusterPipelineResponse = GetOpensearchClusterPipelineResponse.GetOpensearchClusterPipelineResponse;
59
+ import * as ListOpensearchClusterPipelinesResponse from "./list-opensearch-cluster-pipelines-response";
60
+ export import ListOpensearchClusterPipelinesResponse = ListOpensearchClusterPipelinesResponse.ListOpensearchClusterPipelinesResponse;
61
+ import * as UpdateOpensearchClusterPipelineResponse from "./update-opensearch-cluster-pipeline-response";
62
+ export import UpdateOpensearchClusterPipelineResponse = UpdateOpensearchClusterPipelineResponse.UpdateOpensearchClusterPipelineResponse;
@@ -0,0 +1,32 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20180828
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 * as model from "../model";
14
+ export interface ListOpensearchClusterPipelinesResponse {
15
+ /**
16
+ * Unique Oracle-assigned identifier for the request. If you need to contact
17
+ * Oracle about a particular request, please provide the request ID.
18
+ *
19
+ */
20
+ "opcRequestId": string;
21
+ /**
22
+ * For pagination of a list of items. When paging through a list, if this header appears in the response,
23
+ * then a partial list might have been returned. Include this value as the {@code page} parameter for the
24
+ * subsequent GET request to get the next batch of items.
25
+ *
26
+ */
27
+ "opcNextPage": string;
28
+ /**
29
+ * The returned model.OpensearchClusterPipelineCollection instance.
30
+ */
31
+ "opensearchClusterPipelineCollection": model.OpensearchClusterPipelineCollection;
32
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20180828
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=list-opensearch-cluster-pipelines-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-opensearch-cluster-pipelines-response.js","sourceRoot":"","sources":["../../../../../lib/opensearch/lib/response/list-opensearch-cluster-pipelines-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20180828
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 UpdateOpensearchClusterPipelineResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation.
16
+ *
17
+ */
18
+ "opcWorkRequestId": string;
19
+ /**
20
+ * Unique Oracle-assigned identifier for the request. If you need to contact
21
+ * Oracle about a particular request, please provide the request ID.
22
+ *
23
+ */
24
+ "opcRequestId": string;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20180828
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=update-opensearch-cluster-pipeline-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-opensearch-cluster-pipeline-response.js","sourceRoot":"","sources":["../../../../../lib/opensearch/lib/response/update-opensearch-cluster-pipeline-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}