oci-managementagent 2.76.1 → 2.77.1
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/lib/client.d.ts +30 -24
- package/lib/client.js +32 -23
- package/lib/client.js.map +1 -1
- package/lib/model/management-agent-summary.d.ts +2 -2
- package/lib/model/management-agent.d.ts +2 -2
- package/lib/model/update-management-agent-details.d.ts +2 -2
- package/lib/request/create-management-agent-install-key-request.d.ts +1 -1
- package/lib/request/delete-management-agent-install-key-request.d.ts +2 -2
- package/lib/request/delete-management-agent-request.d.ts +2 -2
- package/lib/request/delete-work-request-request.d.ts +2 -2
- package/lib/request/deploy-plugins-request.d.ts +1 -1
- package/lib/request/get-auto-upgradable-config-request.d.ts +1 -1
- package/lib/request/get-management-agent-install-key-content-request.d.ts +1 -1
- package/lib/request/get-management-agent-install-key-request.d.ts +1 -1
- package/lib/request/get-management-agent-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-availability-histories-request.d.ts +1 -1
- package/lib/request/list-management-agent-images-request.d.ts +1 -1
- package/lib/request/list-management-agent-install-keys-request.d.ts +1 -1
- package/lib/request/list-management-agent-plugins-request.d.ts +1 -1
- package/lib/request/list-management-agents-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +2 -2
- package/lib/request/set-auto-upgradable-config-request.d.ts +1 -1
- package/lib/request/summarize-management-agent-counts-request.d.ts +1 -1
- package/lib/request/summarize-management-agent-plugin-counts-request.d.ts +1 -1
- package/lib/request/update-management-agent-install-key-request.d.ts +2 -2
- package/lib/request/update-management-agent-request.d.ts +2 -2
- package/lib/response/create-management-agent-install-key-response.d.ts +1 -1
- package/lib/response/get-management-agent-install-key-response.d.ts +1 -1
- package/lib/response/get-management-agent-response.d.ts +1 -1
- package/lib/response/get-work-request-response.d.ts +1 -1
- package/lib/response/list-availability-histories-response.d.ts +1 -1
- package/lib/response/list-management-agent-images-response.d.ts +1 -1
- package/lib/response/list-management-agent-install-keys-response.d.ts +1 -1
- package/lib/response/list-management-agent-plugins-response.d.ts +1 -1
- package/lib/response/list-management-agents-response.d.ts +1 -1
- package/lib/response/list-work-request-errors-response.d.ts +1 -1
- package/lib/response/list-work-request-logs-response.d.ts +1 -1
- package/lib/response/list-work-requests-response.d.ts +1 -1
- package/lib/response/summarize-management-agent-counts-response.d.ts +1 -1
- package/lib/response/summarize-management-agent-plugin-counts-response.d.ts +1 -1
- package/lib/response/update-management-agent-install-key-response.d.ts +1 -1
- package/lib/response/update-management-agent-response.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import * as requests from "./request";
|
|
|
17
17
|
import * as model from "./model";
|
|
18
18
|
import * as responses from "./response";
|
|
19
19
|
import { ManagementAgentWaiter } from "./managementagent-waiter";
|
|
20
|
+
declare const Breaker: any;
|
|
20
21
|
export declare enum ManagementAgentApiKeys {
|
|
21
22
|
}
|
|
22
23
|
/**
|
|
@@ -30,7 +31,7 @@ export declare class ManagementAgentClient {
|
|
|
30
31
|
protected "_defaultHeaders": any;
|
|
31
32
|
protected "_waiters": ManagementAgentWaiter;
|
|
32
33
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
33
|
-
protected _circuitBreaker: null;
|
|
34
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
34
35
|
protected _httpOptions: any;
|
|
35
36
|
protected _bodyDuplexMode: any;
|
|
36
37
|
targetService: string;
|
|
@@ -83,6 +84,10 @@ export declare class ManagementAgentClient {
|
|
|
83
84
|
* @return The service waiters.
|
|
84
85
|
*/
|
|
85
86
|
getWaiters(): ManagementAgentWaiter;
|
|
87
|
+
/**
|
|
88
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
89
|
+
*/
|
|
90
|
+
shutdownCircuitBreaker(): void;
|
|
86
91
|
/**
|
|
87
92
|
* User creates a new install key as part of this API.
|
|
88
93
|
*
|
|
@@ -90,7 +95,7 @@ export declare class ManagementAgentClient {
|
|
|
90
95
|
* @param CreateManagementAgentInstallKeyRequest
|
|
91
96
|
* @return CreateManagementAgentInstallKeyResponse
|
|
92
97
|
* @throws OciError when an error occurs
|
|
93
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
98
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/CreateManagementAgentInstallKey.ts.html |here} to see how to use CreateManagementAgentInstallKey API.
|
|
94
99
|
*/
|
|
95
100
|
createManagementAgentInstallKey(createManagementAgentInstallKeyRequest: requests.CreateManagementAgentInstallKeyRequest): Promise<responses.CreateManagementAgentInstallKeyResponse>;
|
|
96
101
|
/**
|
|
@@ -99,7 +104,7 @@ export declare class ManagementAgentClient {
|
|
|
99
104
|
* @param DeleteManagementAgentRequest
|
|
100
105
|
* @return DeleteManagementAgentResponse
|
|
101
106
|
* @throws OciError when an error occurs
|
|
102
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
107
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/DeleteManagementAgent.ts.html |here} to see how to use DeleteManagementAgent API.
|
|
103
108
|
*/
|
|
104
109
|
deleteManagementAgent(deleteManagementAgentRequest: requests.DeleteManagementAgentRequest): Promise<responses.DeleteManagementAgentResponse>;
|
|
105
110
|
/**
|
|
@@ -108,7 +113,7 @@ export declare class ManagementAgentClient {
|
|
|
108
113
|
* @param DeleteManagementAgentInstallKeyRequest
|
|
109
114
|
* @return DeleteManagementAgentInstallKeyResponse
|
|
110
115
|
* @throws OciError when an error occurs
|
|
111
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
116
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/DeleteManagementAgentInstallKey.ts.html |here} to see how to use DeleteManagementAgentInstallKey API.
|
|
112
117
|
*/
|
|
113
118
|
deleteManagementAgentInstallKey(deleteManagementAgentInstallKeyRequest: requests.DeleteManagementAgentInstallKeyRequest): Promise<responses.DeleteManagementAgentInstallKeyResponse>;
|
|
114
119
|
/**
|
|
@@ -117,7 +122,7 @@ export declare class ManagementAgentClient {
|
|
|
117
122
|
* @param DeleteWorkRequestRequest
|
|
118
123
|
* @return DeleteWorkRequestResponse
|
|
119
124
|
* @throws OciError when an error occurs
|
|
120
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
125
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
121
126
|
*/
|
|
122
127
|
deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
|
|
123
128
|
/**
|
|
@@ -127,7 +132,7 @@ export declare class ManagementAgentClient {
|
|
|
127
132
|
* @param DeployPluginsRequest
|
|
128
133
|
* @return DeployPluginsResponse
|
|
129
134
|
* @throws OciError when an error occurs
|
|
130
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
135
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/DeployPlugins.ts.html |here} to see how to use DeployPlugins API.
|
|
131
136
|
*/
|
|
132
137
|
deployPlugins(deployPluginsRequest: requests.DeployPluginsRequest): Promise<responses.DeployPluginsResponse>;
|
|
133
138
|
/**
|
|
@@ -138,7 +143,7 @@ export declare class ManagementAgentClient {
|
|
|
138
143
|
* @param GetAutoUpgradableConfigRequest
|
|
139
144
|
* @return GetAutoUpgradableConfigResponse
|
|
140
145
|
* @throws OciError when an error occurs
|
|
141
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
146
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/GetAutoUpgradableConfig.ts.html |here} to see how to use GetAutoUpgradableConfig API.
|
|
142
147
|
*/
|
|
143
148
|
getAutoUpgradableConfig(getAutoUpgradableConfigRequest: requests.GetAutoUpgradableConfigRequest): Promise<responses.GetAutoUpgradableConfigResponse>;
|
|
144
149
|
/**
|
|
@@ -147,7 +152,7 @@ export declare class ManagementAgentClient {
|
|
|
147
152
|
* @param GetManagementAgentRequest
|
|
148
153
|
* @return GetManagementAgentResponse
|
|
149
154
|
* @throws OciError when an error occurs
|
|
150
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
155
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/GetManagementAgent.ts.html |here} to see how to use GetManagementAgent API.
|
|
151
156
|
*/
|
|
152
157
|
getManagementAgent(getManagementAgentRequest: requests.GetManagementAgentRequest): Promise<responses.GetManagementAgentResponse>;
|
|
153
158
|
/**
|
|
@@ -156,7 +161,7 @@ export declare class ManagementAgentClient {
|
|
|
156
161
|
* @param GetManagementAgentInstallKeyRequest
|
|
157
162
|
* @return GetManagementAgentInstallKeyResponse
|
|
158
163
|
* @throws OciError when an error occurs
|
|
159
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
164
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/GetManagementAgentInstallKey.ts.html |here} to see how to use GetManagementAgentInstallKey API.
|
|
160
165
|
*/
|
|
161
166
|
getManagementAgentInstallKey(getManagementAgentInstallKeyRequest: requests.GetManagementAgentInstallKeyRequest): Promise<responses.GetManagementAgentInstallKeyResponse>;
|
|
162
167
|
/**
|
|
@@ -166,7 +171,7 @@ export declare class ManagementAgentClient {
|
|
|
166
171
|
* @param GetManagementAgentInstallKeyContentRequest
|
|
167
172
|
* @return GetManagementAgentInstallKeyContentResponse
|
|
168
173
|
* @throws OciError when an error occurs
|
|
169
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
174
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/GetManagementAgentInstallKeyContent.ts.html |here} to see how to use GetManagementAgentInstallKeyContent API.
|
|
170
175
|
*/
|
|
171
176
|
getManagementAgentInstallKeyContent(getManagementAgentInstallKeyContentRequest: requests.GetManagementAgentInstallKeyContentRequest): Promise<responses.GetManagementAgentInstallKeyContentResponse>;
|
|
172
177
|
/**
|
|
@@ -175,7 +180,7 @@ export declare class ManagementAgentClient {
|
|
|
175
180
|
* @param GetWorkRequestRequest
|
|
176
181
|
* @return GetWorkRequestResponse
|
|
177
182
|
* @throws OciError when an error occurs
|
|
178
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
183
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
179
184
|
*/
|
|
180
185
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
181
186
|
/**
|
|
@@ -184,7 +189,7 @@ export declare class ManagementAgentClient {
|
|
|
184
189
|
* @param ListAvailabilityHistoriesRequest
|
|
185
190
|
* @return ListAvailabilityHistoriesResponse
|
|
186
191
|
* @throws OciError when an error occurs
|
|
187
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
192
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListAvailabilityHistories.ts.html |here} to see how to use ListAvailabilityHistories API.
|
|
188
193
|
*/
|
|
189
194
|
listAvailabilityHistories(listAvailabilityHistoriesRequest: requests.ListAvailabilityHistoriesRequest): Promise<responses.ListAvailabilityHistoriesResponse>;
|
|
190
195
|
/**
|
|
@@ -226,7 +231,7 @@ export declare class ManagementAgentClient {
|
|
|
226
231
|
* @param ListManagementAgentImagesRequest
|
|
227
232
|
* @return ListManagementAgentImagesResponse
|
|
228
233
|
* @throws OciError when an error occurs
|
|
229
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
234
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListManagementAgentImages.ts.html |here} to see how to use ListManagementAgentImages API.
|
|
230
235
|
*/
|
|
231
236
|
listManagementAgentImages(listManagementAgentImagesRequest: requests.ListManagementAgentImagesRequest): Promise<responses.ListManagementAgentImagesResponse>;
|
|
232
237
|
/**
|
|
@@ -268,7 +273,7 @@ export declare class ManagementAgentClient {
|
|
|
268
273
|
* @param ListManagementAgentInstallKeysRequest
|
|
269
274
|
* @return ListManagementAgentInstallKeysResponse
|
|
270
275
|
* @throws OciError when an error occurs
|
|
271
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
276
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListManagementAgentInstallKeys.ts.html |here} to see how to use ListManagementAgentInstallKeys API.
|
|
272
277
|
*/
|
|
273
278
|
listManagementAgentInstallKeys(listManagementAgentInstallKeysRequest: requests.ListManagementAgentInstallKeysRequest): Promise<responses.ListManagementAgentInstallKeysResponse>;
|
|
274
279
|
/**
|
|
@@ -310,7 +315,7 @@ export declare class ManagementAgentClient {
|
|
|
310
315
|
* @param ListManagementAgentPluginsRequest
|
|
311
316
|
* @return ListManagementAgentPluginsResponse
|
|
312
317
|
* @throws OciError when an error occurs
|
|
313
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
318
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListManagementAgentPlugins.ts.html |here} to see how to use ListManagementAgentPlugins API.
|
|
314
319
|
*/
|
|
315
320
|
listManagementAgentPlugins(listManagementAgentPluginsRequest: requests.ListManagementAgentPluginsRequest): Promise<responses.ListManagementAgentPluginsResponse>;
|
|
316
321
|
/**
|
|
@@ -354,7 +359,7 @@ export declare class ManagementAgentClient {
|
|
|
354
359
|
* @param ListManagementAgentsRequest
|
|
355
360
|
* @return ListManagementAgentsResponse
|
|
356
361
|
* @throws OciError when an error occurs
|
|
357
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
362
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListManagementAgents.ts.html |here} to see how to use ListManagementAgents API.
|
|
358
363
|
*/
|
|
359
364
|
listManagementAgents(listManagementAgentsRequest: requests.ListManagementAgentsRequest): Promise<responses.ListManagementAgentsResponse>;
|
|
360
365
|
/**
|
|
@@ -396,7 +401,7 @@ export declare class ManagementAgentClient {
|
|
|
396
401
|
* @param ListWorkRequestErrorsRequest
|
|
397
402
|
* @return ListWorkRequestErrorsResponse
|
|
398
403
|
* @throws OciError when an error occurs
|
|
399
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
404
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
400
405
|
*/
|
|
401
406
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
402
407
|
/**
|
|
@@ -438,7 +443,7 @@ export declare class ManagementAgentClient {
|
|
|
438
443
|
* @param ListWorkRequestLogsRequest
|
|
439
444
|
* @return ListWorkRequestLogsResponse
|
|
440
445
|
* @throws OciError when an error occurs
|
|
441
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
446
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
442
447
|
*/
|
|
443
448
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
444
449
|
/**
|
|
@@ -480,7 +485,7 @@ export declare class ManagementAgentClient {
|
|
|
480
485
|
* @param ListWorkRequestsRequest
|
|
481
486
|
* @return ListWorkRequestsResponse
|
|
482
487
|
* @throws OciError when an error occurs
|
|
483
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
488
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
484
489
|
*/
|
|
485
490
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
486
491
|
/**
|
|
@@ -523,7 +528,7 @@ export declare class ManagementAgentClient {
|
|
|
523
528
|
* @param SetAutoUpgradableConfigRequest
|
|
524
529
|
* @return SetAutoUpgradableConfigResponse
|
|
525
530
|
* @throws OciError when an error occurs
|
|
526
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
531
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/SetAutoUpgradableConfig.ts.html |here} to see how to use SetAutoUpgradableConfig API.
|
|
527
532
|
*/
|
|
528
533
|
setAutoUpgradableConfig(setAutoUpgradableConfigRequest: requests.SetAutoUpgradableConfigRequest): Promise<responses.SetAutoUpgradableConfigResponse>;
|
|
529
534
|
/**
|
|
@@ -534,7 +539,7 @@ export declare class ManagementAgentClient {
|
|
|
534
539
|
* @param SummarizeManagementAgentCountsRequest
|
|
535
540
|
* @return SummarizeManagementAgentCountsResponse
|
|
536
541
|
* @throws OciError when an error occurs
|
|
537
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
542
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/SummarizeManagementAgentCounts.ts.html |here} to see how to use SummarizeManagementAgentCounts API.
|
|
538
543
|
*/
|
|
539
544
|
summarizeManagementAgentCounts(summarizeManagementAgentCountsRequest: requests.SummarizeManagementAgentCountsRequest): Promise<responses.SummarizeManagementAgentCountsResponse>;
|
|
540
545
|
/**
|
|
@@ -545,7 +550,7 @@ export declare class ManagementAgentClient {
|
|
|
545
550
|
* @param SummarizeManagementAgentPluginCountsRequest
|
|
546
551
|
* @return SummarizeManagementAgentPluginCountsResponse
|
|
547
552
|
* @throws OciError when an error occurs
|
|
548
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
553
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/SummarizeManagementAgentPluginCounts.ts.html |here} to see how to use SummarizeManagementAgentPluginCounts API.
|
|
549
554
|
*/
|
|
550
555
|
summarizeManagementAgentPluginCounts(summarizeManagementAgentPluginCountsRequest: requests.SummarizeManagementAgentPluginCountsRequest): Promise<responses.SummarizeManagementAgentPluginCountsResponse>;
|
|
551
556
|
/**
|
|
@@ -555,7 +560,7 @@ export declare class ManagementAgentClient {
|
|
|
555
560
|
* @param UpdateManagementAgentRequest
|
|
556
561
|
* @return UpdateManagementAgentResponse
|
|
557
562
|
* @throws OciError when an error occurs
|
|
558
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
563
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/UpdateManagementAgent.ts.html |here} to see how to use UpdateManagementAgent API.
|
|
559
564
|
*/
|
|
560
565
|
updateManagementAgent(updateManagementAgentRequest: requests.UpdateManagementAgentRequest): Promise<responses.UpdateManagementAgentResponse>;
|
|
561
566
|
/**
|
|
@@ -565,7 +570,8 @@ export declare class ManagementAgentClient {
|
|
|
565
570
|
* @param UpdateManagementAgentInstallKeyRequest
|
|
566
571
|
* @return UpdateManagementAgentInstallKeyResponse
|
|
567
572
|
* @throws OciError when an error occurs
|
|
568
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
573
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/UpdateManagementAgentInstallKey.ts.html |here} to see how to use UpdateManagementAgentInstallKey API.
|
|
569
574
|
*/
|
|
570
575
|
updateManagementAgentInstallKey(updateManagementAgentInstallKeyRequest: requests.UpdateManagementAgentInstallKeyRequest): Promise<responses.UpdateManagementAgentInstallKeyResponse>;
|
|
571
576
|
}
|
|
577
|
+
export {};
|
package/lib/client.js
CHANGED
|
@@ -48,6 +48,7 @@ const model = __importStar(require("./model"));
|
|
|
48
48
|
const oci_common_1 = require("oci-common");
|
|
49
49
|
const managementagent_waiter_1 = require("./managementagent-waiter");
|
|
50
50
|
const oci_common_2 = require("oci-common");
|
|
51
|
+
const Breaker = require("opossum");
|
|
51
52
|
// ===============================================
|
|
52
53
|
// This file is autogenerated - Please do not edit
|
|
53
54
|
// ===============================================
|
|
@@ -184,6 +185,14 @@ class ManagementAgentClient {
|
|
|
184
185
|
}
|
|
185
186
|
throw Error("Waiters do not exist. Please create waiters.");
|
|
186
187
|
}
|
|
188
|
+
/**
|
|
189
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
190
|
+
*/
|
|
191
|
+
shutdownCircuitBreaker() {
|
|
192
|
+
if (this._circuitBreaker) {
|
|
193
|
+
this._circuitBreaker.shutdown();
|
|
194
|
+
}
|
|
195
|
+
}
|
|
187
196
|
/**
|
|
188
197
|
* User creates a new install key as part of this API.
|
|
189
198
|
*
|
|
@@ -191,7 +200,7 @@ class ManagementAgentClient {
|
|
|
191
200
|
* @param CreateManagementAgentInstallKeyRequest
|
|
192
201
|
* @return CreateManagementAgentInstallKeyResponse
|
|
193
202
|
* @throws OciError when an error occurs
|
|
194
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
203
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/CreateManagementAgentInstallKey.ts.html |here} to see how to use CreateManagementAgentInstallKey API.
|
|
195
204
|
*/
|
|
196
205
|
createManagementAgentInstallKey(createManagementAgentInstallKeyRequest) {
|
|
197
206
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -254,7 +263,7 @@ class ManagementAgentClient {
|
|
|
254
263
|
* @param DeleteManagementAgentRequest
|
|
255
264
|
* @return DeleteManagementAgentResponse
|
|
256
265
|
* @throws OciError when an error occurs
|
|
257
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
266
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/DeleteManagementAgent.ts.html |here} to see how to use DeleteManagementAgent API.
|
|
258
267
|
*/
|
|
259
268
|
deleteManagementAgent(deleteManagementAgentRequest) {
|
|
260
269
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -309,7 +318,7 @@ class ManagementAgentClient {
|
|
|
309
318
|
* @param DeleteManagementAgentInstallKeyRequest
|
|
310
319
|
* @return DeleteManagementAgentInstallKeyResponse
|
|
311
320
|
* @throws OciError when an error occurs
|
|
312
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/DeleteManagementAgentInstallKey.ts.html |here} to see how to use DeleteManagementAgentInstallKey API.
|
|
313
322
|
*/
|
|
314
323
|
deleteManagementAgentInstallKey(deleteManagementAgentInstallKeyRequest) {
|
|
315
324
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -364,7 +373,7 @@ class ManagementAgentClient {
|
|
|
364
373
|
* @param DeleteWorkRequestRequest
|
|
365
374
|
* @return DeleteWorkRequestResponse
|
|
366
375
|
* @throws OciError when an error occurs
|
|
367
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
376
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
368
377
|
*/
|
|
369
378
|
deleteWorkRequest(deleteWorkRequestRequest) {
|
|
370
379
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -420,7 +429,7 @@ class ManagementAgentClient {
|
|
|
420
429
|
* @param DeployPluginsRequest
|
|
421
430
|
* @return DeployPluginsResponse
|
|
422
431
|
* @throws OciError when an error occurs
|
|
423
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
432
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/DeployPlugins.ts.html |here} to see how to use DeployPlugins API.
|
|
424
433
|
*/
|
|
425
434
|
deployPlugins(deployPluginsRequest) {
|
|
426
435
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -481,7 +490,7 @@ class ManagementAgentClient {
|
|
|
481
490
|
* @param GetAutoUpgradableConfigRequest
|
|
482
491
|
* @return GetAutoUpgradableConfigResponse
|
|
483
492
|
* @throws OciError when an error occurs
|
|
484
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
493
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/GetAutoUpgradableConfig.ts.html |here} to see how to use GetAutoUpgradableConfig API.
|
|
485
494
|
*/
|
|
486
495
|
getAutoUpgradableConfig(getAutoUpgradableConfigRequest) {
|
|
487
496
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -539,7 +548,7 @@ class ManagementAgentClient {
|
|
|
539
548
|
* @param GetManagementAgentRequest
|
|
540
549
|
* @return GetManagementAgentResponse
|
|
541
550
|
* @throws OciError when an error occurs
|
|
542
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
551
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/GetManagementAgent.ts.html |here} to see how to use GetManagementAgent API.
|
|
543
552
|
*/
|
|
544
553
|
getManagementAgent(getManagementAgentRequest) {
|
|
545
554
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -602,7 +611,7 @@ class ManagementAgentClient {
|
|
|
602
611
|
* @param GetManagementAgentInstallKeyRequest
|
|
603
612
|
* @return GetManagementAgentInstallKeyResponse
|
|
604
613
|
* @throws OciError when an error occurs
|
|
605
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
614
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/GetManagementAgentInstallKey.ts.html |here} to see how to use GetManagementAgentInstallKey API.
|
|
606
615
|
*/
|
|
607
616
|
getManagementAgentInstallKey(getManagementAgentInstallKeyRequest) {
|
|
608
617
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -666,7 +675,7 @@ class ManagementAgentClient {
|
|
|
666
675
|
* @param GetManagementAgentInstallKeyContentRequest
|
|
667
676
|
* @return GetManagementAgentInstallKeyContentResponse
|
|
668
677
|
* @throws OciError when an error occurs
|
|
669
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
678
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/GetManagementAgentInstallKeyContent.ts.html |here} to see how to use GetManagementAgentInstallKeyContent API.
|
|
670
679
|
*/
|
|
671
680
|
getManagementAgentInstallKeyContent(getManagementAgentInstallKeyContentRequest) {
|
|
672
681
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -735,7 +744,7 @@ class ManagementAgentClient {
|
|
|
735
744
|
* @param GetWorkRequestRequest
|
|
736
745
|
* @return GetWorkRequestResponse
|
|
737
746
|
* @throws OciError when an error occurs
|
|
738
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
747
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
739
748
|
*/
|
|
740
749
|
getWorkRequest(getWorkRequestRequest) {
|
|
741
750
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -803,7 +812,7 @@ class ManagementAgentClient {
|
|
|
803
812
|
* @param ListAvailabilityHistoriesRequest
|
|
804
813
|
* @return ListAvailabilityHistoriesResponse
|
|
805
814
|
* @throws OciError when an error occurs
|
|
806
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
815
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListAvailabilityHistories.ts.html |here} to see how to use ListAvailabilityHistories API.
|
|
807
816
|
*/
|
|
808
817
|
listAvailabilityHistories(listAvailabilityHistoriesRequest) {
|
|
809
818
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -914,7 +923,7 @@ class ManagementAgentClient {
|
|
|
914
923
|
* @param ListManagementAgentImagesRequest
|
|
915
924
|
* @return ListManagementAgentImagesResponse
|
|
916
925
|
* @throws OciError when an error occurs
|
|
917
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
926
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListManagementAgentImages.ts.html |here} to see how to use ListManagementAgentImages API.
|
|
918
927
|
*/
|
|
919
928
|
listManagementAgentImages(listManagementAgentImagesRequest) {
|
|
920
929
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1026,7 +1035,7 @@ class ManagementAgentClient {
|
|
|
1026
1035
|
* @param ListManagementAgentInstallKeysRequest
|
|
1027
1036
|
* @return ListManagementAgentInstallKeysResponse
|
|
1028
1037
|
* @throws OciError when an error occurs
|
|
1029
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1038
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListManagementAgentInstallKeys.ts.html |here} to see how to use ListManagementAgentInstallKeys API.
|
|
1030
1039
|
*/
|
|
1031
1040
|
listManagementAgentInstallKeys(listManagementAgentInstallKeysRequest) {
|
|
1032
1041
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1137,7 +1146,7 @@ class ManagementAgentClient {
|
|
|
1137
1146
|
* @param ListManagementAgentPluginsRequest
|
|
1138
1147
|
* @return ListManagementAgentPluginsResponse
|
|
1139
1148
|
* @throws OciError when an error occurs
|
|
1140
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1149
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListManagementAgentPlugins.ts.html |here} to see how to use ListManagementAgentPlugins API.
|
|
1141
1150
|
*/
|
|
1142
1151
|
listManagementAgentPlugins(listManagementAgentPluginsRequest) {
|
|
1143
1152
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1251,7 +1260,7 @@ class ManagementAgentClient {
|
|
|
1251
1260
|
* @param ListManagementAgentsRequest
|
|
1252
1261
|
* @return ListManagementAgentsResponse
|
|
1253
1262
|
* @throws OciError when an error occurs
|
|
1254
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1263
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListManagementAgents.ts.html |here} to see how to use ListManagementAgents API.
|
|
1255
1264
|
*/
|
|
1256
1265
|
listManagementAgents(listManagementAgentsRequest) {
|
|
1257
1266
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1371,7 +1380,7 @@ class ManagementAgentClient {
|
|
|
1371
1380
|
* @param ListWorkRequestErrorsRequest
|
|
1372
1381
|
* @return ListWorkRequestErrorsResponse
|
|
1373
1382
|
* @throws OciError when an error occurs
|
|
1374
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1383
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1375
1384
|
*/
|
|
1376
1385
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
1377
1386
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1480,7 +1489,7 @@ class ManagementAgentClient {
|
|
|
1480
1489
|
* @param ListWorkRequestLogsRequest
|
|
1481
1490
|
* @return ListWorkRequestLogsResponse
|
|
1482
1491
|
* @throws OciError when an error occurs
|
|
1483
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1492
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1484
1493
|
*/
|
|
1485
1494
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
1486
1495
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1589,7 +1598,7 @@ class ManagementAgentClient {
|
|
|
1589
1598
|
* @param ListWorkRequestsRequest
|
|
1590
1599
|
* @return ListWorkRequestsResponse
|
|
1591
1600
|
* @throws OciError when an error occurs
|
|
1592
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1601
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1593
1602
|
*/
|
|
1594
1603
|
listWorkRequests(listWorkRequestsRequest) {
|
|
1595
1604
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1702,7 +1711,7 @@ class ManagementAgentClient {
|
|
|
1702
1711
|
* @param SetAutoUpgradableConfigRequest
|
|
1703
1712
|
* @return SetAutoUpgradableConfigResponse
|
|
1704
1713
|
* @throws OciError when an error occurs
|
|
1705
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1714
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/SetAutoUpgradableConfig.ts.html |here} to see how to use SetAutoUpgradableConfig API.
|
|
1706
1715
|
*/
|
|
1707
1716
|
setAutoUpgradableConfig(setAutoUpgradableConfigRequest) {
|
|
1708
1717
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1762,7 +1771,7 @@ class ManagementAgentClient {
|
|
|
1762
1771
|
* @param SummarizeManagementAgentCountsRequest
|
|
1763
1772
|
* @return SummarizeManagementAgentCountsResponse
|
|
1764
1773
|
* @throws OciError when an error occurs
|
|
1765
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1774
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/SummarizeManagementAgentCounts.ts.html |here} to see how to use SummarizeManagementAgentCounts API.
|
|
1766
1775
|
*/
|
|
1767
1776
|
summarizeManagementAgentCounts(summarizeManagementAgentCountsRequest) {
|
|
1768
1777
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1832,7 +1841,7 @@ class ManagementAgentClient {
|
|
|
1832
1841
|
* @param SummarizeManagementAgentPluginCountsRequest
|
|
1833
1842
|
* @return SummarizeManagementAgentPluginCountsResponse
|
|
1834
1843
|
* @throws OciError when an error occurs
|
|
1835
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1844
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/SummarizeManagementAgentPluginCounts.ts.html |here} to see how to use SummarizeManagementAgentPluginCounts API.
|
|
1836
1845
|
*/
|
|
1837
1846
|
summarizeManagementAgentPluginCounts(summarizeManagementAgentPluginCountsRequest) {
|
|
1838
1847
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1899,7 +1908,7 @@ class ManagementAgentClient {
|
|
|
1899
1908
|
* @param UpdateManagementAgentRequest
|
|
1900
1909
|
* @return UpdateManagementAgentResponse
|
|
1901
1910
|
* @throws OciError when an error occurs
|
|
1902
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1911
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/UpdateManagementAgent.ts.html |here} to see how to use UpdateManagementAgent API.
|
|
1903
1912
|
*/
|
|
1904
1913
|
updateManagementAgent(updateManagementAgentRequest) {
|
|
1905
1914
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1966,7 +1975,7 @@ class ManagementAgentClient {
|
|
|
1966
1975
|
* @param UpdateManagementAgentInstallKeyRequest
|
|
1967
1976
|
* @return UpdateManagementAgentInstallKeyResponse
|
|
1968
1977
|
* @throws OciError when an error occurs
|
|
1969
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1978
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/managementagent/UpdateManagementAgentInstallKey.ts.html |here} to see how to use UpdateManagementAgentInstallKey API.
|
|
1970
1979
|
*/
|
|
1971
1980
|
updateManagementAgentInstallKey(updateManagementAgentInstallKeyRequest) {
|
|
1972
1981
|
return __awaiter(this, void 0, void 0, function* () {
|