oci-logging 2.4.0 → 2.6.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 +152 -32
- package/lib/client.js +243 -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,177 +71,198 @@ 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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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
|
/**
|
|
265
|
+
* NOTE: This function is deprecated in favor of listLogGroupsRecordIterator function.
|
|
242
266
|
* Creates a new async iterator which will iterate over the models.LogGroupSummary objects
|
|
243
267
|
* contained in responses from the listLogGroups operation. This iterator will fetch more data from the
|
|
244
268
|
* server as needed.
|
|
@@ -247,39 +271,59 @@ export declare class LoggingManagementClient {
|
|
|
247
271
|
*/
|
|
248
272
|
listAllLogGroups(request: requests.ListLogGroupsRequest): AsyncIterableIterator<model.LogGroupSummary>;
|
|
249
273
|
/**
|
|
274
|
+
* NOTE: This function is deprecated in favor of listLogGroupsResponseIterator function.
|
|
250
275
|
* Creates a new async iterator which will iterate over the responses received from the listLogGroups operation. This iterator
|
|
251
276
|
* will fetch more data from the server as needed.
|
|
252
277
|
*
|
|
253
278
|
* @param request a request which can be sent to the service operation
|
|
254
279
|
*/
|
|
255
280
|
listAllLogGroupsResponses(request: requests.ListLogGroupsRequest): AsyncIterableIterator<responses.ListLogGroupsResponse>;
|
|
281
|
+
/**
|
|
282
|
+
* Creates a new async iterator which will iterate over the models.LogGroupSummary objects
|
|
283
|
+
* contained in responses from the listLogGroups operation. This iterator will fetch more data from the
|
|
284
|
+
* server as needed.
|
|
285
|
+
*
|
|
286
|
+
* @param request a request which can be sent to the service operation
|
|
287
|
+
*/
|
|
288
|
+
listLogGroupsRecordIterator(request: requests.ListLogGroupsRequest): AsyncIterableIterator<model.LogGroupSummary>;
|
|
289
|
+
/**
|
|
290
|
+
* Creates a new async iterator which will iterate over the responses received from the listLogGroups operation. This iterator
|
|
291
|
+
* will fetch more data from the server as needed.
|
|
292
|
+
*
|
|
293
|
+
* @param request a request which can be sent to the service operation
|
|
294
|
+
*/
|
|
295
|
+
listLogGroupsResponseIterator(request: requests.ListLogGroupsRequest): AsyncIterableIterator<responses.ListLogGroupsResponse>;
|
|
256
296
|
/**
|
|
257
297
|
* Lists Logging Included Searches for this compartment.
|
|
258
298
|
*
|
|
299
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
259
300
|
* @param ListLogIncludedSearchesRequest
|
|
260
301
|
* @return ListLogIncludedSearchesResponse
|
|
261
302
|
* @throws OciError when an error occurs
|
|
262
|
-
* @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.6.0/logging/ListLogIncludedSearches.ts.html |here} to see how to use ListLogIncludedSearches API.
|
|
263
304
|
*/
|
|
264
305
|
listLogIncludedSearches(listLogIncludedSearchesRequest: requests.ListLogIncludedSearchesRequest): Promise<responses.ListLogIncludedSearchesResponse>;
|
|
265
306
|
/**
|
|
266
307
|
* Lists Logging Saved Searches for this compartment.
|
|
267
308
|
*
|
|
309
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
268
310
|
* @param ListLogSavedSearchesRequest
|
|
269
311
|
* @return ListLogSavedSearchesResponse
|
|
270
312
|
* @throws OciError when an error occurs
|
|
271
|
-
* @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.6.0/logging/ListLogSavedSearches.ts.html |here} to see how to use ListLogSavedSearches API.
|
|
272
314
|
*/
|
|
273
315
|
listLogSavedSearches(listLogSavedSearchesRequest: requests.ListLogSavedSearchesRequest): Promise<responses.ListLogSavedSearchesResponse>;
|
|
274
316
|
/**
|
|
275
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.
|
|
276
319
|
* @param ListLogsRequest
|
|
277
320
|
* @return ListLogsResponse
|
|
278
321
|
* @throws OciError when an error occurs
|
|
279
|
-
* @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.6.0/logging/ListLogs.ts.html |here} to see how to use ListLogs API.
|
|
280
323
|
*/
|
|
281
324
|
listLogs(listLogsRequest: requests.ListLogsRequest): Promise<responses.ListLogsResponse>;
|
|
282
325
|
/**
|
|
326
|
+
* NOTE: This function is deprecated in favor of listLogsRecordIterator function.
|
|
283
327
|
* Creates a new async iterator which will iterate over the models.LogSummary objects
|
|
284
328
|
* contained in responses from the listLogs operation. This iterator will fetch more data from the
|
|
285
329
|
* server as needed.
|
|
@@ -288,38 +332,58 @@ export declare class LoggingManagementClient {
|
|
|
288
332
|
*/
|
|
289
333
|
listAllLogs(request: requests.ListLogsRequest): AsyncIterableIterator<model.LogSummary>;
|
|
290
334
|
/**
|
|
335
|
+
* NOTE: This function is deprecated in favor of listLogsResponseIterator function.
|
|
291
336
|
* Creates a new async iterator which will iterate over the responses received from the listLogs operation. This iterator
|
|
292
337
|
* will fetch more data from the server as needed.
|
|
293
338
|
*
|
|
294
339
|
* @param request a request which can be sent to the service operation
|
|
295
340
|
*/
|
|
296
341
|
listAllLogsResponses(request: requests.ListLogsRequest): AsyncIterableIterator<responses.ListLogsResponse>;
|
|
342
|
+
/**
|
|
343
|
+
* Creates a new async iterator which will iterate over the models.LogSummary objects
|
|
344
|
+
* contained in responses from the listLogs operation. This iterator will fetch more data from the
|
|
345
|
+
* server as needed.
|
|
346
|
+
*
|
|
347
|
+
* @param request a request which can be sent to the service operation
|
|
348
|
+
*/
|
|
349
|
+
listLogsRecordIterator(request: requests.ListLogsRequest): AsyncIterableIterator<model.LogSummary>;
|
|
350
|
+
/**
|
|
351
|
+
* Creates a new async iterator which will iterate over the responses received from the listLogs operation. This iterator
|
|
352
|
+
* will fetch more data from the server as needed.
|
|
353
|
+
*
|
|
354
|
+
* @param request a request which can be sent to the service operation
|
|
355
|
+
*/
|
|
356
|
+
listLogsResponseIterator(request: requests.ListLogsRequest): AsyncIterableIterator<responses.ListLogsResponse>;
|
|
297
357
|
/**
|
|
298
358
|
* Lists all services that support logging.
|
|
359
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
299
360
|
* @param ListServicesRequest
|
|
300
361
|
* @return ListServicesResponse
|
|
301
362
|
* @throws OciError when an error occurs
|
|
302
|
-
* @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.6.0/logging/ListServices.ts.html |here} to see how to use ListServices API.
|
|
303
364
|
*/
|
|
304
365
|
listServices(listServicesRequest: requests.ListServicesRequest): Promise<responses.ListServicesResponse>;
|
|
305
366
|
/**
|
|
306
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.
|
|
307
369
|
* @param ListUnifiedAgentConfigurationsRequest
|
|
308
370
|
* @return ListUnifiedAgentConfigurationsResponse
|
|
309
371
|
* @throws OciError when an error occurs
|
|
310
|
-
* @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.6.0/logging/ListUnifiedAgentConfigurations.ts.html |here} to see how to use ListUnifiedAgentConfigurations API.
|
|
311
373
|
*/
|
|
312
374
|
listUnifiedAgentConfigurations(listUnifiedAgentConfigurationsRequest: requests.ListUnifiedAgentConfigurationsRequest): Promise<responses.ListUnifiedAgentConfigurationsResponse>;
|
|
313
375
|
/**
|
|
314
376
|
* Return a list of errors for a given work request.
|
|
315
377
|
*
|
|
378
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
316
379
|
* @param ListWorkRequestErrorsRequest
|
|
317
380
|
* @return ListWorkRequestErrorsResponse
|
|
318
381
|
* @throws OciError when an error occurs
|
|
319
|
-
* @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.6.0/logging/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
320
383
|
*/
|
|
321
384
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
322
385
|
/**
|
|
386
|
+
* NOTE: This function is deprecated in favor of listWorkRequestErrorsRecordIterator function.
|
|
323
387
|
* Creates a new async iterator which will iterate over the models.WorkRequestError objects
|
|
324
388
|
* contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
|
|
325
389
|
* server as needed.
|
|
@@ -328,22 +392,40 @@ export declare class LoggingManagementClient {
|
|
|
328
392
|
*/
|
|
329
393
|
listAllWorkRequestErrors(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<model.WorkRequestError>;
|
|
330
394
|
/**
|
|
395
|
+
* NOTE: This function is deprecated in favor of listWorkRequestErrorsResponseIterator function.
|
|
331
396
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
|
|
332
397
|
* will fetch more data from the server as needed.
|
|
333
398
|
*
|
|
334
399
|
* @param request a request which can be sent to the service operation
|
|
335
400
|
*/
|
|
336
401
|
listAllWorkRequestErrorsResponses(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
|
|
402
|
+
/**
|
|
403
|
+
* Creates a new async iterator which will iterate over the models.WorkRequestError objects
|
|
404
|
+
* contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
|
|
405
|
+
* server as needed.
|
|
406
|
+
*
|
|
407
|
+
* @param request a request which can be sent to the service operation
|
|
408
|
+
*/
|
|
409
|
+
listWorkRequestErrorsRecordIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<model.WorkRequestError>;
|
|
410
|
+
/**
|
|
411
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
|
|
412
|
+
* will fetch more data from the server as needed.
|
|
413
|
+
*
|
|
414
|
+
* @param request a request which can be sent to the service operation
|
|
415
|
+
*/
|
|
416
|
+
listWorkRequestErrorsResponseIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
|
|
337
417
|
/**
|
|
338
418
|
* Return a list of logs for a given work request.
|
|
339
419
|
*
|
|
420
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
340
421
|
* @param ListWorkRequestLogsRequest
|
|
341
422
|
* @return ListWorkRequestLogsResponse
|
|
342
423
|
* @throws OciError when an error occurs
|
|
343
|
-
* @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.6.0/logging/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
344
425
|
*/
|
|
345
426
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
346
427
|
/**
|
|
428
|
+
* NOTE: This function is deprecated in favor of listWorkRequestLogsRecordIterator function.
|
|
347
429
|
* Creates a new async iterator which will iterate over the models.WorkRequestLog objects
|
|
348
430
|
* contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
|
|
349
431
|
* server as needed.
|
|
@@ -352,22 +434,40 @@ export declare class LoggingManagementClient {
|
|
|
352
434
|
*/
|
|
353
435
|
listAllWorkRequestLogs(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<model.WorkRequestLog>;
|
|
354
436
|
/**
|
|
437
|
+
* NOTE: This function is deprecated in favor of listWorkRequestLogsResponseIterator function.
|
|
355
438
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
|
|
356
439
|
* will fetch more data from the server as needed.
|
|
357
440
|
*
|
|
358
441
|
* @param request a request which can be sent to the service operation
|
|
359
442
|
*/
|
|
360
443
|
listAllWorkRequestLogsResponses(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<responses.ListWorkRequestLogsResponse>;
|
|
444
|
+
/**
|
|
445
|
+
* Creates a new async iterator which will iterate over the models.WorkRequestLog objects
|
|
446
|
+
* contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
|
|
447
|
+
* server as needed.
|
|
448
|
+
*
|
|
449
|
+
* @param request a request which can be sent to the service operation
|
|
450
|
+
*/
|
|
451
|
+
listWorkRequestLogsRecordIterator(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<model.WorkRequestLog>;
|
|
452
|
+
/**
|
|
453
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
|
|
454
|
+
* will fetch more data from the server as needed.
|
|
455
|
+
*
|
|
456
|
+
* @param request a request which can be sent to the service operation
|
|
457
|
+
*/
|
|
458
|
+
listWorkRequestLogsResponseIterator(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<responses.ListWorkRequestLogsResponse>;
|
|
361
459
|
/**
|
|
362
460
|
* Lists the work requests in a compartment.
|
|
363
461
|
*
|
|
462
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
364
463
|
* @param ListWorkRequestsRequest
|
|
365
464
|
* @return ListWorkRequestsResponse
|
|
366
465
|
* @throws OciError when an error occurs
|
|
367
|
-
* @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.6.0/logging/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
368
467
|
*/
|
|
369
468
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
370
469
|
/**
|
|
470
|
+
* NOTE: This function is deprecated in favor of listWorkRequestsRecordIterator function.
|
|
371
471
|
* Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
|
|
372
472
|
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
|
|
373
473
|
* server as needed.
|
|
@@ -376,49 +476,69 @@ export declare class LoggingManagementClient {
|
|
|
376
476
|
*/
|
|
377
477
|
listAllWorkRequests(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequestSummary>;
|
|
378
478
|
/**
|
|
479
|
+
* NOTE: This function is deprecated in favor of listWorkRequestsResponseIterator function.
|
|
379
480
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
|
|
380
481
|
* will fetch more data from the server as needed.
|
|
381
482
|
*
|
|
382
483
|
* @param request a request which can be sent to the service operation
|
|
383
484
|
*/
|
|
384
485
|
listAllWorkRequestsResponses(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
486
|
+
/**
|
|
487
|
+
* Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
|
|
488
|
+
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
|
|
489
|
+
* server as needed.
|
|
490
|
+
*
|
|
491
|
+
* @param request a request which can be sent to the service operation
|
|
492
|
+
*/
|
|
493
|
+
listWorkRequestsRecordIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequestSummary>;
|
|
494
|
+
/**
|
|
495
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
|
|
496
|
+
* will fetch more data from the server as needed.
|
|
497
|
+
*
|
|
498
|
+
* @param request a request which can be sent to the service operation
|
|
499
|
+
*/
|
|
500
|
+
listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
385
501
|
/**
|
|
386
502
|
* Updates the existing log object with the associated configuration. This call
|
|
387
503
|
* fails if the log object does not exist.
|
|
388
504
|
*
|
|
505
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
389
506
|
* @param UpdateLogRequest
|
|
390
507
|
* @return UpdateLogResponse
|
|
391
508
|
* @throws OciError when an error occurs
|
|
392
|
-
* @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.6.0/logging/UpdateLog.ts.html |here} to see how to use UpdateLog API.
|
|
393
510
|
*/
|
|
394
511
|
updateLog(updateLogRequest: requests.UpdateLogRequest): Promise<responses.UpdateLogResponse>;
|
|
395
512
|
/**
|
|
396
513
|
* Updates the existing log group with the associated configuration. This call
|
|
397
514
|
* fails if the log group does not exist.
|
|
398
515
|
*
|
|
516
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
399
517
|
* @param UpdateLogGroupRequest
|
|
400
518
|
* @return UpdateLogGroupResponse
|
|
401
519
|
* @throws OciError when an error occurs
|
|
402
|
-
* @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.6.0/logging/UpdateLogGroup.ts.html |here} to see how to use UpdateLogGroup API.
|
|
403
521
|
*/
|
|
404
522
|
updateLogGroup(updateLogGroupRequest: requests.UpdateLogGroupRequest): Promise<responses.UpdateLogGroupResponse>;
|
|
405
523
|
/**
|
|
406
524
|
* Updates an existing log saved search.
|
|
407
525
|
*
|
|
526
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
408
527
|
* @param UpdateLogSavedSearchRequest
|
|
409
528
|
* @return UpdateLogSavedSearchResponse
|
|
410
529
|
* @throws OciError when an error occurs
|
|
411
|
-
* @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.6.0/logging/UpdateLogSavedSearch.ts.html |here} to see how to use UpdateLogSavedSearch API.
|
|
412
531
|
*/
|
|
413
532
|
updateLogSavedSearch(updateLogSavedSearchRequest: requests.UpdateLogSavedSearchRequest): Promise<responses.UpdateLogSavedSearchResponse>;
|
|
414
533
|
/**
|
|
415
534
|
* Update an existing unified agent configuration. This call
|
|
416
535
|
* fails if the log group does not exist.
|
|
417
536
|
*
|
|
537
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
418
538
|
* @param UpdateUnifiedAgentConfigurationRequest
|
|
419
539
|
* @return UpdateUnifiedAgentConfigurationResponse
|
|
420
540
|
* @throws OciError when an error occurs
|
|
421
|
-
* @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.6.0/logging/UpdateUnifiedAgentConfiguration.ts.html |here} to see how to use UpdateUnifiedAgentConfiguration API.
|
|
422
542
|
*/
|
|
423
543
|
updateUnifiedAgentConfiguration(updateUnifiedAgentConfigurationRequest: requests.UpdateUnifiedAgentConfigurationRequest): Promise<responses.UpdateUnifiedAgentConfigurationResponse>;
|
|
424
544
|
}
|