oci-integration 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 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
@@ -17,6 +17,9 @@ import * as responses from "./response";
17
17
  import { IntegrationInstanceWaiter } from "./integrationinstance-waiter";
18
18
  export declare enum IntegrationInstanceApiKeys {
19
19
  }
20
+ /**
21
+ * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
22
+ */
20
23
  export declare class IntegrationInstanceClient {
21
24
  protected static serviceEndpointTemplate: string;
22
25
  protected "_endpoint": string;
@@ -67,65 +70,73 @@ export declare class IntegrationInstanceClient {
67
70
  /**
68
71
  * Change the compartment for an integration instance
69
72
  *
73
+ * This operation does not retry by default if the user has not defined a retry configuration.
70
74
  * @param ChangeIntegrationInstanceCompartmentRequest
71
75
  * @return ChangeIntegrationInstanceCompartmentResponse
72
76
  * @throws OciError when an error occurs
73
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/ChangeIntegrationInstanceCompartment.ts.html |here} to see how to use ChangeIntegrationInstanceCompartment API.
77
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ChangeIntegrationInstanceCompartment.ts.html |here} to see how to use ChangeIntegrationInstanceCompartment API.
74
78
  */
75
79
  changeIntegrationInstanceCompartment(changeIntegrationInstanceCompartmentRequest: requests.ChangeIntegrationInstanceCompartmentRequest): Promise<responses.ChangeIntegrationInstanceCompartmentResponse>;
76
80
  /**
77
81
  * Change an Integration instance network endpoint. The operation is long-running
78
82
  * and creates a new WorkRequest.
79
83
  *
84
+ * This operation does not retry by default if the user has not defined a retry configuration.
80
85
  * @param ChangeIntegrationInstanceNetworkEndpointRequest
81
86
  * @return ChangeIntegrationInstanceNetworkEndpointResponse
82
87
  * @throws OciError when an error occurs
83
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/ChangeIntegrationInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeIntegrationInstanceNetworkEndpoint API.
88
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ChangeIntegrationInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeIntegrationInstanceNetworkEndpoint API.
84
89
  */
85
90
  changeIntegrationInstanceNetworkEndpoint(changeIntegrationInstanceNetworkEndpointRequest: requests.ChangeIntegrationInstanceNetworkEndpointRequest): Promise<responses.ChangeIntegrationInstanceNetworkEndpointResponse>;
86
91
  /**
87
92
  * Creates a new Integration Instance.
88
93
  *
94
+ * This operation does not retry by default if the user has not defined a retry configuration.
89
95
  * @param CreateIntegrationInstanceRequest
90
96
  * @return CreateIntegrationInstanceResponse
91
97
  * @throws OciError when an error occurs
92
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/CreateIntegrationInstance.ts.html |here} to see how to use CreateIntegrationInstance API.
98
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/CreateIntegrationInstance.ts.html |here} to see how to use CreateIntegrationInstance API.
93
99
  */
94
100
  createIntegrationInstance(createIntegrationInstanceRequest: requests.CreateIntegrationInstanceRequest): Promise<responses.CreateIntegrationInstanceResponse>;
95
101
  /**
96
102
  * Deletes an Integration Instance resource by identifier.
103
+ * This operation does not retry by default if the user has not defined a retry configuration.
97
104
  * @param DeleteIntegrationInstanceRequest
98
105
  * @return DeleteIntegrationInstanceResponse
99
106
  * @throws OciError when an error occurs
100
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/DeleteIntegrationInstance.ts.html |here} to see how to use DeleteIntegrationInstance API.
107
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/DeleteIntegrationInstance.ts.html |here} to see how to use DeleteIntegrationInstance API.
101
108
  */
102
109
  deleteIntegrationInstance(deleteIntegrationInstanceRequest: requests.DeleteIntegrationInstanceRequest): Promise<responses.DeleteIntegrationInstanceResponse>;
103
110
  /**
104
111
  * Gets a IntegrationInstance by identifier
112
+ * This operation does not retry by default if the user has not defined a retry configuration.
105
113
  * @param GetIntegrationInstanceRequest
106
114
  * @return GetIntegrationInstanceResponse
107
115
  * @throws OciError when an error occurs
108
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/GetIntegrationInstance.ts.html |here} to see how to use GetIntegrationInstance API.
116
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/GetIntegrationInstance.ts.html |here} to see how to use GetIntegrationInstance API.
109
117
  */
110
118
  getIntegrationInstance(getIntegrationInstanceRequest: requests.GetIntegrationInstanceRequest): Promise<responses.GetIntegrationInstanceResponse>;
111
119
  /**
112
120
  * Gets the status of the work request with the given ID.
121
+ * This operation does not retry by default if the user has not defined a retry configuration.
113
122
  * @param GetWorkRequestRequest
114
123
  * @return GetWorkRequestResponse
115
124
  * @throws OciError when an error occurs
116
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
125
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
117
126
  */
118
127
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
119
128
  /**
120
129
  * Returns a list of Integration Instances.
121
130
  *
131
+ * This operation does not retry by default if the user has not defined a retry configuration.
122
132
  * @param ListIntegrationInstancesRequest
123
133
  * @return ListIntegrationInstancesResponse
124
134
  * @throws OciError when an error occurs
125
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/ListIntegrationInstances.ts.html |here} to see how to use ListIntegrationInstances API.
135
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ListIntegrationInstances.ts.html |here} to see how to use ListIntegrationInstances API.
126
136
  */
127
137
  listIntegrationInstances(listIntegrationInstancesRequest: requests.ListIntegrationInstancesRequest): Promise<responses.ListIntegrationInstancesResponse>;
128
138
  /**
139
+ * NOTE: This function is deprecated in favor of listIntegrationInstancesRecordIterator function.
129
140
  * Creates a new async iterator which will iterate over the models.IntegrationInstanceSummary objects
130
141
  * contained in responses from the listIntegrationInstances operation. This iterator will fetch more data from the
131
142
  * server as needed.
@@ -134,21 +145,39 @@ export declare class IntegrationInstanceClient {
134
145
  */
135
146
  listAllIntegrationInstances(request: requests.ListIntegrationInstancesRequest): AsyncIterableIterator<model.IntegrationInstanceSummary>;
136
147
  /**
148
+ * NOTE: This function is deprecated in favor of listIntegrationInstancesResponseIterator function.
137
149
  * Creates a new async iterator which will iterate over the responses received from the listIntegrationInstances operation. This iterator
138
150
  * will fetch more data from the server as needed.
139
151
  *
140
152
  * @param request a request which can be sent to the service operation
141
153
  */
142
154
  listAllIntegrationInstancesResponses(request: requests.ListIntegrationInstancesRequest): AsyncIterableIterator<responses.ListIntegrationInstancesResponse>;
155
+ /**
156
+ * Creates a new async iterator which will iterate over the models.IntegrationInstanceSummary objects
157
+ * contained in responses from the listIntegrationInstances operation. This iterator will fetch more data from the
158
+ * server as needed.
159
+ *
160
+ * @param request a request which can be sent to the service operation
161
+ */
162
+ listIntegrationInstancesRecordIterator(request: requests.ListIntegrationInstancesRequest): AsyncIterableIterator<model.IntegrationInstanceSummary>;
163
+ /**
164
+ * Creates a new async iterator which will iterate over the responses received from the listIntegrationInstances operation. This iterator
165
+ * will fetch more data from the server as needed.
166
+ *
167
+ * @param request a request which can be sent to the service operation
168
+ */
169
+ listIntegrationInstancesResponseIterator(request: requests.ListIntegrationInstancesRequest): AsyncIterableIterator<responses.ListIntegrationInstancesResponse>;
143
170
  /**
144
171
  * Get the errors of a work request.
172
+ * This operation does not retry by default if the user has not defined a retry configuration.
145
173
  * @param ListWorkRequestErrorsRequest
146
174
  * @return ListWorkRequestErrorsResponse
147
175
  * @throws OciError when an error occurs
148
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
176
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
149
177
  */
150
178
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
151
179
  /**
180
+ * NOTE: This function is deprecated in favor of listWorkRequestErrorsRecordIterator function.
152
181
  * Creates a new async iterator which will iterate over the models.WorkRequestError objects
153
182
  * contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
154
183
  * server as needed.
@@ -157,21 +186,39 @@ export declare class IntegrationInstanceClient {
157
186
  */
158
187
  listAllWorkRequestErrors(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<model.WorkRequestError>;
159
188
  /**
189
+ * NOTE: This function is deprecated in favor of listWorkRequestErrorsResponseIterator function.
160
190
  * Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
161
191
  * will fetch more data from the server as needed.
162
192
  *
163
193
  * @param request a request which can be sent to the service operation
164
194
  */
165
195
  listAllWorkRequestErrorsResponses(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
196
+ /**
197
+ * Creates a new async iterator which will iterate over the models.WorkRequestError objects
198
+ * contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
199
+ * server as needed.
200
+ *
201
+ * @param request a request which can be sent to the service operation
202
+ */
203
+ listWorkRequestErrorsRecordIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<model.WorkRequestError>;
204
+ /**
205
+ * Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
206
+ * will fetch more data from the server as needed.
207
+ *
208
+ * @param request a request which can be sent to the service operation
209
+ */
210
+ listWorkRequestErrorsResponseIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
166
211
  /**
167
212
  * Get the logs of a work request.
213
+ * This operation does not retry by default if the user has not defined a retry configuration.
168
214
  * @param ListWorkRequestLogsRequest
169
215
  * @return ListWorkRequestLogsResponse
170
216
  * @throws OciError when an error occurs
171
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
217
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
172
218
  */
173
219
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
174
220
  /**
221
+ * NOTE: This function is deprecated in favor of listWorkRequestLogsRecordIterator function.
175
222
  * Creates a new async iterator which will iterate over the models.WorkRequestLogEntry objects
176
223
  * contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
177
224
  * server as needed.
@@ -180,22 +227,40 @@ export declare class IntegrationInstanceClient {
180
227
  */
181
228
  listAllWorkRequestLogs(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<model.WorkRequestLogEntry>;
182
229
  /**
230
+ * NOTE: This function is deprecated in favor of listWorkRequestLogsResponseIterator function.
183
231
  * Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
184
232
  * will fetch more data from the server as needed.
185
233
  *
186
234
  * @param request a request which can be sent to the service operation
187
235
  */
188
236
  listAllWorkRequestLogsResponses(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<responses.ListWorkRequestLogsResponse>;
237
+ /**
238
+ * Creates a new async iterator which will iterate over the models.WorkRequestLogEntry objects
239
+ * contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
240
+ * server as needed.
241
+ *
242
+ * @param request a request which can be sent to the service operation
243
+ */
244
+ listWorkRequestLogsRecordIterator(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<model.WorkRequestLogEntry>;
245
+ /**
246
+ * Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
247
+ * will fetch more data from the server as needed.
248
+ *
249
+ * @param request a request which can be sent to the service operation
250
+ */
251
+ listWorkRequestLogsResponseIterator(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<responses.ListWorkRequestLogsResponse>;
189
252
  /**
190
253
  * Lists the work requests in a compartment.
191
254
  *
255
+ * This operation does not retry by default if the user has not defined a retry configuration.
192
256
  * @param ListWorkRequestsRequest
193
257
  * @return ListWorkRequestsResponse
194
258
  * @throws OciError when an error occurs
195
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
259
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
196
260
  */
197
261
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
198
262
  /**
263
+ * NOTE: This function is deprecated in favor of listWorkRequestsRecordIterator function.
199
264
  * Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
200
265
  * contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
201
266
  * server as needed.
@@ -204,36 +269,55 @@ export declare class IntegrationInstanceClient {
204
269
  */
205
270
  listAllWorkRequests(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequestSummary>;
206
271
  /**
272
+ * NOTE: This function is deprecated in favor of listWorkRequestsResponseIterator function.
207
273
  * Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
208
274
  * will fetch more data from the server as needed.
209
275
  *
210
276
  * @param request a request which can be sent to the service operation
211
277
  */
212
278
  listAllWorkRequestsResponses(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
279
+ /**
280
+ * Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
281
+ * contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
282
+ * server as needed.
283
+ *
284
+ * @param request a request which can be sent to the service operation
285
+ */
286
+ listWorkRequestsRecordIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequestSummary>;
287
+ /**
288
+ * Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
289
+ * will fetch more data from the server as needed.
290
+ *
291
+ * @param request a request which can be sent to the service operation
292
+ */
293
+ listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
213
294
  /**
214
295
  * Start an integration instance that was previously in an INACTIVE state
215
296
  *
297
+ * This operation does not retry by default if the user has not defined a retry configuration.
216
298
  * @param StartIntegrationInstanceRequest
217
299
  * @return StartIntegrationInstanceResponse
218
300
  * @throws OciError when an error occurs
219
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/StartIntegrationInstance.ts.html |here} to see how to use StartIntegrationInstance API.
301
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/StartIntegrationInstance.ts.html |here} to see how to use StartIntegrationInstance API.
220
302
  */
221
303
  startIntegrationInstance(startIntegrationInstanceRequest: requests.StartIntegrationInstanceRequest): Promise<responses.StartIntegrationInstanceResponse>;
222
304
  /**
223
305
  * Stop an integration instance that was previously in an ACTIVE state
224
306
  *
307
+ * This operation does not retry by default if the user has not defined a retry configuration.
225
308
  * @param StopIntegrationInstanceRequest
226
309
  * @return StopIntegrationInstanceResponse
227
310
  * @throws OciError when an error occurs
228
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/StopIntegrationInstance.ts.html |here} to see how to use StopIntegrationInstance API.
311
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/StopIntegrationInstance.ts.html |here} to see how to use StopIntegrationInstance API.
229
312
  */
230
313
  stopIntegrationInstance(stopIntegrationInstanceRequest: requests.StopIntegrationInstanceRequest): Promise<responses.StopIntegrationInstanceResponse>;
231
314
  /**
232
315
  * Updates the Integration Instance.
316
+ * This operation does not retry by default if the user has not defined a retry configuration.
233
317
  * @param UpdateIntegrationInstanceRequest
234
318
  * @return UpdateIntegrationInstanceResponse
235
319
  * @throws OciError when an error occurs
236
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/UpdateIntegrationInstance.ts.html |here} to see how to use UpdateIntegrationInstance API.
320
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/UpdateIntegrationInstance.ts.html |here} to see how to use UpdateIntegrationInstance API.
237
321
  */
238
322
  updateIntegrationInstance(updateIntegrationInstanceRequest: requests.UpdateIntegrationInstanceRequest): Promise<responses.UpdateIntegrationInstanceResponse>;
239
323
  }
package/lib/client.js CHANGED
@@ -52,6 +52,9 @@ const oci_common_2 = require("oci-common");
52
52
  var IntegrationInstanceApiKeys;
53
53
  (function (IntegrationInstanceApiKeys) {
54
54
  })(IntegrationInstanceApiKeys = exports.IntegrationInstanceApiKeys || (exports.IntegrationInstanceApiKeys = {}));
55
+ /**
56
+ * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
57
+ */
55
58
  class IntegrationInstanceClient {
56
59
  constructor(params, clientConfiguration) {
57
60
  this["_endpoint"] = "";
@@ -66,6 +69,13 @@ class IntegrationInstanceClient {
66
69
  ? clientConfiguration.circuitBreaker.circuit
67
70
  : null;
68
71
  }
72
+ // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
73
+ const specCircuitBreakerEnabled = false;
74
+ if (!this._circuitBreaker &&
75
+ common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
76
+ (specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
77
+ this._circuitBreaker = new common.CircuitBreaker().circuit;
78
+ }
69
79
  this._httpClient =
70
80
  params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
71
81
  if (params.authenticationDetailsProvider &&
@@ -138,10 +148,11 @@ class IntegrationInstanceClient {
138
148
  /**
139
149
  * Change the compartment for an integration instance
140
150
  *
151
+ * This operation does not retry by default if the user has not defined a retry configuration.
141
152
  * @param ChangeIntegrationInstanceCompartmentRequest
142
153
  * @return ChangeIntegrationInstanceCompartmentResponse
143
154
  * @throws OciError when an error occurs
144
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/ChangeIntegrationInstanceCompartment.ts.html |here} to see how to use ChangeIntegrationInstanceCompartment API.
155
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ChangeIntegrationInstanceCompartment.ts.html |here} to see how to use ChangeIntegrationInstanceCompartment API.
145
156
  */
146
157
  changeIntegrationInstanceCompartment(changeIntegrationInstanceCompartmentRequest) {
147
158
  return __awaiter(this, void 0, void 0, function* () {
@@ -157,7 +168,8 @@ class IntegrationInstanceClient {
157
168
  "opc-request-id": changeIntegrationInstanceCompartmentRequest.opcRequestId,
158
169
  "opc-retry-token": changeIntegrationInstanceCompartmentRequest.opcRetryToken
159
170
  };
160
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, changeIntegrationInstanceCompartmentRequest.retryConfiguration);
171
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
172
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeIntegrationInstanceCompartmentRequest.retryConfiguration, specRetryConfiguration);
161
173
  if (this.logger)
162
174
  retrier.logger = this.logger;
163
175
  const request = yield oci_common_2.composeRequest({
@@ -198,10 +210,11 @@ class IntegrationInstanceClient {
198
210
  * Change an Integration instance network endpoint. The operation is long-running
199
211
  * and creates a new WorkRequest.
200
212
  *
213
+ * This operation does not retry by default if the user has not defined a retry configuration.
201
214
  * @param ChangeIntegrationInstanceNetworkEndpointRequest
202
215
  * @return ChangeIntegrationInstanceNetworkEndpointResponse
203
216
  * @throws OciError when an error occurs
204
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/ChangeIntegrationInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeIntegrationInstanceNetworkEndpoint API.
217
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ChangeIntegrationInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeIntegrationInstanceNetworkEndpoint API.
205
218
  */
206
219
  changeIntegrationInstanceNetworkEndpoint(changeIntegrationInstanceNetworkEndpointRequest) {
207
220
  return __awaiter(this, void 0, void 0, function* () {
@@ -217,7 +230,8 @@ class IntegrationInstanceClient {
217
230
  "opc-request-id": changeIntegrationInstanceNetworkEndpointRequest.opcRequestId,
218
231
  "opc-retry-token": changeIntegrationInstanceNetworkEndpointRequest.opcRetryToken
219
232
  };
220
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, changeIntegrationInstanceNetworkEndpointRequest.retryConfiguration);
233
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
234
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeIntegrationInstanceNetworkEndpointRequest.retryConfiguration, specRetryConfiguration);
221
235
  if (this.logger)
222
236
  retrier.logger = this.logger;
223
237
  const request = yield oci_common_2.composeRequest({
@@ -257,10 +271,11 @@ class IntegrationInstanceClient {
257
271
  /**
258
272
  * Creates a new Integration Instance.
259
273
  *
274
+ * This operation does not retry by default if the user has not defined a retry configuration.
260
275
  * @param CreateIntegrationInstanceRequest
261
276
  * @return CreateIntegrationInstanceResponse
262
277
  * @throws OciError when an error occurs
263
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/CreateIntegrationInstance.ts.html |here} to see how to use CreateIntegrationInstance API.
278
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/CreateIntegrationInstance.ts.html |here} to see how to use CreateIntegrationInstance API.
264
279
  */
265
280
  createIntegrationInstance(createIntegrationInstanceRequest) {
266
281
  return __awaiter(this, void 0, void 0, function* () {
@@ -273,7 +288,8 @@ class IntegrationInstanceClient {
273
288
  "opc-retry-token": createIntegrationInstanceRequest.opcRetryToken,
274
289
  "opc-request-id": createIntegrationInstanceRequest.opcRequestId
275
290
  };
276
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, createIntegrationInstanceRequest.retryConfiguration);
291
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
292
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createIntegrationInstanceRequest.retryConfiguration, specRetryConfiguration);
277
293
  if (this.logger)
278
294
  retrier.logger = this.logger;
279
295
  const request = yield oci_common_2.composeRequest({
@@ -312,10 +328,11 @@ class IntegrationInstanceClient {
312
328
  }
313
329
  /**
314
330
  * Deletes an Integration Instance resource by identifier.
331
+ * This operation does not retry by default if the user has not defined a retry configuration.
315
332
  * @param DeleteIntegrationInstanceRequest
316
333
  * @return DeleteIntegrationInstanceResponse
317
334
  * @throws OciError when an error occurs
318
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/DeleteIntegrationInstance.ts.html |here} to see how to use DeleteIntegrationInstance API.
335
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/DeleteIntegrationInstance.ts.html |here} to see how to use DeleteIntegrationInstance API.
319
336
  */
320
337
  deleteIntegrationInstance(deleteIntegrationInstanceRequest) {
321
338
  return __awaiter(this, void 0, void 0, function* () {
@@ -330,7 +347,8 @@ class IntegrationInstanceClient {
330
347
  "if-match": deleteIntegrationInstanceRequest.ifMatch,
331
348
  "opc-request-id": deleteIntegrationInstanceRequest.opcRequestId
332
349
  };
333
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deleteIntegrationInstanceRequest.retryConfiguration);
350
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
351
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteIntegrationInstanceRequest.retryConfiguration, specRetryConfiguration);
334
352
  if (this.logger)
335
353
  retrier.logger = this.logger;
336
354
  const request = yield oci_common_2.composeRequest({
@@ -368,10 +386,11 @@ class IntegrationInstanceClient {
368
386
  }
369
387
  /**
370
388
  * Gets a IntegrationInstance by identifier
389
+ * This operation does not retry by default if the user has not defined a retry configuration.
371
390
  * @param GetIntegrationInstanceRequest
372
391
  * @return GetIntegrationInstanceResponse
373
392
  * @throws OciError when an error occurs
374
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/GetIntegrationInstance.ts.html |here} to see how to use GetIntegrationInstance API.
393
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/GetIntegrationInstance.ts.html |here} to see how to use GetIntegrationInstance API.
375
394
  */
376
395
  getIntegrationInstance(getIntegrationInstanceRequest) {
377
396
  return __awaiter(this, void 0, void 0, function* () {
@@ -385,7 +404,8 @@ class IntegrationInstanceClient {
385
404
  "Content-Type": common.Constants.APPLICATION_JSON,
386
405
  "opc-request-id": getIntegrationInstanceRequest.opcRequestId
387
406
  };
388
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getIntegrationInstanceRequest.retryConfiguration);
407
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
408
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getIntegrationInstanceRequest.retryConfiguration, specRetryConfiguration);
389
409
  if (this.logger)
390
410
  retrier.logger = this.logger;
391
411
  const request = yield oci_common_2.composeRequest({
@@ -427,10 +447,11 @@ class IntegrationInstanceClient {
427
447
  }
428
448
  /**
429
449
  * Gets the status of the work request with the given ID.
450
+ * This operation does not retry by default if the user has not defined a retry configuration.
430
451
  * @param GetWorkRequestRequest
431
452
  * @return GetWorkRequestResponse
432
453
  * @throws OciError when an error occurs
433
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
454
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
434
455
  */
435
456
  getWorkRequest(getWorkRequestRequest) {
436
457
  return __awaiter(this, void 0, void 0, function* () {
@@ -444,7 +465,8 @@ class IntegrationInstanceClient {
444
465
  "Content-Type": common.Constants.APPLICATION_JSON,
445
466
  "opc-request-id": getWorkRequestRequest.opcRequestId
446
467
  };
447
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getWorkRequestRequest.retryConfiguration);
468
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
469
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
448
470
  if (this.logger)
449
471
  retrier.logger = this.logger;
450
472
  const request = yield oci_common_2.composeRequest({
@@ -492,10 +514,11 @@ class IntegrationInstanceClient {
492
514
  /**
493
515
  * Returns a list of Integration Instances.
494
516
  *
517
+ * This operation does not retry by default if the user has not defined a retry configuration.
495
518
  * @param ListIntegrationInstancesRequest
496
519
  * @return ListIntegrationInstancesResponse
497
520
  * @throws OciError when an error occurs
498
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/ListIntegrationInstances.ts.html |here} to see how to use ListIntegrationInstances API.
521
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ListIntegrationInstances.ts.html |here} to see how to use ListIntegrationInstances API.
499
522
  */
500
523
  listIntegrationInstances(listIntegrationInstancesRequest) {
501
524
  return __awaiter(this, void 0, void 0, function* () {
@@ -515,7 +538,8 @@ class IntegrationInstanceClient {
515
538
  "Content-Type": common.Constants.APPLICATION_JSON,
516
539
  "opc-request-id": listIntegrationInstancesRequest.opcRequestId
517
540
  };
518
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listIntegrationInstancesRequest.retryConfiguration);
541
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
542
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listIntegrationInstancesRequest.retryConfiguration, specRetryConfiguration);
519
543
  if (this.logger)
520
544
  retrier.logger = this.logger;
521
545
  const request = yield oci_common_2.composeRequest({
@@ -561,6 +585,7 @@ class IntegrationInstanceClient {
561
585
  });
562
586
  }
563
587
  /**
588
+ * NOTE: This function is deprecated in favor of listIntegrationInstancesRecordIterator function.
564
589
  * Creates a new async iterator which will iterate over the models.IntegrationInstanceSummary objects
565
590
  * contained in responses from the listIntegrationInstances operation. This iterator will fetch more data from the
566
591
  * server as needed.
@@ -571,6 +596,7 @@ class IntegrationInstanceClient {
571
596
  return oci_common_1.paginateRecords(request, req => this.listIntegrationInstances(req));
572
597
  }
573
598
  /**
599
+ * NOTE: This function is deprecated in favor of listIntegrationInstancesResponseIterator function.
574
600
  * Creates a new async iterator which will iterate over the responses received from the listIntegrationInstances operation. This iterator
575
601
  * will fetch more data from the server as needed.
576
602
  *
@@ -579,12 +605,32 @@ class IntegrationInstanceClient {
579
605
  listAllIntegrationInstancesResponses(request) {
580
606
  return oci_common_1.paginateResponses(request, req => this.listIntegrationInstances(req));
581
607
  }
608
+ /**
609
+ * Creates a new async iterator which will iterate over the models.IntegrationInstanceSummary objects
610
+ * contained in responses from the listIntegrationInstances operation. This iterator will fetch more data from the
611
+ * server as needed.
612
+ *
613
+ * @param request a request which can be sent to the service operation
614
+ */
615
+ listIntegrationInstancesRecordIterator(request) {
616
+ return oci_common_1.paginateRecords(request, req => this.listIntegrationInstances(req));
617
+ }
618
+ /**
619
+ * Creates a new async iterator which will iterate over the responses received from the listIntegrationInstances operation. This iterator
620
+ * will fetch more data from the server as needed.
621
+ *
622
+ * @param request a request which can be sent to the service operation
623
+ */
624
+ listIntegrationInstancesResponseIterator(request) {
625
+ return oci_common_1.paginateResponses(request, req => this.listIntegrationInstances(req));
626
+ }
582
627
  /**
583
628
  * Get the errors of a work request.
629
+ * This operation does not retry by default if the user has not defined a retry configuration.
584
630
  * @param ListWorkRequestErrorsRequest
585
631
  * @return ListWorkRequestErrorsResponse
586
632
  * @throws OciError when an error occurs
587
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
633
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
588
634
  */
589
635
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
590
636
  return __awaiter(this, void 0, void 0, function* () {
@@ -602,7 +648,8 @@ class IntegrationInstanceClient {
602
648
  "Content-Type": common.Constants.APPLICATION_JSON,
603
649
  "opc-request-id": listWorkRequestErrorsRequest.opcRequestId
604
650
  };
605
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listWorkRequestErrorsRequest.retryConfiguration);
651
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
652
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestErrorsRequest.retryConfiguration, specRetryConfiguration);
606
653
  if (this.logger)
607
654
  retrier.logger = this.logger;
608
655
  const request = yield oci_common_2.composeRequest({
@@ -648,6 +695,7 @@ class IntegrationInstanceClient {
648
695
  });
649
696
  }
650
697
  /**
698
+ * NOTE: This function is deprecated in favor of listWorkRequestErrorsRecordIterator function.
651
699
  * Creates a new async iterator which will iterate over the models.WorkRequestError objects
652
700
  * contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
653
701
  * server as needed.
@@ -658,6 +706,7 @@ class IntegrationInstanceClient {
658
706
  return oci_common_1.paginateRecords(request, req => this.listWorkRequestErrors(req));
659
707
  }
660
708
  /**
709
+ * NOTE: This function is deprecated in favor of listWorkRequestErrorsResponseIterator function.
661
710
  * Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
662
711
  * will fetch more data from the server as needed.
663
712
  *
@@ -666,12 +715,32 @@ class IntegrationInstanceClient {
666
715
  listAllWorkRequestErrorsResponses(request) {
667
716
  return oci_common_1.paginateResponses(request, req => this.listWorkRequestErrors(req));
668
717
  }
718
+ /**
719
+ * Creates a new async iterator which will iterate over the models.WorkRequestError objects
720
+ * contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
721
+ * server as needed.
722
+ *
723
+ * @param request a request which can be sent to the service operation
724
+ */
725
+ listWorkRequestErrorsRecordIterator(request) {
726
+ return oci_common_1.paginateRecords(request, req => this.listWorkRequestErrors(req));
727
+ }
728
+ /**
729
+ * Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
730
+ * will fetch more data from the server as needed.
731
+ *
732
+ * @param request a request which can be sent to the service operation
733
+ */
734
+ listWorkRequestErrorsResponseIterator(request) {
735
+ return oci_common_1.paginateResponses(request, req => this.listWorkRequestErrors(req));
736
+ }
669
737
  /**
670
738
  * Get the logs of a work request.
739
+ * This operation does not retry by default if the user has not defined a retry configuration.
671
740
  * @param ListWorkRequestLogsRequest
672
741
  * @return ListWorkRequestLogsResponse
673
742
  * @throws OciError when an error occurs
674
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
743
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
675
744
  */
676
745
  listWorkRequestLogs(listWorkRequestLogsRequest) {
677
746
  return __awaiter(this, void 0, void 0, function* () {
@@ -689,7 +758,8 @@ class IntegrationInstanceClient {
689
758
  "Content-Type": common.Constants.APPLICATION_JSON,
690
759
  "opc-request-id": listWorkRequestLogsRequest.opcRequestId
691
760
  };
692
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listWorkRequestLogsRequest.retryConfiguration);
761
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
762
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestLogsRequest.retryConfiguration, specRetryConfiguration);
693
763
  if (this.logger)
694
764
  retrier.logger = this.logger;
695
765
  const request = yield oci_common_2.composeRequest({
@@ -735,6 +805,7 @@ class IntegrationInstanceClient {
735
805
  });
736
806
  }
737
807
  /**
808
+ * NOTE: This function is deprecated in favor of listWorkRequestLogsRecordIterator function.
738
809
  * Creates a new async iterator which will iterate over the models.WorkRequestLogEntry objects
739
810
  * contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
740
811
  * server as needed.
@@ -745,6 +816,7 @@ class IntegrationInstanceClient {
745
816
  return oci_common_1.paginateRecords(request, req => this.listWorkRequestLogs(req));
746
817
  }
747
818
  /**
819
+ * NOTE: This function is deprecated in favor of listWorkRequestLogsResponseIterator function.
748
820
  * Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
749
821
  * will fetch more data from the server as needed.
750
822
  *
@@ -753,13 +825,33 @@ class IntegrationInstanceClient {
753
825
  listAllWorkRequestLogsResponses(request) {
754
826
  return oci_common_1.paginateResponses(request, req => this.listWorkRequestLogs(req));
755
827
  }
828
+ /**
829
+ * Creates a new async iterator which will iterate over the models.WorkRequestLogEntry objects
830
+ * contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
831
+ * server as needed.
832
+ *
833
+ * @param request a request which can be sent to the service operation
834
+ */
835
+ listWorkRequestLogsRecordIterator(request) {
836
+ return oci_common_1.paginateRecords(request, req => this.listWorkRequestLogs(req));
837
+ }
838
+ /**
839
+ * Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
840
+ * will fetch more data from the server as needed.
841
+ *
842
+ * @param request a request which can be sent to the service operation
843
+ */
844
+ listWorkRequestLogsResponseIterator(request) {
845
+ return oci_common_1.paginateResponses(request, req => this.listWorkRequestLogs(req));
846
+ }
756
847
  /**
757
848
  * Lists the work requests in a compartment.
758
849
  *
850
+ * This operation does not retry by default if the user has not defined a retry configuration.
759
851
  * @param ListWorkRequestsRequest
760
852
  * @return ListWorkRequestsResponse
761
853
  * @throws OciError when an error occurs
762
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
854
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
763
855
  */
764
856
  listWorkRequests(listWorkRequestsRequest) {
765
857
  return __awaiter(this, void 0, void 0, function* () {
@@ -776,7 +868,8 @@ class IntegrationInstanceClient {
776
868
  "Content-Type": common.Constants.APPLICATION_JSON,
777
869
  "opc-request-id": listWorkRequestsRequest.opcRequestId
778
870
  };
779
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listWorkRequestsRequest.retryConfiguration);
871
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
872
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
780
873
  if (this.logger)
781
874
  retrier.logger = this.logger;
782
875
  const request = yield oci_common_2.composeRequest({
@@ -822,6 +915,7 @@ class IntegrationInstanceClient {
822
915
  });
823
916
  }
824
917
  /**
918
+ * NOTE: This function is deprecated in favor of listWorkRequestsRecordIterator function.
825
919
  * Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
826
920
  * contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
827
921
  * server as needed.
@@ -832,6 +926,7 @@ class IntegrationInstanceClient {
832
926
  return oci_common_1.paginateRecords(request, req => this.listWorkRequests(req));
833
927
  }
834
928
  /**
929
+ * NOTE: This function is deprecated in favor of listWorkRequestsResponseIterator function.
835
930
  * Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
836
931
  * will fetch more data from the server as needed.
837
932
  *
@@ -840,13 +935,33 @@ class IntegrationInstanceClient {
840
935
  listAllWorkRequestsResponses(request) {
841
936
  return oci_common_1.paginateResponses(request, req => this.listWorkRequests(req));
842
937
  }
938
+ /**
939
+ * Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
940
+ * contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
941
+ * server as needed.
942
+ *
943
+ * @param request a request which can be sent to the service operation
944
+ */
945
+ listWorkRequestsRecordIterator(request) {
946
+ return oci_common_1.paginateRecords(request, req => this.listWorkRequests(req));
947
+ }
948
+ /**
949
+ * Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
950
+ * will fetch more data from the server as needed.
951
+ *
952
+ * @param request a request which can be sent to the service operation
953
+ */
954
+ listWorkRequestsResponseIterator(request) {
955
+ return oci_common_1.paginateResponses(request, req => this.listWorkRequests(req));
956
+ }
843
957
  /**
844
958
  * Start an integration instance that was previously in an INACTIVE state
845
959
  *
960
+ * This operation does not retry by default if the user has not defined a retry configuration.
846
961
  * @param StartIntegrationInstanceRequest
847
962
  * @return StartIntegrationInstanceResponse
848
963
  * @throws OciError when an error occurs
849
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/StartIntegrationInstance.ts.html |here} to see how to use StartIntegrationInstance API.
964
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/StartIntegrationInstance.ts.html |here} to see how to use StartIntegrationInstance API.
850
965
  */
851
966
  startIntegrationInstance(startIntegrationInstanceRequest) {
852
967
  return __awaiter(this, void 0, void 0, function* () {
@@ -862,7 +977,8 @@ class IntegrationInstanceClient {
862
977
  "opc-request-id": startIntegrationInstanceRequest.opcRequestId,
863
978
  "opc-retry-token": startIntegrationInstanceRequest.opcRetryToken
864
979
  };
865
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, startIntegrationInstanceRequest.retryConfiguration);
980
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
981
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, startIntegrationInstanceRequest.retryConfiguration, specRetryConfiguration);
866
982
  if (this.logger)
867
983
  retrier.logger = this.logger;
868
984
  const request = yield oci_common_2.composeRequest({
@@ -901,10 +1017,11 @@ class IntegrationInstanceClient {
901
1017
  /**
902
1018
  * Stop an integration instance that was previously in an ACTIVE state
903
1019
  *
1020
+ * This operation does not retry by default if the user has not defined a retry configuration.
904
1021
  * @param StopIntegrationInstanceRequest
905
1022
  * @return StopIntegrationInstanceResponse
906
1023
  * @throws OciError when an error occurs
907
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/StopIntegrationInstance.ts.html |here} to see how to use StopIntegrationInstance API.
1024
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/StopIntegrationInstance.ts.html |here} to see how to use StopIntegrationInstance API.
908
1025
  */
909
1026
  stopIntegrationInstance(stopIntegrationInstanceRequest) {
910
1027
  return __awaiter(this, void 0, void 0, function* () {
@@ -920,7 +1037,8 @@ class IntegrationInstanceClient {
920
1037
  "opc-request-id": stopIntegrationInstanceRequest.opcRequestId,
921
1038
  "opc-retry-token": stopIntegrationInstanceRequest.opcRetryToken
922
1039
  };
923
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, stopIntegrationInstanceRequest.retryConfiguration);
1040
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1041
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, stopIntegrationInstanceRequest.retryConfiguration, specRetryConfiguration);
924
1042
  if (this.logger)
925
1043
  retrier.logger = this.logger;
926
1044
  const request = yield oci_common_2.composeRequest({
@@ -958,10 +1076,11 @@ class IntegrationInstanceClient {
958
1076
  }
959
1077
  /**
960
1078
  * Updates the Integration Instance.
1079
+ * This operation does not retry by default if the user has not defined a retry configuration.
961
1080
  * @param UpdateIntegrationInstanceRequest
962
1081
  * @return UpdateIntegrationInstanceResponse
963
1082
  * @throws OciError when an error occurs
964
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/integration/UpdateIntegrationInstance.ts.html |here} to see how to use UpdateIntegrationInstance API.
1083
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/UpdateIntegrationInstance.ts.html |here} to see how to use UpdateIntegrationInstance API.
965
1084
  */
966
1085
  updateIntegrationInstance(updateIntegrationInstanceRequest) {
967
1086
  return __awaiter(this, void 0, void 0, function* () {
@@ -976,7 +1095,8 @@ class IntegrationInstanceClient {
976
1095
  "if-match": updateIntegrationInstanceRequest.ifMatch,
977
1096
  "opc-request-id": updateIntegrationInstanceRequest.opcRequestId
978
1097
  };
979
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, updateIntegrationInstanceRequest.retryConfiguration);
1098
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1099
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateIntegrationInstanceRequest.retryConfiguration, specRetryConfiguration);
980
1100
  if (this.logger)
981
1101
  retrier.logger = this.logger;
982
1102
  const request = yield oci_common_2.composeRequest({
package/lib/client.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/integration/lib/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/integration/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.4.0/integration/ChangeIntegrationInstanceCompartment.ts.html |here} to see how to use ChangeIntegrationInstanceCompartmentRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ChangeIntegrationInstanceCompartment.ts.html |here} to see how to use ChangeIntegrationInstanceCompartmentRequest.
17
17
  */
18
18
  export interface ChangeIntegrationInstanceCompartmentRequest 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.4.0/integration/ChangeIntegrationInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeIntegrationInstanceNetworkEndpointRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ChangeIntegrationInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeIntegrationInstanceNetworkEndpointRequest.
17
17
  */
18
18
  export interface ChangeIntegrationInstanceNetworkEndpointRequest 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.4.0/integration/CreateIntegrationInstance.ts.html |here} to see how to use CreateIntegrationInstanceRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/CreateIntegrationInstance.ts.html |here} to see how to use CreateIntegrationInstanceRequest.
17
17
  */
18
18
  export interface CreateIntegrationInstanceRequest 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.4.0/integration/DeleteIntegrationInstance.ts.html |here} to see how to use DeleteIntegrationInstanceRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/DeleteIntegrationInstance.ts.html |here} to see how to use DeleteIntegrationInstanceRequest.
16
16
  */
17
17
  export interface DeleteIntegrationInstanceRequest 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.4.0/integration/GetIntegrationInstance.ts.html |here} to see how to use GetIntegrationInstanceRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/GetIntegrationInstance.ts.html |here} to see how to use GetIntegrationInstanceRequest.
16
16
  */
17
17
  export interface GetIntegrationInstanceRequest 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.4.0/integration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
16
16
  */
17
17
  export interface GetWorkRequestRequest 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.4.0/integration/ListIntegrationInstances.ts.html |here} to see how to use ListIntegrationInstancesRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ListIntegrationInstances.ts.html |here} to see how to use ListIntegrationInstancesRequest.
16
16
  */
17
17
  export interface ListIntegrationInstancesRequest 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.4.0/integration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
16
16
  */
17
17
  export interface ListWorkRequestErrorsRequest 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.4.0/integration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
16
16
  */
17
17
  export interface ListWorkRequestLogsRequest 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.4.0/integration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
16
16
  */
17
17
  export interface ListWorkRequestsRequest 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.4.0/integration/StartIntegrationInstance.ts.html |here} to see how to use StartIntegrationInstanceRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/StartIntegrationInstance.ts.html |here} to see how to use StartIntegrationInstanceRequest.
16
16
  */
17
17
  export interface StartIntegrationInstanceRequest 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.4.0/integration/StopIntegrationInstance.ts.html |here} to see how to use StopIntegrationInstanceRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/StopIntegrationInstance.ts.html |here} to see how to use StopIntegrationInstanceRequest.
16
16
  */
17
17
  export interface StopIntegrationInstanceRequest 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.4.0/integration/UpdateIntegrationInstance.ts.html |here} to see how to use UpdateIntegrationInstanceRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/integration/UpdateIntegrationInstance.ts.html |here} to see how to use UpdateIntegrationInstanceRequest.
17
17
  */
18
18
  export interface UpdateIntegrationInstanceRequest extends common.BaseRequest {
19
19
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oci-integration",
3
- "version": "2.4.0",
3
+ "version": "2.6.0",
4
4
  "description": "OCI NodeJS client for Integration service",
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.4.0",
19
- "oci-workrequests": "2.4.0"
18
+ "oci-common": "2.6.0",
19
+ "oci-workrequests": "2.6.0"
20
20
  },
21
21
  "publishConfig": {
22
22
  "registry": "https://registry.npmjs.org"