oci-managementagent 2.79.1 → 2.81.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 +30 -29
- package/lib/client.js +148 -59
- package/lib/client.js.map +1 -1
- package/lib/model/create-data-source-details.js +4 -2
- package/lib/model/create-data-source-details.js.map +1 -1
- package/lib/model/data-source-summary-item.js +4 -2
- package/lib/model/data-source-summary-item.js.map +1 -1
- package/lib/model/data-source-summary.js +4 -2
- package/lib/model/data-source-summary.js.map +1 -1
- package/lib/model/data-source.js +4 -2
- package/lib/model/data-source.js.map +1 -1
- package/lib/model/update-data-source-details.js +4 -2
- package/lib/model/update-data-source-details.js.map +1 -1
- package/lib/request/create-data-source-request.d.ts +1 -1
- package/lib/request/create-management-agent-install-key-request.d.ts +1 -1
- package/lib/request/delete-data-source-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-data-source-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-data-sources-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-data-source-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
|
@@ -26,7 +26,7 @@ export declare enum ManagementAgentApiKeys {
|
|
|
26
26
|
export declare class ManagementAgentClient {
|
|
27
27
|
protected static serviceEndpointTemplate: string;
|
|
28
28
|
protected static endpointServiceName: string;
|
|
29
|
-
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
29
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean | undefined;
|
|
30
30
|
protected "_endpoint": string;
|
|
31
31
|
protected "_defaultHeaders": any;
|
|
32
32
|
protected "_waiters": ManagementAgentWaiter;
|
|
@@ -49,6 +49,7 @@ export declare class ManagementAgentClient {
|
|
|
49
49
|
* @param endpoint The endpoint of the service.
|
|
50
50
|
*/
|
|
51
51
|
set endpoint(endpoint: string);
|
|
52
|
+
get logger(): import("oci-common/lib/log").Logger;
|
|
52
53
|
/**
|
|
53
54
|
* Determines whether realm specific endpoint should be used or not.
|
|
54
55
|
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
@@ -94,7 +95,7 @@ export declare class ManagementAgentClient {
|
|
|
94
95
|
* @param CreateDataSourceRequest
|
|
95
96
|
* @return CreateDataSourceResponse
|
|
96
97
|
* @throws OciError when an error occurs
|
|
97
|
-
* @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.81.0/managementagent/CreateDataSource.ts.html |here} to see how to use CreateDataSource API.
|
|
98
99
|
*/
|
|
99
100
|
createDataSource(createDataSourceRequest: requests.CreateDataSourceRequest): Promise<responses.CreateDataSourceResponse>;
|
|
100
101
|
/**
|
|
@@ -104,7 +105,7 @@ export declare class ManagementAgentClient {
|
|
|
104
105
|
* @param CreateManagementAgentInstallKeyRequest
|
|
105
106
|
* @return CreateManagementAgentInstallKeyResponse
|
|
106
107
|
* @throws OciError when an error occurs
|
|
107
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
108
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/CreateManagementAgentInstallKey.ts.html |here} to see how to use CreateManagementAgentInstallKey API.
|
|
108
109
|
*/
|
|
109
110
|
createManagementAgentInstallKey(createManagementAgentInstallKeyRequest: requests.CreateManagementAgentInstallKeyRequest): Promise<responses.CreateManagementAgentInstallKeyResponse>;
|
|
110
111
|
/**
|
|
@@ -114,7 +115,7 @@ export declare class ManagementAgentClient {
|
|
|
114
115
|
* @param DeleteDataSourceRequest
|
|
115
116
|
* @return DeleteDataSourceResponse
|
|
116
117
|
* @throws OciError when an error occurs
|
|
117
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
118
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/DeleteDataSource.ts.html |here} to see how to use DeleteDataSource API.
|
|
118
119
|
*/
|
|
119
120
|
deleteDataSource(deleteDataSourceRequest: requests.DeleteDataSourceRequest): Promise<responses.DeleteDataSourceResponse>;
|
|
120
121
|
/**
|
|
@@ -123,7 +124,7 @@ export declare class ManagementAgentClient {
|
|
|
123
124
|
* @param DeleteManagementAgentRequest
|
|
124
125
|
* @return DeleteManagementAgentResponse
|
|
125
126
|
* @throws OciError when an error occurs
|
|
126
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
127
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/DeleteManagementAgent.ts.html |here} to see how to use DeleteManagementAgent API.
|
|
127
128
|
*/
|
|
128
129
|
deleteManagementAgent(deleteManagementAgentRequest: requests.DeleteManagementAgentRequest): Promise<responses.DeleteManagementAgentResponse>;
|
|
129
130
|
/**
|
|
@@ -132,7 +133,7 @@ export declare class ManagementAgentClient {
|
|
|
132
133
|
* @param DeleteManagementAgentInstallKeyRequest
|
|
133
134
|
* @return DeleteManagementAgentInstallKeyResponse
|
|
134
135
|
* @throws OciError when an error occurs
|
|
135
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
136
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/DeleteManagementAgentInstallKey.ts.html |here} to see how to use DeleteManagementAgentInstallKey API.
|
|
136
137
|
*/
|
|
137
138
|
deleteManagementAgentInstallKey(deleteManagementAgentInstallKeyRequest: requests.DeleteManagementAgentInstallKeyRequest): Promise<responses.DeleteManagementAgentInstallKeyResponse>;
|
|
138
139
|
/**
|
|
@@ -141,7 +142,7 @@ export declare class ManagementAgentClient {
|
|
|
141
142
|
* @param DeleteWorkRequestRequest
|
|
142
143
|
* @return DeleteWorkRequestResponse
|
|
143
144
|
* @throws OciError when an error occurs
|
|
144
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
145
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
145
146
|
*/
|
|
146
147
|
deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
|
|
147
148
|
/**
|
|
@@ -151,7 +152,7 @@ export declare class ManagementAgentClient {
|
|
|
151
152
|
* @param DeployPluginsRequest
|
|
152
153
|
* @return DeployPluginsResponse
|
|
153
154
|
* @throws OciError when an error occurs
|
|
154
|
-
* @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.81.0/managementagent/DeployPlugins.ts.html |here} to see how to use DeployPlugins API.
|
|
155
156
|
*/
|
|
156
157
|
deployPlugins(deployPluginsRequest: requests.DeployPluginsRequest): Promise<responses.DeployPluginsResponse>;
|
|
157
158
|
/**
|
|
@@ -162,7 +163,7 @@ export declare class ManagementAgentClient {
|
|
|
162
163
|
* @param GetAutoUpgradableConfigRequest
|
|
163
164
|
* @return GetAutoUpgradableConfigResponse
|
|
164
165
|
* @throws OciError when an error occurs
|
|
165
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
166
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/GetAutoUpgradableConfig.ts.html |here} to see how to use GetAutoUpgradableConfig API.
|
|
166
167
|
*/
|
|
167
168
|
getAutoUpgradableConfig(getAutoUpgradableConfigRequest: requests.GetAutoUpgradableConfigRequest): Promise<responses.GetAutoUpgradableConfigResponse>;
|
|
168
169
|
/**
|
|
@@ -172,7 +173,7 @@ export declare class ManagementAgentClient {
|
|
|
172
173
|
* @param GetDataSourceRequest
|
|
173
174
|
* @return GetDataSourceResponse
|
|
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.81.0/managementagent/GetDataSource.ts.html |here} to see how to use GetDataSource API.
|
|
176
177
|
*/
|
|
177
178
|
getDataSource(getDataSourceRequest: requests.GetDataSourceRequest): Promise<responses.GetDataSourceResponse>;
|
|
178
179
|
/**
|
|
@@ -181,7 +182,7 @@ export declare class ManagementAgentClient {
|
|
|
181
182
|
* @param GetManagementAgentRequest
|
|
182
183
|
* @return GetManagementAgentResponse
|
|
183
184
|
* @throws OciError when an error occurs
|
|
184
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
185
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/GetManagementAgent.ts.html |here} to see how to use GetManagementAgent API.
|
|
185
186
|
*/
|
|
186
187
|
getManagementAgent(getManagementAgentRequest: requests.GetManagementAgentRequest): Promise<responses.GetManagementAgentResponse>;
|
|
187
188
|
/**
|
|
@@ -190,7 +191,7 @@ export declare class ManagementAgentClient {
|
|
|
190
191
|
* @param GetManagementAgentInstallKeyRequest
|
|
191
192
|
* @return GetManagementAgentInstallKeyResponse
|
|
192
193
|
* @throws OciError when an error occurs
|
|
193
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
194
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/GetManagementAgentInstallKey.ts.html |here} to see how to use GetManagementAgentInstallKey API.
|
|
194
195
|
*/
|
|
195
196
|
getManagementAgentInstallKey(getManagementAgentInstallKeyRequest: requests.GetManagementAgentInstallKeyRequest): Promise<responses.GetManagementAgentInstallKeyResponse>;
|
|
196
197
|
/**
|
|
@@ -200,7 +201,7 @@ export declare class ManagementAgentClient {
|
|
|
200
201
|
* @param GetManagementAgentInstallKeyContentRequest
|
|
201
202
|
* @return GetManagementAgentInstallKeyContentResponse
|
|
202
203
|
* @throws OciError when an error occurs
|
|
203
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
204
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/GetManagementAgentInstallKeyContent.ts.html |here} to see how to use GetManagementAgentInstallKeyContent API.
|
|
204
205
|
*/
|
|
205
206
|
getManagementAgentInstallKeyContent(getManagementAgentInstallKeyContentRequest: requests.GetManagementAgentInstallKeyContentRequest): Promise<responses.GetManagementAgentInstallKeyContentResponse>;
|
|
206
207
|
/**
|
|
@@ -209,7 +210,7 @@ export declare class ManagementAgentClient {
|
|
|
209
210
|
* @param GetWorkRequestRequest
|
|
210
211
|
* @return GetWorkRequestResponse
|
|
211
212
|
* @throws OciError when an error occurs
|
|
212
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
213
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
213
214
|
*/
|
|
214
215
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
215
216
|
/**
|
|
@@ -218,7 +219,7 @@ export declare class ManagementAgentClient {
|
|
|
218
219
|
* @param ListAvailabilityHistoriesRequest
|
|
219
220
|
* @return ListAvailabilityHistoriesResponse
|
|
220
221
|
* @throws OciError when an error occurs
|
|
221
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
222
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/ListAvailabilityHistories.ts.html |here} to see how to use ListAvailabilityHistories API.
|
|
222
223
|
*/
|
|
223
224
|
listAvailabilityHistories(listAvailabilityHistoriesRequest: requests.ListAvailabilityHistoriesRequest): Promise<responses.ListAvailabilityHistoriesResponse>;
|
|
224
225
|
/**
|
|
@@ -260,7 +261,7 @@ export declare class ManagementAgentClient {
|
|
|
260
261
|
* @param ListDataSourcesRequest
|
|
261
262
|
* @return ListDataSourcesResponse
|
|
262
263
|
* @throws OciError when an error occurs
|
|
263
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
264
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/ListDataSources.ts.html |here} to see how to use ListDataSources API.
|
|
264
265
|
*/
|
|
265
266
|
listDataSources(listDataSourcesRequest: requests.ListDataSourcesRequest): Promise<responses.ListDataSourcesResponse>;
|
|
266
267
|
/**
|
|
@@ -302,7 +303,7 @@ export declare class ManagementAgentClient {
|
|
|
302
303
|
* @param ListManagementAgentImagesRequest
|
|
303
304
|
* @return ListManagementAgentImagesResponse
|
|
304
305
|
* @throws OciError when an error occurs
|
|
305
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
306
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/ListManagementAgentImages.ts.html |here} to see how to use ListManagementAgentImages API.
|
|
306
307
|
*/
|
|
307
308
|
listManagementAgentImages(listManagementAgentImagesRequest: requests.ListManagementAgentImagesRequest): Promise<responses.ListManagementAgentImagesResponse>;
|
|
308
309
|
/**
|
|
@@ -344,7 +345,7 @@ export declare class ManagementAgentClient {
|
|
|
344
345
|
* @param ListManagementAgentInstallKeysRequest
|
|
345
346
|
* @return ListManagementAgentInstallKeysResponse
|
|
346
347
|
* @throws OciError when an error occurs
|
|
347
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
348
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/ListManagementAgentInstallKeys.ts.html |here} to see how to use ListManagementAgentInstallKeys API.
|
|
348
349
|
*/
|
|
349
350
|
listManagementAgentInstallKeys(listManagementAgentInstallKeysRequest: requests.ListManagementAgentInstallKeysRequest): Promise<responses.ListManagementAgentInstallKeysResponse>;
|
|
350
351
|
/**
|
|
@@ -386,7 +387,7 @@ export declare class ManagementAgentClient {
|
|
|
386
387
|
* @param ListManagementAgentPluginsRequest
|
|
387
388
|
* @return ListManagementAgentPluginsResponse
|
|
388
389
|
* @throws OciError when an error occurs
|
|
389
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
390
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/ListManagementAgentPlugins.ts.html |here} to see how to use ListManagementAgentPlugins API.
|
|
390
391
|
*/
|
|
391
392
|
listManagementAgentPlugins(listManagementAgentPluginsRequest: requests.ListManagementAgentPluginsRequest): Promise<responses.ListManagementAgentPluginsResponse>;
|
|
392
393
|
/**
|
|
@@ -430,7 +431,7 @@ export declare class ManagementAgentClient {
|
|
|
430
431
|
* @param ListManagementAgentsRequest
|
|
431
432
|
* @return ListManagementAgentsResponse
|
|
432
433
|
* @throws OciError when an error occurs
|
|
433
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
434
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/ListManagementAgents.ts.html |here} to see how to use ListManagementAgents API.
|
|
434
435
|
*/
|
|
435
436
|
listManagementAgents(listManagementAgentsRequest: requests.ListManagementAgentsRequest): Promise<responses.ListManagementAgentsResponse>;
|
|
436
437
|
/**
|
|
@@ -472,7 +473,7 @@ export declare class ManagementAgentClient {
|
|
|
472
473
|
* @param ListWorkRequestErrorsRequest
|
|
473
474
|
* @return ListWorkRequestErrorsResponse
|
|
474
475
|
* @throws OciError when an error occurs
|
|
475
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
476
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
476
477
|
*/
|
|
477
478
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
478
479
|
/**
|
|
@@ -514,7 +515,7 @@ export declare class ManagementAgentClient {
|
|
|
514
515
|
* @param ListWorkRequestLogsRequest
|
|
515
516
|
* @return ListWorkRequestLogsResponse
|
|
516
517
|
* @throws OciError when an error occurs
|
|
517
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
518
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
518
519
|
*/
|
|
519
520
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
520
521
|
/**
|
|
@@ -556,7 +557,7 @@ export declare class ManagementAgentClient {
|
|
|
556
557
|
* @param ListWorkRequestsRequest
|
|
557
558
|
* @return ListWorkRequestsResponse
|
|
558
559
|
* @throws OciError when an error occurs
|
|
559
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
560
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
560
561
|
*/
|
|
561
562
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
562
563
|
/**
|
|
@@ -599,7 +600,7 @@ export declare class ManagementAgentClient {
|
|
|
599
600
|
* @param SetAutoUpgradableConfigRequest
|
|
600
601
|
* @return SetAutoUpgradableConfigResponse
|
|
601
602
|
* @throws OciError when an error occurs
|
|
602
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
603
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/SetAutoUpgradableConfig.ts.html |here} to see how to use SetAutoUpgradableConfig API.
|
|
603
604
|
*/
|
|
604
605
|
setAutoUpgradableConfig(setAutoUpgradableConfigRequest: requests.SetAutoUpgradableConfigRequest): Promise<responses.SetAutoUpgradableConfigResponse>;
|
|
605
606
|
/**
|
|
@@ -610,7 +611,7 @@ export declare class ManagementAgentClient {
|
|
|
610
611
|
* @param SummarizeManagementAgentCountsRequest
|
|
611
612
|
* @return SummarizeManagementAgentCountsResponse
|
|
612
613
|
* @throws OciError when an error occurs
|
|
613
|
-
* @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.81.0/managementagent/SummarizeManagementAgentCounts.ts.html |here} to see how to use SummarizeManagementAgentCounts API.
|
|
614
615
|
*/
|
|
615
616
|
summarizeManagementAgentCounts(summarizeManagementAgentCountsRequest: requests.SummarizeManagementAgentCountsRequest): Promise<responses.SummarizeManagementAgentCountsResponse>;
|
|
616
617
|
/**
|
|
@@ -621,7 +622,7 @@ export declare class ManagementAgentClient {
|
|
|
621
622
|
* @param SummarizeManagementAgentPluginCountsRequest
|
|
622
623
|
* @return SummarizeManagementAgentPluginCountsResponse
|
|
623
624
|
* @throws OciError when an error occurs
|
|
624
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
625
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/SummarizeManagementAgentPluginCounts.ts.html |here} to see how to use SummarizeManagementAgentPluginCounts API.
|
|
625
626
|
*/
|
|
626
627
|
summarizeManagementAgentPluginCounts(summarizeManagementAgentPluginCountsRequest: requests.SummarizeManagementAgentPluginCountsRequest): Promise<responses.SummarizeManagementAgentPluginCountsResponse>;
|
|
627
628
|
/**
|
|
@@ -631,7 +632,7 @@ export declare class ManagementAgentClient {
|
|
|
631
632
|
* @param UpdateDataSourceRequest
|
|
632
633
|
* @return UpdateDataSourceResponse
|
|
633
634
|
* @throws OciError when an error occurs
|
|
634
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
635
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/UpdateDataSource.ts.html |here} to see how to use UpdateDataSource API.
|
|
635
636
|
*/
|
|
636
637
|
updateDataSource(updateDataSourceRequest: requests.UpdateDataSourceRequest): Promise<responses.UpdateDataSourceResponse>;
|
|
637
638
|
/**
|
|
@@ -641,7 +642,7 @@ export declare class ManagementAgentClient {
|
|
|
641
642
|
* @param UpdateManagementAgentRequest
|
|
642
643
|
* @return UpdateManagementAgentResponse
|
|
643
644
|
* @throws OciError when an error occurs
|
|
644
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
645
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/UpdateManagementAgent.ts.html |here} to see how to use UpdateManagementAgent API.
|
|
645
646
|
*/
|
|
646
647
|
updateManagementAgent(updateManagementAgentRequest: requests.UpdateManagementAgentRequest): Promise<responses.UpdateManagementAgentResponse>;
|
|
647
648
|
/**
|
|
@@ -651,7 +652,7 @@ export declare class ManagementAgentClient {
|
|
|
651
652
|
* @param UpdateManagementAgentInstallKeyRequest
|
|
652
653
|
* @return UpdateManagementAgentInstallKeyResponse
|
|
653
654
|
* @throws OciError when an error occurs
|
|
654
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
655
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/managementagent/UpdateManagementAgentInstallKey.ts.html |here} to see how to use UpdateManagementAgentInstallKey API.
|
|
655
656
|
*/
|
|
656
657
|
updateManagementAgentInstallKey(updateManagementAgentInstallKeyRequest: requests.UpdateManagementAgentInstallKeyRequest): Promise<responses.UpdateManagementAgentInstallKeyResponse>;
|
|
657
658
|
}
|