oci-managementagent 2.5.2 → 2.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/lib/client.d.ts +49 -23
  2. package/lib/client.js +102 -46
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/create-management-agent-install-key-request.d.ts +1 -1
  5. package/lib/request/delete-management-agent-install-key-request.d.ts +1 -1
  6. package/lib/request/delete-management-agent-request.d.ts +1 -1
  7. package/lib/request/delete-work-request-request.d.ts +1 -1
  8. package/lib/request/deploy-plugins-request.d.ts +1 -1
  9. package/lib/request/get-auto-upgradable-config-request.d.ts +1 -1
  10. package/lib/request/get-management-agent-install-key-content-request.d.ts +1 -1
  11. package/lib/request/get-management-agent-install-key-request.d.ts +1 -1
  12. package/lib/request/get-management-agent-request.d.ts +1 -1
  13. package/lib/request/get-work-request-request.d.ts +1 -1
  14. package/lib/request/list-availability-histories-request.d.ts +1 -1
  15. package/lib/request/list-management-agent-images-request.d.ts +1 -1
  16. package/lib/request/list-management-agent-install-keys-request.d.ts +1 -1
  17. package/lib/request/list-management-agent-plugins-request.d.ts +1 -1
  18. package/lib/request/list-management-agents-request.d.ts +1 -1
  19. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  20. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  21. package/lib/request/list-work-requests-request.d.ts +1 -1
  22. package/lib/request/set-auto-upgradable-config-request.d.ts +1 -1
  23. package/lib/request/summarize-management-agent-counts-request.d.ts +1 -1
  24. package/lib/request/summarize-management-agent-plugin-counts-request.d.ts +1 -1
  25. package/lib/request/update-management-agent-install-key-request.d.ts +1 -1
  26. package/lib/request/update-management-agent-request.d.ts +1 -1
  27. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -52,6 +52,9 @@ const oci_common_2 = require("oci-common");
52
52
  var ManagementAgentApiKeys;
53
53
  (function (ManagementAgentApiKeys) {
54
54
  })(ManagementAgentApiKeys = exports.ManagementAgentApiKeys || (exports.ManagementAgentApiKeys = {}));
