oci-logging 2.56.0 → 2.58.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +42 -32
- package/lib/client.js +55 -32
- 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-included-search-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-included-searches-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
|
@@ -23,6 +23,7 @@ export declare enum LoggingManagementApiKeys {
|
|
|
23
23
|
export declare class LoggingManagementClient {
|
|
24
24
|
protected static serviceEndpointTemplate: string;
|
|
25
25
|
protected static endpointServiceName: string;
|
|
26
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
26
27
|
protected "_endpoint": string;
|
|
27
28
|
protected "_defaultHeaders": any;
|
|
28
29
|
protected "_waiters": LoggingManagementWaiter;
|
|
@@ -30,6 +31,9 @@ export declare class LoggingManagementClient {
|
|
|
30
31
|
protected _circuitBreaker: null;
|
|
31
32
|
protected _httpOptions: any;
|
|
32
33
|
targetService: string;
|
|
34
|
+
protected _regionId: string;
|
|
35
|
+
protected "_region": common.Region;
|
|
36
|
+
protected _lastSetRegionOrRegionId: string;
|
|
33
37
|
protected _httpClient: common.HttpClient;
|
|
34
38
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
35
39
|
/**
|
|
@@ -42,6 +46,12 @@ export declare class LoggingManagementClient {
|
|
|
42
46
|
*/
|
|
43
47
|
set endpoint(endpoint: string);
|
|
44
48
|
get logger(): import("oci-common/lib/log").Logger;
|
|
49
|
+
/**
|
|
50
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
51
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
52
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
53
|
+
*/
|
|
54
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
|
|
45
55
|
/**
|
|
46
56
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
47
57
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
@@ -78,7 +88,7 @@ export declare class LoggingManagementClient {
|
|
|
78
88
|
* @param ChangeLogGroupCompartmentRequest
|
|
79
89
|
* @return ChangeLogGroupCompartmentResponse
|
|
80
90
|
* @throws OciError when an error occurs
|
|
81
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
91
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/ChangeLogGroupCompartment.ts.html |here} to see how to use ChangeLogGroupCompartment API.
|
|
82
92
|
*/
|
|
83
93
|
changeLogGroupCompartment(changeLogGroupCompartmentRequest: requests.ChangeLogGroupCompartmentRequest): Promise<responses.ChangeLogGroupCompartmentResponse>;
|
|
84
94
|
/**
|
|
@@ -88,7 +98,7 @@ export declare class LoggingManagementClient {
|
|
|
88
98
|
* @param ChangeLogLogGroupRequest
|
|
89
99
|
* @return ChangeLogLogGroupResponse
|
|
90
100
|
* @throws OciError when an error occurs
|
|
91
|
-
* @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.58.1/logging/ChangeLogLogGroup.ts.html |here} to see how to use ChangeLogLogGroup API.
|
|
92
102
|
*/
|
|
93
103
|
changeLogLogGroup(changeLogLogGroupRequest: requests.ChangeLogLogGroupRequest): Promise<responses.ChangeLogLogGroupResponse>;
|
|
94
104
|
/**
|
|
@@ -99,7 +109,7 @@ export declare class LoggingManagementClient {
|
|
|
99
109
|
* @param ChangeLogSavedSearchCompartmentRequest
|
|
100
110
|
* @return ChangeLogSavedSearchCompartmentResponse
|
|
101
111
|
* @throws OciError when an error occurs
|
|
102
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
112
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/ChangeLogSavedSearchCompartment.ts.html |here} to see how to use ChangeLogSavedSearchCompartment API.
|
|
103
113
|
*/
|
|
104
114
|
changeLogSavedSearchCompartment(changeLogSavedSearchCompartmentRequest: requests.ChangeLogSavedSearchCompartmentRequest): Promise<responses.ChangeLogSavedSearchCompartmentResponse>;
|
|
105
115
|
/**
|
|
@@ -110,7 +120,7 @@ export declare class LoggingManagementClient {
|
|
|
110
120
|
* @param ChangeUnifiedAgentConfigurationCompartmentRequest
|
|
111
121
|
* @return ChangeUnifiedAgentConfigurationCompartmentResponse
|
|
112
122
|
* @throws OciError when an error occurs
|
|
113
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
123
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/ChangeUnifiedAgentConfigurationCompartment.ts.html |here} to see how to use ChangeUnifiedAgentConfigurationCompartment API.
|
|
114
124
|
*/
|
|
115
125
|
changeUnifiedAgentConfigurationCompartment(changeUnifiedAgentConfigurationCompartmentRequest: requests.ChangeUnifiedAgentConfigurationCompartmentRequest): Promise<responses.ChangeUnifiedAgentConfigurationCompartmentResponse>;
|
|
116
126
|
/**
|
|
@@ -121,7 +131,7 @@ export declare class LoggingManagementClient {
|
|
|
121
131
|
* @param CreateLogRequest
|
|
122
132
|
* @return CreateLogResponse
|
|
123
133
|
* @throws OciError when an error occurs
|
|
124
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
134
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/CreateLog.ts.html |here} to see how to use CreateLog API.
|
|
125
135
|
*/
|
|
126
136
|
createLog(createLogRequest: requests.CreateLogRequest): Promise<responses.CreateLogResponse>;
|
|
127
137
|
/**
|
|
@@ -132,7 +142,7 @@ export declare class LoggingManagementClient {
|
|
|
132
142
|
* @param CreateLogGroupRequest
|
|
133
143
|
* @return CreateLogGroupResponse
|
|
134
144
|
* @throws OciError when an error occurs
|
|
135
|
-
* @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.58.1/logging/CreateLogGroup.ts.html |here} to see how to use CreateLogGroup API.
|
|
136
146
|
*/
|
|
137
147
|
createLogGroup(createLogGroupRequest: requests.CreateLogGroupRequest): Promise<responses.CreateLogGroupResponse>;
|
|
138
148
|
/**
|
|
@@ -142,7 +152,7 @@ export declare class LoggingManagementClient {
|
|
|
142
152
|
* @param CreateLogSavedSearchRequest
|
|
143
153
|
* @return CreateLogSavedSearchResponse
|
|
144
154
|
* @throws OciError when an error occurs
|
|
145
|
-
* @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.58.1/logging/CreateLogSavedSearch.ts.html |here} to see how to use CreateLogSavedSearch API.
|
|
146
156
|
*/
|
|
147
157
|
createLogSavedSearch(createLogSavedSearchRequest: requests.CreateLogSavedSearchRequest): Promise<responses.CreateLogSavedSearchResponse>;
|
|
148
158
|
/**
|
|
@@ -151,7 +161,7 @@ export declare class LoggingManagementClient {
|
|
|
151
161
|
* @param CreateUnifiedAgentConfigurationRequest
|
|
152
162
|
* @return CreateUnifiedAgentConfigurationResponse
|
|
153
163
|
* @throws OciError when an error occurs
|
|
154
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
164
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/CreateUnifiedAgentConfiguration.ts.html |here} to see how to use CreateUnifiedAgentConfiguration API.
|
|
155
165
|
*/
|
|
156
166
|
createUnifiedAgentConfiguration(createUnifiedAgentConfigurationRequest: requests.CreateUnifiedAgentConfigurationRequest): Promise<responses.CreateUnifiedAgentConfigurationResponse>;
|
|
157
167
|
/**
|
|
@@ -160,7 +170,7 @@ export declare class LoggingManagementClient {
|
|
|
160
170
|
* @param DeleteLogRequest
|
|
161
171
|
* @return DeleteLogResponse
|
|
162
172
|
* @throws OciError when an error occurs
|
|
163
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
173
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/DeleteLog.ts.html |here} to see how to use DeleteLog API.
|
|
164
174
|
*/
|
|
165
175
|
deleteLog(deleteLogRequest: requests.DeleteLogRequest): Promise<responses.DeleteLogResponse>;
|
|
166
176
|
/**
|
|
@@ -169,7 +179,7 @@ export declare class LoggingManagementClient {
|
|
|
169
179
|
* @param DeleteLogGroupRequest
|
|
170
180
|
* @return DeleteLogGroupResponse
|
|
171
181
|
* @throws OciError when an error occurs
|
|
172
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
182
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/DeleteLogGroup.ts.html |here} to see how to use DeleteLogGroup API.
|
|
173
183
|
*/
|
|
174
184
|
deleteLogGroup(deleteLogGroupRequest: requests.DeleteLogGroupRequest): Promise<responses.DeleteLogGroupResponse>;
|
|
175
185
|
/**
|
|
@@ -178,7 +188,7 @@ export declare class LoggingManagementClient {
|
|
|
178
188
|
* @param DeleteLogSavedSearchRequest
|
|
179
189
|
* @return DeleteLogSavedSearchResponse
|
|
180
190
|
* @throws OciError when an error occurs
|
|
181
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
191
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/DeleteLogSavedSearch.ts.html |here} to see how to use DeleteLogSavedSearch API.
|
|
182
192
|
*/
|
|
183
193
|
deleteLogSavedSearch(deleteLogSavedSearchRequest: requests.DeleteLogSavedSearchRequest): Promise<responses.DeleteLogSavedSearchResponse>;
|
|
184
194
|
/**
|
|
@@ -187,7 +197,7 @@ export declare class LoggingManagementClient {
|
|
|
187
197
|
* @param DeleteUnifiedAgentConfigurationRequest
|
|
188
198
|
* @return DeleteUnifiedAgentConfigurationResponse
|
|
189
199
|
* @throws OciError when an error occurs
|
|
190
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
200
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/DeleteUnifiedAgentConfiguration.ts.html |here} to see how to use DeleteUnifiedAgentConfiguration API.
|
|
191
201
|
*/
|
|
192
202
|
deleteUnifiedAgentConfiguration(deleteUnifiedAgentConfigurationRequest: requests.DeleteUnifiedAgentConfigurationRequest): Promise<responses.DeleteUnifiedAgentConfigurationResponse>;
|
|
193
203
|
/**
|
|
@@ -197,7 +207,7 @@ export declare class LoggingManagementClient {
|
|
|
197
207
|
* @param DeleteWorkRequestRequest
|
|
198
208
|
* @return DeleteWorkRequestResponse
|
|
199
209
|
* @throws OciError when an error occurs
|
|
200
|
-
* @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.58.1/logging/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
201
211
|
*/
|
|
202
212
|
deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
|
|
203
213
|
/**
|
|
@@ -207,7 +217,7 @@ export declare class LoggingManagementClient {
|
|
|
207
217
|
* @param GetLogRequest
|
|
208
218
|
* @return GetLogResponse
|
|
209
219
|
* @throws OciError when an error occurs
|
|
210
|
-
* @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.58.1/logging/GetLog.ts.html |here} to see how to use GetLog API.
|
|
211
221
|
*/
|
|
212
222
|
getLog(getLogRequest: requests.GetLogRequest): Promise<responses.GetLogResponse>;
|
|
213
223
|
/**
|
|
@@ -216,7 +226,7 @@ export declare class LoggingManagementClient {
|
|
|
216
226
|
* @param GetLogGroupRequest
|
|
217
227
|
* @return GetLogGroupResponse
|
|
218
228
|
* @throws OciError when an error occurs
|
|
219
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
229
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/GetLogGroup.ts.html |here} to see how to use GetLogGroup API.
|
|
220
230
|
*/
|
|
221
231
|
getLogGroup(getLogGroupRequest: requests.GetLogGroupRequest): Promise<responses.GetLogGroupResponse>;
|
|
222
232
|
/**
|
|
@@ -225,7 +235,7 @@ export declare class LoggingManagementClient {
|
|
|
225
235
|
* @param GetLogIncludedSearchRequest
|
|
226
236
|
* @return GetLogIncludedSearchResponse
|
|
227
237
|
* @throws OciError when an error occurs
|
|
228
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
238
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/GetLogIncludedSearch.ts.html |here} to see how to use GetLogIncludedSearch API.
|
|
229
239
|
*/
|
|
230
240
|
getLogIncludedSearch(getLogIncludedSearchRequest: requests.GetLogIncludedSearchRequest): Promise<responses.GetLogIncludedSearchResponse>;
|
|
231
241
|
/**
|
|
@@ -234,7 +244,7 @@ export declare class LoggingManagementClient {
|
|
|
234
244
|
* @param GetLogSavedSearchRequest
|
|
235
245
|
* @return GetLogSavedSearchResponse
|
|
236
246
|
* @throws OciError when an error occurs
|
|
237
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
247
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/GetLogSavedSearch.ts.html |here} to see how to use GetLogSavedSearch API.
|
|
238
248
|
*/
|
|
239
249
|
getLogSavedSearch(getLogSavedSearchRequest: requests.GetLogSavedSearchRequest): Promise<responses.GetLogSavedSearchResponse>;
|
|
240
250
|
/**
|
|
@@ -243,7 +253,7 @@ export declare class LoggingManagementClient {
|
|
|
243
253
|
* @param GetUnifiedAgentConfigurationRequest
|
|
244
254
|
* @return GetUnifiedAgentConfigurationResponse
|
|
245
255
|
* @throws OciError when an error occurs
|
|
246
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
256
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/GetUnifiedAgentConfiguration.ts.html |here} to see how to use GetUnifiedAgentConfiguration API.
|
|
247
257
|
*/
|
|
248
258
|
getUnifiedAgentConfiguration(getUnifiedAgentConfigurationRequest: requests.GetUnifiedAgentConfigurationRequest): Promise<responses.GetUnifiedAgentConfigurationResponse>;
|
|
249
259
|
/**
|
|
@@ -252,7 +262,7 @@ export declare class LoggingManagementClient {
|
|
|
252
262
|
* @param GetWorkRequestRequest
|
|
253
263
|
* @return GetWorkRequestResponse
|
|
254
264
|
* @throws OciError when an error occurs
|
|
255
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
265
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
256
266
|
*/
|
|
257
267
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
258
268
|
/**
|
|
@@ -261,7 +271,7 @@ export declare class LoggingManagementClient {
|
|
|
261
271
|
* @param ListLogGroupsRequest
|
|
262
272
|
* @return ListLogGroupsResponse
|
|
263
273
|
* @throws OciError when an error occurs
|
|
264
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
274
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/ListLogGroups.ts.html |here} to see how to use ListLogGroups API.
|
|
265
275
|
*/
|
|
266
276
|
listLogGroups(listLogGroupsRequest: requests.ListLogGroupsRequest): Promise<responses.ListLogGroupsResponse>;
|
|
267
277
|
/**
|
|
@@ -303,7 +313,7 @@ export declare class LoggingManagementClient {
|
|
|
303
313
|
* @param ListLogIncludedSearchesRequest
|
|
304
314
|
* @return ListLogIncludedSearchesResponse
|
|
305
315
|
* @throws OciError when an error occurs
|
|
306
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
316
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/ListLogIncludedSearches.ts.html |here} to see how to use ListLogIncludedSearches API.
|
|
307
317
|
*/
|
|
308
318
|
listLogIncludedSearches(listLogIncludedSearchesRequest: requests.ListLogIncludedSearchesRequest): Promise<responses.ListLogIncludedSearchesResponse>;
|
|
309
319
|
/**
|
|
@@ -313,7 +323,7 @@ export declare class LoggingManagementClient {
|
|
|
313
323
|
* @param ListLogSavedSearchesRequest
|
|
314
324
|
* @return ListLogSavedSearchesResponse
|
|
315
325
|
* @throws OciError when an error occurs
|
|
316
|
-
* @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.58.1/logging/ListLogSavedSearches.ts.html |here} to see how to use ListLogSavedSearches API.
|
|
317
327
|
*/
|
|
318
328
|
listLogSavedSearches(listLogSavedSearchesRequest: requests.ListLogSavedSearchesRequest): Promise<responses.ListLogSavedSearchesResponse>;
|
|
319
329
|
/**
|
|
@@ -322,7 +332,7 @@ export declare class LoggingManagementClient {
|
|
|
322
332
|
* @param ListLogsRequest
|
|
323
333
|
* @return ListLogsResponse
|
|
324
334
|
* @throws OciError when an error occurs
|
|
325
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
335
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/ListLogs.ts.html |here} to see how to use ListLogs API.
|
|
326
336
|
*/
|
|
327
337
|
listLogs(listLogsRequest: requests.ListLogsRequest): Promise<responses.ListLogsResponse>;
|
|
328
338
|
/**
|
|
@@ -363,7 +373,7 @@ export declare class LoggingManagementClient {
|
|
|
363
373
|
* @param ListServicesRequest
|
|
364
374
|
* @return ListServicesResponse
|
|
365
375
|
* @throws OciError when an error occurs
|
|
366
|
-
* @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.58.1/logging/ListServices.ts.html |here} to see how to use ListServices API.
|
|
367
377
|
*/
|
|
368
378
|
listServices(listServicesRequest: requests.ListServicesRequest): Promise<responses.ListServicesResponse>;
|
|
369
379
|
/**
|
|
@@ -372,7 +382,7 @@ export declare class LoggingManagementClient {
|
|
|
372
382
|
* @param ListUnifiedAgentConfigurationsRequest
|
|
373
383
|
* @return ListUnifiedAgentConfigurationsResponse
|
|
374
384
|
* @throws OciError when an error occurs
|
|
375
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
385
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/ListUnifiedAgentConfigurations.ts.html |here} to see how to use ListUnifiedAgentConfigurations API.
|
|
376
386
|
*/
|
|
377
387
|
listUnifiedAgentConfigurations(listUnifiedAgentConfigurationsRequest: requests.ListUnifiedAgentConfigurationsRequest): Promise<responses.ListUnifiedAgentConfigurationsResponse>;
|
|
378
388
|
/**
|
|
@@ -382,7 +392,7 @@ export declare class LoggingManagementClient {
|
|
|
382
392
|
* @param ListWorkRequestErrorsRequest
|
|
383
393
|
* @return ListWorkRequestErrorsResponse
|
|
384
394
|
* @throws OciError when an error occurs
|
|
385
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
395
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
386
396
|
*/
|
|
387
397
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
388
398
|
/**
|
|
@@ -424,7 +434,7 @@ export declare class LoggingManagementClient {
|
|
|
424
434
|
* @param ListWorkRequestLogsRequest
|
|
425
435
|
* @return ListWorkRequestLogsResponse
|
|
426
436
|
* @throws OciError when an error occurs
|
|
427
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
437
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
428
438
|
*/
|
|
429
439
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
430
440
|
/**
|
|
@@ -466,7 +476,7 @@ export declare class LoggingManagementClient {
|
|
|
466
476
|
* @param ListWorkRequestsRequest
|
|
467
477
|
* @return ListWorkRequestsResponse
|
|
468
478
|
* @throws OciError when an error occurs
|
|
469
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
479
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
470
480
|
*/
|
|
471
481
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
472
482
|
/**
|
|
@@ -509,7 +519,7 @@ export declare class LoggingManagementClient {
|
|
|
509
519
|
* @param UpdateLogRequest
|
|
510
520
|
* @return UpdateLogResponse
|
|
511
521
|
* @throws OciError when an error occurs
|
|
512
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
522
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/UpdateLog.ts.html |here} to see how to use UpdateLog API.
|
|
513
523
|
*/
|
|
514
524
|
updateLog(updateLogRequest: requests.UpdateLogRequest): Promise<responses.UpdateLogResponse>;
|
|
515
525
|
/**
|
|
@@ -520,7 +530,7 @@ export declare class LoggingManagementClient {
|
|
|
520
530
|
* @param UpdateLogGroupRequest
|
|
521
531
|
* @return UpdateLogGroupResponse
|
|
522
532
|
* @throws OciError when an error occurs
|
|
523
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
533
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/UpdateLogGroup.ts.html |here} to see how to use UpdateLogGroup API.
|
|
524
534
|
*/
|
|
525
535
|
updateLogGroup(updateLogGroupRequest: requests.UpdateLogGroupRequest): Promise<responses.UpdateLogGroupResponse>;
|
|
526
536
|
/**
|
|
@@ -530,7 +540,7 @@ export declare class LoggingManagementClient {
|
|
|
530
540
|
* @param UpdateLogSavedSearchRequest
|
|
531
541
|
* @return UpdateLogSavedSearchResponse
|
|
532
542
|
* @throws OciError when an error occurs
|
|
533
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
543
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/UpdateLogSavedSearch.ts.html |here} to see how to use UpdateLogSavedSearch API.
|
|
534
544
|
*/
|
|
535
545
|
updateLogSavedSearch(updateLogSavedSearchRequest: requests.UpdateLogSavedSearchRequest): Promise<responses.UpdateLogSavedSearchResponse>;
|
|
536
546
|
/**
|
|
@@ -541,7 +551,7 @@ export declare class LoggingManagementClient {
|
|
|
541
551
|
* @param UpdateUnifiedAgentConfigurationRequest
|
|
542
552
|
* @return UpdateUnifiedAgentConfigurationResponse
|
|
543
553
|
* @throws OciError when an error occurs
|
|
544
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
554
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/logging/UpdateUnifiedAgentConfiguration.ts.html |here} to see how to use UpdateUnifiedAgentConfiguration API.
|
|
545
555
|
*/
|
|
546
556
|
updateUnifiedAgentConfiguration(updateUnifiedAgentConfigurationRequest: requests.UpdateUnifiedAgentConfigurationRequest): Promise<responses.UpdateUnifiedAgentConfigurationResponse>;
|
|
547
557
|
}
|