oci-cims 2.97.1 → 2.98.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 (73) hide show
  1. package/lib/client.d.ts +23 -23
  2. package/lib/client.js +23 -128
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/activity-item.d.ts +6 -2
  5. package/lib/model/activity-item.js.map +1 -1
  6. package/lib/model/create-account-item-details.d.ts +1 -0
  7. package/lib/model/create-account-item-details.js.map +1 -1
  8. package/lib/model/create-incident.d.ts +8 -1
  9. package/lib/model/create-incident.js.map +1 -1
  10. package/lib/model/create-limit-item-details.d.ts +4 -1
  11. package/lib/model/create-limit-item-details.js +1 -0
  12. package/lib/model/create-limit-item-details.js.map +1 -1
  13. package/lib/model/create-tech-support-item-details.d.ts +1 -0
  14. package/lib/model/create-tech-support-item-details.js.map +1 -1
  15. package/lib/model/create-user-details.d.ts +8 -1
  16. package/lib/model/create-user-details.js.map +1 -1
  17. package/lib/model/incident-resource-type.d.ts +5 -1
  18. package/lib/model/incident-resource-type.js +4 -4
  19. package/lib/model/incident-resource-type.js.map +1 -1
  20. package/lib/model/incident-summary.d.ts +8 -1
  21. package/lib/model/incident-summary.js.map +1 -1
  22. package/lib/model/incident.d.ts +8 -1
  23. package/lib/model/incident.js.map +1 -1
  24. package/lib/model/index.d.ts +6 -0
  25. package/lib/model/index.js +8 -1
  26. package/lib/model/index.js.map +1 -1
  27. package/lib/model/item.d.ts +1 -1
  28. package/lib/model/limit-item.d.ts +5 -0
  29. package/lib/model/limit-item.js +1 -0
  30. package/lib/model/limit-item.js.map +1 -1
  31. package/lib/model/problem-type.d.ts +8 -1
  32. package/lib/model/problem-type.js +8 -1
  33. package/lib/model/problem-type.js.map +1 -1
  34. package/lib/model/service-categories.d.ts +4 -5
  35. package/lib/model/service-categories.js +34 -2
  36. package/lib/model/service-categories.js.map +1 -1
  37. package/lib/model/service-category.d.ts +4 -0
  38. package/lib/model/service-category.js.map +1 -1
  39. package/lib/model/sub-categories.d.ts +46 -0
  40. package/lib/model/sub-categories.js +67 -0
  41. package/lib/model/sub-categories.js.map +1 -0
  42. package/lib/model/sub-components.d.ts +37 -0
  43. package/lib/model/sub-components.js +35 -0
  44. package/lib/model/sub-components.js.map +1 -0
  45. package/lib/model/subscription-info.d.ts +32 -0
  46. package/lib/model/subscription-info.js +35 -0
  47. package/lib/model/subscription-info.js.map +1 -0
  48. package/lib/model/ticket.d.ts +2 -2
  49. package/lib/model/update-incident.d.ts +8 -1
  50. package/lib/model/update-incident.js.map +1 -1
  51. package/lib/model/user.d.ts +8 -1
  52. package/lib/model/user.js.map +1 -1
  53. package/lib/request/create-incident-request.d.ts +4 -0
  54. package/lib/request/get-incident-request.d.ts +11 -5
  55. package/lib/request/index.d.ts +0 -4
  56. package/lib/request/list-incident-resource-types-request.d.ts +7 -1
  57. package/lib/request/list-incidents-request.d.ts +7 -1
  58. package/lib/request/update-incident-request.d.ts +11 -5
  59. package/lib/request/validate-user-request.d.ts +7 -1
  60. package/lib/response/index.d.ts +0 -4
  61. package/package.json +3 -3
  62. package/lib/request/get-csi-number-request.d.ts +0 -54
  63. package/lib/request/get-csi-number-request.js +0 -15
  64. package/lib/request/get-csi-number-request.js.map +0 -1
  65. package/lib/request/get-status-request.d.ts +0 -30
  66. package/lib/request/get-status-request.js +0 -15
  67. package/lib/request/get-status-request.js.map +0 -1
  68. package/lib/response/get-csi-number-response.d.ts +0 -22
  69. package/lib/response/get-csi-number-response.js +0 -15
  70. package/lib/response/get-csi-number-response.js.map +0 -1
  71. package/lib/response/get-status-response.d.ts +0 -23
  72. package/lib/response/get-status-response.js +0 -15
  73. package/lib/response/get-status-response.js.map +0 -1
