oci-managementagent 2.27.0 → 2.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +24 -23
- package/lib/client.js +93 -46
- package/lib/client.js.map +1 -1
- package/lib/request/create-management-agent-install-key-request.d.ts +1 -1
- package/lib/request/delete-management-agent-install-key-request.d.ts +1 -1
- package/lib/request/delete-management-agent-request.d.ts +1 -1
- package/lib/request/delete-work-request-request.d.ts +1 -1
- 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 +1 -1
- 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 +1 -1
- package/lib/request/update-management-agent-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export declare class ManagementAgentClient {
|
|
|
31
31
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
32
32
|
protected _circuitBreaker: null;
|
|
33
33
|
protected _httpOptions: any;
|
|
34
|
+
targetService: string;
|
|
34
35
|
protected _httpClient: common.HttpClient;
|
|
35
36
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
36
37
|
/**
|
|
@@ -78,7 +79,7 @@ export declare class ManagementAgentClient {
|
|
|
78
79
|
* @param CreateManagementAgentInstallKeyRequest
|
|
79
80
|
* @return CreateManagementAgentInstallKeyResponse
|
|
80
81
|
* @throws OciError when an error occurs
|
|
81
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
82
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/CreateManagementAgentInstallKey.ts.html |here} to see how to use CreateManagementAgentInstallKey API.
|
|
82
83
|
*/
|
|
83
84
|
createManagementAgentInstallKey(createManagementAgentInstallKeyRequest: requests.CreateManagementAgentInstallKeyRequest): Promise<responses.CreateManagementAgentInstallKeyResponse>;
|
|
84
85
|
/**
|
|
@@ -87,7 +88,7 @@ export declare class ManagementAgentClient {
|
|
|
87
88
|
* @param DeleteManagementAgentRequest
|
|
88
89
|
* @return DeleteManagementAgentResponse
|
|
89
90
|
* @throws OciError when an error occurs
|
|
90
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
91
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/DeleteManagementAgent.ts.html |here} to see how to use DeleteManagementAgent API.
|
|
91
92
|
*/
|
|
92
93
|
deleteManagementAgent(deleteManagementAgentRequest: requests.DeleteManagementAgentRequest): Promise<responses.DeleteManagementAgentResponse>;
|
|
93
94
|
/**
|
|
@@ -96,7 +97,7 @@ export declare class ManagementAgentClient {
|
|
|
96
97
|
* @param DeleteManagementAgentInstallKeyRequest
|
|
97
98
|
* @return DeleteManagementAgentInstallKeyResponse
|
|
98
99
|
* @throws OciError when an error occurs
|
|
99
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
100
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/DeleteManagementAgentInstallKey.ts.html |here} to see how to use DeleteManagementAgentInstallKey API.
|
|
100
101
|
*/
|
|
101
102
|
deleteManagementAgentInstallKey(deleteManagementAgentInstallKeyRequest: requests.DeleteManagementAgentInstallKeyRequest): Promise<responses.DeleteManagementAgentInstallKeyResponse>;
|
|
102
103
|
/**
|
|
@@ -105,7 +106,7 @@ export declare class ManagementAgentClient {
|
|
|
105
106
|
* @param DeleteWorkRequestRequest
|
|
106
107
|
* @return DeleteWorkRequestResponse
|
|
107
108
|
* @throws OciError when an error occurs
|
|
108
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
109
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
109
110
|
*/
|
|
110
111
|
deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
|
|
111
112
|
/**
|
|
@@ -115,7 +116,7 @@ export declare class ManagementAgentClient {
|
|
|
115
116
|
* @param DeployPluginsRequest
|
|
116
117
|
* @return DeployPluginsResponse
|
|
117
118
|
* @throws OciError when an error occurs
|
|
118
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
119
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/DeployPlugins.ts.html |here} to see how to use DeployPlugins API.
|
|
119
120
|
*/
|
|
120
121
|
deployPlugins(deployPluginsRequest: requests.DeployPluginsRequest): Promise<responses.DeployPluginsResponse>;
|
|
121
122
|
/**
|
|
@@ -126,7 +127,7 @@ export declare class ManagementAgentClient {
|
|
|
126
127
|
* @param GetAutoUpgradableConfigRequest
|
|
127
128
|
* @return GetAutoUpgradableConfigResponse
|
|
128
129
|
* @throws OciError when an error occurs
|
|
129
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
130
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/GetAutoUpgradableConfig.ts.html |here} to see how to use GetAutoUpgradableConfig API.
|
|
130
131
|
*/
|
|
131
132
|
getAutoUpgradableConfig(getAutoUpgradableConfigRequest: requests.GetAutoUpgradableConfigRequest): Promise<responses.GetAutoUpgradableConfigResponse>;
|
|
132
133
|
/**
|
|
@@ -135,7 +136,7 @@ export declare class ManagementAgentClient {
|
|
|
135
136
|
* @param GetManagementAgentRequest
|
|
136
137
|
* @return GetManagementAgentResponse
|
|
137
138
|
* @throws OciError when an error occurs
|
|
138
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
139
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/GetManagementAgent.ts.html |here} to see how to use GetManagementAgent API.
|
|
139
140
|
*/
|
|
140
141
|
getManagementAgent(getManagementAgentRequest: requests.GetManagementAgentRequest): Promise<responses.GetManagementAgentResponse>;
|
|
141
142
|
/**
|
|
@@ -144,7 +145,7 @@ export declare class ManagementAgentClient {
|
|
|
144
145
|
* @param GetManagementAgentInstallKeyRequest
|
|
145
146
|
* @return GetManagementAgentInstallKeyResponse
|
|
146
147
|
* @throws OciError when an error occurs
|
|
147
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
148
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/GetManagementAgentInstallKey.ts.html |here} to see how to use GetManagementAgentInstallKey API.
|
|
148
149
|
*/
|
|
149
150
|
getManagementAgentInstallKey(getManagementAgentInstallKeyRequest: requests.GetManagementAgentInstallKeyRequest): Promise<responses.GetManagementAgentInstallKeyResponse>;
|
|
150
151
|
/**
|
|
@@ -154,7 +155,7 @@ export declare class ManagementAgentClient {
|
|
|
154
155
|
* @param GetManagementAgentInstallKeyContentRequest
|
|
155
156
|
* @return GetManagementAgentInstallKeyContentResponse
|
|
156
157
|
* @throws OciError when an error occurs
|
|
157
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
158
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/GetManagementAgentInstallKeyContent.ts.html |here} to see how to use GetManagementAgentInstallKeyContent API.
|
|
158
159
|
*/
|
|
159
160
|
getManagementAgentInstallKeyContent(getManagementAgentInstallKeyContentRequest: requests.GetManagementAgentInstallKeyContentRequest): Promise<responses.GetManagementAgentInstallKeyContentResponse>;
|
|
160
161
|
/**
|
|
@@ -163,7 +164,7 @@ export declare class ManagementAgentClient {
|
|
|
163
164
|
* @param GetWorkRequestRequest
|
|
164
165
|
* @return GetWorkRequestResponse
|
|
165
166
|
* @throws OciError when an error occurs
|
|
166
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
167
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
167
168
|
*/
|
|
168
169
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
169
170
|
/**
|
|
@@ -172,7 +173,7 @@ export declare class ManagementAgentClient {
|
|
|
172
173
|
* @param ListAvailabilityHistoriesRequest
|
|
173
174
|
* @return ListAvailabilityHistoriesResponse
|
|
174
175
|
* @throws OciError when an error occurs
|
|
175
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
176
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/ListAvailabilityHistories.ts.html |here} to see how to use ListAvailabilityHistories API.
|
|
176
177
|
*/
|
|
177
178
|
listAvailabilityHistories(listAvailabilityHistoriesRequest: requests.ListAvailabilityHistoriesRequest): Promise<responses.ListAvailabilityHistoriesResponse>;
|
|
178
179
|
/**
|
|
@@ -214,7 +215,7 @@ export declare class ManagementAgentClient {
|
|
|
214
215
|
* @param ListManagementAgentImagesRequest
|
|
215
216
|
* @return ListManagementAgentImagesResponse
|
|
216
217
|
* @throws OciError when an error occurs
|
|
217
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
218
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/ListManagementAgentImages.ts.html |here} to see how to use ListManagementAgentImages API.
|
|
218
219
|
*/
|
|
219
220
|
listManagementAgentImages(listManagementAgentImagesRequest: requests.ListManagementAgentImagesRequest): Promise<responses.ListManagementAgentImagesResponse>;
|
|
220
221
|
/**
|
|
@@ -256,7 +257,7 @@ export declare class ManagementAgentClient {
|
|
|
256
257
|
* @param ListManagementAgentInstallKeysRequest
|
|
257
258
|
* @return ListManagementAgentInstallKeysResponse
|
|
258
259
|
* @throws OciError when an error occurs
|
|
259
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
260
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/ListManagementAgentInstallKeys.ts.html |here} to see how to use ListManagementAgentInstallKeys API.
|
|
260
261
|
*/
|
|
261
262
|
listManagementAgentInstallKeys(listManagementAgentInstallKeysRequest: requests.ListManagementAgentInstallKeysRequest): Promise<responses.ListManagementAgentInstallKeysResponse>;
|
|
262
263
|
/**
|
|
@@ -298,7 +299,7 @@ export declare class ManagementAgentClient {
|
|
|
298
299
|
* @param ListManagementAgentPluginsRequest
|
|
299
300
|
* @return ListManagementAgentPluginsResponse
|
|
300
301
|
* @throws OciError when an error occurs
|
|
301
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
302
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/ListManagementAgentPlugins.ts.html |here} to see how to use ListManagementAgentPlugins API.
|
|
302
303
|
*/
|
|
303
304
|
listManagementAgentPlugins(listManagementAgentPluginsRequest: requests.ListManagementAgentPluginsRequest): Promise<responses.ListManagementAgentPluginsResponse>;
|
|
304
305
|
/**
|
|
@@ -341,7 +342,7 @@ export declare class ManagementAgentClient {
|
|
|
341
342
|
* @param ListManagementAgentsRequest
|
|
342
343
|
* @return ListManagementAgentsResponse
|
|
343
344
|
* @throws OciError when an error occurs
|
|
344
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
345
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/ListManagementAgents.ts.html |here} to see how to use ListManagementAgents API.
|
|
345
346
|
*/
|
|
346
347
|
listManagementAgents(listManagementAgentsRequest: requests.ListManagementAgentsRequest): Promise<responses.ListManagementAgentsResponse>;
|
|
347
348
|
/**
|
|
@@ -383,7 +384,7 @@ export declare class ManagementAgentClient {
|
|
|
383
384
|
* @param ListWorkRequestErrorsRequest
|
|
384
385
|
* @return ListWorkRequestErrorsResponse
|
|
385
386
|
* @throws OciError when an error occurs
|
|
386
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
387
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
387
388
|
*/
|
|
388
389
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
389
390
|
/**
|
|
@@ -425,7 +426,7 @@ export declare class ManagementAgentClient {
|
|
|
425
426
|
* @param ListWorkRequestLogsRequest
|
|
426
427
|
* @return ListWorkRequestLogsResponse
|
|
427
428
|
* @throws OciError when an error occurs
|
|
428
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
429
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
429
430
|
*/
|
|
430
431
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
431
432
|
/**
|
|
@@ -467,7 +468,7 @@ export declare class ManagementAgentClient {
|
|
|
467
468
|
* @param ListWorkRequestsRequest
|
|
468
469
|
* @return ListWorkRequestsResponse
|
|
469
470
|
* @throws OciError when an error occurs
|
|
470
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
471
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
471
472
|
*/
|
|
472
473
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
473
474
|
/**
|
|
@@ -510,7 +511,7 @@ export declare class ManagementAgentClient {
|
|
|
510
511
|
* @param SetAutoUpgradableConfigRequest
|
|
511
512
|
* @return SetAutoUpgradableConfigResponse
|
|
512
513
|
* @throws OciError when an error occurs
|
|
513
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
514
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/SetAutoUpgradableConfig.ts.html |here} to see how to use SetAutoUpgradableConfig API.
|
|
514
515
|
*/
|
|
515
516
|
setAutoUpgradableConfig(setAutoUpgradableConfigRequest: requests.SetAutoUpgradableConfigRequest): Promise<responses.SetAutoUpgradableConfigResponse>;
|
|
516
517
|
/**
|
|
@@ -521,7 +522,7 @@ export declare class ManagementAgentClient {
|
|
|
521
522
|
* @param SummarizeManagementAgentCountsRequest
|
|
522
523
|
* @return SummarizeManagementAgentCountsResponse
|
|
523
524
|
* @throws OciError when an error occurs
|
|
524
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
525
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/SummarizeManagementAgentCounts.ts.html |here} to see how to use SummarizeManagementAgentCounts API.
|
|
525
526
|
*/
|
|
526
527
|
summarizeManagementAgentCounts(summarizeManagementAgentCountsRequest: requests.SummarizeManagementAgentCountsRequest): Promise<responses.SummarizeManagementAgentCountsResponse>;
|
|
527
528
|
/**
|
|
@@ -532,7 +533,7 @@ export declare class ManagementAgentClient {
|
|
|
532
533
|
* @param SummarizeManagementAgentPluginCountsRequest
|
|
533
534
|
* @return SummarizeManagementAgentPluginCountsResponse
|
|
534
535
|
* @throws OciError when an error occurs
|
|
535
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
536
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/SummarizeManagementAgentPluginCounts.ts.html |here} to see how to use SummarizeManagementAgentPluginCounts API.
|
|
536
537
|
*/
|
|
537
538
|
summarizeManagementAgentPluginCounts(summarizeManagementAgentPluginCountsRequest: requests.SummarizeManagementAgentPluginCountsRequest): Promise<responses.SummarizeManagementAgentPluginCountsResponse>;
|
|
538
539
|
/**
|
|
@@ -542,7 +543,7 @@ export declare class ManagementAgentClient {
|
|
|
542
543
|
* @param UpdateManagementAgentRequest
|
|
543
544
|
* @return UpdateManagementAgentResponse
|
|
544
545
|
* @throws OciError when an error occurs
|
|
545
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
546
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/UpdateManagementAgent.ts.html |here} to see how to use UpdateManagementAgent API.
|
|
546
547
|
*/
|
|
547
548
|
updateManagementAgent(updateManagementAgentRequest: requests.UpdateManagementAgentRequest): Promise<responses.UpdateManagementAgentResponse>;
|
|
548
549
|
/**
|
|
@@ -552,7 +553,7 @@ export declare class ManagementAgentClient {
|
|
|
552
553
|
* @param UpdateManagementAgentInstallKeyRequest
|
|
553
554
|
* @return UpdateManagementAgentInstallKeyResponse
|
|
554
555
|
* @throws OciError when an error occurs
|
|
555
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
556
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/managementagent/UpdateManagementAgentInstallKey.ts.html |here} to see how to use UpdateManagementAgentInstallKey API.
|
|
556
557
|
*/
|
|
557
558
|
updateManagementAgentInstallKey(updateManagementAgentInstallKeyRequest: requests.UpdateManagementAgentInstallKeyRequest): Promise<responses.UpdateManagementAgentInstallKeyResponse>;
|
|
558
559
|
}
|