55
+ /**
56
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
57
+ */
55
58
  class ManagementAgentClient {
56
59
  constructor(params, clientConfiguration) {
57
60
  this["_endpoint"] = "";
@@ -66,6 +69,13 @@ class ManagementAgentClient {
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 = true;
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 ManagementAgentClient {
138
148
  /**
139
149
  * User creates a new install key as part of this API.
140
150
  *
151
+ * This operation does not retry by default if the user has not defined a retry configuration.
141
152
  * @param CreateManagementAgentInstallKeyRequest
142
153
  * @return CreateManagementAgentInstallKeyResponse
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.5.2/managementagent/CreateManagementAgentInstallKey.ts.html |here} to see how to use CreateManagementAgentInstallKey API.
155
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/CreateManagementAgentInstallKey.ts.html |here} to see how to use CreateManagementAgentInstallKey API.
145
156
  */
146
157
  createManagementAgentInstallKey(createManagementAgentInstallKeyRequest) {
147
158
  return __awaiter(this, void 0, void 0, function* () {
@@ -154,7 +165,8 @@ class ManagementAgentClient {
154
165
  "opc-retry-token": createManagementAgentInstallKeyRequest.opcRetryToken,
155
166
  "opc-request-id": createManagementAgentInstallKeyRequest.opcRequestId
156
167
  };
157
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, createManagementAgentInstallKeyRequest.retryConfiguration);
168
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
169
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createManagementAgentInstallKeyRequest.retryConfiguration, specRetryConfiguration);
158
170
  if (this.logger)
159
171
  retrier.logger = this.logger;
160
172
  const request = yield oci_common_2.composeRequest({
@@ -197,10 +209,11 @@ class ManagementAgentClient {
197
209
  }
198
210
  /**
199
211
  * Deletes a Management Agent resource by identifier
212
+ * This operation does not retry by default if the user has not defined a retry configuration.
200
213
  * @param DeleteManagementAgentRequest
201
214
  * @return DeleteManagementAgentResponse
202
215
  * @throws OciError when an error occurs
203
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/DeleteManagementAgent.ts.html |here} to see how to use DeleteManagementAgent API.
216
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/DeleteManagementAgent.ts.html |here} to see how to use DeleteManagementAgent API.
204
217
  */
205
218
  deleteManagementAgent(deleteManagementAgentRequest) {
206
219
  return __awaiter(this, void 0, void 0, function* () {
@@ -215,7 +228,8 @@ class ManagementAgentClient {
215
228
  "if-match": deleteManagementAgentRequest.ifMatch,
216
229
  "opc-request-id": deleteManagementAgentRequest.opcRequestId
217
230
  };
218
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deleteManagementAgentRequest.retryConfiguration);
231
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
232
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteManagementAgentRequest.retryConfiguration, specRetryConfiguration);
219
233
  if (this.logger)
220
234
  retrier.logger = this.logger;
221
235
  const request = yield oci_common_2.composeRequest({
@@ -248,10 +262,11 @@ class ManagementAgentClient {
248
262
  }
249
263
  /**
250
264
  * Deletes a Management Agent install Key resource by identifier
265
+ * This operation does not retry by default if the user has not defined a retry configuration.
251
266
  * @param DeleteManagementAgentInstallKeyRequest
252
267
  * @return DeleteManagementAgentInstallKeyResponse
253
268
  * @throws OciError when an error occurs
254
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/DeleteManagementAgentInstallKey.ts.html |here} to see how to use DeleteManagementAgentInstallKey API.
269
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/DeleteManagementAgentInstallKey.ts.html |here} to see how to use DeleteManagementAgentInstallKey API.
255
270
  */
256
271
  deleteManagementAgentInstallKey(deleteManagementAgentInstallKeyRequest) {
257
272
  return __awaiter(this, void 0, void 0, function* () {
@@ -266,7 +281,8 @@ class ManagementAgentClient {
266
281
  "if-match": deleteManagementAgentInstallKeyRequest.ifMatch,
267
282
  "opc-request-id": deleteManagementAgentInstallKeyRequest.opcRequestId
268
283
  };
269
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deleteManagementAgentInstallKeyRequest.retryConfiguration);
284
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
285
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteManagementAgentInstallKeyRequest.retryConfiguration, specRetryConfiguration);
270
286
  if (this.logger)
271
287
  retrier.logger = this.logger;
272
288
  const request = yield oci_common_2.composeRequest({
@@ -299,10 +315,11 @@ class ManagementAgentClient {
299
315
  }
300
316
  /**
301
317
  * Cancel the work request with the given ID.
318
+ * This operation does not retry by default if the user has not defined a retry configuration.
302
319
  * @param DeleteWorkRequestRequest
303
320
  * @return DeleteWorkRequestResponse
304
321
  * @throws OciError when an error occurs
305
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
322
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
306
323
  */
307
324
  deleteWorkRequest(deleteWorkRequestRequest) {
308
325
  return __awaiter(this, void 0, void 0, function* () {
@@ -317,7 +334,8 @@ class ManagementAgentClient {
317
334
  "opc-request-id": deleteWorkRequestRequest.opcRequestId,
318
335
  "if-match": deleteWorkRequestRequest.ifMatch
319
336
  };
320
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deleteWorkRequestRequest.retryConfiguration);
337
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
338
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteWorkRequestRequest.retryConfiguration, specRetryConfiguration);
321
339
  if (this.logger)
322
340
  retrier.logger = this.logger;
323
341
  const request = yield oci_common_2.composeRequest({
@@ -351,10 +369,11 @@ class ManagementAgentClient {
351
369
  /**
352
370
  * Deploys Plugins to a given list of agentIds.
353
371
  *
372
+ * This operation does not retry by default if the user has not defined a retry configuration.
354
373
  * @param DeployPluginsRequest
355
374
  * @return DeployPluginsResponse
356
375
  * @throws OciError when an error occurs
357
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/DeployPlugins.ts.html |here} to see how to use DeployPlugins API.
376
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/DeployPlugins.ts.html |here} to see how to use DeployPlugins API.
358
377
  */
359
378
  deployPlugins(deployPluginsRequest) {
360
379
  return __awaiter(this, void 0, void 0, function* () {
@@ -367,7 +386,8 @@ class ManagementAgentClient {
367
386
  "opc-retry-token": deployPluginsRequest.opcRetryToken,
368
387
  "opc-request-id": deployPluginsRequest.opcRequestId
369
388
  };
370
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deployPluginsRequest.retryConfiguration);
389
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
390
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deployPluginsRequest.retryConfiguration, specRetryConfiguration);
371
391
  if (this.logger)
372
392
  retrier.logger = this.logger;
373
393
  const request = yield oci_common_2.composeRequest({
@@ -408,10 +428,11 @@ class ManagementAgentClient {
408
428
  * Get the AutoUpgradable configuration for all agents in a tenancy.
409
429
  * The supplied compartmentId must be a tenancy root.
410
430
  *
431
+ * This operation does not retry by default if the user has not defined a retry configuration.
411
432
  * @param GetAutoUpgradableConfigRequest
412
433
  * @return GetAutoUpgradableConfigResponse
413
434
  * @throws OciError when an error occurs
414
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/GetAutoUpgradableConfig.ts.html |here} to see how to use GetAutoUpgradableConfig API.
435
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/GetAutoUpgradableConfig.ts.html |here} to see how to use GetAutoUpgradableConfig API.
415
436
  */
416
437
  getAutoUpgradableConfig(getAutoUpgradableConfigRequest) {
417
438
  return __awaiter(this, void 0, void 0, function* () {
@@ -425,7 +446,8 @@ class ManagementAgentClient {
425
446
  "Content-Type": common.Constants.APPLICATION_JSON,
426
447
  "opc-request-id": getAutoUpgradableConfigRequest.opcRequestId
427
448
  };
428
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getAutoUpgradableConfigRequest.retryConfiguration);
449
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
450
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getAutoUpgradableConfigRequest.retryConfiguration, specRetryConfiguration);
429
451
  if (this.logger)
430
452
  retrier.logger = this.logger;
431
453
  const request = yield oci_common_2.composeRequest({
@@ -462,10 +484,11 @@ class ManagementAgentClient {
462
484
  }
463
485
  /**
464
486
  * Gets complete details of the inventory of a given agent id
487
+ * This operation does not retry by default if the user has not defined a retry configuration.
465
488
  * @param GetManagementAgentRequest
466
489
  * @return GetManagementAgentResponse
467
490
  * @throws OciError when an error occurs
468
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/GetManagementAgent.ts.html |here} to see how to use GetManagementAgent API.
491
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/GetManagementAgent.ts.html |here} to see how to use GetManagementAgent API.
469
492
  */
470
493
  getManagementAgent(getManagementAgentRequest) {
471
494
  return __awaiter(this, void 0, void 0, function* () {
@@ -479,7 +502,8 @@ class ManagementAgentClient {
479
502
  "Content-Type": common.Constants.APPLICATION_JSON,
480
503
  "opc-request-id": getManagementAgentRequest.opcRequestId
481
504
  };
482
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getManagementAgentRequest.retryConfiguration);
505
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
506
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getManagementAgentRequest.retryConfiguration, specRetryConfiguration);
483
507
  if (this.logger)
484
508
  retrier.logger = this.logger;
485
509
  const request = yield oci_common_2.composeRequest({
@@ -521,10 +545,11 @@ class ManagementAgentClient {
521
545
  }
522
546
  /**
523
547
  * Gets complete details of the Agent install Key for a given key id
548
+ * This operation does not retry by default if the user has not defined a retry configuration.
524
549
  * @param GetManagementAgentInstallKeyRequest
525
550
  * @return GetManagementAgentInstallKeyResponse
526
551
  * @throws OciError when an error occurs
527
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/GetManagementAgentInstallKey.ts.html |here} to see how to use GetManagementAgentInstallKey API.
552
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/GetManagementAgentInstallKey.ts.html |here} to see how to use GetManagementAgentInstallKey API.
528
553
  */
529
554
  getManagementAgentInstallKey(getManagementAgentInstallKeyRequest) {
530
555
  return __awaiter(this, void 0, void 0, function* () {
@@ -538,7 +563,8 @@ class ManagementAgentClient {
538
563
  "Content-Type": common.Constants.APPLICATION_JSON,
539
564
  "opc-request-id": getManagementAgentInstallKeyRequest.opcRequestId
540
565
  };
541
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getManagementAgentInstallKeyRequest.retryConfiguration);
566
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
567
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getManagementAgentInstallKeyRequest.retryConfiguration, specRetryConfiguration);
542
568
  if (this.logger)
543
569
  retrier.logger = this.logger;
544
570
  const request = yield oci_common_2.composeRequest({
@@ -581,10 +607,11 @@ class ManagementAgentClient {
581
607
  /**
582
608
  * Returns a file with Management Agent install Key in it
583
609
  *
610
+ * This operation does not retry by default if the user has not defined a retry configuration.
584
611
  * @param GetManagementAgentInstallKeyContentRequest
585
612
  * @return GetManagementAgentInstallKeyContentResponse
586
613
  * @throws OciError when an error occurs
587
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/GetManagementAgentInstallKeyContent.ts.html |here} to see how to use GetManagementAgentInstallKeyContent API.
614
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/GetManagementAgentInstallKeyContent.ts.html |here} to see how to use GetManagementAgentInstallKeyContent API.
588
615
  */
589
616
  getManagementAgentInstallKeyContent(getManagementAgentInstallKeyContentRequest) {
590
617
  return __awaiter(this, void 0, void 0, function* () {
@@ -600,7 +627,8 @@ class ManagementAgentClient {
600
627
  "Content-Type": common.Constants.APPLICATION_JSON,
601
628
  "opc-request-id": getManagementAgentInstallKeyContentRequest.opcRequestId
602
629
  };
603
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getManagementAgentInstallKeyContentRequest.retryConfiguration);
630
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
631
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getManagementAgentInstallKeyContentRequest.retryConfiguration, specRetryConfiguration);
604
632
  if (this.logger)
605
633
  retrier.logger = this.logger;
606
634
  const request = yield oci_common_2.composeRequest({
@@ -646,10 +674,11 @@ class ManagementAgentClient {
646
674
  }
647
675
  /**
648
676
  * Gets the status of the work request with the given ID.
677
+ * This operation does not retry by default if the user has not defined a retry configuration.
649
678
  * @param GetWorkRequestRequest
650
679
  * @return GetWorkRequestResponse
651
680
  * @throws OciError when an error occurs
652
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
681
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
653
682
  */
654
683
  getWorkRequest(getWorkRequestRequest) {
655
684
  return __awaiter(this, void 0, void 0, function* () {
@@ -663,7 +692,8 @@ class ManagementAgentClient {
663
692
  "Content-Type": common.Constants.APPLICATION_JSON,
664
693
  "opc-request-id": getWorkRequestRequest.opcRequestId
665
694
  };
666
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getWorkRequestRequest.retryConfiguration);
695
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
696
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
667
697
  if (this.logger)
668
698
  retrier.logger = this.logger;
669
699
  const request = yield oci_common_2.composeRequest({
@@ -710,10 +740,11 @@ class ManagementAgentClient {
710
740
  }
711
741
  /**
712
742
  * Lists the availability history records of Management Agent
743
+ * This operation does not retry by default if the user has not defined a retry configuration.
713
744
  * @param ListAvailabilityHistoriesRequest
714
745
  * @return ListAvailabilityHistoriesResponse
715
746
  * @throws OciError when an error occurs
716
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/ListAvailabilityHistories.ts.html |here} to see how to use ListAvailabilityHistories API.
747
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/ListAvailabilityHistories.ts.html |here} to see how to use ListAvailabilityHistories API.
717
748
  */
718
749
  listAvailabilityHistories(listAvailabilityHistoriesRequest) {
719
750
  return __awaiter(this, void 0, void 0, function* () {
@@ -734,7 +765,8 @@ class ManagementAgentClient {
734
765
  "Content-Type": common.Constants.APPLICATION_JSON,
735
766
  "opc-request-id": listAvailabilityHistoriesRequest.opcRequestId
736
767
  };
737
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listAvailabilityHistoriesRequest.retryConfiguration);
768
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
769
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listAvailabilityHistoriesRequest.retryConfiguration, specRetryConfiguration);
738
770
  if (this.logger)
739
771
  retrier.logger = this.logger;
740
772
  const request = yield oci_common_2.composeRequest({
@@ -817,10 +849,11 @@ class ManagementAgentClient {
817
849
  /**
818
850
  * Get supported agent image information
819
851
  *
852
+ * This operation does not retry by default if the user has not defined a retry configuration.
820
853
  * @param ListManagementAgentImagesRequest
821
854
  * @return ListManagementAgentImagesResponse
822
855
  * @throws OciError when an error occurs
823
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/ListManagementAgentImages.ts.html |here} to see how to use ListManagementAgentImages API.
856
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/ListManagementAgentImages.ts.html |here} to see how to use ListManagementAgentImages API.
824
857
  */
825
858
  listManagementAgentImages(listManagementAgentImagesRequest) {
826
859
  return __awaiter(this, void 0, void 0, function* () {
@@ -842,7 +875,8 @@ class ManagementAgentClient {
842
875
  "opc-retry-token": listManagementAgentImagesRequest.opcRetryToken,
843
876
  "opc-request-id": listManagementAgentImagesRequest.opcRequestId
844
877
  };
845
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listManagementAgentImagesRequest.retryConfiguration);
878
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
879
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listManagementAgentImagesRequest.retryConfiguration, specRetryConfiguration);
846
880
  if (this.logger)
847
881
  retrier.logger = this.logger;
848
882
  const request = yield oci_common_2.composeRequest({
@@ -925,10 +959,11 @@ class ManagementAgentClient {
925
959
  /**
926
960
  * Returns a list of Management Agent installed Keys.
927
961
  *
962
+ * This operation does not retry by default if the user has not defined a retry configuration.
928
963
  * @param ListManagementAgentInstallKeysRequest
929
964
  * @return ListManagementAgentInstallKeysResponse
930
965
  * @throws OciError when an error occurs
931
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/ListManagementAgentInstallKeys.ts.html |here} to see how to use ListManagementAgentInstallKeys API.
966
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/ListManagementAgentInstallKeys.ts.html |here} to see how to use ListManagementAgentInstallKeys API.
932
967
  */
933
968
  listManagementAgentInstallKeys(listManagementAgentInstallKeysRequest) {
934
969
  return __awaiter(this, void 0, void 0, function* () {
@@ -949,7 +984,8 @@ class ManagementAgentClient {
949
984
  "Content-Type": common.Constants.APPLICATION_JSON,
950
985
  "opc-request-id": listManagementAgentInstallKeysRequest.opcRequestId
951
986
  };
952
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listManagementAgentInstallKeysRequest.retryConfiguration);
987
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
988
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listManagementAgentInstallKeysRequest.retryConfiguration, specRetryConfiguration);
953
989
  if (this.logger)
954
990
  retrier.logger = this.logger;
955
991
  const request = yield oci_common_2.composeRequest({
@@ -1032,10 +1068,11 @@ class ManagementAgentClient {
1032
1068
  /**
1033
1069
  * Returns a list of managementAgentPlugins.
1034
1070
  *
1071
+ * This operation does not retry by default if the user has not defined a retry configuration.
1035
1072
  * @param ListManagementAgentPluginsRequest
1036
1073
  * @return ListManagementAgentPluginsResponse
1037
1074
  * @throws OciError when an error occurs
1038
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/ListManagementAgentPlugins.ts.html |here} to see how to use ListManagementAgentPlugins API.
1075
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/ListManagementAgentPlugins.ts.html |here} to see how to use ListManagementAgentPlugins API.
1039
1076
  */
1040
1077
  listManagementAgentPlugins(listManagementAgentPluginsRequest) {
1041
1078
  return __awaiter(this, void 0, void 0, function* () {
@@ -1056,7 +1093,8 @@ class ManagementAgentClient {
1056
1093
  "Content-Type": common.Constants.APPLICATION_JSON,
1057
1094
  "opc-request-id": listManagementAgentPluginsRequest.opcRequestId
1058
1095
  };
1059
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listManagementAgentPluginsRequest.retryConfiguration);
1096
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1097
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listManagementAgentPluginsRequest.retryConfiguration, specRetryConfiguration);
1060
1098
  if (this.logger)
1061
1099
  retrier.logger = this.logger;
1062
1100
  const request = yield oci_common_2.composeRequest({
@@ -1139,10 +1177,11 @@ class ManagementAgentClient {
1139
1177
  /**
1140
1178
  * Returns a list of Management Agent.
1141
1179
  *
1180
+ * This operation does not retry by default if the user has not defined a retry configuration.
1142
1181
  * @param ListManagementAgentsRequest
1143
1182
  * @return ListManagementAgentsResponse
1144
1183
  * @throws OciError when an error occurs
1145
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/ListManagementAgents.ts.html |here} to see how to use ListManagementAgents API.
1184
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/ListManagementAgents.ts.html |here} to see how to use ListManagementAgents API.
1146
1185
  */
1147
1186
  listManagementAgents(listManagementAgentsRequest) {
1148
1187
  return __awaiter(this, void 0, void 0, function* () {
@@ -1169,7 +1208,8 @@ class ManagementAgentClient {
1169
1208
  "Content-Type": common.Constants.APPLICATION_JSON,
1170
1209
  "opc-request-id": listManagementAgentsRequest.opcRequestId
1171
1210
  };
1172
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listManagementAgentsRequest.retryConfiguration);
1211
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1212
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listManagementAgentsRequest.retryConfiguration, specRetryConfiguration);
1173
1213
  if (this.logger)
1174
1214
  retrier.logger = this.logger;
1175
1215
  const request = yield oci_common_2.composeRequest({
@@ -1252,10 +1292,11 @@ class ManagementAgentClient {
1252
1292
  /**
1253
1293
  * Return a (paginated) list of errors for a given work request.
1254
1294
  *
1295
+ * This operation does not retry by default if the user has not defined a retry configuration.
1255
1296
  * @param ListWorkRequestErrorsRequest
1256
1297
  * @return ListWorkRequestErrorsResponse
1257
1298
  * @throws OciError when an error occurs
1258
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1299
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1259
1300
  */
1260
1301
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
1261
1302
  return __awaiter(this, void 0, void 0, function* () {
@@ -1274,7 +1315,8 @@ class ManagementAgentClient {
1274
1315
  "Content-Type": common.Constants.APPLICATION_JSON,
1275
1316
  "opc-request-id": listWorkRequestErrorsRequest.opcRequestId
1276
1317
  };
1277
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listWorkRequestErrorsRequest.retryConfiguration);
1318
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1319
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestErrorsRequest.retryConfiguration, specRetryConfiguration);
1278
1320
  if (this.logger)
1279
1321
  retrier.logger = this.logger;
1280
1322
  const request = yield oci_common_2.composeRequest({
@@ -1357,10 +1399,11 @@ class ManagementAgentClient {
1357
1399
  /**
1358
1400
  * Return a (paginated) list of logs for a given work request.
1359
1401
  *
1402
+ * This operation does not retry by default if the user has not defined a retry configuration.
1360
1403
  * @param ListWorkRequestLogsRequest
1361
1404
  * @return ListWorkRequestLogsResponse
1362
1405
  * @throws OciError when an error occurs
1363
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1406
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1364
1407
  */
1365
1408
  listWorkRequestLogs(listWorkRequestLogsRequest) {
1366
1409
  return __awaiter(this, void 0, void 0, function* () {
@@ -1379,7 +1422,8 @@ class ManagementAgentClient {
1379
1422
  "Content-Type": common.Constants.APPLICATION_JSON,
1380
1423
  "opc-request-id": listWorkRequestLogsRequest.opcRequestId
1381
1424
  };
1382
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listWorkRequestLogsRequest.retryConfiguration);
1425
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1426
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestLogsRequest.retryConfiguration, specRetryConfiguration);
1383
1427
  if (this.logger)
1384
1428
  retrier.logger = this.logger;
1385
1429
  const request = yield oci_common_2.composeRequest({
@@ -1462,10 +1506,11 @@ class ManagementAgentClient {
1462
1506
  /**
1463
1507
  * Lists the work requests in a compartment.
1464
1508
  *
1509
+ * This operation does not retry by default if the user has not defined a retry configuration.
1465
1510
  * @param ListWorkRequestsRequest
1466
1511
  * @return ListWorkRequestsResponse
1467
1512
  * @throws OciError when an error occurs
1468
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1513
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1469
1514
  */
1470
1515
  listWorkRequests(listWorkRequestsRequest) {
1471
1516
  return __awaiter(this, void 0, void 0, function* () {
@@ -1486,7 +1531,8 @@ class ManagementAgentClient {
1486
1531
  "Content-Type": common.Constants.APPLICATION_JSON,
1487
1532
  "opc-request-id": listWorkRequestsRequest.opcRequestId
1488
1533
  };
1489
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listWorkRequestsRequest.retryConfiguration);
1534
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1535
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
1490
1536
  if (this.logger)
1491
1537
  retrier.logger = this.logger;
1492
1538
  const request = yield oci_common_2.composeRequest({
@@ -1570,10 +1616,11 @@ class ManagementAgentClient {
1570
1616
  * Sets the AutoUpgradable configuration for all agents in a tenancy.
1571
1617
  * The supplied compartmentId must be a tenancy root.
1572
1618
  *
1619
+ * This operation does not retry by default if the user has not defined a retry configuration.
1573
1620
  * @param SetAutoUpgradableConfigRequest
1574
1621
  * @return SetAutoUpgradableConfigResponse
1575
1622
  * @throws OciError when an error occurs
1576
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/SetAutoUpgradableConfig.ts.html |here} to see how to use SetAutoUpgradableConfig API.
1623
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/SetAutoUpgradableConfig.ts.html |here} to see how to use SetAutoUpgradableConfig API.
1577
1624
  */
1578
1625
  setAutoUpgradableConfig(setAutoUpgradableConfigRequest) {
1579
1626
  return __awaiter(this, void 0, void 0, function* () {
@@ -1586,7 +1633,8 @@ class ManagementAgentClient {
1586
1633
  "opc-retry-token": setAutoUpgradableConfigRequest.opcRetryToken,
1587
1634
  "opc-request-id": setAutoUpgradableConfigRequest.opcRequestId
1588
1635
  };
1589
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, setAutoUpgradableConfigRequest.retryConfiguration);
1636
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1637
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, setAutoUpgradableConfigRequest.retryConfiguration, specRetryConfiguration);
1590
1638
  if (this.logger)
1591
1639
  retrier.logger = this.logger;
1592
1640
  const request = yield oci_common_2.composeRequest({
@@ -1626,10 +1674,11 @@ class ManagementAgentClient {
1626
1674
  * Gets count of the inventory of agents for a given compartment id, group by, and isPluginDeployed parameters.
1627
1675
  * Supported groupBy parameters: availabilityStatus, platformType, version
1628
1676
  *
1677
+ * This operation does not retry by default if the user has not defined a retry configuration.
1629
1678
  * @param SummarizeManagementAgentCountsRequest
1630
1679
  * @return SummarizeManagementAgentCountsResponse
1631
1680
  * @throws OciError when an error occurs
1632
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/SummarizeManagementAgentCounts.ts.html |here} to see how to use SummarizeManagementAgentCounts API.
1681
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/SummarizeManagementAgentCounts.ts.html |here} to see how to use SummarizeManagementAgentCounts API.
1633
1682
  */
1634
1683
  summarizeManagementAgentCounts(summarizeManagementAgentCountsRequest) {
1635
1684
  return __awaiter(this, void 0, void 0, function* () {
@@ -1647,7 +1696,8 @@ class ManagementAgentClient {
1647
1696
  "Content-Type": common.Constants.APPLICATION_JSON,
1648
1697
  "opc-request-id": summarizeManagementAgentCountsRequest.opcRequestId
1649
1698
  };
1650
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, summarizeManagementAgentCountsRequest.retryConfiguration);
1699
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1700
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, summarizeManagementAgentCountsRequest.retryConfiguration, specRetryConfiguration);
1651
1701
  if (this.logger)
1652
1702
  retrier.logger = this.logger;
1653
1703
  const request = yield oci_common_2.composeRequest({
@@ -1691,10 +1741,11 @@ class ManagementAgentClient {
1691
1741
  * Gets count of the inventory of management agent plugins for a given compartment id and group by parameter.
1692
1742
  * Supported groupBy parameter: pluginName
1693
1743
  *
1744
+ * This operation does not retry by default if the user has not defined a retry configuration.
1694
1745
  * @param SummarizeManagementAgentPluginCountsRequest
1695
1746
  * @return SummarizeManagementAgentPluginCountsResponse
1696
1747
  * @throws OciError when an error occurs
1697
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/SummarizeManagementAgentPluginCounts.ts.html |here} to see how to use SummarizeManagementAgentPluginCounts API.
1748
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/SummarizeManagementAgentPluginCounts.ts.html |here} to see how to use SummarizeManagementAgentPluginCounts API.
1698
1749
  */
1699
1750
  summarizeManagementAgentPluginCounts(summarizeManagementAgentPluginCountsRequest) {
1700
1751
  return __awaiter(this, void 0, void 0, function* () {
@@ -1710,7 +1761,8 @@ class ManagementAgentClient {
1710
1761
  "Content-Type": common.Constants.APPLICATION_JSON,
1711
1762
  "opc-request-id": summarizeManagementAgentPluginCountsRequest.opcRequestId
1712
1763
  };
1713
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, summarizeManagementAgentPluginCountsRequest.retryConfiguration);
1764
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1765
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, summarizeManagementAgentPluginCountsRequest.retryConfiguration, specRetryConfiguration);
1714
1766
  if (this.logger)
1715
1767
  retrier.logger = this.logger;
1716
1768
  const request = yield oci_common_2.composeRequest({
@@ -1753,10 +1805,11 @@ class ManagementAgentClient {
1753
1805
  /**
1754
1806
  * API to update the console managed properties of the Management Agent.
1755
1807
  *
1808
+ * This operation does not retry by default if the user has not defined a retry configuration.
1756
1809
  * @param UpdateManagementAgentRequest
1757
1810
  * @return UpdateManagementAgentResponse
1758
1811
  * @throws OciError when an error occurs
1759
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/UpdateManagementAgent.ts.html |here} to see how to use UpdateManagementAgent API.
1812
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/UpdateManagementAgent.ts.html |here} to see how to use UpdateManagementAgent API.
1760
1813
  */
1761
1814
  updateManagementAgent(updateManagementAgentRequest) {
1762
1815
  return __awaiter(this, void 0, void 0, function* () {
@@ -1772,7 +1825,8 @@ class ManagementAgentClient {
1772
1825
  "opc-request-id": updateManagementAgentRequest.opcRequestId,
1773
1826
  "if-match": updateManagementAgentRequest.ifMatch
1774
1827
  };
1775
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, updateManagementAgentRequest.retryConfiguration);
1828
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1829
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateManagementAgentRequest.retryConfiguration, specRetryConfiguration);
1776
1830
  if (this.logger)
1777
1831
  retrier.logger = this.logger;
1778
1832
  const request = yield oci_common_2.composeRequest({
@@ -1816,10 +1870,11 @@ class ManagementAgentClient {
1816
1870
  /**
1817
1871
  * API to update the modifiable properties of the Management Agent install key.
1818
1872
  *
1873
+ * This operation does not retry by default if the user has not defined a retry configuration.
1819
1874
  * @param UpdateManagementAgentInstallKeyRequest
1820
1875
  * @return UpdateManagementAgentInstallKeyResponse
1821
1876
  * @throws OciError when an error occurs
1822
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/UpdateManagementAgentInstallKey.ts.html |here} to see how to use UpdateManagementAgentInstallKey API.
1877
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/managementagent/UpdateManagementAgentInstallKey.ts.html |here} to see how to use UpdateManagementAgentInstallKey API.
1823
1878
  */
1824
1879
  updateManagementAgentInstallKey(updateManagementAgentInstallKeyRequest) {
1825
1880
  return __awaiter(this, void 0, void 0, function* () {
@@ -1835,7 +1890,8 @@ class ManagementAgentClient {
1835
1890
  "opc-request-id": updateManagementAgentInstallKeyRequest.opcRequestId,
1836
1891
  "if-match": updateManagementAgentInstallKeyRequest.ifMatch
1837
1892
  };
1838
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, updateManagementAgentInstallKeyRequest.retryConfiguration);
1893
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1894
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateManagementAgentInstallKeyRequest.retryConfiguration, specRetryConfiguration);
1839
1895
  if (this.logger)
1840
1896
  retrier.logger = this.logger;
1841
1897
  const request = yield oci_common_2.composeRequest({