oci-budget 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 { BudgetWaiter } from "./budget-waiter";
18
18
  export declare enum BudgetApiKeys {
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 BudgetClient {
21
24
  protected static serviceEndpointTemplate: string;
22
25
  protected "_endpoint": string;
@@ -67,63 +70,71 @@ export declare class BudgetClient {
67
70
  /**
68
71
  * Creates a new Alert Rule.
69
72
  *
73
+ * This operation does not retry by default if the user has not defined a retry configuration.
70
74
  * @param CreateAlertRuleRequest
71
75
  * @return CreateAlertRuleResponse
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/budget/CreateAlertRule.ts.html |here} to see how to use CreateAlertRule API.
77
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/CreateAlertRule.ts.html |here} to see how to use CreateAlertRule API.
74
78
  */
75
79
  createAlertRule(createAlertRuleRequest: requests.CreateAlertRuleRequest): Promise<responses.CreateAlertRuleResponse>;
76
80
  /**
77
81
  * Creates a new Budget.
78
82
  *
83
+ * This operation does not retry by default if the user has not defined a retry configuration.
79
84
  * @param CreateBudgetRequest
80
85
  * @return CreateBudgetResponse
81
86
  * @throws OciError when an error occurs
82
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/CreateBudget.ts.html |here} to see how to use CreateBudget API.
87
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/CreateBudget.ts.html |here} to see how to use CreateBudget API.
83
88
  */
84
89
  createBudget(createBudgetRequest: requests.CreateBudgetRequest): Promise<responses.CreateBudgetResponse>;
85
90
  /**
86
91
  * Deletes a specified Alert Rule resource.
92
+ * This operation does not retry by default if the user has not defined a retry configuration.
87
93
  * @param DeleteAlertRuleRequest
88
94
  * @return DeleteAlertRuleResponse
89
95
  * @throws OciError when an error occurs
90
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/DeleteAlertRule.ts.html |here} to see how to use DeleteAlertRule API.
96
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/DeleteAlertRule.ts.html |here} to see how to use DeleteAlertRule API.
91
97
  */
92
98
  deleteAlertRule(deleteAlertRuleRequest: requests.DeleteAlertRuleRequest): Promise<responses.DeleteAlertRuleResponse>;
93
99
  /**
94
100
  * Deletes a specified Budget resource
101
+ * This operation does not retry by default if the user has not defined a retry configuration.
95
102
  * @param DeleteBudgetRequest
96
103
  * @return DeleteBudgetResponse
97
104
  * @throws OciError when an error occurs
98
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/DeleteBudget.ts.html |here} to see how to use DeleteBudget API.
105
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/DeleteBudget.ts.html |here} to see how to use DeleteBudget API.
99
106
  */
100
107
  deleteBudget(deleteBudgetRequest: requests.DeleteBudgetRequest): Promise<responses.DeleteBudgetResponse>;
101
108
  /**
102
109
  * Gets an Alert Rule for a specified Budget.
110
+ * This operation does not retry by default if the user has not defined a retry configuration.
103
111
  * @param GetAlertRuleRequest
104
112
  * @return GetAlertRuleResponse
105
113
  * @throws OciError when an error occurs
106
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/GetAlertRule.ts.html |here} to see how to use GetAlertRule API.
114
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/GetAlertRule.ts.html |here} to see how to use GetAlertRule API.
107
115
  */
108
116
  getAlertRule(getAlertRuleRequest: requests.GetAlertRuleRequest): Promise<responses.GetAlertRuleResponse>;
109
117
  /**
110
118
  * Gets a Budget by identifier
119
+ * This operation does not retry by default if the user has not defined a retry configuration.
111
120
  * @param GetBudgetRequest
112
121
  * @return GetBudgetResponse
113
122
  * @throws OciError when an error occurs
114
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/GetBudget.ts.html |here} to see how to use GetBudget API.
123
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/GetBudget.ts.html |here} to see how to use GetBudget API.
115
124
  */
116
125
  getBudget(getBudgetRequest: requests.GetBudgetRequest): Promise<responses.GetBudgetResponse>;
117
126
  /**
118
127
  * Returns a list of Alert Rules for a specified Budget.
119
128
  *
129
+ * This operation does not retry by default if the user has not defined a retry configuration.
120
130
  * @param ListAlertRulesRequest
121
131
  * @return ListAlertRulesResponse
122
132
  * @throws OciError when an error occurs
123
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/ListAlertRules.ts.html |here} to see how to use ListAlertRules API.
133
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/ListAlertRules.ts.html |here} to see how to use ListAlertRules API.
124
134
  */
125
135
  listAlertRules(listAlertRulesRequest: requests.ListAlertRulesRequest): Promise<responses.ListAlertRulesResponse>;
126
136
  /**
137
+ * NOTE: This function is deprecated in favor of listAlertRulesRecordIterator function.
127
138
  * Creates a new async iterator which will iterate over the models.AlertRuleSummary objects
128
139
  * contained in responses from the listAlertRules operation. This iterator will fetch more data from the
129
140
  * server as needed.
@@ -132,12 +143,28 @@ export declare class BudgetClient {
132
143
  */
133
144
  listAllAlertRules(request: requests.ListAlertRulesRequest): AsyncIterableIterator<model.AlertRuleSummary>;
134
145
  /**
146
+ * NOTE: This function is deprecated in favor of listAlertRulesResponseIterator function.
135
147
  * Creates a new async iterator which will iterate over the responses received from the listAlertRules operation. This iterator
136
148
  * will fetch more data from the server as needed.
137
149
  *
138
150
  * @param request a request which can be sent to the service operation
139
151
  */
140
152
  listAllAlertRulesResponses(request: requests.ListAlertRulesRequest): AsyncIterableIterator<responses.ListAlertRulesResponse>;
153
+ /**
154
+ * Creates a new async iterator which will iterate over the models.AlertRuleSummary objects
155
+ * contained in responses from the listAlertRules operation. This iterator will fetch more data from the
156
+ * server as needed.
157
+ *
158
+ * @param request a request which can be sent to the service operation
159
+ */
160
+ listAlertRulesRecordIterator(request: requests.ListAlertRulesRequest): AsyncIterableIterator<model.AlertRuleSummary>;
161
+ /**
162
+ * Creates a new async iterator which will iterate over the responses received from the listAlertRules operation. This iterator
163
+ * will fetch more data from the server as needed.
164
+ *
165
+ * @param request a request which can be sent to the service operation
166
+ */
167
+ listAlertRulesResponseIterator(request: requests.ListAlertRulesRequest): AsyncIterableIterator<responses.ListAlertRulesResponse>;
141
168
  /**
142
169
  * Gets a list of Budgets in a compartment.
143
170
  * <p>
@@ -150,13 +177,15 @@ export declare class BudgetClient {
150
177
  Additional targetTypes would be available in future releases. Clients should ignore new targetType
151
178
  * or upgrade to latest version of client SDK to handle new targetType.
152
179
  *
180
+ * This operation does not retry by default if the user has not defined a retry configuration.
153
181
  * @param ListBudgetsRequest
154
182
  * @return ListBudgetsResponse
155
183
  * @throws OciError when an error occurs
156
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/ListBudgets.ts.html |here} to see how to use ListBudgets API.
184
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/ListBudgets.ts.html |here} to see how to use ListBudgets API.
157
185
  */
158
186
  listBudgets(listBudgetsRequest: requests.ListBudgetsRequest): Promise<responses.ListBudgetsResponse>;
159
187
  /**
188
+ * NOTE: This function is deprecated in favor of listBudgetsRecordIterator function.
160
189
  * Creates a new async iterator which will iterate over the models.BudgetSummary objects
161
190
  * contained in responses from the listBudgets operation. This iterator will fetch more data from the
162
191
  * server as needed.
@@ -165,26 +194,44 @@ export declare class BudgetClient {
165
194
  */
166
195
  listAllBudgets(request: requests.ListBudgetsRequest): AsyncIterableIterator<model.BudgetSummary>;
167
196
  /**
197
+ * NOTE: This function is deprecated in favor of listBudgetsResponseIterator function.
168
198
  * Creates a new async iterator which will iterate over the responses received from the listBudgets operation. This iterator
169
199
  * will fetch more data from the server as needed.
170
200
  *
171
201
  * @param request a request which can be sent to the service operation
172
202
  */
173
203
  listAllBudgetsResponses(request: requests.ListBudgetsRequest): AsyncIterableIterator<responses.ListBudgetsResponse>;
204
+ /**
205
+ * Creates a new async iterator which will iterate over the models.BudgetSummary objects
206
+ * contained in responses from the listBudgets operation. This iterator will fetch more data from the
207
+ * server as needed.
208
+ *
209
+ * @param request a request which can be sent to the service operation
210
+ */
211
+ listBudgetsRecordIterator(request: requests.ListBudgetsRequest): AsyncIterableIterator<model.BudgetSummary>;
212
+ /**
213
+ * Creates a new async iterator which will iterate over the responses received from the listBudgets operation. This iterator
214
+ * will fetch more data from the server as needed.
215
+ *
216
+ * @param request a request which can be sent to the service operation
217
+ */
218
+ listBudgetsResponseIterator(request: requests.ListBudgetsRequest): AsyncIterableIterator<responses.ListBudgetsResponse>;
174
219
  /**
175
220
  * Update an Alert Rule for the budget identified by the OCID.
221
+ * This operation does not retry by default if the user has not defined a retry configuration.
176
222
  * @param UpdateAlertRuleRequest
177
223
  * @return UpdateAlertRuleResponse
178
224
  * @throws OciError when an error occurs
179
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/UpdateAlertRule.ts.html |here} to see how to use UpdateAlertRule API.
225
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/UpdateAlertRule.ts.html |here} to see how to use UpdateAlertRule API.
180
226
  */
181
227
  updateAlertRule(updateAlertRuleRequest: requests.UpdateAlertRuleRequest): Promise<responses.UpdateAlertRuleResponse>;
182
228
  /**
183
229
  * Update a Budget identified by the OCID
230
+ * This operation does not retry by default if the user has not defined a retry configuration.
184
231
  * @param UpdateBudgetRequest
185
232
  * @return UpdateBudgetResponse
186
233
  * @throws OciError when an error occurs
187
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/UpdateBudget.ts.html |here} to see how to use UpdateBudget API.
234
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/UpdateBudget.ts.html |here} to see how to use UpdateBudget API.
188
235
  */
189
236
  updateBudget(updateBudgetRequest: requests.UpdateBudgetRequest): Promise<responses.UpdateBudgetResponse>;
190
237
  }
package/lib/client.js CHANGED
@@ -52,6 +52,9 @@ const oci_common_2 = require("oci-common");
52
52
  var BudgetApiKeys;
53
53
  (function (BudgetApiKeys) {
54
54
  })(BudgetApiKeys = exports.BudgetApiKeys || (exports.BudgetApiKeys = {}));
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 BudgetClient {
56
59
  constructor(params, clientConfiguration) {
57
60
  this["_endpoint"] = "";
@@ -66,6 +69,13 @@ class BudgetClient {
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 BudgetClient {
138
148
  /**
139
149
  * Creates a new Alert Rule.
140
150
  *
151
+ * This operation does not retry by default if the user has not defined a retry configuration.
141
152
  * @param CreateAlertRuleRequest
142
153
  * @return CreateAlertRuleResponse
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/budget/CreateAlertRule.ts.html |here} to see how to use CreateAlertRule API.
155
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/CreateAlertRule.ts.html |here} to see how to use CreateAlertRule API.
145
156
  */
146
157
  createAlertRule(createAlertRuleRequest) {
147
158
  return __awaiter(this, void 0, void 0, function* () {
@@ -156,7 +167,8 @@ class BudgetClient {
156
167
  "opc-retry-token": createAlertRuleRequest.opcRetryToken,
157
168
  "opc-request-id": createAlertRuleRequest.opcRequestId
158
169
  };
159
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, createAlertRuleRequest.retryConfiguration);
170
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
171
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createAlertRuleRequest.retryConfiguration, specRetryConfiguration);
160
172
  if (this.logger)
161
173
  retrier.logger = this.logger;
162
174
  const request = yield oci_common_2.composeRequest({
@@ -200,10 +212,11 @@ class BudgetClient {
200
212
  /**
201
213
  * Creates a new Budget.
202
214
  *
215
+ * This operation does not retry by default if the user has not defined a retry configuration.
203
216
  * @param CreateBudgetRequest
204
217
  * @return CreateBudgetResponse
205
218
  * @throws OciError when an error occurs
206
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/CreateBudget.ts.html |here} to see how to use CreateBudget API.
219
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/CreateBudget.ts.html |here} to see how to use CreateBudget API.
207
220
  */
208
221
  createBudget(createBudgetRequest) {
209
222
  return __awaiter(this, void 0, void 0, function* () {
@@ -216,7 +229,8 @@ class BudgetClient {
216
229
  "opc-retry-token": createBudgetRequest.opcRetryToken,
217
230
  "opc-request-id": createBudgetRequest.opcRequestId
218
231
  };
219
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, createBudgetRequest.retryConfiguration);
232
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
233
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createBudgetRequest.retryConfiguration, specRetryConfiguration);
220
234
  if (this.logger)
221
235
  retrier.logger = this.logger;
222
236
  const request = yield oci_common_2.composeRequest({
@@ -259,10 +273,11 @@ class BudgetClient {
259
273
  }
260
274
  /**
261
275
  * Deletes a specified Alert Rule resource.
276
+ * This operation does not retry by default if the user has not defined a retry configuration.
262
277
  * @param DeleteAlertRuleRequest
263
278
  * @return DeleteAlertRuleResponse
264
279
  * @throws OciError when an error occurs
265
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/DeleteAlertRule.ts.html |here} to see how to use DeleteAlertRule API.
280
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/DeleteAlertRule.ts.html |here} to see how to use DeleteAlertRule API.
266
281
  */
267
282
  deleteAlertRule(deleteAlertRuleRequest) {
268
283
  return __awaiter(this, void 0, void 0, function* () {
@@ -278,7 +293,8 @@ class BudgetClient {
278
293
  "if-match": deleteAlertRuleRequest.ifMatch,
279
294
  "opc-request-id": deleteAlertRuleRequest.opcRequestId
280
295
  };
281
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deleteAlertRuleRequest.retryConfiguration);
296
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
297
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteAlertRuleRequest.retryConfiguration, specRetryConfiguration);
282
298
  if (this.logger)
283
299
  retrier.logger = this.logger;
284
300
  const request = yield oci_common_2.composeRequest({
@@ -311,10 +327,11 @@ class BudgetClient {
311
327
  }
312
328
  /**
313
329
  * Deletes a specified Budget resource
330
+ * This operation does not retry by default if the user has not defined a retry configuration.
314
331
  * @param DeleteBudgetRequest
315
332
  * @return DeleteBudgetResponse
316
333
  * @throws OciError when an error occurs
317
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/DeleteBudget.ts.html |here} to see how to use DeleteBudget API.
334
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/DeleteBudget.ts.html |here} to see how to use DeleteBudget API.
318
335
  */
319
336
  deleteBudget(deleteBudgetRequest) {
320
337
  return __awaiter(this, void 0, void 0, function* () {
@@ -329,7 +346,8 @@ class BudgetClient {
329
346
  "if-match": deleteBudgetRequest.ifMatch,
330
347
  "opc-request-id": deleteBudgetRequest.opcRequestId
331
348
  };
332
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deleteBudgetRequest.retryConfiguration);
349
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
350
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteBudgetRequest.retryConfiguration, specRetryConfiguration);
333
351
  if (this.logger)
334
352
  retrier.logger = this.logger;
335
353
  const request = yield oci_common_2.composeRequest({
@@ -362,10 +380,11 @@ class BudgetClient {
362
380
  }
363
381
  /**
364
382
  * Gets an Alert Rule for a specified Budget.
383
+ * This operation does not retry by default if the user has not defined a retry configuration.
365
384
  * @param GetAlertRuleRequest
366
385
  * @return GetAlertRuleResponse
367
386
  * @throws OciError when an error occurs
368
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/GetAlertRule.ts.html |here} to see how to use GetAlertRule API.
387
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/GetAlertRule.ts.html |here} to see how to use GetAlertRule API.
369
388
  */
370
389
  getAlertRule(getAlertRuleRequest) {
371
390
  return __awaiter(this, void 0, void 0, function* () {
@@ -380,7 +399,8 @@ class BudgetClient {
380
399
  "Content-Type": common.Constants.APPLICATION_JSON,
381
400
  "opc-request-id": getAlertRuleRequest.opcRequestId
382
401
  };
383
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getAlertRuleRequest.retryConfiguration);
402
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
403
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getAlertRuleRequest.retryConfiguration, specRetryConfiguration);
384
404
  if (this.logger)
385
405
  retrier.logger = this.logger;
386
406
  const request = yield oci_common_2.composeRequest({
@@ -422,10 +442,11 @@ class BudgetClient {
422
442
  }
423
443
  /**
424
444
  * Gets a Budget by identifier
445
+ * This operation does not retry by default if the user has not defined a retry configuration.
425
446
  * @param GetBudgetRequest
426
447
  * @return GetBudgetResponse
427
448
  * @throws OciError when an error occurs
428
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/GetBudget.ts.html |here} to see how to use GetBudget API.
449
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/GetBudget.ts.html |here} to see how to use GetBudget API.
429
450
  */
430
451
  getBudget(getBudgetRequest) {
431
452
  return __awaiter(this, void 0, void 0, function* () {
@@ -439,7 +460,8 @@ class BudgetClient {
439
460
  "Content-Type": common.Constants.APPLICATION_JSON,
440
461
  "opc-request-id": getBudgetRequest.opcRequestId
441
462
  };
442
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getBudgetRequest.retryConfiguration);
463
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
464
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBudgetRequest.retryConfiguration, specRetryConfiguration);
443
465
  if (this.logger)
444
466
  retrier.logger = this.logger;
445
467
  const request = yield oci_common_2.composeRequest({
@@ -482,10 +504,11 @@ class BudgetClient {
482
504
  /**
483
505
  * Returns a list of Alert Rules for a specified Budget.
484
506
  *
507
+ * This operation does not retry by default if the user has not defined a retry configuration.
485
508
  * @param ListAlertRulesRequest
486
509
  * @return ListAlertRulesResponse
487
510
  * @throws OciError when an error occurs
488
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/ListAlertRules.ts.html |here} to see how to use ListAlertRules API.
511
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/ListAlertRules.ts.html |here} to see how to use ListAlertRules API.
489
512
  */
490
513
  listAlertRules(listAlertRulesRequest) {
491
514
  return __awaiter(this, void 0, void 0, function* () {
@@ -506,7 +529,8 @@ class BudgetClient {
506
529
  "Content-Type": common.Constants.APPLICATION_JSON,
507
530
  "opc-request-id": listAlertRulesRequest.opcRequestId
508
531
  };
509
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listAlertRulesRequest.retryConfiguration);
532
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
533
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listAlertRulesRequest.retryConfiguration, specRetryConfiguration);
510
534
  if (this.logger)
511
535
  retrier.logger = this.logger;
512
536
  const request = yield oci_common_2.composeRequest({
@@ -547,6 +571,7 @@ class BudgetClient {
547
571
  });
548
572
  }
549
573
  /**
574
+ * NOTE: This function is deprecated in favor of listAlertRulesRecordIterator function.
550
575
  * Creates a new async iterator which will iterate over the models.AlertRuleSummary objects
551
576
  * contained in responses from the listAlertRules operation. This iterator will fetch more data from the
552
577
  * server as needed.
@@ -557,6 +582,7 @@ class BudgetClient {
557
582
  return oci_common_1.paginateRecords(request, req => this.listAlertRules(req));
558
583
  }
559
584
  /**
585
+ * NOTE: This function is deprecated in favor of listAlertRulesResponseIterator function.
560
586
  * Creates a new async iterator which will iterate over the responses received from the listAlertRules operation. This iterator
561
587
  * will fetch more data from the server as needed.
562
588
  *
@@ -565,6 +591,25 @@ class BudgetClient {
565
591
  listAllAlertRulesResponses(request) {
566
592
  return oci_common_1.paginateResponses(request, req => this.listAlertRules(req));
567
593
  }
594
+ /**
595
+ * Creates a new async iterator which will iterate over the models.AlertRuleSummary objects
596
+ * contained in responses from the listAlertRules operation. This iterator will fetch more data from the
597
+ * server as needed.
598
+ *
599
+ * @param request a request which can be sent to the service operation
600
+ */
601
+ listAlertRulesRecordIterator(request) {
602
+ return oci_common_1.paginateRecords(request, req => this.listAlertRules(req));
603
+ }
604
+ /**
605
+ * Creates a new async iterator which will iterate over the responses received from the listAlertRules operation. This iterator
606
+ * will fetch more data from the server as needed.
607
+ *
608
+ * @param request a request which can be sent to the service operation
609
+ */
610
+ listAlertRulesResponseIterator(request) {
611
+ return oci_common_1.paginateResponses(request, req => this.listAlertRules(req));
612
+ }
568
613
  /**
569
614
  * Gets a list of Budgets in a compartment.
570
615
  * <p>
@@ -577,10 +622,11 @@ class BudgetClient {
577
622
  Additional targetTypes would be available in future releases. Clients should ignore new targetType
578
623
  * or upgrade to latest version of client SDK to handle new targetType.
579
624
  *
625
+ * This operation does not retry by default if the user has not defined a retry configuration.
580
626
  * @param ListBudgetsRequest
581
627
  * @return ListBudgetsResponse
582
628
  * @throws OciError when an error occurs
583
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/ListBudgets.ts.html |here} to see how to use ListBudgets API.
629
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/ListBudgets.ts.html |here} to see how to use ListBudgets API.
584
630
  */
585
631
  listBudgets(listBudgetsRequest) {
586
632
  return __awaiter(this, void 0, void 0, function* () {
@@ -601,7 +647,8 @@ class BudgetClient {
601
647
  "Content-Type": common.Constants.APPLICATION_JSON,
602
648
  "opc-request-id": listBudgetsRequest.opcRequestId
603
649
  };
604
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listBudgetsRequest.retryConfiguration);
650
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
651
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listBudgetsRequest.retryConfiguration, specRetryConfiguration);
605
652
  if (this.logger)
606
653
  retrier.logger = this.logger;
607
654
  const request = yield oci_common_2.composeRequest({
@@ -642,6 +689,7 @@ class BudgetClient {
642
689
  });
643
690
  }
644
691
  /**
692
+ * NOTE: This function is deprecated in favor of listBudgetsRecordIterator function.
645
693
  * Creates a new async iterator which will iterate over the models.BudgetSummary objects
646
694
  * contained in responses from the listBudgets operation. This iterator will fetch more data from the
647
695
  * server as needed.
@@ -652,6 +700,7 @@ class BudgetClient {
652
700
  return oci_common_1.paginateRecords(request, req => this.listBudgets(req));
653
701
  }
654
702
  /**
703
+ * NOTE: This function is deprecated in favor of listBudgetsResponseIterator function.
655
704
  * Creates a new async iterator which will iterate over the responses received from the listBudgets operation. This iterator
656
705
  * will fetch more data from the server as needed.
657
706
  *
@@ -660,12 +709,32 @@ class BudgetClient {
660
709
  listAllBudgetsResponses(request) {
661
710
  return oci_common_1.paginateResponses(request, req => this.listBudgets(req));
662
711
  }
712
+ /**
713
+ * Creates a new async iterator which will iterate over the models.BudgetSummary objects
714
+ * contained in responses from the listBudgets operation. This iterator will fetch more data from the
715
+ * server as needed.
716
+ *
717
+ * @param request a request which can be sent to the service operation
718
+ */
719
+ listBudgetsRecordIterator(request) {
720
+ return oci_common_1.paginateRecords(request, req => this.listBudgets(req));
721
+ }
722
+ /**
723
+ * Creates a new async iterator which will iterate over the responses received from the listBudgets operation. This iterator
724
+ * will fetch more data from the server as needed.
725
+ *
726
+ * @param request a request which can be sent to the service operation
727
+ */
728
+ listBudgetsResponseIterator(request) {
729
+ return oci_common_1.paginateResponses(request, req => this.listBudgets(req));
730
+ }
663
731
  /**
664
732
  * Update an Alert Rule for the budget identified by the OCID.
733
+ * This operation does not retry by default if the user has not defined a retry configuration.
665
734
  * @param UpdateAlertRuleRequest
666
735
  * @return UpdateAlertRuleResponse
667
736
  * @throws OciError when an error occurs
668
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/UpdateAlertRule.ts.html |here} to see how to use UpdateAlertRule API.
737
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/UpdateAlertRule.ts.html |here} to see how to use UpdateAlertRule API.
669
738
  */
670
739
  updateAlertRule(updateAlertRuleRequest) {
671
740
  return __awaiter(this, void 0, void 0, function* () {
@@ -681,7 +750,8 @@ class BudgetClient {
681
750
  "if-match": updateAlertRuleRequest.ifMatch,
682
751
  "opc-request-id": updateAlertRuleRequest.opcRequestId
683
752
  };
684
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, updateAlertRuleRequest.retryConfiguration);
753
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
754
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateAlertRuleRequest.retryConfiguration, specRetryConfiguration);
685
755
  if (this.logger)
686
756
  retrier.logger = this.logger;
687
757
  const request = yield oci_common_2.composeRequest({
@@ -724,10 +794,11 @@ class BudgetClient {
724
794
  }
725
795
  /**
726
796
  * Update a Budget identified by the OCID
797
+ * This operation does not retry by default if the user has not defined a retry configuration.
727
798
  * @param UpdateBudgetRequest
728
799
  * @return UpdateBudgetResponse
729
800
  * @throws OciError when an error occurs
730
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/budget/UpdateBudget.ts.html |here} to see how to use UpdateBudget API.
801
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/UpdateBudget.ts.html |here} to see how to use UpdateBudget API.
731
802
  */
732
803
  updateBudget(updateBudgetRequest) {
733
804
  return __awaiter(this, void 0, void 0, function* () {
@@ -742,7 +813,8 @@ class BudgetClient {
742
813
  "if-match": updateBudgetRequest.ifMatch,
743
814
  "opc-request-id": updateBudgetRequest.opcRequestId
744
815
  };
745
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, updateBudgetRequest.retryConfiguration);
816
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
817
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateBudgetRequest.retryConfiguration, specRetryConfiguration);
746
818
  if (this.logger)
747
819
  retrier.logger = this.logger;
748
820
  const request = yield oci_common_2.composeRequest({
package/lib/client.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/budget/lib/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/budget/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/budget/CreateAlertRule.ts.html |here} to see how to use CreateAlertRuleRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/CreateAlertRule.ts.html |here} to see how to use CreateAlertRuleRequest.
17
17
  */
18
18
  export interface CreateAlertRuleRequest 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/budget/CreateBudget.ts.html |here} to see how to use CreateBudgetRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/CreateBudget.ts.html |here} to see how to use CreateBudgetRequest.
17
17
  */
18
18
  export interface CreateBudgetRequest 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/budget/DeleteAlertRule.ts.html |here} to see how to use DeleteAlertRuleRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/DeleteAlertRule.ts.html |here} to see how to use DeleteAlertRuleRequest.
16
16
  */
17
17
  export interface DeleteAlertRuleRequest 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/budget/DeleteBudget.ts.html |here} to see how to use DeleteBudgetRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/DeleteBudget.ts.html |here} to see how to use DeleteBudgetRequest.
16
16
  */
17
17
  export interface DeleteBudgetRequest 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/budget/GetAlertRule.ts.html |here} to see how to use GetAlertRuleRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/GetAlertRule.ts.html |here} to see how to use GetAlertRuleRequest.
16
16
  */
17
17
  export interface GetAlertRuleRequest 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/budget/GetBudget.ts.html |here} to see how to use GetBudgetRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/GetBudget.ts.html |here} to see how to use GetBudgetRequest.
16
16
  */
17
17
  export interface GetBudgetRequest 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/budget/ListAlertRules.ts.html |here} to see how to use ListAlertRulesRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/ListAlertRules.ts.html |here} to see how to use ListAlertRulesRequest.
17
17
  */
18
18
  export interface ListAlertRulesRequest 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/budget/ListBudgets.ts.html |here} to see how to use ListBudgetsRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/ListBudgets.ts.html |here} to see how to use ListBudgetsRequest.
17
17
  */
18
18
  export interface ListBudgetsRequest 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/budget/UpdateAlertRule.ts.html |here} to see how to use UpdateAlertRuleRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/UpdateAlertRule.ts.html |here} to see how to use UpdateAlertRuleRequest.
17
17
  */
18
18
  export interface UpdateAlertRuleRequest 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/budget/UpdateBudget.ts.html |here} to see how to use UpdateBudgetRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/budget/UpdateBudget.ts.html |here} to see how to use UpdateBudgetRequest.
17
17
  */
18
18
  export interface UpdateBudgetRequest extends common.BaseRequest {
19
19
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oci-budget",
3
- "version": "2.4.0",
3
+ "version": "2.6.0",
4
4
  "description": "OCI NodeJS client for Budget 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"