@@ -34,7 +34,14 @@ export interface Incident {
34
34
  "ticket"?: model.Ticket;
35
35
  "incidentType"?: model.IncidentType;
36
36
  /**
37
- * The kind of support ticket, such as a technical support request or a limit increase request.
37
+ * The kind of support ticket (type of support request).
38
+ * For information about {@code ACCOUNT} support tickets, see
39
+ * [Creating a Billing Support Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-billing.htm).
40
+ * For information about {@code LIMIT} support tickets, see
41
+ * [Creating a Service Limit Increase Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-limit.htm).
42
+ * For information about {@code TECH} support tickets, see
43
+ * [Creating a Technical Support Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-technical.htm).
44
+ *
38
45
  */
39
46
  "problemType"?: model.ProblemType;
40
47
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"incident.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/incident.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA6BlC,IAAiB,QAAQ,CAqCxB;AArCD,WAAiB,QAAQ;IACvB,SAAgB,UAAU,CAAC,GAAa;QACtC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,aAAa,EAAE,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,SAAS;YAC1F,oBAAoB,EAAE,GAAG,CAAC,kBAAkB;gBAC1C,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,UAAU,CAAC,GAAG,CAAC,kBAAkB,CAAC;gBAC7D,CAAC,CAAC,SAAS;YACb,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS;YACtE,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,UAAU,CAAC,GAAG,CAAC,YAAY,CAAC;gBACjD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAhBe,mBAAU,aAgBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAa;QAClD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,aAAa,EAAE,GAAG,CAAC,WAAW;gBAC5B,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,sBAAsB,CAAC,GAAG,CAAC,WAAW,CAAC;gBAC3D,CAAC,CAAC,SAAS;YACb,oBAAoB,EAAE,GAAG,CAAC,kBAAkB;gBAC1C,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,sBAAsB,CAAC,GAAG,CAAC,kBAAkB,CAAC;gBACzE,CAAC,CAAC,SAAS;YACb,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,sBAAsB,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS;YAClF,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,sBAAsB,CAAC,GAAG,CAAC,YAAY,CAAC;gBAC7D,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAlBe,+BAAsB,yBAkBrC,CAAA;AACH,CAAC,EArCgB,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAqCxB"}
1
+ {"version":3,"file":"incident.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/incident.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAoClC,IAAiB,QAAQ,CAqCxB;AArCD,WAAiB,QAAQ;IACvB,SAAgB,UAAU,CAAC,GAAa;QACtC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,aAAa,EAAE,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,SAAS;YAC1F,oBAAoB,EAAE,GAAG,CAAC,kBAAkB;gBAC1C,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,UAAU,CAAC,GAAG,CAAC,kBAAkB,CAAC;gBAC7D,CAAC,CAAC,SAAS;YACb,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS;YACtE,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,UAAU,CAAC,GAAG,CAAC,YAAY,CAAC;gBACjD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAhBe,mBAAU,aAgBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAa;QAClD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,aAAa,EAAE,GAAG,CAAC,WAAW;gBAC5B,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,sBAAsB,CAAC,GAAG,CAAC,WAAW,CAAC;gBAC3D,CAAC,CAAC,SAAS;YACb,oBAAoB,EAAE,GAAG,CAAC,kBAAkB;gBAC1C,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,sBAAsB,CAAC,GAAG,CAAC,kBAAkB,CAAC;gBACzE,CAAC,CAAC,SAAS;YACb,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,sBAAsB,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS;YAClF,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,sBAAsB,CAAC,GAAG,CAAC,YAAY,CAAC;gBAC7D,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAlBe,+BAAsB,yBAkBrC,CAAA;AACH,CAAC,EArCgB,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAqCxB"}
@@ -76,8 +76,14 @@ import * as SortOrder from "./sort-order";
76
76
  export import SortOrder = SortOrder.SortOrder;
77
77
  import * as Status from "./status";
78
78
  export import Status = Status.Status;
79
+ import * as SubCategories from "./sub-categories";
80
+ export import SubCategories = SubCategories.SubCategories;
79
81
  import * as SubCategory from "./sub-category";
80
82
  export import SubCategory = SubCategory.SubCategory;
83
+ import * as SubComponents from "./sub-components";
84
+ export import SubComponents = SubComponents.SubComponents;
85
+ import * as SubscriptionInfo from "./subscription-info";
86
+ export import SubscriptionInfo = SubscriptionInfo.SubscriptionInfo;
81
87
  import * as TenancyInformation from "./tenancy-information";
82
88
  export import TenancyInformation = TenancyInformation.TenancyInformation;
83
89
  import * as Ticket from "./ticket";
@@ -37,7 +37,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
37
37
  return result;
38
38
  };
39
39
  Object.defineProperty(exports, "__esModule", { value: true });
