oci-loggingsearch 2.127.0 → 2.130.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/index.d.ts +1 -1
- package/index.js +1 -1
- package/lib/client.d.ts +4 -1
- package/lib/client.js +11 -3
- package/lib/client.js.map +1 -1
- package/lib/model/field-info.d.ts +1 -1
- package/lib/model/field-info.js +1 -1
- package/lib/model/index.d.ts +1 -1
- package/lib/model/index.js +1 -1
- package/lib/model/search-logs-details.d.ts +3 -3
- package/lib/model/search-logs-details.js +1 -1
- package/lib/model/search-response.d.ts +1 -1
- package/lib/model/search-response.js +1 -1
- package/lib/model/search-result-summary.d.ts +1 -1
- package/lib/model/search-result-summary.js +1 -1
- package/lib/model/search-result.d.ts +1 -1
- package/lib/model/search-result.js +1 -1
- package/lib/request/index.d.ts +1 -1
- package/lib/request/index.js +1 -1
- package/lib/request/search-logs-request.d.ts +4 -3
- package/lib/response/index.d.ts +1 -1
- package/lib/response/index.js +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Logging Search API
|
|
3
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
3
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
4
4
|
* OpenAPI spec version: 20190909
|
|
5
5
|
*
|
|
6
6
|
*
|
package/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* Logging Search API
|
|
4
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
4
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
5
5
|
* OpenAPI spec version: 20190909
|
|
6
6
|
*
|
|
7
7
|
*
|
package/lib/client.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Logging Search API
|
|
3
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
3
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
4
4
|
* OpenAPI spec version: 20190909
|
|
5
5
|
*
|
|
6
6
|
*
|
|
@@ -33,6 +33,8 @@ export declare class LogSearchClient {
|
|
|
33
33
|
protected _regionId: string;
|
|
34
34
|
protected "_region": common.Region;
|
|
35
35
|
protected _lastSetRegionOrRegionId: string;
|
|
36
|
+
protected _enableDualstackEndpoint: boolean | undefined;
|
|
37
|
+
protected _serviceUsesDualStackByDefault: boolean;
|
|
36
38
|
protected _httpClient: common.HttpClient;
|
|
37
39
|
protected _authProvider: common.AuthenticationDetailsProvider | undefined;
|
|
38
40
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
@@ -67,6 +69,7 @@ export declare class LogSearchClient {
|
|
|
67
69
|
* @param regionId The public region ID.
|
|
68
70
|
*/
|
|
69
71
|
set regionId(regionId: string);
|
|
72
|
+
set enableDualstackEndpoint(enableDualstackEndpoint: boolean);
|
|
70
73
|
/**
|
|
71
74
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
72
75
|
*/
|
package/lib/client.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* Logging Search API
|
|
4
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
4
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
5
5
|
* OpenAPI spec version: 20190909
|
|
6
6
|
*
|
|
7
7
|
*
|
|
@@ -65,6 +65,8 @@ class LogSearchClient {
|
|
|
65
65
|
this.targetService = "LogSearch";
|
|
66
66
|
this._regionId = "";
|
|
67
67
|
this._lastSetRegionOrRegionId = "";
|
|
68
|
+
this._enableDualstackEndpoint = undefined;
|
|
69
|
+
this._serviceUsesDualStackByDefault = false;
|
|
68
70
|
const requestSigner = params.authenticationDetailsProvider
|
|
69
71
|
? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
|
|
70
72
|
: null;
|
|
@@ -161,6 +163,9 @@ class LogSearchClient {
|
|
|
161
163
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(LogSearchClient.serviceEndpointTemplate, regionId, LogSearchClient.endpointServiceName);
|
|
162
164
|
this._lastSetRegionOrRegionId = common.Region.REGION_ID_STRING;
|
|
163
165
|
}
|
|
166
|
+
set enableDualstackEndpoint(enableDualstackEndpoint) {
|
|
167
|
+
this._enableDualstackEndpoint = enableDualstackEndpoint;
|
|
168
|
+
}
|
|
164
169
|
/**
|
|
165
170
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
166
171
|
*/
|
|
@@ -211,12 +216,15 @@ class LogSearchClient {
|
|
|
211
216
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
212
217
|
"opc-request-id": searchLogsRequest.opcRequestId
|
|
213
218
|
};
|
|
219
|
+
let endpoint = common.EndpointBuilder.updateEndpointTemplateForOptions(this.endpoint, this._enableDualstackEndpoint, this._serviceUsesDualStackByDefault);
|
|
220
|
+
const requiredParams = new Set([]);
|
|
221
|
+
endpoint = common.EndpointBuilder.populateServiceParamsInEndpoint(endpoint, pathParams, queryParams, requiredParams);
|
|
214
222
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
215
223
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, searchLogsRequest.retryConfiguration, specRetryConfiguration);
|
|
216
224
|
if (this.logger)
|
|
217
225
|
retrier.logger = this.logger;
|
|
218
226
|
const request = yield oci_common_1.composeRequest({
|
|
219
|
-
baseEndpoint:
|
|
227
|
+
baseEndpoint: endpoint,
|
|
220
228
|
defaultHeaders: this._defaultHeaders,
|
|
221
229
|
path: "/search",
|
|
222
230
|
method: "POST",
|
|
@@ -255,6 +263,6 @@ class LogSearchClient {
|
|
|
255
263
|
}
|
|
256
264
|
}
|
|
257
265
|
exports.LogSearchClient = LogSearchClient;
|
|
258
|
-
LogSearchClient.serviceEndpointTemplate = "https://logging.{region}.oci.{secondLevelDomain}";
|
|
266
|
+
LogSearchClient.serviceEndpointTemplate = "https://logging.{region}.{dualStack?ds.:}oci.{secondLevelDomain}";
|
|
259
267
|
LogSearchClient.endpointServiceName = "";
|
|
260
268
|
//# sourceMappingURL=client.js.map
|
package/lib/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/loggingsearch/lib/client.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,qCAAsC;AAEtC,+CAAiC;AAEjC,2CAKoB;AACpB,MAAM,OAAO,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC;AAEnC,kDAAkD;AAClD,kDAAkD;AAClD,kDAAkD;AAElD,IAAY,gBAAmB;AAA/B,WAAY,gBAAgB;AAAE,CAAC,EAAnB,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAAG;AAC/B;;GAEG;AACH,MAAa,eAAe;
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/loggingsearch/lib/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Logging Search API
|
|
3
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
3
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
4
4
|
* OpenAPI spec version: 20190909
|
|
5
5
|
*
|
|
6
6
|
*
|
package/lib/model/field-info.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* Logging Search API
|
|
4
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
4
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
5
5
|
* OpenAPI spec version: 20190909
|
|
6
6
|
*
|
|
7
7
|
*
|
package/lib/model/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Logging Search API
|
|
3
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
3
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
4
4
|
* OpenAPI spec version: 20190909
|
|
5
5
|
*
|
|
6
6
|
*
|
package/lib/model/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* Logging Search API
|
|
4
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
4
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
5
5
|
* OpenAPI spec version: 20190909
|
|
6
6
|
*
|
|
7
7
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Logging Search API
|
|
3
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
3
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
4
4
|
* OpenAPI spec version: 20190909
|
|
5
5
|
*
|
|
6
6
|
*
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
*/
|
|
16
16
|
export interface SearchLogsDetails {
|
|
17
17
|
/**
|
|
18
|
-
* Start filter log's date and time, in the format defined by
|
|
18
|
+
* Start filter log's date and time, in the format defined by RFC 3339.
|
|
19
19
|
*
|
|
20
20
|
*/
|
|
21
21
|
"timeStart": Date;
|
|
22
22
|
/**
|
|
23
|
-
* End filter log's date and time, in the format defined by
|
|
23
|
+
* End filter log's date and time, in the format defined by RFC 3339.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
"timeEnd": Date;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* Logging Search API
|
|
4
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
4
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
5
5
|
* OpenAPI spec version: 20190909
|
|
6
6
|
*
|
|
7
7
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Logging Search API
|
|
3
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
3
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
4
4
|
* OpenAPI spec version: 20190909
|
|
5
5
|
*
|
|
6
6
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* Logging Search API
|
|
4
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
4
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
5
5
|
* OpenAPI spec version: 20190909
|
|
6
6
|
*
|
|
7
7
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Logging Search API
|
|
3
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
3
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
4
4
|
* OpenAPI spec version: 20190909
|
|
5
5
|
*
|
|
6
6
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* Logging Search API
|
|
4
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
4
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
5
5
|
* OpenAPI spec version: 20190909
|
|
6
6
|
*
|
|
7
7
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Logging Search API
|
|
3
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
3
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
4
4
|
* OpenAPI spec version: 20190909
|
|
5
5
|
*
|
|
6
6
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* Logging Search API
|
|
4
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
4
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
5
5
|
* OpenAPI spec version: 20190909
|
|
6
6
|
*
|
|
7
7
|
*
|
package/lib/request/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Logging Search API
|
|
3
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
3
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
4
4
|
* OpenAPI spec version: 20190909
|
|
5
5
|
*
|
|
6
6
|
*
|
package/lib/request/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* Logging Search API
|
|
4
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
4
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
5
5
|
* OpenAPI spec version: 20190909
|
|
6
6
|
*
|
|
7
7
|
*
|
|
@@ -22,18 +22,19 @@ export interface SearchLogsRequest extends common.BaseRequest {
|
|
|
22
22
|
*/
|
|
23
23
|
"searchLogsDetails": model.SearchLogsDetails;
|
|
24
24
|
/**
|
|
25
|
-
* Unique Oracle-assigned identifier for the request.
|
|
26
|
-
* a particular request, please provide the request ID.
|
|
25
|
+
* Unique Oracle-assigned identifier for the request. The input value can be null but an empty string will return an error.
|
|
26
|
+
* If you need to contact Oracle about a particular request, please provide the request ID.
|
|
27
27
|
*
|
|
28
28
|
*/
|
|
29
29
|
"opcRequestId"?: string;
|
|
30
30
|
/**
|
|
31
|
-
* The maximum number of items to return in a response.
|
|
31
|
+
* The maximum number of items to return in a response.
|
|
32
32
|
*
|
|
33
33
|
*/
|
|
34
34
|
"limit"?: number;
|
|
35
35
|
/**
|
|
36
36
|
* For list pagination. The value of the opc-next-page response header from the previous \"Search\" call.
|
|
37
|
+
* The input value can be null but an empty string will return an error.
|
|
37
38
|
* For important details about how pagination works, see [List Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
38
39
|
*
|
|
39
40
|
*/
|
package/lib/response/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Logging Search API
|
|
3
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
3
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
4
4
|
* OpenAPI spec version: 20190909
|
|
5
5
|
*
|
|
6
6
|
*
|
package/lib/response/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* Logging Search API
|
|
4
|
-
* Search for logs in your compartments, log groups, and log objects.
|
|
4
|
+
* Use the Logging Search API to search for logs in your compartments, log groups, and log objects. For more information, see [Logging Overview](https://docs.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
|
|
5
5
|
* OpenAPI spec version: 20190909
|
|
6
6
|
*
|
|
7
7
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-loggingsearch",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.130.0",
|
|
4
4
|
"description": "OCI NodeJS client for Loggingsearch Service",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.130.0",
|
|
19
|
+
"oci-workrequests": "2.130.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|