oci-cims 2.114.1 → 2.116.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +14 -5
- package/lib/client.js +77 -5
- package/lib/client.js.map +1 -1
- package/lib/model/activity-item.d.ts +9 -3
- package/lib/model/activity-item.js +2 -0
- package/lib/model/activity-item.js.map +1 -1
- package/lib/model/category.d.ts +1 -1
- package/lib/model/cmos-user-group-info.d.ts +5 -3
- package/lib/model/cmos-user-group-info.js.map +1 -1
- package/lib/model/create-account-item-details.d.ts +2 -2
- package/lib/model/create-category-details.d.ts +1 -1
- package/lib/model/create-incident.d.ts +12 -8
- package/lib/model/create-incident.js.map +1 -1
- package/lib/model/create-issue-type-details.d.ts +1 -1
- package/lib/model/create-limit-item-details.d.ts +1 -1
- package/lib/model/create-resource-details.d.ts +1 -1
- package/lib/model/create-sub-category-details.d.ts +1 -1
- package/lib/model/create-tech-support-item-details.d.ts +2 -2
- package/lib/model/create-ticket-details.d.ts +6 -4
- package/lib/model/create-ticket-details.js.map +1 -1
- package/lib/model/create-user-details.d.ts +4 -4
- package/lib/model/error-code.d.ts +7 -6
- package/lib/model/error-code.js +7 -6
- package/lib/model/error-code.js.map +1 -1
- package/lib/model/incident-summary.d.ts +10 -5
- package/lib/model/incident-summary.js.map +1 -1
- package/lib/model/incident-type.d.ts +1 -1
- package/lib/model/incident.d.ts +12 -7
- package/lib/model/incident.js.map +1 -1
- package/lib/model/index.d.ts +2 -2
- package/lib/model/index.js +4 -4
- package/lib/model/index.js.map +1 -1
- package/lib/model/issue-type.d.ts +1 -1
- package/lib/model/problem-type.d.ts +4 -4
- package/lib/model/problem-type.js +4 -4
- package/lib/model/service-category.d.ts +1 -1
- package/lib/model/sort-order.d.ts +1 -1
- package/lib/model/sort-order.js +1 -1
- package/lib/model/status.d.ts +1 -1
- package/lib/model/sub-category.d.ts +1 -1
- package/lib/model/update-activity-item-details.d.ts +10 -2
- package/lib/model/update-activity-item-details.js +1 -0
- package/lib/model/update-activity-item-details.js.map +1 -1
- package/lib/model/update-contact-item-details.d.ts +53 -0
- package/lib/model/update-contact-item-details.js +68 -0
- package/lib/model/update-contact-item-details.js.map +1 -0
- package/lib/model/update-incident.d.ts +5 -5
- package/lib/model/update-item-details.js +4 -0
- package/lib/model/update-item-details.js.map +1 -1
- package/lib/model/update-resource-details.d.ts +1 -1
- package/lib/model/user.d.ts +4 -4
- package/lib/model/validation-response.d.ts +4 -1
- package/lib/model/validation-response.js.map +1 -1
- package/lib/request/get-incident-request.d.ts +1 -1
- package/lib/request/index.d.ts +2 -0
- package/lib/request/list-incident-resource-types-request.d.ts +1 -1
- package/lib/request/put-attachment-request.d.ts +88 -0
- package/lib/request/put-attachment-request.js +15 -0
- package/lib/request/put-attachment-request.js.map +1 -0
- package/lib/request/update-incident-request.d.ts +2 -2
- package/lib/response/index.d.ts +2 -0
- package/lib/response/put-attachment-response.d.ts +23 -0
- package/lib/response/put-attachment-response.js +15 -0
- package/lib/response/put-attachment-response.js.map +1 -0
- package/package.json +3 -3
- package/lib/model/subscription-info.d.ts +0 -31
- package/lib/model/subscription-info.js +0 -34
- package/lib/model/subscription-info.js.map +0 -1
package/lib/request/index.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ import * as ListIncidentResourceTypesRequest from "./list-incident-resource-type
|
|
|
23
23
|
export import ListIncidentResourceTypesRequest = ListIncidentResourceTypesRequest.ListIncidentResourceTypesRequest;
|
|
24
24
|
import * as ListIncidentsRequest from "./list-incidents-request";
|
|
25
25
|
export import ListIncidentsRequest = ListIncidentsRequest.ListIncidentsRequest;
|
|
26
|
+
import * as PutAttachmentRequest from "./put-attachment-request";
|
|
27
|
+
export import PutAttachmentRequest = PutAttachmentRequest.PutAttachmentRequest;
|
|
26
28
|
import * as UpdateIncidentRequest from "./update-incident-request";
|
|
27
29
|
export import UpdateIncidentRequest = UpdateIncidentRequest.UpdateIncidentRequest;
|
|
28
30
|
import * as ValidateUserRequest from "./validate-user-request";
|
|
@@ -47,7 +47,7 @@ export interface ListIncidentResourceTypesRequest extends common.BaseRequest {
|
|
|
47
47
|
*/
|
|
48
48
|
"sortOrder"?: model.SortOrder;
|
|
49
49
|
/**
|
|
50
|
-
* The user-friendly name of the support
|
|
50
|
+
* The user-friendly name of the support request type.
|
|
51
51
|
*/
|
|
52
52
|
"name"?: string;
|
|
53
53
|
/**
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20181231
|
|
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 common = require("oci-common");
|
|
15
|
+
import stream = require("stream");
|
|
16
|
+
/**
|
|
17
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/cims/PutAttachment.ts.html |here} to see how to use PutAttachmentRequest.
|
|
18
|
+
*/
|
|
19
|
+
export interface PutAttachmentRequest extends common.BaseRequest {
|
|
20
|
+
/**
|
|
21
|
+
* File to be uploaded as attachment to the Service Request.
|
|
22
|
+
*/
|
|
23
|
+
"putAttachmentDetails": Uint8Array | Buffer | Blob | stream.Readable | ReadableStream | string;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the support request.
|
|
26
|
+
*/
|
|
27
|
+
"incidentKey": string;
|
|
28
|
+
/**
|
|
29
|
+
* The name of the file to attach to the support request. Avoid entering confidential information.
|
|
30
|
+
*/
|
|
31
|
+
"attachmentName": string;
|
|
32
|
+
/**
|
|
33
|
+
* The OCID of the tenancy.
|
|
34
|
+
*/
|
|
35
|
+
"compartmentId": string;
|
|
36
|
+
/**
|
|
37
|
+
* Set to {@code true} when the attachment contains personal information (PI)
|
|
38
|
+
* or protected health information (PHI).
|
|
39
|
+
*
|
|
40
|
+
*/
|
|
41
|
+
"isRestrictedFlag": boolean;
|
|
42
|
+
/**
|
|
43
|
+
* The Customer Support Identifier (CSI) number associated with the support account.
|
|
44
|
+
* The CSI is optional for all support request types.
|
|
45
|
+
*
|
|
46
|
+
*/
|
|
47
|
+
"csi"?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
|
|
50
|
+
*/
|
|
51
|
+
"opcRequestId"?: string;
|
|
52
|
+
/**
|
|
53
|
+
* User OCID for Oracle Identity Cloud Service (IDCS) users who also have a federated Oracle Cloud Infrastructure account.
|
|
54
|
+
* User OCID is mandatory for OCI Users and optional for Multicloud users.
|
|
55
|
+
*
|
|
56
|
+
*/
|
|
57
|
+
"ocid"?: string;
|
|
58
|
+
/**
|
|
59
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match} parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
60
|
+
*/
|
|
61
|
+
"ifMatch"?: string;
|
|
62
|
+
/**
|
|
63
|
+
* The region of the tenancy.
|
|
64
|
+
*/
|
|
65
|
+
"homeregion"?: string;
|
|
66
|
+
/**
|
|
67
|
+
* The kind of support request.
|
|
68
|
+
*/
|
|
69
|
+
"problemtype"?: string;
|
|
70
|
+
/**
|
|
71
|
+
* Token type that determine which cloud provider the request come from.
|
|
72
|
+
*/
|
|
73
|
+
"bearertokentype"?: string;
|
|
74
|
+
/**
|
|
75
|
+
* Token that provided by multi cloud provider, which help to validate the email.
|
|
76
|
+
*/
|
|
77
|
+
"bearertoken"?: string;
|
|
78
|
+
/**
|
|
79
|
+
* IdToken that provided by multi cloud provider, which help to validate the email.
|
|
80
|
+
*/
|
|
81
|
+
"idtoken"?: string;
|
|
82
|
+
/**
|
|
83
|
+
* The OCID of identity domain.
|
|
84
|
+
* DomainID is mandatory if the user is part of Non Default Identity domain.
|
|
85
|
+
*
|
|
86
|
+
*/
|
|
87
|
+
"domainid"?: string;
|
|
88
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20181231
|
|
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=put-attachment-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"put-attachment-request.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/request/put-attachment-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -17,11 +17,11 @@ import common = require("oci-common");
|
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateIncidentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
20
|
-
* Unique identifier for the support
|
|
20
|
+
* Unique identifier for the support request.
|
|
21
21
|
*/
|
|
22
22
|
"incidentKey": string;
|
|
23
23
|
/**
|
|
24
|
-
* Details about the support
|
|
24
|
+
* Details about the support request being updated.
|
|
25
25
|
*/
|
|
26
26
|
"updateIncidentDetails": model.UpdateIncident;
|
|
27
27
|
/**
|
package/lib/response/index.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ import * as ListIncidentResourceTypesResponse from "./list-incident-resource-typ
|
|
|
23
23
|
export import ListIncidentResourceTypesResponse = ListIncidentResourceTypesResponse.ListIncidentResourceTypesResponse;
|
|
24
24
|
import * as ListIncidentsResponse from "./list-incidents-response";
|
|
25
25
|
export import ListIncidentsResponse = ListIncidentsResponse.ListIncidentsResponse;
|
|
26
|
+
import * as PutAttachmentResponse from "./put-attachment-response";
|
|
27
|
+
export import PutAttachmentResponse = PutAttachmentResponse.PutAttachmentResponse;
|
|
26
28
|
import * as UpdateIncidentResponse from "./update-incident-response";
|
|
27
29
|
export import UpdateIncidentResponse = UpdateIncidentResponse.UpdateIncidentResponse;
|
|
28
30
|
import * as ValidateUserResponse from "./validate-user-response";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20181231
|
|
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 PutAttachmentResponse {
|
|
15
|
+
/**
|
|
16
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
|
|
17
|
+
*/
|
|
18
|
+
"opcRequestId": string;
|
|
19
|
+
/**
|
|
20
|
+
* The returned model.Incident instance.
|
|
21
|
+
*/
|
|
22
|
+
"incident": model.Incident;
|
|
23
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20181231
|
|
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=put-attachment-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"put-attachment-response.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/response/put-attachment-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-cims",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.116.0",
|
|
4
4
|
"description": "OCI NodeJS client for Cims ",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.116.0",
|
|
19
|
+
"oci-workrequests": "2.116.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Support Management API
|
|
3
|
-
* Use the Support Management API to manage support requests.
|
|
4
|
-
For more information, see [Getting Help and Contacting Support](https://docs.oracle.com/iaas/Content/GSG/Tasks/contactingsupport.htm).
|
|
5
|
-
**Note**: Before you can create service requests with this API,
|
|
6
|
-
complete user registration at My Oracle Cloud Support
|
|
7
|
-
and then ask your tenancy administrator to provide you authorization for the related user groups.
|
|
8
|
-
|
|
9
|
-
* OpenAPI spec version: 20181231
|
|
10
|
-
* Contact: oci_ops_cims_dev_us_grp@oracle.com
|
|
11
|
-
*
|
|
12
|
-
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*
|
|
15
|
-
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
16
|
-
* 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.
|
|
17
|
-
*/
|
|
18
|
-
export interface SubscriptionInfo {
|
|
19
|
-
/**
|
|
20
|
-
* customer support identifier issued for a subscription
|
|
21
|
-
*/
|
|
22
|
-
"csi"?: string;
|
|
23
|
-
/**
|
|
24
|
-
* subscription type of customer which determines payment profile
|
|
25
|
-
*/
|
|
26
|
-
"subscriptionType"?: string;
|
|
27
|
-
}
|
|
28
|
-
export declare namespace SubscriptionInfo {
|
|
29
|
-
function getJsonObj(obj: SubscriptionInfo): object;
|
|
30
|
-
function getDeserializedJsonObj(obj: SubscriptionInfo): object;
|
|
31
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* Support Management API
|
|
4
|
-
* Use the Support Management API to manage support requests.
|
|
5
|
-
For more information, see [Getting Help and Contacting Support](https://docs.oracle.com/iaas/Content/GSG/Tasks/contactingsupport.htm).
|
|
6
|
-
**Note**: Before you can create service requests with this API,
|
|
7
|
-
complete user registration at My Oracle Cloud Support
|
|
8
|
-
and then ask your tenancy administrator to provide you authorization for the related user groups.
|
|
9
|
-
|
|
10
|
-
* OpenAPI spec version: 20181231
|
|
11
|
-
* Contact: oci_ops_cims_dev_us_grp@oracle.com
|
|
12
|
-
*
|
|
13
|
-
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
14
|
-
* Do not edit the class manually.
|
|
15
|
-
*
|
|
16
|
-
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
17
|
-
* 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.
|
|
18
|
-
*/
|
|
19
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
-
exports.SubscriptionInfo = void 0;
|
|
21
|
-
var SubscriptionInfo;
|
|
22
|
-
(function (SubscriptionInfo) {
|
|
23
|
-
function getJsonObj(obj) {
|
|
24
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
25
|
-
return jsonObj;
|
|
26
|
-
}
|
|
27
|
-
SubscriptionInfo.getJsonObj = getJsonObj;
|
|
28
|
-
function getDeserializedJsonObj(obj) {
|
|
29
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
30
|
-
return jsonObj;
|
|
31
|
-
}
|
|
32
|
-
SubscriptionInfo.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
33
|
-
})(SubscriptionInfo = exports.SubscriptionInfo || (exports.SubscriptionInfo = {}));
|
|
34
|
-
//# sourceMappingURL=subscription-info.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"subscription-info.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/subscription-info.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;GAgBG;;;AAgBH,IAAiB,gBAAgB,CAWhC;AAXD,WAAiB,gBAAgB;IAC/B,SAAgB,UAAU,CAAC,GAAqB;QAC9C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,2BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAqB;QAC1D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,uCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAWhC"}
|