40
- exports.UpdateActivityItemDetails = exports.TechSupportItem = exports.LimitItem = exports.CreateTechSupportItemDetails = exports.CreateLimitItemDetails = exports.CreateAccountItemDetails = exports.ActivityItem = exports.AccountItem = exports.ValidationResponse = exports.User = exports.UpdateTicketDetails = exports.UpdateResourceDetails = exports.UpdateItemDetails = exports.UpdateIncident = exports.Unit = exports.TimeZone = exports.Ticket = exports.TenancyInformation = exports.SubCategory = exports.Status = exports.SortOrder = exports.SortBy = exports.ServiceCategory = exports.ServiceCategories = exports.Scope = exports.Resource = exports.ProblemType = exports.LifecycleState = exports.LifecycleDetails = exports.Item = exports.IssueType = exports.IncidentType = exports.IncidentSummary = exports.IncidentResourceType = exports.Incident = exports.ErrorCode = exports.CreateUserDetails = exports.CreateTicketDetails = exports.CreateSubCategoryDetails = exports.CreateResourceDetails = exports.CreateItemDetails = exports.CreateIssueTypeDetails = exports.CreateIncident = exports.CreateCategoryDetails = exports.ContextualData = exports.ContactList = exports.Contact = exports.Classifier = exports.Category = void 0;
40
+ exports.LimitItem = exports.CreateTechSupportItemDetails = exports.CreateLimitItemDetails = exports.CreateAccountItemDetails = exports.ActivityItem = exports.AccountItem = exports.ValidationResponse = exports.User = exports.UpdateTicketDetails = exports.UpdateResourceDetails = exports.UpdateItemDetails = exports.UpdateIncident = exports.Unit = exports.TimeZone = exports.Ticket = exports.TenancyInformation = exports.SubscriptionInfo = exports.SubComponents = exports.SubCategory = exports.SubCategories = exports.Status = exports.SortOrder = exports.SortBy = exports.ServiceCategory = exports.ServiceCategories = exports.Scope = exports.Resource = exports.ProblemType = exports.LifecycleState = exports.LifecycleDetails = exports.Item = exports.IssueType = exports.IncidentType = exports.IncidentSummary = exports.IncidentResourceType = exports.Incident = exports.ErrorCode = exports.CreateUserDetails = exports.CreateTicketDetails = exports.CreateSubCategoryDetails = exports.CreateResourceDetails = exports.CreateItemDetails = exports.CreateIssueTypeDetails = exports.CreateIncident = exports.CreateCategoryDetails = exports.ContextualData = exports.ContactList = exports.Contact = exports.Classifier = exports.Category = void 0;
41
+ exports.UpdateActivityItemDetails = exports.TechSupportItem = void 0;
41
42
  const Category = __importStar(require("./category"));
42
43
  exports.Category = Category.Category;
43
44
  const Classifier = __importStar(require("./classifier"));
@@ -98,8 +99,14 @@ const SortOrder = __importStar(require("./sort-order"));
98
99
  exports.SortOrder = SortOrder.SortOrder;
99
100
  const Status = __importStar(require("./status"));
100
101
  exports.Status = Status.Status;
102
+ const SubCategories = __importStar(require("./sub-categories"));
103
+ exports.SubCategories = SubCategories.SubCategories;
101
104
  const SubCategory = __importStar(require("./sub-category"));
102
105
  exports.SubCategory = SubCategory.SubCategory;
106
+ const SubComponents = __importStar(require("./sub-components"));
107
+ exports.SubComponents = SubComponents.SubComponents;
108
+ const SubscriptionInfo = __importStar(require("./subscription-info"));
109
+ exports.SubscriptionInfo = SubscriptionInfo.SubscriptionInfo;
103
110
  const TenancyInformation = __importStar(require("./tenancy-information"));
104
111
  exports.TenancyInformation = TenancyInformation.TenancyInformation;
