oci-limits 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 { QuotasWaiter } from "./quotas-waiter";
18
18
  export declare enum LimitsApiKeys {
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 LimitsClient {
21
24
  protected static serviceEndpointTemplate: string;
22
25
  protected "_endpoint": string;
@@ -56,10 +59,11 @@ export declare class LimitsClient {
56
59
  * * The usage in the selected compartment for the given limit.
57
60
  * Note that not all resource limits support this API. If the value is not available, the API returns a 404 response.
58
61
  *
62
+ * This operation does not retry by default if the user has not defined a retry configuration.
59
63
  * @param GetResourceAvailabilityRequest
60
64
  * @return GetResourceAvailabilityResponse
61
65
  * @throws OciError when an error occurs
62
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/GetResourceAvailability.ts.html |here} to see how to use GetResourceAvailability API.
66
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/GetResourceAvailability.ts.html |here} to see how to use GetResourceAvailability API.
63
67
  */
64
68
  getResourceAvailability(getResourceAvailabilityRequest: requests.GetResourceAvailabilityRequest): Promise<responses.GetResourceAvailabilityResponse>;
65
69
  /**
@@ -67,13 +71,15 @@ export declare class LimitsClient {
67
71
  * If the 'areQuotasSupported' property is true, you can create quota policies on top of this limit at the
68
72
  * compartment level.
69
73
  *
74
+ * This operation does not retry by default if the user has not defined a retry configuration.
70
75
  * @param ListLimitDefinitionsRequest
71
76
  * @return ListLimitDefinitionsResponse
72
77
  * @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/limits/ListLimitDefinitions.ts.html |here} to see how to use ListLimitDefinitions API.
78
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/ListLimitDefinitions.ts.html |here} to see how to use ListLimitDefinitions API.
74
79
  */
75
80
  listLimitDefinitions(listLimitDefinitionsRequest: requests.ListLimitDefinitionsRequest): Promise<responses.ListLimitDefinitionsResponse>;
76
81
  /**
82
+ * NOTE: This function is deprecated in favor of listLimitDefinitionsRecordIterator function.
77
83
  * Creates a new async iterator which will iterate over the models.LimitDefinitionSummary objects
78
84
  * contained in responses from the listLimitDefinitions operation. This iterator will fetch more data from the
79
85
  * server as needed.
@@ -82,22 +88,40 @@ export declare class LimitsClient {
82
88
  */
83
89
  listAllLimitDefinitions(request: requests.ListLimitDefinitionsRequest): AsyncIterableIterator<model.LimitDefinitionSummary>;
84
90
  /**
91
+ * NOTE: This function is deprecated in favor of listLimitDefinitionsResponseIterator function.
85
92
  * Creates a new async iterator which will iterate over the responses received from the listLimitDefinitions operation. This iterator
86
93
  * will fetch more data from the server as needed.
87
94
  *
88
95
  * @param request a request which can be sent to the service operation
89
96
  */
90
97
  listAllLimitDefinitionsResponses(request: requests.ListLimitDefinitionsRequest): AsyncIterableIterator<responses.ListLimitDefinitionsResponse>;
98
+ /**
99
+ * Creates a new async iterator which will iterate over the models.LimitDefinitionSummary objects
100
+ * contained in responses from the listLimitDefinitions operation. This iterator will fetch more data from the
101
+ * server as needed.
102
+ *
103
+ * @param request a request which can be sent to the service operation
104
+ */
105
+ listLimitDefinitionsRecordIterator(request: requests.ListLimitDefinitionsRequest): AsyncIterableIterator<model.LimitDefinitionSummary>;
106
+ /**
107
+ * Creates a new async iterator which will iterate over the responses received from the listLimitDefinitions operation. This iterator
108
+ * will fetch more data from the server as needed.
109
+ *
110
+ * @param request a request which can be sent to the service operation
111
+ */
112
+ listLimitDefinitionsResponseIterator(request: requests.ListLimitDefinitionsRequest): AsyncIterableIterator<responses.ListLimitDefinitionsResponse>;
91
113
  /**
92
114
  * Includes a full list of resource limits belonging to a given service.
93
115
  *
116
+ * This operation does not retry by default if the user has not defined a retry configuration.
94
117
  * @param ListLimitValuesRequest
95
118
  * @return ListLimitValuesResponse
96
119
  * @throws OciError when an error occurs
97
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/ListLimitValues.ts.html |here} to see how to use ListLimitValues API.
120
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/ListLimitValues.ts.html |here} to see how to use ListLimitValues API.
98
121
  */
99
122
  listLimitValues(listLimitValuesRequest: requests.ListLimitValuesRequest): Promise<responses.ListLimitValuesResponse>;
100
123
  /**
124
+ * NOTE: This function is deprecated in favor of listLimitValuesRecordIterator function.
101
125
  * Creates a new async iterator which will iterate over the models.LimitValueSummary objects
102
126
  * contained in responses from the listLimitValues operation. This iterator will fetch more data from the
103
127
  * server as needed.
@@ -106,23 +130,41 @@ export declare class LimitsClient {
106
130
  */
107
131
  listAllLimitValues(request: requests.ListLimitValuesRequest): AsyncIterableIterator<model.LimitValueSummary>;
108
132
  /**
133
+ * NOTE: This function is deprecated in favor of listLimitValuesResponseIterator function.
109
134
  * Creates a new async iterator which will iterate over the responses received from the listLimitValues operation. This iterator
110
135
  * will fetch more data from the server as needed.
111
136
  *
112
137
  * @param request a request which can be sent to the service operation
113
138
  */
114
139
  listAllLimitValuesResponses(request: requests.ListLimitValuesRequest): AsyncIterableIterator<responses.ListLimitValuesResponse>;
140
+ /**
141
+ * Creates a new async iterator which will iterate over the models.LimitValueSummary objects
142
+ * contained in responses from the listLimitValues operation. This iterator will fetch more data from the
143
+ * server as needed.
144
+ *
145
+ * @param request a request which can be sent to the service operation
146
+ */
147
+ listLimitValuesRecordIterator(request: requests.ListLimitValuesRequest): AsyncIterableIterator<model.LimitValueSummary>;
148
+ /**
149
+ * Creates a new async iterator which will iterate over the responses received from the listLimitValues operation. This iterator
150
+ * will fetch more data from the server as needed.
151
+ *
152
+ * @param request a request which can be sent to the service operation
153
+ */
154
+ listLimitValuesResponseIterator(request: requests.ListLimitValuesRequest): AsyncIterableIterator<responses.ListLimitValuesResponse>;
115
155
  /**
116
156
  * Returns the list of supported services.
117
157
  * This includes the programmatic service name, along with the friendly service name.
118
158
  *
159
+ * This operation does not retry by default if the user has not defined a retry configuration.
119
160
  * @param ListServicesRequest
120
161
  * @return ListServicesResponse
121
162
  * @throws OciError when an error occurs
122
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/ListServices.ts.html |here} to see how to use ListServices API.
163
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/ListServices.ts.html |here} to see how to use ListServices API.
123
164
  */
124
165
  listServices(listServicesRequest: requests.ListServicesRequest): Promise<responses.ListServicesResponse>;
125
166
  /**
167
+ * NOTE: This function is deprecated in favor of listServicesRecordIterator function.
126
168
  * Creates a new async iterator which will iterate over the models.ServiceSummary objects
127
169
  * contained in responses from the listServices operation. This iterator will fetch more data from the
128
170
  * server as needed.
@@ -131,15 +173,34 @@ export declare class LimitsClient {
131
173
  */
132
174
  listAllServices(request: requests.ListServicesRequest): AsyncIterableIterator<model.ServiceSummary>;
133
175
  /**
176
+ * NOTE: This function is deprecated in favor of listServicesResponseIterator function.
134
177
  * Creates a new async iterator which will iterate over the responses received from the listServices operation. This iterator
135
178
  * will fetch more data from the server as needed.
136
179
  *
137
180
  * @param request a request which can be sent to the service operation
138
181
  */
139
182
  listAllServicesResponses(request: requests.ListServicesRequest): AsyncIterableIterator<responses.ListServicesResponse>;
183
+ /**
184
+ * Creates a new async iterator which will iterate over the models.ServiceSummary objects
185
+ * contained in responses from the listServices operation. This iterator will fetch more data from the
186
+ * server as needed.
187
+ *
188
+ * @param request a request which can be sent to the service operation
189
+ */
190
+ listServicesRecordIterator(request: requests.ListServicesRequest): AsyncIterableIterator<model.ServiceSummary>;
191
+ /**
192
+ * Creates a new async iterator which will iterate over the responses received from the listServices operation. This iterator
193
+ * will fetch more data from the server as needed.
194
+ *
195
+ * @param request a request which can be sent to the service operation
196
+ */
197
+ listServicesResponseIterator(request: requests.ListServicesRequest): AsyncIterableIterator<responses.ListServicesResponse>;
140
198
  }
