oci-logging 2.77.0 → 2.78.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 +37 -31
- package/lib/client.js +39 -30
- package/lib/client.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
|
@@ -19,6 +19,7 @@ import * as requests from "./request";
|
|
|
19
19
|
import * as model from "./model";
|
|
20
20
|
import * as responses from "./response";
|
|
21
21
|
import { LoggingManagementWaiter } from "./loggingmanagement-waiter";
|
|
22
|
+
declare const Breaker: any;
|
|
22
23
|
export declare enum LoggingManagementApiKeys {
|
|
23
24
|
}
|
|
24
25
|
/**
|
|
@@ -32,7 +33,7 @@ export declare class LoggingManagementClient {
|
|
|
32
33
|
protected "_defaultHeaders": any;
|
|
33
34
|
protected "_waiters": LoggingManagementWaiter;
|
|
34
35
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
35
|
-
protected _circuitBreaker: null;
|
|
36
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
36
37
|
protected _httpOptions: any;
|
|
37
38
|
protected _bodyDuplexMode: any;
|
|
38
39
|
targetService: string;
|
|
@@ -85,6 +86,10 @@ export declare class LoggingManagementClient {
|
|
|
85
86
|
* @return The service waiters.
|
|
86
87
|
*/
|
|
87
88
|
getWaiters(): LoggingManagementWaiter;
|
|
89
|
+
/**
|
|
90
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
91
|
+
*/
|
|
92
|
+
shutdownCircuitBreaker(): void;
|
|
88
93
|
/**
|
|
89
94
|
* Moves a log group into a different compartment within the same tenancy. When provided, the If-Match is checked against the resource ETag values.
|
|
90
95
|
* For information about moving resources between compartments, see [Moving Resources Between Compartments](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
@@ -93,7 +98,7 @@ export declare class LoggingManagementClient {
|
|
|
93
98
|
* @param ChangeLogGroupCompartmentRequest
|
|
94
99
|
* @return ChangeLogGroupCompartmentResponse
|
|
95
100
|
* @throws OciError when an error occurs
|
|
96
|
-
* @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.78.0/logging/ChangeLogGroupCompartment.ts.html |here} to see how to use ChangeLogGroupCompartment API.
|
|
97
102
|
*/
|
|
98
103
|
changeLogGroupCompartment(changeLogGroupCompartmentRequest: requests.ChangeLogGroupCompartmentRequest): Promise<responses.ChangeLogGroupCompartmentResponse>;
|
|
99
104
|
/**
|
|
@@ -103,7 +108,7 @@ export declare class LoggingManagementClient {
|
|
|
103
108
|
* @param ChangeLogLogGroupRequest
|
|
104
109
|
* @return ChangeLogLogGroupResponse
|
|
105
110
|
* @throws OciError when an error occurs
|
|
106
|
-
* @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.78.0/logging/ChangeLogLogGroup.ts.html |here} to see how to use ChangeLogLogGroup API.
|
|
107
112
|
*/
|
|
108
113
|
changeLogLogGroup(changeLogLogGroupRequest: requests.ChangeLogLogGroupRequest): Promise<responses.ChangeLogLogGroupResponse>;
|
|
109
114
|
/**
|
|
@@ -114,7 +119,7 @@ export declare class LoggingManagementClient {
|
|
|
114
119
|
* @param ChangeLogSavedSearchCompartmentRequest
|
|
115
120
|
* @return ChangeLogSavedSearchCompartmentResponse
|
|
116
121
|
* @throws OciError when an error occurs
|
|
117
|
-
* @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.78.0/logging/ChangeLogSavedSearchCompartment.ts.html |here} to see how to use ChangeLogSavedSearchCompartment API.
|
|
118
123
|
*/
|
|
119
124
|
changeLogSavedSearchCompartment(changeLogSavedSearchCompartmentRequest: requests.ChangeLogSavedSearchCompartmentRequest): Promise<responses.ChangeLogSavedSearchCompartmentResponse>;
|
|
120
125
|
/**
|
|
@@ -125,7 +130,7 @@ export declare class LoggingManagementClient {
|
|
|
125
130
|
* @param ChangeUnifiedAgentConfigurationCompartmentRequest
|
|
126
131
|
* @return ChangeUnifiedAgentConfigurationCompartmentResponse
|
|
127
132
|
* @throws OciError when an error occurs
|
|
128
|
-
* @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.78.0/logging/ChangeUnifiedAgentConfigurationCompartment.ts.html |here} to see how to use ChangeUnifiedAgentConfigurationCompartment API.
|
|
129
134
|
*/
|
|
130
135
|
changeUnifiedAgentConfigurationCompartment(changeUnifiedAgentConfigurationCompartmentRequest: requests.ChangeUnifiedAgentConfigurationCompartmentRequest): Promise<responses.ChangeUnifiedAgentConfigurationCompartmentResponse>;
|
|
131
136
|
/**
|
|
@@ -136,7 +141,7 @@ export declare class LoggingManagementClient {
|
|
|
136
141
|
* @param CreateLogRequest
|
|
137
142
|
* @return CreateLogResponse
|
|
138
143
|
* @throws OciError when an error occurs
|
|
139
|
-
* @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.78.0/logging/CreateLog.ts.html |here} to see how to use CreateLog API.
|
|
140
145
|
*/
|
|
141
146
|
createLog(createLogRequest: requests.CreateLogRequest): Promise<responses.CreateLogResponse>;
|
|
142
147
|
/**
|
|
@@ -147,7 +152,7 @@ export declare class LoggingManagementClient {
|
|
|
147
152
|
* @param CreateLogGroupRequest
|
|
148
153
|
* @return CreateLogGroupResponse
|
|
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.78.0/logging/CreateLogGroup.ts.html |here} to see how to use CreateLogGroup API.
|
|
151
156
|
*/
|
|
152
157
|
createLogGroup(createLogGroupRequest: requests.CreateLogGroupRequest): Promise<responses.CreateLogGroupResponse>;
|
|
153
158
|
/**
|
|
@@ -157,7 +162,7 @@ export declare class LoggingManagementClient {
|
|
|
157
162
|
* @param CreateLogSavedSearchRequest
|
|
158
163
|
* @return CreateLogSavedSearchResponse
|
|
159
164
|
* @throws OciError when an error occurs
|
|
160
|
-
* @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.78.0/logging/CreateLogSavedSearch.ts.html |here} to see how to use CreateLogSavedSearch API.
|
|
161
166
|
*/
|
|
162
167
|
createLogSavedSearch(createLogSavedSearchRequest: requests.CreateLogSavedSearchRequest): Promise<responses.CreateLogSavedSearchResponse>;
|
|
163
168
|
/**
|
|
@@ -166,7 +171,7 @@ export declare class LoggingManagementClient {
|
|
|
166
171
|
* @param CreateUnifiedAgentConfigurationRequest
|
|
167
172
|
* @return CreateUnifiedAgentConfigurationResponse
|
|
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.78.0/logging/CreateUnifiedAgentConfiguration.ts.html |here} to see how to use CreateUnifiedAgentConfiguration API.
|
|
170
175
|
*/
|
|
171
176
|
createUnifiedAgentConfiguration(createUnifiedAgentConfigurationRequest: requests.CreateUnifiedAgentConfigurationRequest): Promise<responses.CreateUnifiedAgentConfigurationResponse>;
|
|
172
177
|
/**
|
|
@@ -175,7 +180,7 @@ export declare class LoggingManagementClient {
|
|
|
175
180
|
* @param DeleteLogRequest
|
|
176
181
|
* @return DeleteLogResponse
|
|
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.78.0/logging/DeleteLog.ts.html |here} to see how to use DeleteLog API.
|
|
179
184
|
*/
|
|
180
185
|
deleteLog(deleteLogRequest: requests.DeleteLogRequest): Promise<responses.DeleteLogResponse>;
|
|
181
186
|
/**
|
|
@@ -184,7 +189,7 @@ export declare class LoggingManagementClient {
|
|
|
184
189
|
* @param DeleteLogGroupRequest
|
|
185
190
|
* @return DeleteLogGroupResponse
|
|
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.78.0/logging/DeleteLogGroup.ts.html |here} to see how to use DeleteLogGroup API.
|
|
188
193
|
*/
|
|
189
194
|
deleteLogGroup(deleteLogGroupRequest: requests.DeleteLogGroupRequest): Promise<responses.DeleteLogGroupResponse>;
|
|
190
195
|
/**
|
|
@@ -193,7 +198,7 @@ export declare class LoggingManagementClient {
|
|
|
193
198
|
* @param DeleteLogSavedSearchRequest
|
|
194
199
|
* @return DeleteLogSavedSearchResponse
|
|
195
200
|
* @throws OciError when an error occurs
|
|
196
|
-
* @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.78.0/logging/DeleteLogSavedSearch.ts.html |here} to see how to use DeleteLogSavedSearch API.
|
|
197
202
|
*/
|
|
198
203
|
deleteLogSavedSearch(deleteLogSavedSearchRequest: requests.DeleteLogSavedSearchRequest): Promise<responses.DeleteLogSavedSearchResponse>;
|
|
199
204
|
/**
|
|
@@ -202,7 +207,7 @@ export declare class LoggingManagementClient {
|
|
|
202
207
|
* @param DeleteUnifiedAgentConfigurationRequest
|
|
203
208
|
* @return DeleteUnifiedAgentConfigurationResponse
|
|
204
209
|
* @throws OciError when an error occurs
|
|
205
|
-
* @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.78.0/logging/DeleteUnifiedAgentConfiguration.ts.html |here} to see how to use DeleteUnifiedAgentConfiguration API.
|
|
206
211
|
*/
|
|
207
212
|
deleteUnifiedAgentConfiguration(deleteUnifiedAgentConfigurationRequest: requests.DeleteUnifiedAgentConfigurationRequest): Promise<responses.DeleteUnifiedAgentConfigurationResponse>;
|
|
208
213
|
/**
|
|
@@ -212,7 +217,7 @@ export declare class LoggingManagementClient {
|
|
|
212
217
|
* @param DeleteWorkRequestRequest
|
|
213
218
|
* @return DeleteWorkRequestResponse
|
|
214
219
|
* @throws OciError when an error occurs
|
|
215
|
-
* @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.78.0/logging/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
216
221
|
*/
|
|
217
222
|
deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
|
|
218
223
|
/**
|
|
@@ -222,7 +227,7 @@ export declare class LoggingManagementClient {
|
|
|
222
227
|
* @param GetLogRequest
|
|
223
228
|
* @return GetLogResponse
|
|
224
229
|
* @throws OciError when an error occurs
|
|
225
|
-
* @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.78.0/logging/GetLog.ts.html |here} to see how to use GetLog API.
|
|
226
231
|
*/
|
|
227
232
|
getLog(getLogRequest: requests.GetLogRequest): Promise<responses.GetLogResponse>;
|
|
228
233
|
/**
|
|
@@ -231,7 +236,7 @@ export declare class LoggingManagementClient {
|
|
|
231
236
|
* @param GetLogGroupRequest
|
|
232
237
|
* @return GetLogGroupResponse
|
|
233
238
|
* @throws OciError when an error occurs
|
|
234
|
-
* @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.78.0/logging/GetLogGroup.ts.html |here} to see how to use GetLogGroup API.
|
|
235
240
|
*/
|
|
236
241
|
getLogGroup(getLogGroupRequest: requests.GetLogGroupRequest): Promise<responses.GetLogGroupResponse>;
|
|
237
242
|
/**
|
|
@@ -240,7 +245,7 @@ export declare class LoggingManagementClient {
|
|
|
240
245
|
* @param GetLogSavedSearchRequest
|
|
241
246
|
* @return GetLogSavedSearchResponse
|
|
242
247
|
* @throws OciError when an error occurs
|
|
243
|
-
* @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.78.0/logging/GetLogSavedSearch.ts.html |here} to see how to use GetLogSavedSearch API.
|
|
244
249
|
*/
|
|
245
250
|
getLogSavedSearch(getLogSavedSearchRequest: requests.GetLogSavedSearchRequest): Promise<responses.GetLogSavedSearchResponse>;
|
|
246
251
|
/**
|
|
@@ -249,7 +254,7 @@ export declare class LoggingManagementClient {
|
|
|
249
254
|
* @param GetUnifiedAgentConfigurationRequest
|
|
250
255
|
* @return GetUnifiedAgentConfigurationResponse
|
|
251
256
|
* @throws OciError when an error occurs
|
|
252
|
-
* @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.78.0/logging/GetUnifiedAgentConfiguration.ts.html |here} to see how to use GetUnifiedAgentConfiguration API.
|
|
253
258
|
*/
|
|
254
259
|
getUnifiedAgentConfiguration(getUnifiedAgentConfigurationRequest: requests.GetUnifiedAgentConfigurationRequest): Promise<responses.GetUnifiedAgentConfigurationResponse>;
|
|
255
260
|
/**
|
|
@@ -258,7 +263,7 @@ export declare class LoggingManagementClient {
|
|
|
258
263
|
* @param GetWorkRequestRequest
|
|
259
264
|
* @return GetWorkRequestResponse
|
|
260
265
|
* @throws OciError when an error occurs
|
|
261
|
-
* @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.78.0/logging/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
262
267
|
*/
|
|
263
268
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
264
269
|
/**
|
|
@@ -267,7 +272,7 @@ export declare class LoggingManagementClient {
|
|
|
267
272
|
* @param ListLogGroupsRequest
|
|
268
273
|
* @return ListLogGroupsResponse
|
|
269
274
|
* @throws OciError when an error occurs
|
|
270
|
-
* @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.78.0/logging/ListLogGroups.ts.html |here} to see how to use ListLogGroups API.
|
|
271
276
|
*/
|
|
272
277
|
listLogGroups(listLogGroupsRequest: requests.ListLogGroupsRequest): Promise<responses.ListLogGroupsResponse>;
|
|
273
278
|
/**
|
|
@@ -309,7 +314,7 @@ export declare class LoggingManagementClient {
|
|
|
309
314
|
* @param ListLogSavedSearchesRequest
|
|
310
315
|
* @return ListLogSavedSearchesResponse
|
|
311
316
|
* @throws OciError when an error occurs
|
|
312
|
-
* @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.78.0/logging/ListLogSavedSearches.ts.html |here} to see how to use ListLogSavedSearches API.
|
|
313
318
|
*/
|
|
314
319
|
listLogSavedSearches(listLogSavedSearchesRequest: requests.ListLogSavedSearchesRequest): Promise<responses.ListLogSavedSearchesResponse>;
|
|
315
320
|
/**
|
|
@@ -318,7 +323,7 @@ export declare class LoggingManagementClient {
|
|
|
318
323
|
* @param ListLogsRequest
|
|
319
324
|
* @return ListLogsResponse
|
|
320
325
|
* @throws OciError when an error occurs
|
|
321
|
-
* @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.78.0/logging/ListLogs.ts.html |here} to see how to use ListLogs API.
|
|
322
327
|
*/
|
|
323
328
|
listLogs(listLogsRequest: requests.ListLogsRequest): Promise<responses.ListLogsResponse>;
|
|
324
329
|
/**
|
|
@@ -359,7 +364,7 @@ export declare class LoggingManagementClient {
|
|
|
359
364
|
* @param ListServicesRequest
|
|
360
365
|
* @return ListServicesResponse
|
|
361
366
|
* @throws OciError when an error occurs
|
|
362
|
-
* @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.78.0/logging/ListServices.ts.html |here} to see how to use ListServices API.
|
|
363
368
|
*/
|
|
364
369
|
listServices(listServicesRequest: requests.ListServicesRequest): Promise<responses.ListServicesResponse>;
|
|
365
370
|
/**
|
|
@@ -368,7 +373,7 @@ export declare class LoggingManagementClient {
|
|
|
368
373
|
* @param ListUnifiedAgentConfigurationsRequest
|
|
369
374
|
* @return ListUnifiedAgentConfigurationsResponse
|
|
370
375
|
* @throws OciError when an error occurs
|
|
371
|
-
* @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.78.0/logging/ListUnifiedAgentConfigurations.ts.html |here} to see how to use ListUnifiedAgentConfigurations API.
|
|
372
377
|
*/
|
|
373
378
|
listUnifiedAgentConfigurations(listUnifiedAgentConfigurationsRequest: requests.ListUnifiedAgentConfigurationsRequest): Promise<responses.ListUnifiedAgentConfigurationsResponse>;
|
|
374
379
|
/**
|
|
@@ -378,7 +383,7 @@ export declare class LoggingManagementClient {
|
|
|
378
383
|
* @param ListWorkRequestErrorsRequest
|
|
379
384
|
* @return ListWorkRequestErrorsResponse
|
|
380
385
|
* @throws OciError when an error occurs
|
|
381
|
-
* @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.78.0/logging/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
382
387
|
*/
|
|
383
388
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
384
389
|
/**
|
|
@@ -420,7 +425,7 @@ export declare class LoggingManagementClient {
|
|
|
420
425
|
* @param ListWorkRequestLogsRequest
|
|
421
426
|
* @return ListWorkRequestLogsResponse
|
|
422
427
|
* @throws OciError when an error occurs
|
|
423
|
-
* @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.78.0/logging/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
424
429
|
*/
|
|
425
430
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
426
431
|
/**
|
|
@@ -462,7 +467,7 @@ export declare class LoggingManagementClient {
|
|
|
462
467
|
* @param ListWorkRequestsRequest
|
|
463
468
|
* @return ListWorkRequestsResponse
|
|
464
469
|
* @throws OciError when an error occurs
|
|
465
|
-
* @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.78.0/logging/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
466
471
|
*/
|
|
467
472
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
468
473
|
/**
|
|
@@ -505,7 +510,7 @@ export declare class LoggingManagementClient {
|
|
|
505
510
|
* @param UpdateLogRequest
|
|
506
511
|
* @return UpdateLogResponse
|
|
507
512
|
* @throws OciError when an error occurs
|
|
508
|
-
* @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.78.0/logging/UpdateLog.ts.html |here} to see how to use UpdateLog API.
|
|
509
514
|
*/
|
|
510
515
|
updateLog(updateLogRequest: requests.UpdateLogRequest): Promise<responses.UpdateLogResponse>;
|
|
511
516
|
/**
|
|
@@ -516,7 +521,7 @@ export declare class LoggingManagementClient {
|
|
|
516
521
|
* @param UpdateLogGroupRequest
|
|
517
522
|
* @return UpdateLogGroupResponse
|
|
518
523
|
* @throws OciError when an error occurs
|
|
519
|
-
* @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.78.0/logging/UpdateLogGroup.ts.html |here} to see how to use UpdateLogGroup API.
|
|
520
525
|
*/
|
|
521
526
|
updateLogGroup(updateLogGroupRequest: requests.UpdateLogGroupRequest): Promise<responses.UpdateLogGroupResponse>;
|
|
522
527
|
/**
|
|
@@ -526,7 +531,7 @@ export declare class LoggingManagementClient {
|
|
|
526
531
|
* @param UpdateLogSavedSearchRequest
|
|
527
532
|
* @return UpdateLogSavedSearchResponse
|
|
528
533
|
* @throws OciError when an error occurs
|
|
529
|
-
* @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.78.0/logging/UpdateLogSavedSearch.ts.html |here} to see how to use UpdateLogSavedSearch API.
|
|
530
535
|
*/
|
|
531
536
|
updateLogSavedSearch(updateLogSavedSearchRequest: requests.UpdateLogSavedSearchRequest): Promise<responses.UpdateLogSavedSearchResponse>;
|
|
532
537
|
/**
|
|
@@ -537,7 +542,8 @@ export declare class LoggingManagementClient {
|
|
|
537
542
|
* @param UpdateUnifiedAgentConfigurationRequest
|
|
538
543
|
* @return UpdateUnifiedAgentConfigurationResponse
|
|
539
544
|
* @throws OciError when an error occurs
|
|
540
|
-
* @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.78.0/logging/UpdateUnifiedAgentConfiguration.ts.html |here} to see how to use UpdateUnifiedAgentConfiguration API.
|
|
541
546
|
*/
|
|
542
547
|
updateUnifiedAgentConfiguration(updateUnifiedAgentConfigurationRequest: requests.UpdateUnifiedAgentConfigurationRequest): Promise<responses.UpdateUnifiedAgentConfigurationResponse>;
|
|
543
548
|
}
|
|
549
|
+
export {};
|
package/lib/client.js
CHANGED
|
@@ -50,6 +50,7 @@ const model = __importStar(require("./model"));
|
|
|
50
50
|
const oci_common_1 = require("oci-common");
|
|
51
51
|
const loggingmanagement_waiter_1 = require("./loggingmanagement-waiter");
|
|
52
52
|
const oci_common_2 = require("oci-common");
|
|
53
|
+
const Breaker = require("opossum");
|
|
53
54
|
// ===============================================
|
|
54
55
|
// This file is autogenerated - Please do not edit
|
|
55
56
|
// ===============================================
|
|
@@ -186,6 +187,14 @@ class LoggingManagementClient {
|
|
|
186
187
|
}
|
|
187
188
|
throw Error("Waiters do not exist. Please create waiters.");
|
|
188
189
|
}
|
|
190
|
+
/**
|
|
191
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
192
|
+
*/
|
|
193
|
+
shutdownCircuitBreaker() {
|
|
194
|
+
if (this._circuitBreaker) {
|
|
195
|
+
this._circuitBreaker.shutdown();
|
|
196
|
+
}
|
|
197
|
+
}
|
|
189
198
|
/**
|
|
190
199
|
* Moves a log group into a different compartment within the same tenancy. When provided, the If-Match is checked against the resource ETag values.
|
|
191
200
|
* For information about moving resources between compartments, see [Moving Resources Between Compartments](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
@@ -194,7 +203,7 @@ class LoggingManagementClient {
|
|
|
194
203
|
* @param ChangeLogGroupCompartmentRequest
|
|
195
204
|
* @return ChangeLogGroupCompartmentResponse
|
|
196
205
|
* @throws OciError when an error occurs
|
|
197
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
206
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/ChangeLogGroupCompartment.ts.html |here} to see how to use ChangeLogGroupCompartment API.
|
|
198
207
|
*/
|
|
199
208
|
changeLogGroupCompartment(changeLogGroupCompartmentRequest) {
|
|
200
209
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -256,7 +265,7 @@ class LoggingManagementClient {
|
|
|
256
265
|
* @param ChangeLogLogGroupRequest
|
|
257
266
|
* @return ChangeLogLogGroupResponse
|
|
258
267
|
* @throws OciError when an error occurs
|
|
259
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
268
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/ChangeLogLogGroup.ts.html |here} to see how to use ChangeLogLogGroup API.
|
|
260
269
|
*/
|
|
261
270
|
changeLogLogGroup(changeLogLogGroupRequest) {
|
|
262
271
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -320,7 +329,7 @@ class LoggingManagementClient {
|
|
|
320
329
|
* @param ChangeLogSavedSearchCompartmentRequest
|
|
321
330
|
* @return ChangeLogSavedSearchCompartmentResponse
|
|
322
331
|
* @throws OciError when an error occurs
|
|
323
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
332
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/ChangeLogSavedSearchCompartment.ts.html |here} to see how to use ChangeLogSavedSearchCompartment API.
|
|
324
333
|
*/
|
|
325
334
|
changeLogSavedSearchCompartment(changeLogSavedSearchCompartmentRequest) {
|
|
326
335
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -379,7 +388,7 @@ class LoggingManagementClient {
|
|
|
379
388
|
* @param ChangeUnifiedAgentConfigurationCompartmentRequest
|
|
380
389
|
* @return ChangeUnifiedAgentConfigurationCompartmentResponse
|
|
381
390
|
* @throws OciError when an error occurs
|
|
382
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
391
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/ChangeUnifiedAgentConfigurationCompartment.ts.html |here} to see how to use ChangeUnifiedAgentConfigurationCompartment API.
|
|
383
392
|
*/
|
|
384
393
|
changeUnifiedAgentConfigurationCompartment(changeUnifiedAgentConfigurationCompartmentRequest) {
|
|
385
394
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -443,7 +452,7 @@ class LoggingManagementClient {
|
|
|
443
452
|
* @param CreateLogRequest
|
|
444
453
|
* @return CreateLogResponse
|
|
445
454
|
* @throws OciError when an error occurs
|
|
446
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
455
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/CreateLog.ts.html |here} to see how to use CreateLog API.
|
|
447
456
|
*/
|
|
448
457
|
createLog(createLogRequest) {
|
|
449
458
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -506,7 +515,7 @@ class LoggingManagementClient {
|
|
|
506
515
|
* @param CreateLogGroupRequest
|
|
507
516
|
* @return CreateLogGroupResponse
|
|
508
517
|
* @throws OciError when an error occurs
|
|
509
|
-
* @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.78.0/logging/CreateLogGroup.ts.html |here} to see how to use CreateLogGroup API.
|
|
510
519
|
*/
|
|
511
520
|
createLogGroup(createLogGroupRequest) {
|
|
512
521
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -566,7 +575,7 @@ class LoggingManagementClient {
|
|
|
566
575
|
* @param CreateLogSavedSearchRequest
|
|
567
576
|
* @return CreateLogSavedSearchResponse
|
|
568
577
|
* @throws OciError when an error occurs
|
|
569
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
578
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/CreateLogSavedSearch.ts.html |here} to see how to use CreateLogSavedSearch API.
|
|
570
579
|
*/
|
|
571
580
|
createLogSavedSearch(createLogSavedSearchRequest) {
|
|
572
581
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -629,7 +638,7 @@ class LoggingManagementClient {
|
|
|
629
638
|
* @param CreateUnifiedAgentConfigurationRequest
|
|
630
639
|
* @return CreateUnifiedAgentConfigurationResponse
|
|
631
640
|
* @throws OciError when an error occurs
|
|
632
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
641
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/CreateUnifiedAgentConfiguration.ts.html |here} to see how to use CreateUnifiedAgentConfiguration API.
|
|
633
642
|
*/
|
|
634
643
|
createUnifiedAgentConfiguration(createUnifiedAgentConfigurationRequest) {
|
|
635
644
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -688,7 +697,7 @@ class LoggingManagementClient {
|
|
|
688
697
|
* @param DeleteLogRequest
|
|
689
698
|
* @return DeleteLogResponse
|
|
690
699
|
* @throws OciError when an error occurs
|
|
691
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
700
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/DeleteLog.ts.html |here} to see how to use DeleteLog API.
|
|
692
701
|
*/
|
|
693
702
|
deleteLog(deleteLogRequest) {
|
|
694
703
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -749,7 +758,7 @@ class LoggingManagementClient {
|
|
|
749
758
|
* @param DeleteLogGroupRequest
|
|
750
759
|
* @return DeleteLogGroupResponse
|
|
751
760
|
* @throws OciError when an error occurs
|
|
752
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
761
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/DeleteLogGroup.ts.html |here} to see how to use DeleteLogGroup API.
|
|
753
762
|
*/
|
|
754
763
|
deleteLogGroup(deleteLogGroupRequest) {
|
|
755
764
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -809,7 +818,7 @@ class LoggingManagementClient {
|
|
|
809
818
|
* @param DeleteLogSavedSearchRequest
|
|
810
819
|
* @return DeleteLogSavedSearchResponse
|
|
811
820
|
* @throws OciError when an error occurs
|
|
812
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
821
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/DeleteLogSavedSearch.ts.html |here} to see how to use DeleteLogSavedSearch API.
|
|
813
822
|
*/
|
|
814
823
|
deleteLogSavedSearch(deleteLogSavedSearchRequest) {
|
|
815
824
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -864,7 +873,7 @@ class LoggingManagementClient {
|
|
|
864
873
|
* @param DeleteUnifiedAgentConfigurationRequest
|
|
865
874
|
* @return DeleteUnifiedAgentConfigurationResponse
|
|
866
875
|
* @throws OciError when an error occurs
|
|
867
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
876
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/DeleteUnifiedAgentConfiguration.ts.html |here} to see how to use DeleteUnifiedAgentConfiguration API.
|
|
868
877
|
*/
|
|
869
878
|
deleteUnifiedAgentConfiguration(deleteUnifiedAgentConfigurationRequest) {
|
|
870
879
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -925,7 +934,7 @@ class LoggingManagementClient {
|
|
|
925
934
|
* @param DeleteWorkRequestRequest
|
|
926
935
|
* @return DeleteWorkRequestResponse
|
|
927
936
|
* @throws OciError when an error occurs
|
|
928
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
937
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
929
938
|
*/
|
|
930
939
|
deleteWorkRequest(deleteWorkRequestRequest) {
|
|
931
940
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -986,7 +995,7 @@ class LoggingManagementClient {
|
|
|
986
995
|
* @param GetLogRequest
|
|
987
996
|
* @return GetLogResponse
|
|
988
997
|
* @throws OciError when an error occurs
|
|
989
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
998
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/GetLog.ts.html |here} to see how to use GetLog API.
|
|
990
999
|
*/
|
|
991
1000
|
getLog(getLogRequest) {
|
|
992
1001
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1050,7 +1059,7 @@ class LoggingManagementClient {
|
|
|
1050
1059
|
* @param GetLogGroupRequest
|
|
1051
1060
|
* @return GetLogGroupResponse
|
|
1052
1061
|
* @throws OciError when an error occurs
|
|
1053
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1062
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/GetLogGroup.ts.html |here} to see how to use GetLogGroup API.
|
|
1054
1063
|
*/
|
|
1055
1064
|
getLogGroup(getLogGroupRequest) {
|
|
1056
1065
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1113,7 +1122,7 @@ class LoggingManagementClient {
|
|
|
1113
1122
|
* @param GetLogSavedSearchRequest
|
|
1114
1123
|
* @return GetLogSavedSearchResponse
|
|
1115
1124
|
* @throws OciError when an error occurs
|
|
1116
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1125
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/GetLogSavedSearch.ts.html |here} to see how to use GetLogSavedSearch API.
|
|
1117
1126
|
*/
|
|
1118
1127
|
getLogSavedSearch(getLogSavedSearchRequest) {
|
|
1119
1128
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1176,7 +1185,7 @@ class LoggingManagementClient {
|
|
|
1176
1185
|
* @param GetUnifiedAgentConfigurationRequest
|
|
1177
1186
|
* @return GetUnifiedAgentConfigurationResponse
|
|
1178
1187
|
* @throws OciError when an error occurs
|
|
1179
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1188
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/GetUnifiedAgentConfiguration.ts.html |here} to see how to use GetUnifiedAgentConfiguration API.
|
|
1180
1189
|
*/
|
|
1181
1190
|
getUnifiedAgentConfiguration(getUnifiedAgentConfigurationRequest) {
|
|
1182
1191
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1239,7 +1248,7 @@ class LoggingManagementClient {
|
|
|
1239
1248
|
* @param GetWorkRequestRequest
|
|
1240
1249
|
* @return GetWorkRequestResponse
|
|
1241
1250
|
* @throws OciError when an error occurs
|
|
1242
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1251
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1243
1252
|
*/
|
|
1244
1253
|
getWorkRequest(getWorkRequestRequest) {
|
|
1245
1254
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1307,7 +1316,7 @@ class LoggingManagementClient {
|
|
|
1307
1316
|
* @param ListLogGroupsRequest
|
|
1308
1317
|
* @return ListLogGroupsResponse
|
|
1309
1318
|
* @throws OciError when an error occurs
|
|
1310
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1319
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/ListLogGroups.ts.html |here} to see how to use ListLogGroups API.
|
|
1311
1320
|
*/
|
|
1312
1321
|
listLogGroups(listLogGroupsRequest) {
|
|
1313
1322
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1422,7 +1431,7 @@ class LoggingManagementClient {
|
|
|
1422
1431
|
* @param ListLogSavedSearchesRequest
|
|
1423
1432
|
* @return ListLogSavedSearchesResponse
|
|
1424
1433
|
* @throws OciError when an error occurs
|
|
1425
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1434
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/ListLogSavedSearches.ts.html |here} to see how to use ListLogSavedSearches API.
|
|
1426
1435
|
*/
|
|
1427
1436
|
listLogSavedSearches(listLogSavedSearchesRequest) {
|
|
1428
1437
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1496,7 +1505,7 @@ class LoggingManagementClient {
|
|
|
1496
1505
|
* @param ListLogsRequest
|
|
1497
1506
|
* @return ListLogsResponse
|
|
1498
1507
|
* @throws OciError when an error occurs
|
|
1499
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1508
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/ListLogs.ts.html |here} to see how to use ListLogs API.
|
|
1500
1509
|
*/
|
|
1501
1510
|
listLogs(listLogsRequest) {
|
|
1502
1511
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1614,7 +1623,7 @@ class LoggingManagementClient {
|
|
|
1614
1623
|
* @param ListServicesRequest
|
|
1615
1624
|
* @return ListServicesResponse
|
|
1616
1625
|
* @throws OciError when an error occurs
|
|
1617
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1626
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/ListServices.ts.html |here} to see how to use ListServices API.
|
|
1618
1627
|
*/
|
|
1619
1628
|
listServices(listServicesRequest) {
|
|
1620
1629
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1680,7 +1689,7 @@ class LoggingManagementClient {
|
|
|
1680
1689
|
* @param ListUnifiedAgentConfigurationsRequest
|
|
1681
1690
|
* @return ListUnifiedAgentConfigurationsResponse
|
|
1682
1691
|
* @throws OciError when an error occurs
|
|
1683
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1692
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/ListUnifiedAgentConfigurations.ts.html |here} to see how to use ListUnifiedAgentConfigurations API.
|
|
1684
1693
|
*/
|
|
1685
1694
|
listUnifiedAgentConfigurations(listUnifiedAgentConfigurationsRequest) {
|
|
1686
1695
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1758,7 +1767,7 @@ class LoggingManagementClient {
|
|
|
1758
1767
|
* @param ListWorkRequestErrorsRequest
|
|
1759
1768
|
* @return ListWorkRequestErrorsResponse
|
|
1760
1769
|
* @throws OciError when an error occurs
|
|
1761
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1770
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1762
1771
|
*/
|
|
1763
1772
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
1764
1773
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1865,7 +1874,7 @@ class LoggingManagementClient {
|
|
|
1865
1874
|
* @param ListWorkRequestLogsRequest
|
|
1866
1875
|
* @return ListWorkRequestLogsResponse
|
|
1867
1876
|
* @throws OciError when an error occurs
|
|
1868
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1877
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1869
1878
|
*/
|
|
1870
1879
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
1871
1880
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1972,7 +1981,7 @@ class LoggingManagementClient {
|
|
|
1972
1981
|
* @param ListWorkRequestsRequest
|
|
1973
1982
|
* @return ListWorkRequestsResponse
|
|
1974
1983
|
* @throws OciError when an error occurs
|
|
1975
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1984
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1976
1985
|
*/
|
|
1977
1986
|
listWorkRequests(listWorkRequestsRequest) {
|
|
1978
1987
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2088,7 +2097,7 @@ class LoggingManagementClient {
|
|
|
2088
2097
|
* @param UpdateLogRequest
|
|
2089
2098
|
* @return UpdateLogResponse
|
|
2090
2099
|
* @throws OciError when an error occurs
|
|
2091
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2100
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/UpdateLog.ts.html |here} to see how to use UpdateLog API.
|
|
2092
2101
|
*/
|
|
2093
2102
|
updateLog(updateLogRequest) {
|
|
2094
2103
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2152,7 +2161,7 @@ class LoggingManagementClient {
|
|
|
2152
2161
|
* @param UpdateLogGroupRequest
|
|
2153
2162
|
* @return UpdateLogGroupResponse
|
|
2154
2163
|
* @throws OciError when an error occurs
|
|
2155
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2164
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/UpdateLogGroup.ts.html |here} to see how to use UpdateLogGroup API.
|
|
2156
2165
|
*/
|
|
2157
2166
|
updateLogGroup(updateLogGroupRequest) {
|
|
2158
2167
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2214,7 +2223,7 @@ class LoggingManagementClient {
|
|
|
2214
2223
|
* @param UpdateLogSavedSearchRequest
|
|
2215
2224
|
* @return UpdateLogSavedSearchResponse
|
|
2216
2225
|
* @throws OciError when an error occurs
|
|
2217
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2226
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/UpdateLogSavedSearch.ts.html |here} to see how to use UpdateLogSavedSearch API.
|
|
2218
2227
|
*/
|
|
2219
2228
|
updateLogSavedSearch(updateLogSavedSearchRequest) {
|
|
2220
2229
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2281,7 +2290,7 @@ class LoggingManagementClient {
|
|
|
2281
2290
|
* @param UpdateUnifiedAgentConfigurationRequest
|
|
2282
2291
|
* @return UpdateUnifiedAgentConfigurationResponse
|
|
2283
2292
|
* @throws OciError when an error occurs
|
|
2284
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2293
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/logging/UpdateUnifiedAgentConfiguration.ts.html |here} to see how to use UpdateUnifiedAgentConfiguration API.
|
|
2285
2294
|
*/
|
|
2286
2295
|
updateUnifiedAgentConfiguration(updateUnifiedAgentConfigurationRequest) {
|
|
2287
2296
|
return __awaiter(this, void 0, void 0, function* () {
|