105
112
  const Ticket = __importStar(require("./ticket"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/index.ts"],"names":[],"mappings":"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"}
@@ -24,7 +24,7 @@ export interface Item {
24
24
  /**
25
25
  * Unique identifier for the item.
26
26
  */
27
- "itemKey": string;
27
+ "itemKey"?: string;
28
28
  /**
29
29
  * The display name of the item. Avoid entering confidential information.
30
30
  */
@@ -37,6 +37,10 @@ export interface LimitItem extends model.Item {
37
37
  * The status of the request.
38
38
  */
39
39
  "limitStatus"?: LimitItem.LimitStatus;
40
+ /**
41
+ * Message to customer for partial approval and rejected limit requests
42
+ */
43
+ "customerMessage"?: string;
40
44
  "type": string;
41
45
  }
42
46
  export declare namespace LimitItem {
@@ -44,6 +48,7 @@ export declare namespace LimitItem {
44
48
  Approved = "APPROVED",
45
49
  PartiallyApproved = "PARTIALLY_APPROVED",
46
50
  NotApproved = "NOT_APPROVED",
51
+ Rejected = "REJECTED",
47
52
  /**
48
53
  * This value is used if a service returns a value for this enum that is not recognized by this
49
54
  * version of the SDK.
@@ -46,6 +46,7 @@ var LimitItem;
46
46
  LimitStatus["Approved"] = "APPROVED";
47
47
  LimitStatus["PartiallyApproved"] = "PARTIALLY_APPROVED";
48
48
  LimitStatus["NotApproved"] = "NOT_APPROVED";
49
+ LimitStatus["Rejected"] = "REJECTED";
49
50
  /**
50
51
  * This value is used if a service returns a value for this enum that is not recognized by this
51
52
  * version of the SDK.
@@ -1 +1 @@
1
- {"version":3,"file":"limit-item.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/limit-item.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA2BlC,IAAiB,SAAS,CA6BzB;AA7BD,WAAiB,SAAS;IACxB,IAAY,WASX;IATD,WAAY,WAAW;QACrB,oCAAqB,CAAA;QACrB,uDAAwC,CAAA;QACxC,2CAA4B,CAAA;QAC5B;;;WAGG;QACH,6CAA8B,CAAA;IAChC,CAAC,EATW,WAAW,GAAX,qBAAW,KAAX,qBAAW,QAStB;IAED,SAAgB,UAAU,CAAC,GAAc,EAAE,eAAyB;QAClE,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAe,CAAC,GACnE,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,oBAAU,aAOzB,CAAA;IACY,cAAI,GAAG,OAAO,CAAC;IAC5B,SAAgB,sBAAsB,CAAC,GAAc,EAAE,eAAyB;QAC9E,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,IAAI,CAAC,sBAAsB,CAAC,GAAG,CAAe,CAAC,GAC/E,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,gCAAsB,yBAOrC,CAAA;AACH,CAAC,EA7BgB,SAAS,GAAT,iBAAS,KAAT,iBAAS,QA6BzB"}
1
+ {"version":3,"file":"limit-item.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/limit-item.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA+BlC,IAAiB,SAAS,CA8BzB;AA9BD,WAAiB,SAAS;IACxB,IAAY,WAUX;IAVD,WAAY,WAAW;QACrB,oCAAqB,CAAA;QACrB,uDAAwC,CAAA;QACxC,2CAA4B,CAAA;QAC5B,oCAAqB,CAAA;QACrB;;;WAGG;QACH,6CAA8B,CAAA;IAChC,CAAC,EAVW,WAAW,GAAX,qBAAW,KAAX,qBAAW,QAUtB;IAED,SAAgB,UAAU,CAAC,GAAc,EAAE,eAAyB;QAClE,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAe,CAAC,GACnE,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,oBAAU,aAOzB,CAAA;IACY,cAAI,GAAG,OAAO,CAAC;IAC5B,SAAgB,sBAAsB,CAAC,GAAc,EAAE,eAAyB;QAC9E,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,IAAI,CAAC,sBAAsB,CAAC,GAAG,CAAe,CAAC,GAC/E,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,gCAAsB,yBAOrC,CAAA;AACH,CAAC,EA9BgB,SAAS,GAAT,iBAAS,KAAT,iBAAS,QA8BzB"}
@@ -17,7 +17,14 @@ and you need to register your Customer Support Identifier (CSI) with My Oracle S
17
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
18
  */
19
19
  /**
20
- * The kind of support ticket, such as a technical support request or a limit increase request.
20
+ * The kind of support ticket (type of support request).
21
+ * For information about {@code ACCOUNT} support tickets, see
22
+ * [Creating a Billing Support Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-billing.htm).
23
+ * For information about {@code LIMIT} support tickets, see
24
+ * [Creating a Service Limit Increase Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-limit.htm).
25
+ * For information about {@code TECH} support tickets, see
26
+ * [Creating a Technical Support Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-technical.htm).
27
+ *
21
28
  **/
22
29
  export declare enum ProblemType {
23
30
  Limit = "LIMIT",
@@ -20,7 +20,14 @@ and you need to register your Customer Support Identifier (CSI) with My Oracle S
20
20
  Object.defineProperty(exports, "__esModule", { value: true });
21
21
  exports.ProblemType = void 0;
22
22
  /**
23
- * The kind of support ticket, such as a technical support request or a limit increase request.
23
+ * The kind of support ticket (type of support request).
24
+ * For information about {@code ACCOUNT} support tickets, see
25
+ * [Creating a Billing Support Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-billing.htm).
26
+ * For information about {@code LIMIT} support tickets, see
27
+ * [Creating a Service Limit Increase Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-limit.htm).
28
+ * For information about {@code TECH} support tickets, see
29
+ * [Creating a Technical Support Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-technical.htm).
30
+ *
24
31
  **/
25
32
  var ProblemType;
26
33
  (function (ProblemType) {
@@ -1 +1 @@
1
- {"version":3,"file":"problem-type.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/problem-type.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;AAKH;;IAEI;AACJ,IAAY,WAYX;AAZD,WAAY,WAAW;IACrB,8BAAe,CAAA;IACf,2CAA4B,CAAA;IAC5B,4BAAa,CAAA;IACb,kCAAmB,CAAA;IACnB,oCAAqB,CAAA;IAErB;;;OAGG;IACH,6CAA8B,CAAA;AAChC,CAAC,EAZW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAYtB;AAED,WAAiB,WAAW;IAC1B,SAAgB,UAAU,CAAC,GAAgB;QACzC,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,sBAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgB;QACrD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,kCAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAO3B"}
1
+ {"version":3,"file":"problem-type.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/problem-type.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;AAKH;;;;;;;;;IASI;AACJ,IAAY,WAYX;AAZD,WAAY,WAAW;IACrB,8BAAe,CAAA;IACf,2CAA4B,CAAA;IAC5B,4BAAa,CAAA;IACb,kCAAmB,CAAA;IACnB,oCAAqB,CAAA;IAErB;;;OAGG;IACH,6CAA8B,CAAA;AAChC,CAAC,EAZW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAYtB;AAED,WAAiB,WAAW;IAC1B,SAAgB,UAAU,CAAC,GAAgB;QACzC,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,sBAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgB;QACrD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,kCAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAO3B"}
@@ -16,6 +16,7 @@ and you need to register your Customer Support Identifier (CSI) with My Oracle S
16
16
  * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
17
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
18
  */
19
+ import * as model from "../model";
19
20
  /**
20
21
  * List of Service Categories of a Service for MOS Taxonomy.
21
22
  */
@@ -23,7 +24,7 @@ export interface ServiceCategories {
23
24
  /**
24
25
  * Service Category list.
25
26
  */
26
- "serviceCategory"?: {
27
+ "service"?: {
27
28
  [key: string]: string;
28
29
  };
29
30
  /**
@@ -31,11 +32,9 @@ export interface ServiceCategories {
31
32
  */
32
33
  "schema"?: string;
33
34
  /**
34
- * Issue type list.
35
+ * The service categories list for MOS Taxonomy.
35
36
  */
36
- "issueType"?: {
37
- [key: string]: string;
38
- };
37
+ "subCategories"?: Array<model.SubCategories>;
39
38
  }
40
39
  export declare namespace ServiceCategories {
41
40
  function getJsonObj(obj: ServiceCategories): object;
@@ -17,17 +17,49 @@ and you need to register your Customer Support Identifier (CSI) with My Oracle S
17
17
  * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
18
18
  * 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.
19
19
  */
20
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
23
+ }) : (function(o, m, k, k2) {
24
+ if (k2 === undefined) k2 = k;
25
+ o[k2] = m[k];
26
+ }));
27
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
28
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
29
+ }) : function(o, v) {
30
+ o["default"] = v;
31
+ });
32
+ var __importStar = (this && this.__importStar) || function (mod) {
33
+ if (mod && mod.__esModule) return mod;
34
+ var result = {};
35
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
36
+ __setModuleDefault(result, mod);
37
+ return result;
38
+ };
20
39
  Object.defineProperty(exports, "__esModule", { value: true });
21
40
  exports.ServiceCategories = void 0;
41
+ const model = __importStar(require("../model"));
22
42
  var ServiceCategories;
23
43
  (function (ServiceCategories) {
24
44
  function getJsonObj(obj) {
25
- const jsonObj = Object.assign(Object.assign({}, obj), {});
45
+ const jsonObj = Object.assign(Object.assign({}, obj), {
46
+ "subCategories": obj.subCategories
47
+ ? obj.subCategories.map(item => {
48
+ return model.SubCategories.getJsonObj(item);
49
+ })
50
+ : undefined
51
+ });
26
52
  return jsonObj;
27
53
  }
28
54
  ServiceCategories.getJsonObj = getJsonObj;
29
55
  function getDeserializedJsonObj(obj) {
30
- const jsonObj = Object.assign(Object.assign({}, obj), {});
56
+ const jsonObj = Object.assign(Object.assign({}, obj), {
57
+ "subCategories": obj.subCategories
58
+ ? obj.subCategories.map(item => {
59
+ return model.SubCategories.getDeserializedJsonObj(item);
60
+ })
61
+ : undefined
62
+ });
31
63
  return jsonObj;
32
64
  }
33
65
  ServiceCategories.getDeserializedJsonObj = getDeserializedJsonObj;
@@ -1 +1 @@
1
- {"version":3,"file":"service-categories.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/service-categories.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;AAuBH,IAAiB,iBAAiB,CAWjC;AAXD,WAAiB,iBAAiB;IAChC,SAAgB,UAAU,CAAC,GAAsB;QAC/C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,4BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAsB;QAC3D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,wCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAWjC"}
1
+ {"version":3,"file":"service-categories.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/service-categories.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAqBlC,IAAiB,iBAAiB,CA6BjC;AA7BD,WAAiB,iBAAiB;IAChC,SAAgB,UAAU,CAAC,GAAsB;QAC/C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC3B,OAAO,KAAK,CAAC,aAAa,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC9C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,4BAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAsB;QAC3D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC3B,OAAO,KAAK,CAAC,aAAa,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC1D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,wCAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QA6BjC"}
@@ -41,6 +41,10 @@ export interface ServiceCategory {
41
41
  * The list of issues.
42
42
  */
43
43
  "issueTypeList"?: Array<model.IssueType>;
44
+ /**
45
+ * List of supported subscriptions
46
+ */
47
+ "supportedSubscriptions"?: Array<string>;
44
48
  /**
45
49
  * The scope of the incident.
46
50
  */
@@ -1 +1 @@
1
- {"version":3,"file":"service-category.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/service-category.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAyClC,IAAiB,eAAe,CA6B/B;AA7BD,WAAiB,eAAe;IAC9B,SAAgB,UAAU,CAAC,GAAoB;QAC7C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC3B,OAAO,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC1C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,0BAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAoB;QACzD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC3B,OAAO,KAAK,CAAC,SAAS,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACtD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,sCAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,eAAe,GAAf,uBAAe,KAAf,uBAAe,QA6B/B"}
1
+ {"version":3,"file":"service-category.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/service-category.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA6ClC,IAAiB,eAAe,CA6B/B;AA7BD,WAAiB,eAAe;IAC9B,SAAgB,UAAU,CAAC,GAAoB;QAC7C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC3B,OAAO,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC1C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,0BAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAoB;QACzD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC3B,OAAO,KAAK,CAAC,SAAS,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACtD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,sCAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,eAAe,GAAf,uBAAe,KAAf,uBAAe,QA6B/B"}
@@ -0,0 +1,46 @@
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](/iaas/Content/GSG/Tasks/contactingsupport.htm).
5
+
6
+ **Note**: Before you can create service requests with this API,
7
+ you need to have an Oracle Single Sign On (SSO) account,
8
+ and you need to register your Customer Support Identifier (CSI) with My Oracle Support.
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, 2024, 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
+ import * as model from "../model";
20
+ /**
21
+ * List of subcategories under a service.
22
+ */
23
+ export interface SubCategories {
24
+ /**
25
+ * Subcategory list.
26
+ */
27
+ "serviceCategory"?: {
28
+ [key: string]: string;
29
+ };
30
+ /**
31
+ * Schema of a subcategory.
32
+ */
33
+ "schema"?: string;
34
+ /**
35
+ * Flag to identify if subComponent is present
36
+ */
37
+ "hasSubCategory"?: string;
38
+ /**
39
+ * The sub component list for MOS Taxonomy.
40
+ */
41
+ "subComponents"?: Array<model.SubComponents>;
42
+ }
43
+ export declare namespace SubCategories {
44
+ function getJsonObj(obj: SubCategories): object;
45
+ function getDeserializedJsonObj(obj: SubCategories): object;
46
+ }
@@ -0,0 +1,67 @@
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](/iaas/Content/GSG/Tasks/contactingsupport.htm).
6
+
7
+ **Note**: Before you can create service requests with this API,
8
+ you need to have an Oracle Single Sign On (SSO) account,
9
+ and you need to register your Customer Support Identifier (CSI) with My Oracle Support.
10
+
11
+ * OpenAPI spec version: 20181231
12
+ * Contact: oci_ops_cims_dev_us_grp@oracle.com
13
+ *
14
+ * NOTE: This class is auto generated by OracleSDKGenerator.
15
+ * Do not edit the class manually.
16
+ *
17
+ * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
18
+ * 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.
19
+ */
20
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
23
+ }) : (function(o, m, k, k2) {
24
+ if (k2 === undefined) k2 = k;
25
+ o[k2] = m[k];
26
+ }));
27
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
28
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
29
+ }) : function(o, v) {
30
+ o["default"] = v;
31
+ });
32
+ var __importStar = (this && this.__importStar) || function (mod) {
33
+ if (mod && mod.__esModule) return mod;
34
+ var result = {};
35
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
36
+ __setModuleDefault(result, mod);
37
+ return result;
38
+ };
39
+ Object.defineProperty(exports, "__esModule", { value: true });
40
+ exports.SubCategories = void 0;
41
+ const model = __importStar(require("../model"));
42
+ var SubCategories;
43
+ (function (SubCategories) {
44
+ function getJsonObj(obj) {
45
+ const jsonObj = Object.assign(Object.assign({}, obj), {
46
+ "subComponents": obj.subComponents
47
+ ? obj.subComponents.map(item => {
48
+ return model.SubComponents.getJsonObj(item);
49
+ })
50
+ : undefined
51
+ });
52
+ return jsonObj;
53
+ }
54
+ SubCategories.getJsonObj = getJsonObj;
55
+ function getDeserializedJsonObj(obj) {
56
+ const jsonObj = Object.assign(Object.assign({}, obj), {
57
+ "subComponents": obj.subComponents
58
+ ? obj.subComponents.map(item => {
59
+ return model.SubComponents.getDeserializedJsonObj(item);
60
+ })
61
+ : undefined
62
+ });
63
+ return jsonObj;
64
+ }
65
+ SubCategories.getDeserializedJsonObj = getDeserializedJsonObj;
66
+ })(SubCategories = exports.SubCategories || (exports.SubCategories = {}));
67
+ //# sourceMappingURL=sub-categories.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sub-categories.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/sub-categories.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAyBlC,IAAiB,aAAa,CA6B7B;AA7BD,WAAiB,aAAa;IAC5B,SAAgB,UAAU,CAAC,GAAkB;QAC3C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC3B,OAAO,KAAK,CAAC,aAAa,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC9C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,wBAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkB;QACvD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC3B,OAAO,KAAK,CAAC,aAAa,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC1D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,oCAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QA6B7B"}
@@ -0,0 +1,37 @@
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](/iaas/Content/GSG/Tasks/contactingsupport.htm).
5
+
6
+ **Note**: Before you can create service requests with this API,
7
+ you need to have an Oracle Single Sign On (SSO) account,
8
+ and you need to register your Customer Support Identifier (CSI) with My Oracle Support.
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, 2024, 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
+ /**
20
+ * List of subcomponents under a subcategory.
21
+ */
22
+ export interface SubComponents {
23
+ /**
24
+ * Subcategory list.
25
+ */
26
+ "subCategory"?: {
27
+ [key: string]: string;
28
+ };
29
+ /**
30
+ * Schema of a subcategory.
31
+ */
32
+ "schema"?: string;
33
+ }
34
+ export declare namespace SubComponents {
35
+ function getJsonObj(obj: SubComponents): object;
36
+ function getDeserializedJsonObj(obj: SubComponents): object;
37
+ }
@@ -0,0 +1,35 @@
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](/iaas/Content/GSG/Tasks/contactingsupport.htm).
6
+
7
+ **Note**: Before you can create service requests with this API,
8
+ you need to have an Oracle Single Sign On (SSO) account,
9
+ and you need to register your Customer Support Identifier (CSI) with My Oracle Support.
10
+
11
+ * OpenAPI spec version: 20181231
12
+ * Contact: oci_ops_cims_dev_us_grp@oracle.com
13
+ *
14
+ * NOTE: This class is auto generated by OracleSDKGenerator.
15
+ * Do not edit the class manually.
16
+ *
17
+ * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
18
+ * 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.
19
+ */
20
+ Object.defineProperty(exports, "__esModule", { value: true });
21
+ exports.SubComponents = void 0;
22
+ var SubComponents;
23
+ (function (SubComponents) {
24
+ function getJsonObj(obj) {
25
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
26
+ return jsonObj;
27
+ }
28
+ SubComponents.getJsonObj = getJsonObj;
29
+ function getDeserializedJsonObj(obj) {
30
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
31
+ return jsonObj;
32
+ }
33
+ SubComponents.getDeserializedJsonObj = getDeserializedJsonObj;
34
+ })(SubComponents = exports.SubComponents || (exports.SubComponents = {}));
35
+ //# sourceMappingURL=sub-components.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sub-components.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/sub-components.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;AAmBH,IAAiB,aAAa,CAW7B;AAXD,WAAiB,aAAa;IAC5B,SAAgB,UAAU,CAAC,GAAkB;QAC3C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,wBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkB;QACvD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAW7B"}
@@ -0,0 +1,32 @@
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](/iaas/Content/GSG/Tasks/contactingsupport.htm).
5
+
6
+ **Note**: Before you can create service requests with this API,
7
+ you need to have an Oracle Single Sign On (SSO) account,
8
+ and you need to register your Customer Support Identifier (CSI) with My Oracle Support.
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, 2024, 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
+ export interface SubscriptionInfo {
20
+ /**
21
+ * customer support identifier issued for a subscription
22
+ */
23
+ "csi"?: string;
24
+ /**
25
+ * subscription type of customer which determines payment profile
26
+ */
27
+ "subscriptionType"?: string;
28
+ }
29
+ export declare namespace SubscriptionInfo {
30
+ function getJsonObj(obj: SubscriptionInfo): object;
31
+ function getDeserializedJsonObj(obj: SubscriptionInfo): object;
32
+ }
@@ -0,0 +1,35 @@
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](/iaas/Content/GSG/Tasks/contactingsupport.htm).
6
+
7
+ **Note**: Before you can create service requests with this API,
8
+ you need to have an Oracle Single Sign On (SSO) account,
9
+ and you need to register your Customer Support Identifier (CSI) with My Oracle Support.
10
+
11
+ * OpenAPI spec version: 20181231
12
+ * Contact: oci_ops_cims_dev_us_grp@oracle.com
13
+ *
14
+ * NOTE: This class is auto generated by OracleSDKGenerator.
15
+ * Do not edit the class manually.
16
+ *
17
+ * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
18
+ * 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.
19
+ */
20
+ Object.defineProperty(exports, "__esModule", { value: true });
21
+ exports.SubscriptionInfo = void 0;
22
+ var SubscriptionInfo;
23
+ (function (SubscriptionInfo) {
24
+ function getJsonObj(obj) {
25
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
26
+ return jsonObj;
27
+ }
28
+ SubscriptionInfo.getJsonObj = getJsonObj;
29
+ function getDeserializedJsonObj(obj) {
30
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
31
+ return jsonObj;
32
+ }
33
+ SubscriptionInfo.getDeserializedJsonObj = getDeserializedJsonObj;
34
+ })(SubscriptionInfo = exports.SubscriptionInfo || (exports.SubscriptionInfo = {}));
35
+ //# sourceMappingURL=subscription-info.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"subscription-info.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/subscription-info.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;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"}
@@ -42,11 +42,11 @@ export interface Ticket {
42
42
  */
43
43
  "description": string;
44
44
  /**
45
- * The time when the ticket was created, in milliseconds since epoch time. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
45
+ * The time when the ticket was created, in seconds since epoch time. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
46
46
  */
47
47
  "timeCreated"?: number;
48
48
  /**
49
- * The time when the ticket was updated, in milliseconds since epoch time. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
49
+ * The time when the ticket was updated, in seconds since epoch time. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
50
50
  */
51
51
  "timeUpdated"?: number;
52
52
  /**
@@ -23,7 +23,14 @@ import * as model from "../model";
23
23
  export interface UpdateIncident {
24
24
  "ticket": model.UpdateTicketDetails;
25
25
  /**
26
- * The kind of support ticket, such as a technical support request or a limit increase request.
26
+ * The kind of support ticket (type of support request).
27
+ * For information about {@code ACCOUNT} support tickets, see
28
+ * [Creating a Billing Support Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-billing.htm).
29
+ * For information about {@code LIMIT} support tickets, see
30
+ * [Creating a Service Limit Increase Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-limit.htm).
31
+ * For information about {@code TECH} support tickets, see
32
+ * [Creating a Technical Support Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-technical.htm).
33
+ *
27
34
  */
28
35
  "problemType"?: model.ProblemType;
29
36
  }
