oci-cims 2.4.0 → 2.6.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/LICENSE.txt +6 -0
- package/lib/client.d.ts +56 -8
- package/lib/client.js +94 -16
- package/lib/client.js.map +1 -1
- package/lib/request/create-incident-request.d.ts +1 -1
- package/lib/request/create-user-request.d.ts +1 -1
- package/lib/request/get-incident-request.d.ts +1 -1
- package/lib/request/get-status-request.d.ts +1 -1
- package/lib/request/list-incident-resource-types-request.d.ts +1 -1
- package/lib/request/list-incidents-request.d.ts +1 -1
- package/lib/request/update-incident-request.d.ts +1 -1
- package/lib/request/validate-user-request.d.ts +1 -1
- package/package.json +3 -3
package/LICENSE.txt
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 or Apache License 2.0. See below for license terms. You may choose either license.
|
|
4
|
+
|
|
5
|
+
____________________________
|
|
6
|
+
|
|
1
7
|
The Universal Permissive License (UPL), Version 1.0
|
|
2
8
|
|
|
3
9
|
Subject to the condition set forth below, permission is hereby granted to any
|
package/lib/client.d.ts
CHANGED
|
@@ -16,6 +16,9 @@ import * as model from "./model";
|
|
|
16
16
|
import * as responses from "./response";
|
|
17
17
|
export declare enum IncidentApiKeys {
|
|
18
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
21
|
+
*/
|
|
19
22
|
export declare class IncidentClient {
|
|
20
23
|
protected static serviceEndpointTemplate: string;
|
|
21
24
|
protected "_endpoint": string;
|
|
@@ -51,37 +54,42 @@ export declare class IncidentClient {
|
|
|
51
54
|
set regionId(regionId: string);
|
|
52
55
|
/**
|
|
53
56
|
* Enables the customer to create an support ticket.
|
|
57
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
54
58
|
* @param CreateIncidentRequest
|
|
55
59
|
* @return CreateIncidentResponse
|
|
56
60
|
* @throws OciError when an error occurs
|
|
57
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
61
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/CreateIncident.ts.html |here} to see how to use CreateIncident API.
|
|
58
62
|
*/
|
|
59
63
|
createIncident(createIncidentRequest: requests.CreateIncidentRequest): Promise<responses.CreateIncidentResponse>;
|
|
60
64
|
/**
|
|
61
65
|
* Gets the details of the support ticket.
|
|
66
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
62
67
|
* @param GetIncidentRequest
|
|
63
68
|
* @return GetIncidentResponse
|
|
64
69
|
* @throws OciError when an error occurs
|
|
65
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
70
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/GetIncident.ts.html |here} to see how to use GetIncident API.
|
|
66
71
|
*/
|
|
67
72
|
getIncident(getIncidentRequest: requests.GetIncidentRequest): Promise<responses.GetIncidentResponse>;
|
|
68
73
|
/**
|
|
69
74
|
* Gets the status of the service.
|
|
75
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
70
76
|
* @param GetStatusRequest
|
|
71
77
|
* @return GetStatusResponse
|
|
72
78
|
* @throws OciError when an error occurs
|
|
73
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
79
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/GetStatus.ts.html |here} to see how to use GetStatus API.
|
|
74
80
|
*/
|
|
75
81
|
getStatus(getStatusRequest: requests.GetStatusRequest): Promise<responses.GetStatusResponse>;
|
|
76
82
|
/**
|
|
77
83
|
* During support ticket creation, returns the list of all possible products that Oracle Cloud Infrastructure supports.
|
|
84
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
78
85
|
* @param ListIncidentResourceTypesRequest
|
|
79
86
|
* @return ListIncidentResourceTypesResponse
|
|
80
87
|
* @throws OciError when an error occurs
|
|
81
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
88
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/ListIncidentResourceTypes.ts.html |here} to see how to use ListIncidentResourceTypes API.
|
|
82
89
|
*/
|
|
83
90
|
listIncidentResourceTypes(listIncidentResourceTypesRequest: requests.ListIncidentResourceTypesRequest): Promise<responses.ListIncidentResourceTypesResponse>;
|
|
84
91
|
/**
|
|
92
|
+
* NOTE: This function is deprecated in favor of listIncidentResourceTypesRecordIterator function.
|
|
85
93
|
* Creates a new async iterator which will iterate over the models.IncidentResourceType objects
|
|
86
94
|
* contained in responses from the listIncidentResourceTypes operation. This iterator will fetch more data from the
|
|
87
95
|
* server as needed.
|
|
@@ -90,21 +98,39 @@ export declare class IncidentClient {
|
|
|
90
98
|
*/
|
|
91
99
|
listAllIncidentResourceTypes(request: requests.ListIncidentResourceTypesRequest): AsyncIterableIterator<model.IncidentResourceType>;
|
|
92
100
|
/**
|
|
101
|
+
* NOTE: This function is deprecated in favor of listIncidentResourceTypesResponseIterator function.
|
|
93
102
|
* Creates a new async iterator which will iterate over the responses received from the listIncidentResourceTypes operation. This iterator
|
|
94
103
|
* will fetch more data from the server as needed.
|
|
95
104
|
*
|
|
96
105
|
* @param request a request which can be sent to the service operation
|
|
97
106
|
*/
|
|
98
107
|
listAllIncidentResourceTypesResponses(request: requests.ListIncidentResourceTypesRequest): AsyncIterableIterator<responses.ListIncidentResourceTypesResponse>;
|
|
108
|
+
/**
|
|
109
|
+
* Creates a new async iterator which will iterate over the models.IncidentResourceType objects
|
|
110
|
+
* contained in responses from the listIncidentResourceTypes operation. This iterator will fetch more data from the
|
|
111
|
+
* server as needed.
|
|
112
|
+
*
|
|
113
|
+
* @param request a request which can be sent to the service operation
|
|
114
|
+
*/
|
|
115
|
+
listIncidentResourceTypesRecordIterator(request: requests.ListIncidentResourceTypesRequest): AsyncIterableIterator<model.IncidentResourceType>;
|
|
116
|
+
/**
|
|
117
|
+
* Creates a new async iterator which will iterate over the responses received from the listIncidentResourceTypes operation. This iterator
|
|
118
|
+
* will fetch more data from the server as needed.
|
|
119
|
+
*
|
|
120
|
+
* @param request a request which can be sent to the service operation
|
|
121
|
+
*/
|
|
122
|
+
listIncidentResourceTypesResponseIterator(request: requests.ListIncidentResourceTypesRequest): AsyncIterableIterator<responses.ListIncidentResourceTypesResponse>;
|
|
99
123
|
/**
|
|
100
124
|
* Returns the list of support tickets raised by the tenancy.
|
|
125
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
101
126
|
* @param ListIncidentsRequest
|
|
102
127
|
* @return ListIncidentsResponse
|
|
103
128
|
* @throws OciError when an error occurs
|
|
104
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
129
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/ListIncidents.ts.html |here} to see how to use ListIncidents API.
|
|
105
130
|
*/
|
|
106
131
|
listIncidents(listIncidentsRequest: requests.ListIncidentsRequest): Promise<responses.ListIncidentsResponse>;
|
|
107
132
|
/**
|
|
133
|
+
* NOTE: This function is deprecated in favor of listIncidentsRecordIterator function.
|
|
108
134
|
* Creates a new async iterator which will iterate over the models.IncidentSummary objects
|
|
109
135
|
* contained in responses from the listIncidents operation. This iterator will fetch more data from the
|
|
110
136
|
* server as needed.
|
|
@@ -113,31 +139,52 @@ export declare class IncidentClient {
|
|
|
113
139
|
*/
|
|
114
140
|
listAllIncidents(request: requests.ListIncidentsRequest): AsyncIterableIterator<model.IncidentSummary>;
|
|
115
141
|
/**
|
|
142
|
+
* NOTE: This function is deprecated in favor of listIncidentsResponseIterator function.
|
|
116
143
|
* Creates a new async iterator which will iterate over the responses received from the listIncidents operation. This iterator
|
|
117
144
|
* will fetch more data from the server as needed.
|
|
118
145
|
*
|
|
119
146
|
* @param request a request which can be sent to the service operation
|
|
120
147
|
*/
|
|
121
148
|
listAllIncidentsResponses(request: requests.ListIncidentsRequest): AsyncIterableIterator<responses.ListIncidentsResponse>;
|
|
149
|
+
/**
|
|
150
|
+
* Creates a new async iterator which will iterate over the models.IncidentSummary objects
|
|
151
|
+
* contained in responses from the listIncidents operation. This iterator will fetch more data from the
|
|
152
|
+
* server as needed.
|
|
153
|
+
*
|
|
154
|
+
* @param request a request which can be sent to the service operation
|
|
155
|
+
*/
|
|
156
|
+
listIncidentsRecordIterator(request: requests.ListIncidentsRequest): AsyncIterableIterator<model.IncidentSummary>;
|
|
157
|
+
/**
|
|
158
|
+
* Creates a new async iterator which will iterate over the responses received from the listIncidents operation. This iterator
|
|
159
|
+
* will fetch more data from the server as needed.
|
|
160
|
+
*
|
|
161
|
+
* @param request a request which can be sent to the service operation
|
|
162
|
+
*/
|
|
163
|
+
listIncidentsResponseIterator(request: requests.ListIncidentsRequest): AsyncIterableIterator<responses.ListIncidentsResponse>;
|
|
122
164
|
/**
|
|
123
165
|
* Updates the specified support ticket's information.
|
|
166
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
124
167
|
* @param UpdateIncidentRequest
|
|
125
168
|
* @return UpdateIncidentResponse
|
|
126
169
|
* @throws OciError when an error occurs
|
|
127
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
170
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/UpdateIncident.ts.html |here} to see how to use UpdateIncident API.
|
|
128
171
|
*/
|
|
129
172
|
updateIncident(updateIncidentRequest: requests.UpdateIncidentRequest): Promise<responses.UpdateIncidentResponse>;
|
|
130
173
|
/**
|
|
131
174
|
* Checks whether the requested user is valid.
|
|
175
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
132
176
|
* @param ValidateUserRequest
|
|
133
177
|
* @return ValidateUserResponse
|
|
134
178
|
* @throws OciError when an error occurs
|
|
135
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
179
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/ValidateUser.ts.html |here} to see how to use ValidateUser API.
|
|
136
180
|
*/
|
|
137
181
|
validateUser(validateUserRequest: requests.ValidateUserRequest): Promise<responses.ValidateUserResponse>;
|
|
138
182
|
}
|
|
139
183
|
export declare enum UserApiKeys {
|
|
140
184
|
}
|
|
185
|
+
/**
|
|
186
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
187
|
+
*/
|
|
141
188
|
export declare class UserClient {
|
|
142
189
|
protected static serviceEndpointTemplate: string;
|
|
143
190
|
protected "_endpoint": string;
|
|
@@ -173,10 +220,11 @@ export declare class UserClient {
|
|
|
173
220
|
set regionId(regionId: string);
|
|
174
221
|
/**
|
|
175
222
|
* Create user to request Customer Support Identifier(CSI) to Customer User Administrator(CUA).
|
|
223
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
176
224
|
* @param CreateUserRequest
|
|
177
225
|
* @return CreateUserResponse
|
|
178
226
|
* @throws OciError when an error occurs
|
|
179
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
227
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/CreateUser.ts.html |here} to see how to use CreateUser API.
|
|
180
228
|
*/
|
|
181
229
|
createUser(createUserRequest: requests.CreateUserRequest): Promise<responses.CreateUserResponse>;
|
|
182
230
|
}
|
package/lib/client.js
CHANGED
|
@@ -51,6 +51,9 @@ const oci_common_2 = require("oci-common");
|
|
|
51
51
|
var IncidentApiKeys;
|
|
52
52
|
(function (IncidentApiKeys) {
|
|
53
53
|
})(IncidentApiKeys = exports.IncidentApiKeys || (exports.IncidentApiKeys = {}));
|
|
54
|
+
/**
|
|
55
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
56
|
+
*/
|
|
54
57
|
class IncidentClient {
|
|
55
58
|
constructor(params, clientConfiguration) {
|
|
56
59
|
this["_endpoint"] = "";
|
|
@@ -65,6 +68,13 @@ class IncidentClient {
|
|
|
65
68
|
? clientConfiguration.circuitBreaker.circuit
|
|
66
69
|
: null;
|
|
67
70
|
}
|
|
71
|
+
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
72
|
+
const specCircuitBreakerEnabled = false;
|
|
73
|
+
if (!this._circuitBreaker &&
|
|
74
|
+
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
75
|
+
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
76
|
+
this._circuitBreaker = new common.CircuitBreaker().circuit;
|
|
77
|
+
}
|
|
68
78
|
this._httpClient =
|
|
69
79
|
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
|
|
70
80
|
if (params.authenticationDetailsProvider &&
|
|
@@ -115,10 +125,11 @@ class IncidentClient {
|
|
|
115
125
|
}
|
|
116
126
|
/**
|
|
117
127
|
* Enables the customer to create an support ticket.
|
|
128
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
118
129
|
* @param CreateIncidentRequest
|
|
119
130
|
* @return CreateIncidentResponse
|
|
120
131
|
* @throws OciError when an error occurs
|
|
121
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
132
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/CreateIncident.ts.html |here} to see how to use CreateIncident API.
|
|
122
133
|
*/
|
|
123
134
|
createIncident(createIncidentRequest) {
|
|
124
135
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -132,7 +143,8 @@ class IncidentClient {
|
|
|
132
143
|
"ocid": createIncidentRequest.ocid,
|
|
133
144
|
"homeregion": createIncidentRequest.homeregion
|
|
134
145
|
};
|
|
135
|
-
const
|
|
146
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
147
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createIncidentRequest.retryConfiguration, specRetryConfiguration);
|
|
136
148
|
if (this.logger)
|
|
137
149
|
retrier.logger = this.logger;
|
|
138
150
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -170,10 +182,11 @@ class IncidentClient {
|
|
|
170
182
|
}
|
|
171
183
|
/**
|
|
172
184
|
* Gets the details of the support ticket.
|
|
185
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
173
186
|
* @param GetIncidentRequest
|
|
174
187
|
* @return GetIncidentResponse
|
|
175
188
|
* @throws OciError when an error occurs
|
|
176
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
189
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/GetIncident.ts.html |here} to see how to use GetIncident API.
|
|
177
190
|
*/
|
|
178
191
|
getIncident(getIncidentRequest) {
|
|
179
192
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -191,7 +204,8 @@ class IncidentClient {
|
|
|
191
204
|
"homeregion": getIncidentRequest.homeregion,
|
|
192
205
|
"problem-type": getIncidentRequest.problemType
|
|
193
206
|
};
|
|
194
|
-
const
|
|
207
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
208
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getIncidentRequest.retryConfiguration, specRetryConfiguration);
|
|
195
209
|
if (this.logger)
|
|
196
210
|
retrier.logger = this.logger;
|
|
197
211
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -228,10 +242,11 @@ class IncidentClient {
|
|
|
228
242
|
}
|
|
229
243
|
/**
|
|
230
244
|
* Gets the status of the service.
|
|
245
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
231
246
|
* @param GetStatusRequest
|
|
232
247
|
* @return GetStatusResponse
|
|
233
248
|
* @throws OciError when an error occurs
|
|
234
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
249
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/GetStatus.ts.html |here} to see how to use GetStatus API.
|
|
235
250
|
*/
|
|
236
251
|
getStatus(getStatusRequest) {
|
|
237
252
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -247,7 +262,8 @@ class IncidentClient {
|
|
|
247
262
|
"ocid": getStatusRequest.ocid,
|
|
248
263
|
"homeregion": getStatusRequest.homeregion
|
|
249
264
|
};
|
|
250
|
-
const
|
|
265
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
266
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getStatusRequest.retryConfiguration, specRetryConfiguration);
|
|
251
267
|
if (this.logger)
|
|
252
268
|
retrier.logger = this.logger;
|
|
253
269
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -284,10 +300,11 @@ class IncidentClient {
|
|
|
284
300
|
}
|
|
285
301
|
/**
|
|
286
302
|
* During support ticket creation, returns the list of all possible products that Oracle Cloud Infrastructure supports.
|
|
303
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
287
304
|
* @param ListIncidentResourceTypesRequest
|
|
288
305
|
* @return ListIncidentResourceTypesResponse
|
|
289
306
|
* @throws OciError when an error occurs
|
|
290
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
307
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/ListIncidentResourceTypes.ts.html |here} to see how to use ListIncidentResourceTypes API.
|
|
291
308
|
*/
|
|
292
309
|
listIncidentResourceTypes(listIncidentResourceTypesRequest) {
|
|
293
310
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -310,7 +327,8 @@ class IncidentClient {
|
|
|
310
327
|
"ocid": listIncidentResourceTypesRequest.ocid,
|
|
311
328
|
"homeregion": listIncidentResourceTypesRequest.homeregion
|
|
312
329
|
};
|
|
313
|
-
const
|
|
330
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
331
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listIncidentResourceTypesRequest.retryConfiguration, specRetryConfiguration);
|
|
314
332
|
if (this.logger)
|
|
315
333
|
retrier.logger = this.logger;
|
|
316
334
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -351,6 +369,7 @@ class IncidentClient {
|
|
|
351
369
|
});
|
|
352
370
|
}
|
|
353
371
|
/**
|
|
372
|
+
* NOTE: This function is deprecated in favor of listIncidentResourceTypesRecordIterator function.
|
|
354
373
|
* Creates a new async iterator which will iterate over the models.IncidentResourceType objects
|
|
355
374
|
* contained in responses from the listIncidentResourceTypes operation. This iterator will fetch more data from the
|
|
356
375
|
* server as needed.
|
|
@@ -361,6 +380,7 @@ class IncidentClient {
|
|
|
361
380
|
return oci_common_1.paginateRecords(request, req => this.listIncidentResourceTypes(req));
|
|
362
381
|
}
|
|
363
382
|
/**
|
|
383
|
+
* NOTE: This function is deprecated in favor of listIncidentResourceTypesResponseIterator function.
|
|
364
384
|
* Creates a new async iterator which will iterate over the responses received from the listIncidentResourceTypes operation. This iterator
|
|
365
385
|
* will fetch more data from the server as needed.
|
|
366
386
|
*
|
|
@@ -369,12 +389,32 @@ class IncidentClient {
|
|
|
369
389
|
listAllIncidentResourceTypesResponses(request) {
|
|
370
390
|
return oci_common_1.paginateResponses(request, req => this.listIncidentResourceTypes(req));
|
|
371
391
|
}
|
|
392
|
+
/**
|
|
393
|
+
* Creates a new async iterator which will iterate over the models.IncidentResourceType objects
|
|
394
|
+
* contained in responses from the listIncidentResourceTypes operation. This iterator will fetch more data from the
|
|
395
|
+
* server as needed.
|
|
396
|
+
*
|
|
397
|
+
* @param request a request which can be sent to the service operation
|
|
398
|
+
*/
|
|
399
|
+
listIncidentResourceTypesRecordIterator(request) {
|
|
400
|
+
return oci_common_1.paginateRecords(request, req => this.listIncidentResourceTypes(req));
|
|
401
|
+
}
|
|
402
|
+
/**
|
|
403
|
+
* Creates a new async iterator which will iterate over the responses received from the listIncidentResourceTypes operation. This iterator
|
|
404
|
+
* will fetch more data from the server as needed.
|
|
405
|
+
*
|
|
406
|
+
* @param request a request which can be sent to the service operation
|
|
407
|
+
*/
|
|
408
|
+
listIncidentResourceTypesResponseIterator(request) {
|
|
409
|
+
return oci_common_1.paginateResponses(request, req => this.listIncidentResourceTypes(req));
|
|
410
|
+
}
|
|
372
411
|
/**
|
|
373
412
|
* Returns the list of support tickets raised by the tenancy.
|
|
413
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
374
414
|
* @param ListIncidentsRequest
|
|
375
415
|
* @return ListIncidentsResponse
|
|
376
416
|
* @throws OciError when an error occurs
|
|
377
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
417
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/ListIncidents.ts.html |here} to see how to use ListIncidents API.
|
|
378
418
|
*/
|
|
379
419
|
listIncidents(listIncidentsRequest) {
|
|
380
420
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -397,7 +437,8 @@ class IncidentClient {
|
|
|
397
437
|
"ocid": listIncidentsRequest.ocid,
|
|
398
438
|
"homeregion": listIncidentsRequest.homeregion
|
|
399
439
|
};
|
|
400
|
-
const
|
|
440
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
441
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listIncidentsRequest.retryConfiguration, specRetryConfiguration);
|
|
401
442
|
if (this.logger)
|
|
402
443
|
retrier.logger = this.logger;
|
|
403
444
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -438,6 +479,7 @@ class IncidentClient {
|
|
|
438
479
|
});
|
|
439
480
|
}
|
|
440
481
|
/**
|
|
482
|
+
* NOTE: This function is deprecated in favor of listIncidentsRecordIterator function.
|
|
441
483
|
* Creates a new async iterator which will iterate over the models.IncidentSummary objects
|
|
442
484
|
* contained in responses from the listIncidents operation. This iterator will fetch more data from the
|
|
443
485
|
* server as needed.
|
|
@@ -448,6 +490,7 @@ class IncidentClient {
|
|
|
448
490
|
return oci_common_1.paginateRecords(request, req => this.listIncidents(req));
|
|
449
491
|
}
|
|
450
492
|
/**
|
|
493
|
+
* NOTE: This function is deprecated in favor of listIncidentsResponseIterator function.
|
|
451
494
|
* Creates a new async iterator which will iterate over the responses received from the listIncidents operation. This iterator
|
|
452
495
|
* will fetch more data from the server as needed.
|
|
453
496
|
*
|
|
@@ -456,12 +499,32 @@ class IncidentClient {
|
|
|
456
499
|
listAllIncidentsResponses(request) {
|
|
457
500
|
return oci_common_1.paginateResponses(request, req => this.listIncidents(req));
|
|
458
501
|
}
|
|
502
|
+
/**
|
|
503
|
+
* Creates a new async iterator which will iterate over the models.IncidentSummary objects
|
|
504
|
+
* contained in responses from the listIncidents operation. This iterator will fetch more data from the
|
|
505
|
+
* server as needed.
|
|
506
|
+
*
|
|
507
|
+
* @param request a request which can be sent to the service operation
|
|
508
|
+
*/
|
|
509
|
+
listIncidentsRecordIterator(request) {
|
|
510
|
+
return oci_common_1.paginateRecords(request, req => this.listIncidents(req));
|
|
511
|
+
}
|
|
512
|
+
/**
|
|
513
|
+
* Creates a new async iterator which will iterate over the responses received from the listIncidents operation. This iterator
|
|
514
|
+
* will fetch more data from the server as needed.
|
|
515
|
+
*
|
|
516
|
+
* @param request a request which can be sent to the service operation
|
|
517
|
+
*/
|
|
518
|
+
listIncidentsResponseIterator(request) {
|
|
519
|
+
return oci_common_1.paginateResponses(request, req => this.listIncidents(req));
|
|
520
|
+
}
|
|
459
521
|
/**
|
|
460
522
|
* Updates the specified support ticket's information.
|
|
523
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
461
524
|
* @param UpdateIncidentRequest
|
|
462
525
|
* @return UpdateIncidentResponse
|
|
463
526
|
* @throws OciError when an error occurs
|
|
464
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
527
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/UpdateIncident.ts.html |here} to see how to use UpdateIncident API.
|
|
465
528
|
*/
|
|
466
529
|
updateIncident(updateIncidentRequest) {
|
|
467
530
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -479,7 +542,8 @@ class IncidentClient {
|
|
|
479
542
|
"ocid": updateIncidentRequest.ocid,
|
|
480
543
|
"homeregion": updateIncidentRequest.homeregion
|
|
481
544
|
};
|
|
482
|
-
const
|
|
545
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
546
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateIncidentRequest.retryConfiguration, specRetryConfiguration);
|
|
483
547
|
if (this.logger)
|
|
484
548
|
retrier.logger = this.logger;
|
|
485
549
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -517,10 +581,11 @@ class IncidentClient {
|
|
|
517
581
|
}
|
|
518
582
|
/**
|
|
519
583
|
* Checks whether the requested user is valid.
|
|
584
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
520
585
|
* @param ValidateUserRequest
|
|
521
586
|
* @return ValidateUserResponse
|
|
522
587
|
* @throws OciError when an error occurs
|
|
523
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
588
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/ValidateUser.ts.html |here} to see how to use ValidateUser API.
|
|
524
589
|
*/
|
|
525
590
|
validateUser(validateUserRequest) {
|
|
526
591
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -537,7 +602,8 @@ class IncidentClient {
|
|
|
537
602
|
"ocid": validateUserRequest.ocid,
|
|
538
603
|
"homeregion": validateUserRequest.homeregion
|
|
539
604
|
};
|
|
540
|
-
const
|
|
605
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
606
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, validateUserRequest.retryConfiguration, specRetryConfiguration);
|
|
541
607
|
if (this.logger)
|
|
542
608
|
retrier.logger = this.logger;
|
|
543
609
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -578,6 +644,9 @@ IncidentClient.serviceEndpointTemplate = "https://incidentmanagement.{region}.{s
|
|
|
578
644
|
var UserApiKeys;
|
|
579
645
|
(function (UserApiKeys) {
|
|
580
646
|
})(UserApiKeys = exports.UserApiKeys || (exports.UserApiKeys = {}));
|
|
647
|
+
/**
|
|
648
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
649
|
+
*/
|
|
581
650
|
class UserClient {
|
|
582
651
|
constructor(params, clientConfiguration) {
|
|
583
652
|
this["_endpoint"] = "";
|
|
@@ -592,6 +661,13 @@ class UserClient {
|
|
|
592
661
|
? clientConfiguration.circuitBreaker.circuit
|
|
593
662
|
: null;
|
|
594
663
|
}
|
|
664
|
+
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
665
|
+
const specCircuitBreakerEnabled = false;
|
|
666
|
+
if (!this._circuitBreaker &&
|
|
667
|
+
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
668
|
+
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
669
|
+
this._circuitBreaker = new common.CircuitBreaker().circuit;
|
|
670
|
+
}
|
|
595
671
|
this._httpClient =
|
|
596
672
|
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
|
|
597
673
|
if (params.authenticationDetailsProvider &&
|
|
@@ -642,10 +718,11 @@ class UserClient {
|
|
|
642
718
|
}
|
|
643
719
|
/**
|
|
644
720
|
* Create user to request Customer Support Identifier(CSI) to Customer User Administrator(CUA).
|
|
721
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
645
722
|
* @param CreateUserRequest
|
|
646
723
|
* @return CreateUserResponse
|
|
647
724
|
* @throws OciError when an error occurs
|
|
648
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
725
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/CreateUser.ts.html |here} to see how to use CreateUser API.
|
|
649
726
|
*/
|
|
650
727
|
createUser(createUserRequest) {
|
|
651
728
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -659,7 +736,8 @@ class UserClient {
|
|
|
659
736
|
"ocid": createUserRequest.ocid,
|
|
660
737
|
"homeregion": createUserRequest.homeregion
|
|
661
738
|
};
|
|
662
|
-
const
|
|
739
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
740
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createUserRequest.retryConfiguration, specRetryConfiguration);
|
|
663
741
|
if (this.logger)
|
|
664
742
|
retrier.logger = this.logger;
|
|
665
743
|
const request = yield oci_common_2.composeRequest({
|
package/lib/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/cims/lib/client.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/cims/lib/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/CreateIncident.ts.html |here} to see how to use CreateIncidentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateIncidentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/CreateUser.ts.html |here} to see how to use CreateUserRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateUserRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/GetIncident.ts.html |here} to see how to use GetIncidentRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetIncidentRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/GetStatus.ts.html |here} to see how to use GetStatusRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetStatusRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/ListIncidentResourceTypes.ts.html |here} to see how to use ListIncidentResourceTypesRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListIncidentResourceTypesRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/ListIncidents.ts.html |here} to see how to use ListIncidentsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListIncidentsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/UpdateIncident.ts.html |here} to see how to use UpdateIncidentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateIncidentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/cims/ValidateUser.ts.html |here} to see how to use ValidateUserRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ValidateUserRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-cims",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.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.6.0",
|
|
19
|
+
"oci-workrequests": "2.6.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|