oci-logging 2.5.1 → 2.7.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/LICENSE.txt +6 -0
- package/lib/client.d.ts +67 -32
- package/lib/client.js +138 -64
- 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/LICENSE.txt
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 or Apache License 2.0. See below for license terms. You may choose either license.
|
|
4
|
+
|
|
5
|
+
____________________________
|
|
6
|
+
|
|
1
7
|
The Universal Permissive License (UPL), Version 1.0
|
|
2
8
|
|
|
3
9
|
Subject to the condition set forth below, permission is hereby granted to any
|
package/lib/client.d.ts
CHANGED
|
@@ -17,6 +17,9 @@ import * as responses from "./response";
|
|
|
17
17
|
import { LoggingManagementWaiter } from "./loggingmanagement-waiter";
|
|
18
18
|
export declare enum LoggingManagementApiKeys {
|
|
19
19
|
}
|
|
20
|
+
/**
|
|
21
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
22
|
+
*/
|
|
20
23
|
export declare class LoggingManagementClient {
|
|
21
24
|
protected static serviceEndpointTemplate: string;
|
|
22
25
|
protected "_endpoint": string;
|
|
@@ -68,174 +71,194 @@ export declare class LoggingManagementClient {
|
|
|
68
71
|
* Moves a log group into a different compartment within the same tenancy. When provided, the If-Match is checked against the resource ETag values.
|
|
69
72
|
* For information about moving resources between compartments, see [Moving Resources Between Compartments](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
70
73
|
*
|
|
74
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
71
75
|
* @param ChangeLogGroupCompartmentRequest
|
|
72
76
|
* @return ChangeLogGroupCompartmentResponse
|
|
73
77
|
* @throws OciError when an error occurs
|
|
74
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
78
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ChangeLogGroupCompartment.ts.html |here} to see how to use ChangeLogGroupCompartment API.
|
|
75
79
|
*/
|
|
76
80
|
changeLogGroupCompartment(changeLogGroupCompartmentRequest: requests.ChangeLogGroupCompartmentRequest): Promise<responses.ChangeLogGroupCompartmentResponse>;
|
|
77
81
|
/**
|
|
78
82
|
* Moves a log into a different log group within the same tenancy. When provided, the If-Match is checked against the ETag values of the resource.
|
|
79
83
|
*
|
|
84
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
80
85
|
* @param ChangeLogLogGroupRequest
|
|
81
86
|
* @return ChangeLogLogGroupResponse
|
|
82
87
|
* @throws OciError when an error occurs
|
|
83
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
88
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ChangeLogLogGroup.ts.html |here} to see how to use ChangeLogLogGroup API.
|
|
84
89
|
*/
|
|
85
90
|
changeLogLogGroup(changeLogLogGroupRequest: requests.ChangeLogLogGroupRequest): Promise<responses.ChangeLogLogGroupResponse>;
|
|
86
91
|
/**
|
|
87
92
|
* Moves a saved search into a different compartment within the same tenancy. For information about moving
|
|
88
93
|
* resources between compartments, see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
89
94
|
*
|
|
95
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
90
96
|
* @param ChangeLogSavedSearchCompartmentRequest
|
|
91
97
|
* @return ChangeLogSavedSearchCompartmentResponse
|
|
92
98
|
* @throws OciError when an error occurs
|
|
93
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
99
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ChangeLogSavedSearchCompartment.ts.html |here} to see how to use ChangeLogSavedSearchCompartment API.
|
|
94
100
|
*/
|
|
95
101
|
changeLogSavedSearchCompartment(changeLogSavedSearchCompartmentRequest: requests.ChangeLogSavedSearchCompartmentRequest): Promise<responses.ChangeLogSavedSearchCompartmentResponse>;
|
|
96
102
|
/**
|
|
97
103
|
* Moves the unified agent configuration into a different compartment within the same tenancy. When provided, the If-Match is checked against the ETag values of the resource.
|
|
98
104
|
* For information about moving resources between compartments, see [Moving Resources Between Compartments](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
99
105
|
*
|
|
106
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
100
107
|
* @param ChangeUnifiedAgentConfigurationCompartmentRequest
|
|
101
108
|
* @return ChangeUnifiedAgentConfigurationCompartmentResponse
|
|
102
109
|
* @throws OciError when an error occurs
|
|
103
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
110
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ChangeUnifiedAgentConfigurationCompartment.ts.html |here} to see how to use ChangeUnifiedAgentConfigurationCompartment API.
|
|
104
111
|
*/
|
|
105
112
|
changeUnifiedAgentConfigurationCompartment(changeUnifiedAgentConfigurationCompartmentRequest: requests.ChangeUnifiedAgentConfigurationCompartmentRequest): Promise<responses.ChangeUnifiedAgentConfigurationCompartmentResponse>;
|
|
106
113
|
/**
|
|
107
114
|
* Creates a log within the specified log group. This call fails if a log group has already been created
|
|
108
115
|
* with the same displayName or (service, resource, category) triplet.
|
|
109
116
|
*
|
|
117
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
110
118
|
* @param CreateLogRequest
|
|
111
119
|
* @return CreateLogResponse
|
|
112
120
|
* @throws OciError when an error occurs
|
|
113
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
121
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/CreateLog.ts.html |here} to see how to use CreateLog API.
|
|
114
122
|
*/
|
|
115
123
|
createLog(createLogRequest: requests.CreateLogRequest): Promise<responses.CreateLogResponse>;
|
|
116
124
|
/**
|
|
117
125
|
* Create a new log group with a unique display name. This call fails
|
|
118
126
|
* if the log group is already created with the same displayName in the compartment.
|
|
119
127
|
*
|
|
128
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
120
129
|
* @param CreateLogGroupRequest
|
|
121
130
|
* @return CreateLogGroupResponse
|
|
122
131
|
* @throws OciError when an error occurs
|
|
123
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
132
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/CreateLogGroup.ts.html |here} to see how to use CreateLogGroup API.
|
|
124
133
|
*/
|
|
125
134
|
createLogGroup(createLogGroupRequest: requests.CreateLogGroupRequest): Promise<responses.CreateLogGroupResponse>;
|
|
126
135
|
/**
|
|
127
136
|
* Creates a new LogSavedSearch.
|
|
128
137
|
*
|
|
138
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
129
139
|
* @param CreateLogSavedSearchRequest
|
|
130
140
|
* @return CreateLogSavedSearchResponse
|
|
131
141
|
* @throws OciError when an error occurs
|
|
132
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
142
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/CreateLogSavedSearch.ts.html |here} to see how to use CreateLogSavedSearch API.
|
|
133
143
|
*/
|
|
134
144
|
createLogSavedSearch(createLogSavedSearchRequest: requests.CreateLogSavedSearchRequest): Promise<responses.CreateLogSavedSearchResponse>;
|
|
135
145
|
/**
|
|
136
146
|
* Create unified agent configuration registration.
|
|
147
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
137
148
|
* @param CreateUnifiedAgentConfigurationRequest
|
|
138
149
|
* @return CreateUnifiedAgentConfigurationResponse
|
|
139
150
|
* @throws OciError when an error occurs
|
|
140
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
151
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/CreateUnifiedAgentConfiguration.ts.html |here} to see how to use CreateUnifiedAgentConfiguration API.
|
|
141
152
|
*/
|
|
142
153
|
createUnifiedAgentConfiguration(createUnifiedAgentConfigurationRequest: requests.CreateUnifiedAgentConfigurationRequest): Promise<responses.CreateUnifiedAgentConfigurationResponse>;
|
|
143
154
|
/**
|
|
144
155
|
* Deletes the log object in a log group.
|
|
156
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
145
157
|
* @param DeleteLogRequest
|
|
146
158
|
* @return DeleteLogResponse
|
|
147
159
|
* @throws OciError when an error occurs
|
|
148
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
160
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/DeleteLog.ts.html |here} to see how to use DeleteLog API.
|
|
149
161
|
*/
|
|
150
162
|
deleteLog(deleteLogRequest: requests.DeleteLogRequest): Promise<responses.DeleteLogResponse>;
|
|
151
163
|
/**
|
|
152
164
|
* Deletes the specified log group.
|
|
165
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
153
166
|
* @param DeleteLogGroupRequest
|
|
154
167
|
* @return DeleteLogGroupResponse
|
|
155
168
|
* @throws OciError when an error occurs
|
|
156
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
169
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/DeleteLogGroup.ts.html |here} to see how to use DeleteLogGroup API.
|
|
157
170
|
*/
|
|
158
171
|
deleteLogGroup(deleteLogGroupRequest: requests.DeleteLogGroupRequest): Promise<responses.DeleteLogGroupResponse>;
|
|
159
172
|
/**
|
|
160
173
|
* Deletes the specified log saved search.
|
|
174
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
161
175
|
* @param DeleteLogSavedSearchRequest
|
|
162
176
|
* @return DeleteLogSavedSearchResponse
|
|
163
177
|
* @throws OciError when an error occurs
|
|
164
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
178
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/DeleteLogSavedSearch.ts.html |here} to see how to use DeleteLogSavedSearch API.
|
|
165
179
|
*/
|
|
166
180
|
deleteLogSavedSearch(deleteLogSavedSearchRequest: requests.DeleteLogSavedSearchRequest): Promise<responses.DeleteLogSavedSearchResponse>;
|
|
167
181
|
/**
|
|
168
182
|
* Delete unified agent configuration.
|
|
183
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
169
184
|
* @param DeleteUnifiedAgentConfigurationRequest
|
|
170
185
|
* @return DeleteUnifiedAgentConfigurationResponse
|
|
171
186
|
* @throws OciError when an error occurs
|
|
172
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
187
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/DeleteUnifiedAgentConfiguration.ts.html |here} to see how to use DeleteUnifiedAgentConfiguration API.
|
|
173
188
|
*/
|
|
174
189
|
deleteUnifiedAgentConfiguration(deleteUnifiedAgentConfigurationRequest: requests.DeleteUnifiedAgentConfigurationRequest): Promise<responses.DeleteUnifiedAgentConfigurationResponse>;
|
|
175
190
|
/**
|
|
176
191
|
* Cancel a work request that has not started yet.
|
|
177
192
|
*
|
|
193
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
178
194
|
* @param DeleteWorkRequestRequest
|
|
179
195
|
* @return DeleteWorkRequestResponse
|
|
180
196
|
* @throws OciError when an error occurs
|
|
181
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
197
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
182
198
|
*/
|
|
183
199
|
deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
|
|
184
200
|
/**
|
|
185
201
|
* Gets the log object configuration for the log object OCID.
|
|
186
202
|
*
|
|
203
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
187
204
|
* @param GetLogRequest
|
|
188
205
|
* @return GetLogResponse
|
|
189
206
|
* @throws OciError when an error occurs
|
|
190
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
207
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/GetLog.ts.html |here} to see how to use GetLog API.
|
|
191
208
|
*/
|
|
192
209
|
getLog(getLogRequest: requests.GetLogRequest): Promise<responses.GetLogResponse>;
|
|
193
210
|
/**
|
|
194
211
|
* Get the specified log group's information.
|
|
212
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
195
213
|
* @param GetLogGroupRequest
|
|
196
214
|
* @return GetLogGroupResponse
|
|
197
215
|
* @throws OciError when an error occurs
|
|
198
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
216
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/GetLogGroup.ts.html |here} to see how to use GetLogGroup API.
|
|
199
217
|
*/
|
|
200
218
|
getLogGroup(getLogGroupRequest: requests.GetLogGroupRequest): Promise<responses.GetLogGroupResponse>;
|
|
201
219
|
/**
|
|
202
220
|
* Retrieves a LogIncludedSearch.
|
|
221
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
203
222
|
* @param GetLogIncludedSearchRequest
|
|
204
223
|
* @return GetLogIncludedSearchResponse
|
|
205
224
|
* @throws OciError when an error occurs
|
|
206
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
225
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/GetLogIncludedSearch.ts.html |here} to see how to use GetLogIncludedSearch API.
|
|
207
226
|
*/
|
|
208
227
|
getLogIncludedSearch(getLogIncludedSearchRequest: requests.GetLogIncludedSearchRequest): Promise<responses.GetLogIncludedSearchResponse>;
|
|
209
228
|
/**
|
|
210
229
|
* Retrieves a log saved search.
|
|
230
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
211
231
|
* @param GetLogSavedSearchRequest
|
|
212
232
|
* @return GetLogSavedSearchResponse
|
|
213
233
|
* @throws OciError when an error occurs
|
|
214
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
234
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/GetLogSavedSearch.ts.html |here} to see how to use GetLogSavedSearch API.
|
|
215
235
|
*/
|
|
216
236
|
getLogSavedSearch(getLogSavedSearchRequest: requests.GetLogSavedSearchRequest): Promise<responses.GetLogSavedSearchResponse>;
|
|
217
237
|
/**
|
|
218
238
|
* Get the unified agent configuration for an ID.
|
|
239
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
219
240
|
* @param GetUnifiedAgentConfigurationRequest
|
|
220
241
|
* @return GetUnifiedAgentConfigurationResponse
|
|
221
242
|
* @throws OciError when an error occurs
|
|
222
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
243
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/GetUnifiedAgentConfiguration.ts.html |here} to see how to use GetUnifiedAgentConfiguration API.
|
|
223
244
|
*/
|
|
224
245
|
getUnifiedAgentConfiguration(getUnifiedAgentConfigurationRequest: requests.GetUnifiedAgentConfigurationRequest): Promise<responses.GetUnifiedAgentConfigurationResponse>;
|
|
225
246
|
/**
|
|
226
247
|
* Gets the details of the work request with the given ID.
|
|
248
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
227
249
|
* @param GetWorkRequestRequest
|
|
228
250
|
* @return GetWorkRequestResponse
|
|
229
251
|
* @throws OciError when an error occurs
|
|
230
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
252
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
231
253
|
*/
|
|
232
254
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
233
255
|
/**
|
|
234
256
|
* Lists all log groups for the specified compartment or tenancy.
|
|
257
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
235
258
|
* @param ListLogGroupsRequest
|
|
236
259
|
* @return ListLogGroupsResponse
|
|
237
260
|
* @throws OciError when an error occurs
|
|
238
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
261
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ListLogGroups.ts.html |here} to see how to use ListLogGroups API.
|
|
239
262
|
*/
|
|
240
263
|
listLogGroups(listLogGroupsRequest: requests.ListLogGroupsRequest): Promise<responses.ListLogGroupsResponse>;
|
|
241
264
|
/**
|
|
@@ -273,27 +296,30 @@ export declare class LoggingManagementClient {
|
|
|
273
296
|
/**
|
|
274
297
|
* Lists Logging Included Searches for this compartment.
|
|
275
298
|
*
|
|
299
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
276
300
|
* @param ListLogIncludedSearchesRequest
|
|
277
301
|
* @return ListLogIncludedSearchesResponse
|
|
278
302
|
* @throws OciError when an error occurs
|
|
279
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
303
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ListLogIncludedSearches.ts.html |here} to see how to use ListLogIncludedSearches API.
|
|
280
304
|
*/
|
|
281
305
|
listLogIncludedSearches(listLogIncludedSearchesRequest: requests.ListLogIncludedSearchesRequest): Promise<responses.ListLogIncludedSearchesResponse>;
|
|
282
306
|
/**
|
|
283
307
|
* Lists Logging Saved Searches for this compartment.
|
|
284
308
|
*
|
|
309
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
285
310
|
* @param ListLogSavedSearchesRequest
|
|
286
311
|
* @return ListLogSavedSearchesResponse
|
|
287
312
|
* @throws OciError when an error occurs
|
|
288
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
313
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ListLogSavedSearches.ts.html |here} to see how to use ListLogSavedSearches API.
|
|
289
314
|
*/
|
|
290
315
|
listLogSavedSearches(listLogSavedSearchesRequest: requests.ListLogSavedSearchesRequest): Promise<responses.ListLogSavedSearchesResponse>;
|
|
291
316
|
/**
|
|
292
317
|
* Lists the specified log group's log objects.
|
|
318
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
293
319
|
* @param ListLogsRequest
|
|
294
320
|
* @return ListLogsResponse
|
|
295
321
|
* @throws OciError when an error occurs
|
|
296
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
322
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ListLogs.ts.html |here} to see how to use ListLogs API.
|
|
297
323
|
*/
|
|
298
324
|
listLogs(listLogsRequest: requests.ListLogsRequest): Promise<responses.ListLogsResponse>;
|
|
299
325
|
/**
|
|
@@ -330,27 +356,30 @@ export declare class LoggingManagementClient {
|
|
|
330
356
|
listLogsResponseIterator(request: requests.ListLogsRequest): AsyncIterableIterator<responses.ListLogsResponse>;
|
|
331
357
|
/**
|
|
332
358
|
* Lists all services that support logging.
|
|
359
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
333
360
|
* @param ListServicesRequest
|
|
334
361
|
* @return ListServicesResponse
|
|
335
362
|
* @throws OciError when an error occurs
|
|
336
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
363
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ListServices.ts.html |here} to see how to use ListServices API.
|
|
337
364
|
*/
|
|
338
365
|
listServices(listServicesRequest: requests.ListServicesRequest): Promise<responses.ListServicesResponse>;
|
|
339
366
|
/**
|
|
340
367
|
* Lists all unified agent configurations in the specified compartment.
|
|
368
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
341
369
|
* @param ListUnifiedAgentConfigurationsRequest
|
|
342
370
|
* @return ListUnifiedAgentConfigurationsResponse
|
|
343
371
|
* @throws OciError when an error occurs
|
|
344
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
372
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ListUnifiedAgentConfigurations.ts.html |here} to see how to use ListUnifiedAgentConfigurations API.
|
|
345
373
|
*/
|
|
346
374
|
listUnifiedAgentConfigurations(listUnifiedAgentConfigurationsRequest: requests.ListUnifiedAgentConfigurationsRequest): Promise<responses.ListUnifiedAgentConfigurationsResponse>;
|
|
347
375
|
/**
|
|
348
376
|
* Return a list of errors for a given work request.
|
|
349
377
|
*
|
|
378
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
350
379
|
* @param ListWorkRequestErrorsRequest
|
|
351
380
|
* @return ListWorkRequestErrorsResponse
|
|
352
381
|
* @throws OciError when an error occurs
|
|
353
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
382
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
354
383
|
*/
|
|
355
384
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
356
385
|
/**
|
|
@@ -388,10 +417,11 @@ export declare class LoggingManagementClient {
|
|
|
388
417
|
/**
|
|
389
418
|
* Return a list of logs for a given work request.
|
|
390
419
|
*
|
|
420
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
391
421
|
* @param ListWorkRequestLogsRequest
|
|
392
422
|
* @return ListWorkRequestLogsResponse
|
|
393
423
|
* @throws OciError when an error occurs
|
|
394
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
424
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
395
425
|
*/
|
|
396
426
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
397
427
|
/**
|
|
@@ -429,10 +459,11 @@ export declare class LoggingManagementClient {
|
|
|
429
459
|
/**
|
|
430
460
|
* Lists the work requests in a compartment.
|
|
431
461
|
*
|
|
462
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
432
463
|
* @param ListWorkRequestsRequest
|
|
433
464
|
* @return ListWorkRequestsResponse
|
|
434
465
|
* @throws OciError when an error occurs
|
|
435
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
466
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
436
467
|
*/
|
|
437
468
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
438
469
|
/**
|
|
@@ -471,39 +502,43 @@ export declare class LoggingManagementClient {
|
|
|
471
502
|
* Updates the existing log object with the associated configuration. This call
|
|
472
503
|
* fails if the log object does not exist.
|
|
473
504
|
*
|
|
505
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
474
506
|
* @param UpdateLogRequest
|
|
475
507
|
* @return UpdateLogResponse
|
|
476
508
|
* @throws OciError when an error occurs
|
|
477
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
509
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/UpdateLog.ts.html |here} to see how to use UpdateLog API.
|
|
478
510
|
*/
|
|
479
511
|
updateLog(updateLogRequest: requests.UpdateLogRequest): Promise<responses.UpdateLogResponse>;
|
|
480
512
|
/**
|
|
481
513
|
* Updates the existing log group with the associated configuration. This call
|
|
482
514
|
* fails if the log group does not exist.
|
|
483
515
|
*
|
|
516
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
484
517
|
* @param UpdateLogGroupRequest
|
|
485
518
|
* @return UpdateLogGroupResponse
|
|
486
519
|
* @throws OciError when an error occurs
|
|
487
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
520
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/UpdateLogGroup.ts.html |here} to see how to use UpdateLogGroup API.
|
|
488
521
|
*/
|
|
489
522
|
updateLogGroup(updateLogGroupRequest: requests.UpdateLogGroupRequest): Promise<responses.UpdateLogGroupResponse>;
|
|
490
523
|
/**
|
|
491
524
|
* Updates an existing log saved search.
|
|
492
525
|
*
|
|
526
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
493
527
|
* @param UpdateLogSavedSearchRequest
|
|
494
528
|
* @return UpdateLogSavedSearchResponse
|
|
495
529
|
* @throws OciError when an error occurs
|
|
496
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
530
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/UpdateLogSavedSearch.ts.html |here} to see how to use UpdateLogSavedSearch API.
|
|
497
531
|
*/
|
|
498
532
|
updateLogSavedSearch(updateLogSavedSearchRequest: requests.UpdateLogSavedSearchRequest): Promise<responses.UpdateLogSavedSearchResponse>;
|
|
499
533
|
/**
|
|
500
534
|
* Update an existing unified agent configuration. This call
|
|
501
535
|
* fails if the log group does not exist.
|
|
502
536
|
*
|
|
537
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
503
538
|
* @param UpdateUnifiedAgentConfigurationRequest
|
|
504
539
|
* @return UpdateUnifiedAgentConfigurationResponse
|
|
505
540
|
* @throws OciError when an error occurs
|
|
506
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
541
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/logging/UpdateUnifiedAgentConfiguration.ts.html |here} to see how to use UpdateUnifiedAgentConfiguration API.
|
|
507
542
|
*/
|
|
508
543
|
updateUnifiedAgentConfiguration(updateUnifiedAgentConfigurationRequest: requests.UpdateUnifiedAgentConfigurationRequest): Promise<responses.UpdateUnifiedAgentConfigurationResponse>;
|
|
509
544
|
}
|