@@ -1 +1 @@
1
- {"version":3,"file":"update-incident.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/update-incident.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAclC,IAAiB,cAAc,CAuB9B;AAvBD,WAAiB,cAAc;IAC7B,SAAgB,UAAU,CAAC,GAAmB;QAC5C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,UAAU,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS;SACpF,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IATe,yBAAU,aASzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmB;QACxD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,QAAQ,EAAE,GAAG,CAAC,MAAM;gBAClB,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,sBAAsB,CAAC,GAAG,CAAC,MAAM,CAAC;gBAC9D,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,qCAAsB,yBAWrC,CAAA;AACH,CAAC,EAvBgB,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAuB9B"}
1
+ {"version":3,"file":"update-incident.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/update-incident.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAqBlC,IAAiB,cAAc,CAuB9B;AAvBD,WAAiB,cAAc;IAC7B,SAAgB,UAAU,CAAC,GAAmB;QAC5C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,UAAU,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS;SACpF,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IATe,yBAAU,aASzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmB;QACxD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,QAAQ,EAAE,GAAG,CAAC,MAAM;gBAClB,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,sBAAsB,CAAC,GAAG,CAAC,MAAM,CAAC;gBAC9D,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,qCAAsB,yBAWrC,CAAA;AACH,CAAC,EAvBgB,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAuB9B"}
@@ -62,7 +62,14 @@ export interface User {
62
62
  */
63
63
  "contactEmail"?: string;
64
64
  /**
65
- * The kind of support ticket, such as a technical support request or a limit increase request.
65
+ * The kind of support ticket (type of support request).
66
+ * For information about {@code ACCOUNT} support tickets, see
67
+ * [Creating a Billing Support Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-billing.htm).
68
+ * For information about {@code LIMIT} support tickets, see
69
+ * [Creating a Service Limit Increase Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-limit.htm).
70
+ * For information about {@code TECH} support tickets, see
71
+ * [Creating a Technical Support Request](https://docs.cloud.oracle.com/iaas/Content/GSG/support/create-incident-technical.htm).
72
+ *
66
73
  */
67
74
  "problemType"?: model.ProblemType;
68
75
  }
@@ -1 +1 @@
1
- {"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/user.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;AAuDH,IAAiB,IAAI,CAWpB;AAXD,WAAiB,IAAI;IACnB,SAAgB,UAAU,CAAC,GAAS;QAClC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,eAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAS;QAC9C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,2BAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,IAAI,GAAJ,YAAI,KAAJ,YAAI,QAWpB"}
1
+ {"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../../lib/cims/lib/model/user.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;AA8DH,IAAiB,IAAI,CAWpB;AAXD,WAAiB,IAAI;IACnB,SAAgB,UAAU,CAAC,GAAS;QAClC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,eAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAS;QAC9C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,2BAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,IAAI,GAAJ,YAAI,KAAJ,YAAI,QAWpB"}