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.d.ts CHANGED
@@ -17,6 +17,9 @@ import * as responses from "./response";
17
17
  import { ManagementAgentWaiter } from "./managementagent-waiter";
18
18
  export declare enum ManagementAgentApiKeys {
19
19
  }
20
+ /**
21
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
22
+ */
20
23
  export declare class ManagementAgentClient {
21
24
  protected static serviceEndpointTemplate: string;
22
25
  protected "_endpoint": string;
@@ -67,94 +70,105 @@ export declare class ManagementAgentClient {
67
70
  /**
68
71
  * User creates a new install key as part of this API.
69
72
  *
73
+ * This operation does not retry by default if the user has not defined a retry configuration.
70
74
  * @param CreateManagementAgentInstallKeyRequest
71
75
  * @return CreateManagementAgentInstallKeyResponse
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.5.2/managementagent/CreateManagementAgentInstallKey.ts.html |here} to see how to use CreateManagementAgentInstallKey API.
77
+ * @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.
74
78
  */
75
79
  createManagementAgentInstallKey(createManagementAgentInstallKeyRequest: requests.CreateManagementAgentInstallKeyRequest): Promise<responses.CreateManagementAgentInstallKeyResponse>;
76
80
  /**
77
81
  * Deletes a Management Agent resource by identifier
82
+ * This operation does not retry by default if the user has not defined a retry configuration.
78
83
  * @param DeleteManagementAgentRequest
79
84
  * @return DeleteManagementAgentResponse
80
85
  * @throws OciError when an error occurs
81
- * @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.
86
+ * @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.
82
87
  */
83
88
  deleteManagementAgent(deleteManagementAgentRequest: requests.DeleteManagementAgentRequest): Promise<responses.DeleteManagementAgentResponse>;
84
89
  /**
85
90
  * Deletes a Management Agent install Key resource by identifier
91
+ * This operation does not retry by default if the user has not defined a retry configuration.
86
92
  * @param DeleteManagementAgentInstallKeyRequest
87
93
  * @return DeleteManagementAgentInstallKeyResponse
88
94
  * @throws OciError when an error occurs
89
- * @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.
95
+ * @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.
90
96
  */
91
97
  deleteManagementAgentInstallKey(deleteManagementAgentInstallKeyRequest: requests.DeleteManagementAgentInstallKeyRequest): Promise<responses.DeleteManagementAgentInstallKeyResponse>;
92
98
  /**
93
99
  * Cancel the work request with the given ID.
100
+ * This operation does not retry by default if the user has not defined a retry configuration.
94
101
  * @param DeleteWorkRequestRequest
95
102
  * @return DeleteWorkRequestResponse
96
103
  * @throws OciError when an error occurs
97
- * @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.
104
+ * @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.
98
105
  */
99
106
  deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
100
107
  /**
101
108
  * Deploys Plugins to a given list of agentIds.
102
109
  *
110
+ * This operation does not retry by default if the user has not defined a retry configuration.
103
111
  * @param DeployPluginsRequest
104
112
  * @return DeployPluginsResponse
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.5.2/managementagent/DeployPlugins.ts.html |here} to see how to use DeployPlugins API.
114
+ * @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.
107
115
  */
108
116
  deployPlugins(deployPluginsRequest: requests.DeployPluginsRequest): Promise<responses.DeployPluginsResponse>;
109
117
  /**
110
118
  * Get the AutoUpgradable configuration for all agents in a tenancy.
111
119
  * The supplied compartmentId must be a tenancy root.
112
120
  *
121
+ * This operation does not retry by default if the user has not defined a retry configuration.
113
122
  * @param GetAutoUpgradableConfigRequest
114
123
  * @return GetAutoUpgradableConfigResponse
115
124
  * @throws OciError when an error occurs
116
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/managementagent/GetAutoUpgradableConfig.ts.html |here} to see how to use GetAutoUpgradableConfig API.
125
+ * @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.
117
126
  */
118
127
  getAutoUpgradableConfig(getAutoUpgradableConfigRequest: requests.GetAutoUpgradableConfigRequest): Promise<responses.GetAutoUpgradableConfigResponse>;
119
128
  /**
120
129
  * Gets complete details of the inventory of a given agent id
130
+ * This operation does not retry by default if the user has not defined a retry configuration.
121
131
  * @param GetManagementAgentRequest
122
132
  * @return GetManagementAgentResponse
123
133
  * @throws OciError when an error occurs
124
- * @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.
134
+ * @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.
125
135
  */
126
136
  getManagementAgent(getManagementAgentRequest: requests.GetManagementAgentRequest): Promise<responses.GetManagementAgentResponse>;
127
137
  /**
128
138
  * Gets complete details of the Agent install Key for a given key id
139
+ * This operation does not retry by default if the user has not defined a retry configuration.
129
140
  * @param GetManagementAgentInstallKeyRequest
130
141
  * @return GetManagementAgentInstallKeyResponse
131
142
  * @throws OciError when an error occurs
132
- * @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.
143
+ * @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.
133
144
  */
134
145
  getManagementAgentInstallKey(getManagementAgentInstallKeyRequest: requests.GetManagementAgentInstallKeyRequest): Promise<responses.GetManagementAgentInstallKeyResponse>;
135
146
  /**
136
147
  * Returns a file with Management Agent install Key in it
137
148
  *
149
+ * This operation does not retry by default if the user has not defined a retry configuration.
138
150
  * @param GetManagementAgentInstallKeyContentRequest
139
151
  * @return GetManagementAgentInstallKeyContentResponse
140
152
  * @throws OciError when an error occurs
141
- * @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.
153
+ * @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.
142
154
  */
143
155
  getManagementAgentInstallKeyContent(getManagementAgentInstallKeyContentRequest: requests.GetManagementAgentInstallKeyContentRequest): Promise<responses.GetManagementAgentInstallKeyContentResponse>;
144
156
  /**
145
157
  * Gets the status of the work request with the given ID.
158
+ * This operation does not retry by default if the user has not defined a retry configuration.
146
159
  * @param GetWorkRequestRequest
147
160
  * @return GetWorkRequestResponse
148
161
  * @throws OciError when an error occurs
149
- * @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.
162
+ * @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.
150
163
  */
151
164
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
152
165
  /**
153
166
  * Lists the availability history records of Management Agent
167
+ * This operation does not retry by default if the user has not defined a retry configuration.
154
168
  * @param ListAvailabilityHistoriesRequest
155
169
  * @return ListAvailabilityHistoriesResponse
156
170
  * @throws OciError when an error occurs
157
- * @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.
171
+ * @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.
158
172
  */
159
173
  listAvailabilityHistories(listAvailabilityHistoriesRequest: requests.ListAvailabilityHistoriesRequest): Promise<responses.ListAvailabilityHistoriesResponse>;
160
174
  /**
@@ -192,10 +206,11 @@ export declare class ManagementAgentClient {
192
206
  /**
193
207
  * Get supported agent image information
194
208
  *
209
+ * This operation does not retry by default if the user has not defined a retry configuration.
195
210
  * @param ListManagementAgentImagesRequest
196
211
  * @return ListManagementAgentImagesResponse
197
212
  * @throws OciError when an error occurs
198
- * @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.
213
+ * @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.
199
214
  */
200
215
  listManagementAgentImages(listManagementAgentImagesRequest: requests.ListManagementAgentImagesRequest): Promise<responses.ListManagementAgentImagesResponse>;
201
216
  /**
@@ -233,10 +248,11 @@ export declare class ManagementAgentClient {
233
248
  /**
234
249
  * Returns a list of Management Agent installed Keys.
235
250
  *
251
+ * This operation does not retry by default if the user has not defined a retry configuration.
236
252
  * @param ListManagementAgentInstallKeysRequest
237
253
  * @return ListManagementAgentInstallKeysResponse
238
254
  * @throws OciError when an error occurs
239
- * @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.
255
+ * @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.
240
256
  */
241
257
  listManagementAgentInstallKeys(listManagementAgentInstallKeysRequest: requests.ListManagementAgentInstallKeysRequest): Promise<responses.ListManagementAgentInstallKeysResponse>;
242
258
  /**
@@ -274,10 +290,11 @@ export declare class ManagementAgentClient {
274
290
  /**
275
291
  * Returns a list of managementAgentPlugins.
276
292
  *
293
+ * This operation does not retry by default if the user has not defined a retry configuration.
277
294
  * @param ListManagementAgentPluginsRequest
278
295
  * @return ListManagementAgentPluginsResponse
279
296
  * @throws OciError when an error occurs
280
- * @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.
297
+ * @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.
281
298
  */
282
299
  listManagementAgentPlugins(listManagementAgentPluginsRequest: requests.ListManagementAgentPluginsRequest): Promise<responses.ListManagementAgentPluginsResponse>;
283
300
  /**
@@ -315,10 +332,11 @@ export declare class ManagementAgentClient {
315
332
  /**
316
333
  * Returns a list of Management Agent.
317
334
  *
335
+ * This operation does not retry by default if the user has not defined a retry configuration.
318
336
  * @param ListManagementAgentsRequest
319
337
  * @return ListManagementAgentsResponse
320
338
  * @throws OciError when an error occurs
321
- * @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.
339
+ * @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.
322
340
  */
323
341
  listManagementAgents(listManagementAgentsRequest: requests.ListManagementAgentsRequest): Promise<responses.ListManagementAgentsResponse>;
324
342
  /**
@@ -356,10 +374,11 @@ export declare class ManagementAgentClient {
356
374
  /**
357
375
  * Return a (paginated) list of errors for a given work request.
358
376
  *
377
+ * This operation does not retry by default if the user has not defined a retry configuration.
359
378
  * @param ListWorkRequestErrorsRequest
360
379
  * @return ListWorkRequestErrorsResponse
361
380
  * @throws OciError when an error occurs
362
- * @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.
381
+ * @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.
363
382
  */
364
383
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
365
384
  /**
@@ -397,10 +416,11 @@ export declare class ManagementAgentClient {
397
416
  /**
398
417
  * Return a (paginated) list of logs for a given work request.
399
418
  *
419
+ * This operation does not retry by default if the user has not defined a retry configuration.
400
420
  * @param ListWorkRequestLogsRequest
401
421
  * @return ListWorkRequestLogsResponse
402
422
  * @throws OciError when an error occurs
403
- * @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.
423
+ * @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.
404
424
  */
405
425
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
406
426
  /**
@@ -438,10 +458,11 @@ export declare class ManagementAgentClient {
438
458
  /**
439
459
  * Lists the work requests in a compartment.
440
460
  *
461
+ * This operation does not retry by default if the user has not defined a retry configuration.
441
462
  * @param ListWorkRequestsRequest
442
463
  * @return ListWorkRequestsResponse
443
464
  * @throws OciError when an error occurs
444
- * @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.
465
+ * @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.
445
466
  */
446
467
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
447
468
  /**
@@ -480,48 +501,53 @@ export declare class ManagementAgentClient {
480
501
  * Sets the AutoUpgradable configuration for all agents in a tenancy.
481
502
  * The supplied compartmentId must be a tenancy root.
482
503
  *
504
+ * This operation does not retry by default if the user has not defined a retry configuration.
483
505
  * @param SetAutoUpgradableConfigRequest
484
506
  * @return SetAutoUpgradableConfigResponse
485
507
  * @throws OciError when an error occurs
486
- * @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.
508
+ * @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.
487
509
  */
488
510
  setAutoUpgradableConfig(setAutoUpgradableConfigRequest: requests.SetAutoUpgradableConfigRequest): Promise<responses.SetAutoUpgradableConfigResponse>;
489
511
  /**
490
512
  * Gets count of the inventory of agents for a given compartment id, group by, and isPluginDeployed parameters.
491
513
  * Supported groupBy parameters: availabilityStatus, platformType, version
492
514
  *
515
+ * This operation does not retry by default if the user has not defined a retry configuration.
493
516
  * @param SummarizeManagementAgentCountsRequest
494
517
  * @return SummarizeManagementAgentCountsResponse
495
518
  * @throws OciError when an error occurs
496
- * @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.
519
+ * @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.
497
520
  */
498
521
  summarizeManagementAgentCounts(summarizeManagementAgentCountsRequest: requests.SummarizeManagementAgentCountsRequest): Promise<responses.SummarizeManagementAgentCountsResponse>;
499
522
  /**
500
523
  * Gets count of the inventory of management agent plugins for a given compartment id and group by parameter.
501
524
  * Supported groupBy parameter: pluginName
502
525
  *
526
+ * This operation does not retry by default if the user has not defined a retry configuration.
503
527
  * @param SummarizeManagementAgentPluginCountsRequest
504
528
  * @return SummarizeManagementAgentPluginCountsResponse
505
529
  * @throws OciError when an error occurs
506
- * @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.
530
+ * @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.
507
531
  */
508
532
  summarizeManagementAgentPluginCounts(summarizeManagementAgentPluginCountsRequest: requests.SummarizeManagementAgentPluginCountsRequest): Promise<responses.SummarizeManagementAgentPluginCountsResponse>;
509
533
  /**
510
534
  * API to update the console managed properties of the Management Agent.
511
535
  *
536
+ * This operation does not retry by default if the user has not defined a retry configuration.
512
537
  * @param UpdateManagementAgentRequest
513
538
  * @return UpdateManagementAgentResponse
514
539
  * @throws OciError when an error occurs
515
- * @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.
540
+ * @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.
516
541
  */
517
542
  updateManagementAgent(updateManagementAgentRequest: requests.UpdateManagementAgentRequest): Promise<responses.UpdateManagementAgentResponse>;
518
543
  /**
519
544
  * API to update the modifiable properties of the Management Agent install key.
520
545
  *
546
+ * This operation does not retry by default if the user has not defined a retry configuration.
521
547
  * @param UpdateManagementAgentInstallKeyRequest
522
548
  * @return UpdateManagementAgentInstallKeyResponse
523
549
  * @throws OciError when an error occurs
524
- * @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.
550
+ * @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.
525
551
  */
526
552
  updateManagementAgentInstallKey(updateManagementAgentInstallKeyRequest: requests.UpdateManagementAgentInstallKeyRequest): Promise<responses.UpdateManagementAgentInstallKeyResponse>;
527
553
  }