141
199
  export declare enum QuotasApiKeys {
142
200
  }
201
+ /**
202
+ * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
203
+ */
143
204
  export declare class QuotasClient {
144
205
  protected static serviceEndpointTemplate: string;
145
206
  protected "_endpoint": string;
@@ -189,37 +250,42 @@ export declare class QuotasClient {
189
250
  getWaiters(): QuotasWaiter;
190
251
  /**
191
252
  * Creates a new quota with the details supplied.
253
+ * This operation does not retry by default if the user has not defined a retry configuration.
192
254
  * @param CreateQuotaRequest
193
255
  * @return CreateQuotaResponse
194
256
  * @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/limits/CreateQuota.ts.html |here} to see how to use CreateQuota API.
257
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/CreateQuota.ts.html |here} to see how to use CreateQuota API.
196
258
  */
197
259
  createQuota(createQuotaRequest: requests.CreateQuotaRequest): Promise<responses.CreateQuotaResponse>;
198
260
  /**
199
261
  * Deletes the quota corresponding to the given OCID.
262
+ * This operation does not retry by default if the user has not defined a retry configuration.
200
263
  * @param DeleteQuotaRequest
201
264
  * @return DeleteQuotaResponse
202
265
  * @throws OciError when an error occurs
203
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/DeleteQuota.ts.html |here} to see how to use DeleteQuota API.
266
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/DeleteQuota.ts.html |here} to see how to use DeleteQuota API.
204
267
  */
205
268
  deleteQuota(deleteQuotaRequest: requests.DeleteQuotaRequest): Promise<responses.DeleteQuotaResponse>;
206
269
  /**
207
270
  * Gets the quota for the OCID specified.
271
+ * This operation does not retry by default if the user has not defined a retry configuration.
208
272
  * @param GetQuotaRequest
209
273
  * @return GetQuotaResponse
210
274
  * @throws OciError when an error occurs
211
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/GetQuota.ts.html |here} to see how to use GetQuota API.
275
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/GetQuota.ts.html |here} to see how to use GetQuota API.
212
276
  */
213
277
  getQuota(getQuotaRequest: requests.GetQuotaRequest): Promise<responses.GetQuotaResponse>;
214
278
  /**
215
279
  * Lists all quotas on resources from the given compartment.
280
+ * This operation does not retry by default if the user has not defined a retry configuration.
216
281
  * @param ListQuotasRequest
217
282
  * @return ListQuotasResponse
218
283
  * @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/limits/ListQuotas.ts.html |here} to see how to use ListQuotas API.
284
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/ListQuotas.ts.html |here} to see how to use ListQuotas API.
220
285
  */
221
286
  listQuotas(listQuotasRequest: requests.ListQuotasRequest): Promise<responses.ListQuotasResponse>;
222
287
  /**
288
+ * NOTE: This function is deprecated in favor of listQuotasRecordIterator function.
223
289
  * Creates a new async iterator which will iterate over the models.QuotaSummary objects
224
290
  * contained in responses from the listQuotas operation. This iterator will fetch more data from the
225
291
  * server as needed.
@@ -228,18 +294,35 @@ export declare class QuotasClient {
228
294
  */
229
295
  listAllQuotas(request: requests.ListQuotasRequest): AsyncIterableIterator<model.QuotaSummary>;
230
296
  /**
297
+ * NOTE: This function is deprecated in favor of listQuotasResponseIterator function.
231
298
  * Creates a new async iterator which will iterate over the responses received from the listQuotas operation. This iterator
232
299
  * will fetch more data from the server as needed.
233
300
  *
234
301
  * @param request a request which can be sent to the service operation
235
302
  */
236
303
  listAllQuotasResponses(request: requests.ListQuotasRequest): AsyncIterableIterator<responses.ListQuotasResponse>;
304
+ /**
305
+ * Creates a new async iterator which will iterate over the models.QuotaSummary objects
306
+ * contained in responses from the listQuotas operation. This iterator will fetch more data from the
307
+ * server as needed.
308
+ *
309
+ * @param request a request which can be sent to the service operation
310
+ */
311
+ listQuotasRecordIterator(request: requests.ListQuotasRequest): AsyncIterableIterator<model.QuotaSummary>;
312
+ /**
313
+ * Creates a new async iterator which will iterate over the responses received from the listQuotas operation. This iterator
314
+ * will fetch more data from the server as needed.
315
+ *
316
+ * @param request a request which can be sent to the service operation
317
+ */
318
+ listQuotasResponseIterator(request: requests.ListQuotasRequest): AsyncIterableIterator<responses.ListQuotasResponse>;
237
319
  /**
238
320
  * Updates the quota corresponding to given OCID with the details supplied.
321
+ * This operation does not retry by default if the user has not defined a retry configuration.
239
322
  * @param UpdateQuotaRequest
240
323
  * @return UpdateQuotaResponse
241
324
  * @throws OciError when an error occurs
242
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/UpdateQuota.ts.html |here} to see how to use UpdateQuota API.
325
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/UpdateQuota.ts.html |here} to see how to use UpdateQuota API.
243
326
  */
244
327
  updateQuota(updateQuotaRequest: requests.UpdateQuotaRequest): Promise<responses.UpdateQuotaResponse>;
245
328
  }
package/lib/client.js CHANGED
@@ -52,6 +52,9 @@ const oci_common_2 = require("oci-common");
52
52
  var LimitsApiKeys;
53
53
  (function (LimitsApiKeys) {
54
54
  })(LimitsApiKeys = exports.LimitsApiKeys || (exports.LimitsApiKeys = {}));
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 LimitsClient {
56
59
  constructor(params, clientConfiguration) {
57
60
  this["_endpoint"] = "";
@@ -66,6 +69,13 @@ class LimitsClient {
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 &&
@@ -119,10 +129,11 @@ class LimitsClient {
119
129
  * * The usage in the selected compartment for the given limit.
120
130
  * Note that not all resource limits support this API. If the value is not available, the API returns a 404 response.
121
131
  *
132
+ * This operation does not retry by default if the user has not defined a retry configuration.
122
133
  * @param GetResourceAvailabilityRequest
123
134
  * @return GetResourceAvailabilityResponse
124
135
  * @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/limits/GetResourceAvailability.ts.html |here} to see how to use GetResourceAvailability API.
136
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/GetResourceAvailability.ts.html |here} to see how to use GetResourceAvailability API.
126
137
  */
127
138
  getResourceAvailability(getResourceAvailabilityRequest) {
128
139
  return __awaiter(this, void 0, void 0, function* () {
@@ -140,7 +151,8 @@ class LimitsClient {
140
151
  "Content-Type": common.Constants.APPLICATION_JSON,
141
152
  "opc-request-id": getResourceAvailabilityRequest.opcRequestId
142
153
  };
143
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getResourceAvailabilityRequest.retryConfiguration);
154
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
155
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getResourceAvailabilityRequest.retryConfiguration, specRetryConfiguration);
144
156
  if (this.logger)
145
157
  retrier.logger = this.logger;
146
158
  const request = yield oci_common_2.composeRequest({
@@ -180,10 +192,11 @@ class LimitsClient {
180
192
  * If the 'areQuotasSupported' property is true, you can create quota policies on top of this limit at the
181
193
  * compartment level.
182
194
  *
195
+ * This operation does not retry by default if the user has not defined a retry configuration.
183
196
  * @param ListLimitDefinitionsRequest
184
197
  * @return ListLimitDefinitionsResponse
185
198
  * @throws OciError when an error occurs
186
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/ListLimitDefinitions.ts.html |here} to see how to use ListLimitDefinitions API.
199
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/ListLimitDefinitions.ts.html |here} to see how to use ListLimitDefinitions API.
187
200
  */
188
201
  listLimitDefinitions(listLimitDefinitionsRequest) {
189
202
  return __awaiter(this, void 0, void 0, function* () {
@@ -203,7 +216,8 @@ class LimitsClient {
203
216
  "Content-Type": common.Constants.APPLICATION_JSON,
204
217
  "opc-request-id": listLimitDefinitionsRequest.opcRequestId
205
218
  };
206
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listLimitDefinitionsRequest.retryConfiguration);
219
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
220
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listLimitDefinitionsRequest.retryConfiguration, specRetryConfiguration);
207
221
  if (this.logger)
208
222
  retrier.logger = this.logger;
209
223
  const request = yield oci_common_2.composeRequest({
@@ -244,6 +258,7 @@ class LimitsClient {
244
258
  });
245
259
  }
246
260
  /**
261
+ * NOTE: This function is deprecated in favor of listLimitDefinitionsRecordIterator function.
247
262
  * Creates a new async iterator which will iterate over the models.LimitDefinitionSummary objects
248
263
  * contained in responses from the listLimitDefinitions operation. This iterator will fetch more data from the
249
264
  * server as needed.
@@ -254,6 +269,7 @@ class LimitsClient {
254
269
  return oci_common_1.paginateRecords(request, req => this.listLimitDefinitions(req));
255
270
  }
256
271
  /**
272
+ * NOTE: This function is deprecated in favor of listLimitDefinitionsResponseIterator function.
257
273
  * Creates a new async iterator which will iterate over the responses received from the listLimitDefinitions operation. This iterator
258
274
  * will fetch more data from the server as needed.
259
275
  *
@@ -262,13 +278,33 @@ class LimitsClient {
262
278
  listAllLimitDefinitionsResponses(request) {
263
279
  return oci_common_1.paginateResponses(request, req => this.listLimitDefinitions(req));
264
280
  }
281
+ /**
282
+ * Creates a new async iterator which will iterate over the models.LimitDefinitionSummary objects
283
+ * contained in responses from the listLimitDefinitions operation. This iterator will fetch more data from the
284
+ * server as needed.
285
+ *
286
+ * @param request a request which can be sent to the service operation
287
+ */
288
+ listLimitDefinitionsRecordIterator(request) {
289
+ return oci_common_1.paginateRecords(request, req => this.listLimitDefinitions(req));
290
+ }
291
+ /**
292
+ * Creates a new async iterator which will iterate over the responses received from the listLimitDefinitions operation. This iterator
293
+ * will fetch more data from the server as needed.
294
+ *
295
+ * @param request a request which can be sent to the service operation
296
+ */
297
+ listLimitDefinitionsResponseIterator(request) {
298
+ return oci_common_1.paginateResponses(request, req => this.listLimitDefinitions(req));
299
+ }
265
300
  /**
266
301
  * Includes a full list of resource limits belonging to a given service.
267
302
  *
303
+ * This operation does not retry by default if the user has not defined a retry configuration.
268
304
  * @param ListLimitValuesRequest
269
305
  * @return ListLimitValuesResponse
270
306
  * @throws OciError when an error occurs
271
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/ListLimitValues.ts.html |here} to see how to use ListLimitValues API.
307
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/ListLimitValues.ts.html |here} to see how to use ListLimitValues API.
272
308
  */
273
309
  listLimitValues(listLimitValuesRequest) {
274
310
  return __awaiter(this, void 0, void 0, function* () {
@@ -290,7 +326,8 @@ class LimitsClient {
290
326
  "Content-Type": common.Constants.APPLICATION_JSON,
291
327
  "opc-request-id": listLimitValuesRequest.opcRequestId
292
328
  };
293
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listLimitValuesRequest.retryConfiguration);
329
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
330
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listLimitValuesRequest.retryConfiguration, specRetryConfiguration);
294
331
  if (this.logger)
295
332
  retrier.logger = this.logger;
296
333
  const request = yield oci_common_2.composeRequest({
@@ -331,6 +368,7 @@ class LimitsClient {
331
368
  });
332
369
  }
333
370
  /**
371
+ * NOTE: This function is deprecated in favor of listLimitValuesRecordIterator function.
334
372
  * Creates a new async iterator which will iterate over the models.LimitValueSummary objects
335
373
  * contained in responses from the listLimitValues operation. This iterator will fetch more data from the
336
374
  * server as needed.
@@ -341,6 +379,7 @@ class LimitsClient {
341
379
  return oci_common_1.paginateRecords(request, req => this.listLimitValues(req));
342
380
  }
343
381
  /**
382
+ * NOTE: This function is deprecated in favor of listLimitValuesResponseIterator function.
344
383
  * Creates a new async iterator which will iterate over the responses received from the listLimitValues operation. This iterator
345
384
  * will fetch more data from the server as needed.
346
385
  *
@@ -349,14 +388,34 @@ class LimitsClient {
349
388
  listAllLimitValuesResponses(request) {
350
389
  return oci_common_1.paginateResponses(request, req => this.listLimitValues(req));
351
390
  }
391
+ /**
392
+ * Creates a new async iterator which will iterate over the models.LimitValueSummary objects
393
+ * contained in responses from the listLimitValues operation. This iterator will fetch more data from the
394
+ * server as needed.
395
+ *
396
+ * @param request a request which can be sent to the service operation
397
+ */
398
+ listLimitValuesRecordIterator(request) {
399
+ return oci_common_1.paginateRecords(request, req => this.listLimitValues(req));
400
+ }
401
+ /**
402
+ * Creates a new async iterator which will iterate over the responses received from the listLimitValues operation. This iterator
403
+ * will fetch more data from the server as needed.
404
+ *
405
+ * @param request a request which can be sent to the service operation
406
+ */
407
+ listLimitValuesResponseIterator(request) {
408
+ return oci_common_1.paginateResponses(request, req => this.listLimitValues(req));
409
+ }
352
410
  /**
353
411
  * Returns the list of supported services.
354
412
  * This includes the programmatic service name, along with the friendly service name.
355
413
  *
414
+ * This operation does not retry by default if the user has not defined a retry configuration.
356
415
  * @param ListServicesRequest
357
416
  * @return ListServicesResponse
358
417
  * @throws OciError when an error occurs
359
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/ListServices.ts.html |here} to see how to use ListServices API.
418
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/ListServices.ts.html |here} to see how to use ListServices API.
360
419
  */
361
420
  listServices(listServicesRequest) {
362
421
  return __awaiter(this, void 0, void 0, function* () {
@@ -374,7 +433,8 @@ class LimitsClient {
374
433
  "Content-Type": common.Constants.APPLICATION_JSON,
375
434
  "opc-request-id": listServicesRequest.opcRequestId
376
435
  };
377
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listServicesRequest.retryConfiguration);
436
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
437
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listServicesRequest.retryConfiguration, specRetryConfiguration);
378
438
  if (this.logger)
379
439
  retrier.logger = this.logger;
380
440
  const request = yield oci_common_2.composeRequest({
@@ -415,6 +475,7 @@ class LimitsClient {
415
475
  });
416
476
  }
417
477
  /**
478
+ * NOTE: This function is deprecated in favor of listServicesRecordIterator function.
418
479
  * Creates a new async iterator which will iterate over the models.ServiceSummary objects
419
480
  * contained in responses from the listServices operation. This iterator will fetch more data from the
420
481
  * server as needed.
@@ -425,6 +486,7 @@ class LimitsClient {
425
486
  return oci_common_1.paginateRecords(request, req => this.listServices(req));
426
487
  }
427
488
  /**
489
+ * NOTE: This function is deprecated in favor of listServicesResponseIterator function.
428
490
  * Creates a new async iterator which will iterate over the responses received from the listServices operation. This iterator
429
491
  * will fetch more data from the server as needed.
430
492
  *
@@ -433,12 +495,34 @@ class LimitsClient {
433
495
  listAllServicesResponses(request) {
434
496
  return oci_common_1.paginateResponses(request, req => this.listServices(req));
435
497
  }
498
+ /**
499
+ * Creates a new async iterator which will iterate over the models.ServiceSummary objects
500
+ * contained in responses from the listServices operation. This iterator will fetch more data from the
501
+ * server as needed.
502
+ *
503
+ * @param request a request which can be sent to the service operation
504
+ */
505
+ listServicesRecordIterator(request) {
506
+ return oci_common_1.paginateRecords(request, req => this.listServices(req));
507
+ }
508
+ /**
509
+ * Creates a new async iterator which will iterate over the responses received from the listServices operation. This iterator
510
+ * will fetch more data from the server as needed.
511
+ *
512
+ * @param request a request which can be sent to the service operation
513
+ */
514
+ listServicesResponseIterator(request) {
515
+ return oci_common_1.paginateResponses(request, req => this.listServices(req));
516
+ }
436
517
  }
437
518
  exports.LimitsClient = LimitsClient;
438
519
  LimitsClient.serviceEndpointTemplate = "https://limits.{region}.oci.{secondLevelDomain}";
439
520
  var QuotasApiKeys;
440
521
  (function (QuotasApiKeys) {
441
522
  })(QuotasApiKeys = exports.QuotasApiKeys || (exports.QuotasApiKeys = {}));
523
+ /**
524
+ * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
525
+ */
442
526
  class QuotasClient {
443
527
  constructor(params, clientConfiguration) {
444
528
  this["_endpoint"] = "";
@@ -453,6 +537,13 @@ class QuotasClient {
453
537
  ? clientConfiguration.circuitBreaker.circuit
454
538
  : null;
455
539
  }
540
+ // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
541
+ const specCircuitBreakerEnabled = false;
542
+ if (!this._circuitBreaker &&
543
+ common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
544
+ (specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
545
+ this._circuitBreaker = new common.CircuitBreaker().circuit;
546
+ }
456
547
  this._httpClient =
457
548
  params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
458
549
  if (params.authenticationDetailsProvider &&
@@ -523,10 +614,11 @@ class QuotasClient {
523
614
  }
524
615
  /**
525
616
  * Creates a new quota with the details supplied.
617
+ * This operation does not retry by default if the user has not defined a retry configuration.
526
618
  * @param CreateQuotaRequest
527
619
  * @return CreateQuotaResponse
528
620
  * @throws OciError when an error occurs
529
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/CreateQuota.ts.html |here} to see how to use CreateQuota API.
621
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/CreateQuota.ts.html |here} to see how to use CreateQuota API.
530
622
  */
531
623
  createQuota(createQuotaRequest) {
532
624
  return __awaiter(this, void 0, void 0, function* () {
@@ -539,7 +631,8 @@ class QuotasClient {
539
631
  "opc-request-id": createQuotaRequest.opcRequestId,
540
632
  "opc-retry-token": createQuotaRequest.opcRetryToken
541
633
  };
542
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, createQuotaRequest.retryConfiguration);
634
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
635
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createQuotaRequest.retryConfiguration, specRetryConfiguration);
543
636
  if (this.logger)
544
637
  retrier.logger = this.logger;
545
638
  const request = yield oci_common_2.composeRequest({
@@ -582,10 +675,11 @@ class QuotasClient {
582
675
  }
583
676
  /**
584
677
  * Deletes the quota corresponding to the given OCID.
678
+ * This operation does not retry by default if the user has not defined a retry configuration.
585
679
  * @param DeleteQuotaRequest
586
680
  * @return DeleteQuotaResponse
587
681
  * @throws OciError when an error occurs
588
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/DeleteQuota.ts.html |here} to see how to use DeleteQuota API.
682
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/DeleteQuota.ts.html |here} to see how to use DeleteQuota API.
589
683
  */
590
684
  deleteQuota(deleteQuotaRequest) {
591
685
  return __awaiter(this, void 0, void 0, function* () {
@@ -600,7 +694,8 @@ class QuotasClient {
600
694
  "opc-request-id": deleteQuotaRequest.opcRequestId,
601
695
  "if-match": deleteQuotaRequest.ifMatch
602
696
  };
603
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deleteQuotaRequest.retryConfiguration);
697
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
698
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteQuotaRequest.retryConfiguration, specRetryConfiguration);
604
699
  if (this.logger)
605
700
  retrier.logger = this.logger;
606
701
  const request = yield oci_common_2.composeRequest({
@@ -633,10 +728,11 @@ class QuotasClient {
633
728
  }
634
729
  /**
635
730
  * Gets the quota for the OCID specified.
731
+ * This operation does not retry by default if the user has not defined a retry configuration.
636
732
  * @param GetQuotaRequest
637
733
  * @return GetQuotaResponse
638
734
  * @throws OciError when an error occurs
639
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/GetQuota.ts.html |here} to see how to use GetQuota API.
735
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/GetQuota.ts.html |here} to see how to use GetQuota API.
640
736
  */
641
737
  getQuota(getQuotaRequest) {
642
738
  return __awaiter(this, void 0, void 0, function* () {
@@ -650,7 +746,8 @@ class QuotasClient {
650
746
  "Content-Type": common.Constants.APPLICATION_JSON,
651
747
  "opc-request-id": getQuotaRequest.opcRequestId
652
748
  };
653
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getQuotaRequest.retryConfiguration);
749
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
750
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getQuotaRequest.retryConfiguration, specRetryConfiguration);
654
751
  if (this.logger)
655
752
  retrier.logger = this.logger;
656
753
  const request = yield oci_common_2.composeRequest({
@@ -692,10 +789,11 @@ class QuotasClient {
692
789
  }
693
790
  /**
694
791
  * Lists all quotas on resources from the given compartment.
792
+ * This operation does not retry by default if the user has not defined a retry configuration.
695
793
  * @param ListQuotasRequest
696
794
  * @return ListQuotasResponse
697
795
  * @throws OciError when an error occurs
698
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/ListQuotas.ts.html |here} to see how to use ListQuotas API.
796
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/ListQuotas.ts.html |here} to see how to use ListQuotas API.
699
797
  */
700
798
  listQuotas(listQuotasRequest) {
701
799
  return __awaiter(this, void 0, void 0, function* () {
@@ -715,7 +813,8 @@ class QuotasClient {
715
813
  "Content-Type": common.Constants.APPLICATION_JSON,
716
814
  "opc-request-id": listQuotasRequest.opcRequestId
717
815
  };
718
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listQuotasRequest.retryConfiguration);
816
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
817
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listQuotasRequest.retryConfiguration, specRetryConfiguration);
719
818
  if (this.logger)
720
819
  retrier.logger = this.logger;
721
820
  const request = yield oci_common_2.composeRequest({
@@ -756,6 +855,7 @@ class QuotasClient {
756
855
  });
757
856
  }
758
857
  /**
858
+ * NOTE: This function is deprecated in favor of listQuotasRecordIterator function.
759
859
  * Creates a new async iterator which will iterate over the models.QuotaSummary objects
760
860
  * contained in responses from the listQuotas operation. This iterator will fetch more data from the
761
861
  * server as needed.
@@ -766,6 +866,7 @@ class QuotasClient {
766
866
  return oci_common_1.paginateRecords(request, req => this.listQuotas(req));
767
867
  }
768
868
  /**
869
+ * NOTE: This function is deprecated in favor of listQuotasResponseIterator function.
769
870
  * Creates a new async iterator which will iterate over the responses received from the listQuotas operation. This iterator
770
871
  * will fetch more data from the server as needed.
771
872
  *
@@ -774,12 +875,32 @@ class QuotasClient {
774
875
  listAllQuotasResponses(request) {
775
876
  return oci_common_1.paginateResponses(request, req => this.listQuotas(req));
776
877
  }
878
+ /**
879
+ * Creates a new async iterator which will iterate over the models.QuotaSummary objects
880
+ * contained in responses from the listQuotas operation. This iterator will fetch more data from the
881
+ * server as needed.
882
+ *
883
+ * @param request a request which can be sent to the service operation
884
+ */
885
+ listQuotasRecordIterator(request) {
886
+ return oci_common_1.paginateRecords(request, req => this.listQuotas(req));
887
+ }
888
+ /**
889
+ * Creates a new async iterator which will iterate over the responses received from the listQuotas operation. This iterator
890
+ * will fetch more data from the server as needed.
891
+ *
892
+ * @param request a request which can be sent to the service operation
893
+ */
894
+ listQuotasResponseIterator(request) {
895
+ return oci_common_1.paginateResponses(request, req => this.listQuotas(req));
896
+ }
777
897
  /**
778
898
  * Updates the quota corresponding to given OCID with the details supplied.
899
+ * This operation does not retry by default if the user has not defined a retry configuration.
779
900
  * @param UpdateQuotaRequest
780
901
  * @return UpdateQuotaResponse
781
902
  * @throws OciError when an error occurs
782
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/limits/UpdateQuota.ts.html |here} to see how to use UpdateQuota API.
903
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/UpdateQuota.ts.html |here} to see how to use UpdateQuota API.
783
904
  */
784
905
  updateQuota(updateQuotaRequest) {
785
906
  return __awaiter(this, void 0, void 0, function* () {
@@ -794,7 +915,8 @@ class QuotasClient {
794
915
  "opc-request-id": updateQuotaRequest.opcRequestId,
795
916
  "if-match": updateQuotaRequest.ifMatch
796
917
  };
797
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, updateQuotaRequest.retryConfiguration);
918
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
919
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateQuotaRequest.retryConfiguration, specRetryConfiguration);
798
920
  if (this.logger)
799
921
  retrier.logger = this.logger;
800
922
  const request = yield oci_common_2.composeRequest({
package/lib/client.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/limits/lib/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/limits/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/limits/CreateQuota.ts.html |here} to see how to use CreateQuotaRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/CreateQuota.ts.html |here} to see how to use CreateQuotaRequest.
17
17
  */
18
18
  export interface CreateQuotaRequest 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/limits/DeleteQuota.ts.html |here} to see how to use DeleteQuotaRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/DeleteQuota.ts.html |here} to see how to use DeleteQuotaRequest.
16
16
  */
17
17
  export interface DeleteQuotaRequest 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/limits/GetQuota.ts.html |here} to see how to use GetQuotaRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/GetQuota.ts.html |here} to see how to use GetQuotaRequest.
16
16
  */
17
17
  export interface GetQuotaRequest 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/limits/GetResourceAvailability.ts.html |here} to see how to use GetResourceAvailabilityRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/GetResourceAvailability.ts.html |here} to see how to use GetResourceAvailabilityRequest.
16
16
  */
17
17
  export interface GetResourceAvailabilityRequest 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/limits/ListLimitDefinitions.ts.html |here} to see how to use ListLimitDefinitionsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/ListLimitDefinitions.ts.html |here} to see how to use ListLimitDefinitionsRequest.
16
16
  */
17
17
  export interface ListLimitDefinitionsRequest 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/limits/ListLimitValues.ts.html |here} to see how to use ListLimitValuesRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/ListLimitValues.ts.html |here} to see how to use ListLimitValuesRequest.
16
16
  */
17
17
  export interface ListLimitValuesRequest 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/limits/ListQuotas.ts.html |here} to see how to use ListQuotasRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/ListQuotas.ts.html |here} to see how to use ListQuotasRequest.
16
16
  */
17
17
  export interface ListQuotasRequest 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/limits/ListServices.ts.html |here} to see how to use ListServicesRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/ListServices.ts.html |here} to see how to use ListServicesRequest.
16
16
  */
17
17
  export interface ListServicesRequest 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/limits/UpdateQuota.ts.html |here} to see how to use UpdateQuotaRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/limits/UpdateQuota.ts.html |here} to see how to use UpdateQuotaRequest.
17
17
  */
18
18
  export interface UpdateQuotaRequest extends common.BaseRequest {
19
19
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oci-limits",
3
- "version": "2.4.0",
3
+ "version": "2.6.0",
4
4
  "description": "OCI NodeJS client for Limits 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"