oci-logging 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 +32 -31
- package/lib/client.js +158 -63
- package/lib/client.js.map +1 -1
- package/lib/model/source.js +4 -2
- package/lib/model/source.js.map +1 -1
- package/lib/model/unified-agent-logging-source.js +4 -2
- package/lib/model/unified-agent-logging-source.js.map +1 -1
- package/lib/model/unified-agent-parser.js +4 -2
- package/lib/model/unified-agent-parser.js.map +1 -1
- package/lib/model/unified-agent-service-configuration-details.js +4 -2
- package/lib/model/unified-agent-service-configuration-details.js.map +1 -1
- package/lib/request/change-log-group-compartment-request.d.ts +1 -1
- package/lib/request/change-log-log-group-request.d.ts +1 -1
- package/lib/request/change-log-saved-search-compartment-request.d.ts +1 -1
- package/lib/request/change-unified-agent-configuration-compartment-request.d.ts +1 -1
- package/lib/request/create-log-group-request.d.ts +1 -1
- package/lib/request/create-log-request.d.ts +1 -1
- package/lib/request/create-log-saved-search-request.d.ts +1 -1
- package/lib/request/create-unified-agent-configuration-request.d.ts +1 -1
- package/lib/request/delete-log-group-request.d.ts +1 -1
- package/lib/request/delete-log-request.d.ts +1 -1
- package/lib/request/delete-log-saved-search-request.d.ts +1 -1
- package/lib/request/delete-unified-agent-configuration-request.d.ts +1 -1
- package/lib/request/delete-work-request-request.d.ts +1 -1
- package/lib/request/get-log-group-request.d.ts +1 -1
- package/lib/request/get-log-request.d.ts +1 -1
- package/lib/request/get-log-saved-search-request.d.ts +1 -1
- package/lib/request/get-unified-agent-configuration-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-log-groups-request.d.ts +1 -1
- package/lib/request/list-log-saved-searches-request.d.ts +1 -1
- package/lib/request/list-logs-request.d.ts +1 -1
- package/lib/request/list-services-request.d.ts +1 -1
- package/lib/request/list-unified-agent-configurations-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/update-log-group-request.d.ts +1 -1
- package/lib/request/update-log-request.d.ts +1 -1
- package/lib/request/update-log-saved-search-request.d.ts +1 -1
- package/lib/request/update-unified-agent-configuration-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export declare enum LoggingManagementApiKeys {
|
|
|
28
28
|
export declare class LoggingManagementClient {
|
|
29
29
|
protected static serviceEndpointTemplate: string;
|
|
30
30
|
protected static endpointServiceName: string;
|
|
31
|
-
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
31
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean | undefined;
|
|
32
32
|
protected "_endpoint": string;
|
|
33
33
|
protected "_defaultHeaders": any;
|
|
34
34
|
protected "_waiters": LoggingManagementWaiter;
|
|
@@ -51,6 +51,7 @@ export declare class LoggingManagementClient {
|
|
|
51
51
|
* @param endpoint The endpoint of the service.
|
|
52
52
|
*/
|
|
53
53
|
set endpoint(endpoint: string);
|
|
54
|
+
get logger(): import("oci-common/lib/log").Logger;
|
|
54
55
|
/**
|
|
55
56
|
* Determines whether realm specific endpoint should be used or not.
|
|
56
57
|
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
@@ -97,7 +98,7 @@ export declare class LoggingManagementClient {
|
|
|
97
98
|
* @param ChangeLogGroupCompartmentRequest
|
|
98
99
|
* @return ChangeLogGroupCompartmentResponse
|
|
99
100
|
* @throws OciError when an error occurs
|
|
100
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
101
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/ChangeLogGroupCompartment.ts.html |here} to see how to use ChangeLogGroupCompartment API.
|
|
101
102
|
*/
|
|
102
103
|
changeLogGroupCompartment(changeLogGroupCompartmentRequest: requests.ChangeLogGroupCompartmentRequest): Promise<responses.ChangeLogGroupCompartmentResponse>;
|
|
103
104
|
/**
|
|
@@ -107,7 +108,7 @@ export declare class LoggingManagementClient {
|
|
|
107
108
|
* @param ChangeLogLogGroupRequest
|
|
108
109
|
* @return ChangeLogLogGroupResponse
|
|
109
110
|
* @throws OciError when an error occurs
|
|
110
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
111
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/ChangeLogLogGroup.ts.html |here} to see how to use ChangeLogLogGroup API.
|
|
111
112
|
*/
|
|
112
113
|
changeLogLogGroup(changeLogLogGroupRequest: requests.ChangeLogLogGroupRequest): Promise<responses.ChangeLogLogGroupResponse>;
|
|
113
114
|
/**
|
|
@@ -118,7 +119,7 @@ export declare class LoggingManagementClient {
|
|
|
118
119
|
* @param ChangeLogSavedSearchCompartmentRequest
|
|
119
120
|
* @return ChangeLogSavedSearchCompartmentResponse
|
|
120
121
|
* @throws OciError when an error occurs
|
|
121
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
122
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/ChangeLogSavedSearchCompartment.ts.html |here} to see how to use ChangeLogSavedSearchCompartment API.
|
|
122
123
|
*/
|
|
123
124
|
changeLogSavedSearchCompartment(changeLogSavedSearchCompartmentRequest: requests.ChangeLogSavedSearchCompartmentRequest): Promise<responses.ChangeLogSavedSearchCompartmentResponse>;
|
|
124
125
|
/**
|
|
@@ -129,7 +130,7 @@ export declare class LoggingManagementClient {
|
|
|
129
130
|
* @param ChangeUnifiedAgentConfigurationCompartmentRequest
|
|
130
131
|
* @return ChangeUnifiedAgentConfigurationCompartmentResponse
|
|
131
132
|
* @throws OciError when an error occurs
|
|
132
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
133
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/ChangeUnifiedAgentConfigurationCompartment.ts.html |here} to see how to use ChangeUnifiedAgentConfigurationCompartment API.
|
|
133
134
|
*/
|
|
134
135
|
changeUnifiedAgentConfigurationCompartment(changeUnifiedAgentConfigurationCompartmentRequest: requests.ChangeUnifiedAgentConfigurationCompartmentRequest): Promise<responses.ChangeUnifiedAgentConfigurationCompartmentResponse>;
|
|
135
136
|
/**
|
|
@@ -140,7 +141,7 @@ export declare class LoggingManagementClient {
|
|
|
140
141
|
* @param CreateLogRequest
|
|
141
142
|
* @return CreateLogResponse
|
|
142
143
|
* @throws OciError when an error occurs
|
|
143
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
144
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/CreateLog.ts.html |here} to see how to use CreateLog API.
|
|
144
145
|
*/
|
|
145
146
|
createLog(createLogRequest: requests.CreateLogRequest): Promise<responses.CreateLogResponse>;
|
|
146
147
|
/**
|
|
@@ -151,7 +152,7 @@ export declare class LoggingManagementClient {
|
|
|
151
152
|
* @param CreateLogGroupRequest
|
|
152
153
|
* @return CreateLogGroupResponse
|
|
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/logging/CreateLogGroup.ts.html |here} to see how to use CreateLogGroup API.
|
|
155
156
|
*/
|
|
156
157
|
createLogGroup(createLogGroupRequest: requests.CreateLogGroupRequest): Promise<responses.CreateLogGroupResponse>;
|
|
157
158
|
/**
|
|
@@ -161,7 +162,7 @@ export declare class LoggingManagementClient {
|
|
|
161
162
|
* @param CreateLogSavedSearchRequest
|
|
162
163
|
* @return CreateLogSavedSearchResponse
|
|
163
164
|
* @throws OciError when an error occurs
|
|
164
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
165
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/CreateLogSavedSearch.ts.html |here} to see how to use CreateLogSavedSearch API.
|
|
165
166
|
*/
|
|
166
167
|
createLogSavedSearch(createLogSavedSearchRequest: requests.CreateLogSavedSearchRequest): Promise<responses.CreateLogSavedSearchResponse>;
|
|
167
168
|
/**
|
|
@@ -170,7 +171,7 @@ export declare class LoggingManagementClient {
|
|
|
170
171
|
* @param CreateUnifiedAgentConfigurationRequest
|
|
171
172
|
* @return CreateUnifiedAgentConfigurationResponse
|
|
172
173
|
* @throws OciError when an error occurs
|
|
173
|
-
* @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.81.0/logging/CreateUnifiedAgentConfiguration.ts.html |here} to see how to use CreateUnifiedAgentConfiguration API.
|
|
174
175
|
*/
|
|
175
176
|
createUnifiedAgentConfiguration(createUnifiedAgentConfigurationRequest: requests.CreateUnifiedAgentConfigurationRequest): Promise<responses.CreateUnifiedAgentConfigurationResponse>;
|
|
176
177
|
/**
|
|
@@ -179,7 +180,7 @@ export declare class LoggingManagementClient {
|
|
|
179
180
|
* @param DeleteLogRequest
|
|
180
181
|
* @return DeleteLogResponse
|
|
181
182
|
* @throws OciError when an error occurs
|
|
182
|
-
* @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.81.0/logging/DeleteLog.ts.html |here} to see how to use DeleteLog API.
|
|
183
184
|
*/
|
|
184
185
|
deleteLog(deleteLogRequest: requests.DeleteLogRequest): Promise<responses.DeleteLogResponse>;
|
|
185
186
|
/**
|
|
@@ -188,7 +189,7 @@ export declare class LoggingManagementClient {
|
|
|
188
189
|
* @param DeleteLogGroupRequest
|
|
189
190
|
* @return DeleteLogGroupResponse
|
|
190
191
|
* @throws OciError when an error occurs
|
|
191
|
-
* @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.81.0/logging/DeleteLogGroup.ts.html |here} to see how to use DeleteLogGroup API.
|
|
192
193
|
*/
|
|
193
194
|
deleteLogGroup(deleteLogGroupRequest: requests.DeleteLogGroupRequest): Promise<responses.DeleteLogGroupResponse>;
|
|
194
195
|
/**
|
|
@@ -197,7 +198,7 @@ export declare class LoggingManagementClient {
|
|
|
197
198
|
* @param DeleteLogSavedSearchRequest
|
|
198
199
|
* @return DeleteLogSavedSearchResponse
|
|
199
200
|
* @throws OciError when an error occurs
|
|
200
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
201
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/DeleteLogSavedSearch.ts.html |here} to see how to use DeleteLogSavedSearch API.
|
|
201
202
|
*/
|
|
202
203
|
deleteLogSavedSearch(deleteLogSavedSearchRequest: requests.DeleteLogSavedSearchRequest): Promise<responses.DeleteLogSavedSearchResponse>;
|
|
203
204
|
/**
|
|
@@ -206,7 +207,7 @@ export declare class LoggingManagementClient {
|
|
|
206
207
|
* @param DeleteUnifiedAgentConfigurationRequest
|
|
207
208
|
* @return DeleteUnifiedAgentConfigurationResponse
|
|
208
209
|
* @throws OciError when an error occurs
|
|
209
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
210
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/DeleteUnifiedAgentConfiguration.ts.html |here} to see how to use DeleteUnifiedAgentConfiguration API.
|
|
210
211
|
*/
|
|
211
212
|
deleteUnifiedAgentConfiguration(deleteUnifiedAgentConfigurationRequest: requests.DeleteUnifiedAgentConfigurationRequest): Promise<responses.DeleteUnifiedAgentConfigurationResponse>;
|
|
212
213
|
/**
|
|
@@ -216,7 +217,7 @@ export declare class LoggingManagementClient {
|
|
|
216
217
|
* @param DeleteWorkRequestRequest
|
|
217
218
|
* @return DeleteWorkRequestResponse
|
|
218
219
|
* @throws OciError when an error occurs
|
|
219
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
220
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
220
221
|
*/
|
|
221
222
|
deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
|
|
222
223
|
/**
|
|
@@ -226,7 +227,7 @@ export declare class LoggingManagementClient {
|
|
|
226
227
|
* @param GetLogRequest
|
|
227
228
|
* @return GetLogResponse
|
|
228
229
|
* @throws OciError when an error occurs
|
|
229
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
230
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/GetLog.ts.html |here} to see how to use GetLog API.
|
|
230
231
|
*/
|
|
231
232
|
getLog(getLogRequest: requests.GetLogRequest): Promise<responses.GetLogResponse>;
|
|
232
233
|
/**
|
|
@@ -235,7 +236,7 @@ export declare class LoggingManagementClient {
|
|
|
235
236
|
* @param GetLogGroupRequest
|
|
236
237
|
* @return GetLogGroupResponse
|
|
237
238
|
* @throws OciError when an error occurs
|
|
238
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
239
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/GetLogGroup.ts.html |here} to see how to use GetLogGroup API.
|
|
239
240
|
*/
|
|
240
241
|
getLogGroup(getLogGroupRequest: requests.GetLogGroupRequest): Promise<responses.GetLogGroupResponse>;
|
|
241
242
|
/**
|
|
@@ -244,7 +245,7 @@ export declare class LoggingManagementClient {
|
|
|
244
245
|
* @param GetLogSavedSearchRequest
|
|
245
246
|
* @return GetLogSavedSearchResponse
|
|
246
247
|
* @throws OciError when an error occurs
|
|
247
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
248
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/GetLogSavedSearch.ts.html |here} to see how to use GetLogSavedSearch API.
|
|
248
249
|
*/
|
|
249
250
|
getLogSavedSearch(getLogSavedSearchRequest: requests.GetLogSavedSearchRequest): Promise<responses.GetLogSavedSearchResponse>;
|
|
250
251
|
/**
|
|
@@ -253,7 +254,7 @@ export declare class LoggingManagementClient {
|
|
|
253
254
|
* @param GetUnifiedAgentConfigurationRequest
|
|
254
255
|
* @return GetUnifiedAgentConfigurationResponse
|
|
255
256
|
* @throws OciError when an error occurs
|
|
256
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
257
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/GetUnifiedAgentConfiguration.ts.html |here} to see how to use GetUnifiedAgentConfiguration API.
|
|
257
258
|
*/
|
|
258
259
|
getUnifiedAgentConfiguration(getUnifiedAgentConfigurationRequest: requests.GetUnifiedAgentConfigurationRequest): Promise<responses.GetUnifiedAgentConfigurationResponse>;
|
|
259
260
|
/**
|
|
@@ -262,7 +263,7 @@ export declare class LoggingManagementClient {
|
|
|
262
263
|
* @param GetWorkRequestRequest
|
|
263
264
|
* @return GetWorkRequestResponse
|
|
264
265
|
* @throws OciError when an error occurs
|
|
265
|
-
* @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.81.0/logging/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
266
267
|
*/
|
|
267
268
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
268
269
|
/**
|
|
@@ -271,7 +272,7 @@ export declare class LoggingManagementClient {
|
|
|
271
272
|
* @param ListLogGroupsRequest
|
|
272
273
|
* @return ListLogGroupsResponse
|
|
273
274
|
* @throws OciError when an error occurs
|
|
274
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
275
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/ListLogGroups.ts.html |here} to see how to use ListLogGroups API.
|
|
275
276
|
*/
|
|
276
277
|
listLogGroups(listLogGroupsRequest: requests.ListLogGroupsRequest): Promise<responses.ListLogGroupsResponse>;
|
|
277
278
|
/**
|
|
@@ -313,7 +314,7 @@ export declare class LoggingManagementClient {
|
|
|
313
314
|
* @param ListLogSavedSearchesRequest
|
|
314
315
|
* @return ListLogSavedSearchesResponse
|
|
315
316
|
* @throws OciError when an error occurs
|
|
316
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
317
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/ListLogSavedSearches.ts.html |here} to see how to use ListLogSavedSearches API.
|
|
317
318
|
*/
|
|
318
319
|
listLogSavedSearches(listLogSavedSearchesRequest: requests.ListLogSavedSearchesRequest): Promise<responses.ListLogSavedSearchesResponse>;
|
|
319
320
|
/**
|
|
@@ -322,7 +323,7 @@ export declare class LoggingManagementClient {
|
|
|
322
323
|
* @param ListLogsRequest
|
|
323
324
|
* @return ListLogsResponse
|
|
324
325
|
* @throws OciError when an error occurs
|
|
325
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
326
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/ListLogs.ts.html |here} to see how to use ListLogs API.
|
|
326
327
|
*/
|
|
327
328
|
listLogs(listLogsRequest: requests.ListLogsRequest): Promise<responses.ListLogsResponse>;
|
|
328
329
|
/**
|
|
@@ -363,7 +364,7 @@ export declare class LoggingManagementClient {
|
|
|
363
364
|
* @param ListServicesRequest
|
|
364
365
|
* @return ListServicesResponse
|
|
365
366
|
* @throws OciError when an error occurs
|
|
366
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
367
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/ListServices.ts.html |here} to see how to use ListServices API.
|
|
367
368
|
*/
|
|
368
369
|
listServices(listServicesRequest: requests.ListServicesRequest): Promise<responses.ListServicesResponse>;
|
|
369
370
|
/**
|
|
@@ -372,7 +373,7 @@ export declare class LoggingManagementClient {
|
|
|
372
373
|
* @param ListUnifiedAgentConfigurationsRequest
|
|
373
374
|
* @return ListUnifiedAgentConfigurationsResponse
|
|
374
375
|
* @throws OciError when an error occurs
|
|
375
|
-
* @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.81.0/logging/ListUnifiedAgentConfigurations.ts.html |here} to see how to use ListUnifiedAgentConfigurations API.
|
|
376
377
|
*/
|
|
377
378
|
listUnifiedAgentConfigurations(listUnifiedAgentConfigurationsRequest: requests.ListUnifiedAgentConfigurationsRequest): Promise<responses.ListUnifiedAgentConfigurationsResponse>;
|
|
378
379
|
/**
|
|
@@ -382,7 +383,7 @@ export declare class LoggingManagementClient {
|
|
|
382
383
|
* @param ListWorkRequestErrorsRequest
|
|
383
384
|
* @return ListWorkRequestErrorsResponse
|
|
384
385
|
* @throws OciError when an error occurs
|
|
385
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
386
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
386
387
|
*/
|
|
387
388
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
388
389
|
/**
|
|
@@ -424,7 +425,7 @@ export declare class LoggingManagementClient {
|
|
|
424
425
|
* @param ListWorkRequestLogsRequest
|
|
425
426
|
* @return ListWorkRequestLogsResponse
|
|
426
427
|
* @throws OciError when an error occurs
|
|
427
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
428
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
428
429
|
*/
|
|
429
430
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
430
431
|
/**
|
|
@@ -466,7 +467,7 @@ export declare class LoggingManagementClient {
|
|
|
466
467
|
* @param ListWorkRequestsRequest
|
|
467
468
|
* @return ListWorkRequestsResponse
|
|
468
469
|
* @throws OciError when an error occurs
|
|
469
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
470
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
470
471
|
*/
|
|
471
472
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
472
473
|
/**
|
|
@@ -509,7 +510,7 @@ export declare class LoggingManagementClient {
|
|
|
509
510
|
* @param UpdateLogRequest
|
|
510
511
|
* @return UpdateLogResponse
|
|
511
512
|
* @throws OciError when an error occurs
|
|
512
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
513
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/UpdateLog.ts.html |here} to see how to use UpdateLog API.
|
|
513
514
|
*/
|
|
514
515
|
updateLog(updateLogRequest: requests.UpdateLogRequest): Promise<responses.UpdateLogResponse>;
|
|
515
516
|
/**
|
|
@@ -520,7 +521,7 @@ export declare class LoggingManagementClient {
|
|
|
520
521
|
* @param UpdateLogGroupRequest
|
|
521
522
|
* @return UpdateLogGroupResponse
|
|
522
523
|
* @throws OciError when an error occurs
|
|
523
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
524
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/UpdateLogGroup.ts.html |here} to see how to use UpdateLogGroup API.
|
|
524
525
|
*/
|
|
525
526
|
updateLogGroup(updateLogGroupRequest: requests.UpdateLogGroupRequest): Promise<responses.UpdateLogGroupResponse>;
|
|
526
527
|
/**
|
|
@@ -530,7 +531,7 @@ export declare class LoggingManagementClient {
|
|
|
530
531
|
* @param UpdateLogSavedSearchRequest
|
|
531
532
|
* @return UpdateLogSavedSearchResponse
|
|
532
533
|
* @throws OciError when an error occurs
|
|
533
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
534
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/UpdateLogSavedSearch.ts.html |here} to see how to use UpdateLogSavedSearch API.
|
|
534
535
|
*/
|
|
535
536
|
updateLogSavedSearch(updateLogSavedSearchRequest: requests.UpdateLogSavedSearchRequest): Promise<responses.UpdateLogSavedSearchResponse>;
|
|
536
537
|
/**
|
|
@@ -541,7 +542,7 @@ export declare class LoggingManagementClient {
|
|
|
541
542
|
* @param UpdateUnifiedAgentConfigurationRequest
|
|
542
543
|
* @return UpdateUnifiedAgentConfigurationResponse
|
|
543
544
|
* @throws OciError when an error occurs
|
|
544
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
545
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/logging/UpdateUnifiedAgentConfiguration.ts.html |here} to see how to use UpdateUnifiedAgentConfiguration API.
|
|
545
546
|
*/
|
|
546
547
|
updateUnifiedAgentConfiguration(updateUnifiedAgentConfigurationRequest: requests.UpdateUnifiedAgentConfigurationRequest): Promise<responses.UpdateUnifiedAgentConfigurationResponse>;
|
|
547
548
|
}
|