oci-logging 2.76.1 → 2.77.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.
Files changed (56) hide show
  1. package/lib/client.d.ts +30 -30
  2. package/lib/client.js +30 -30
  3. package/lib/model/create-log-details.d.ts +2 -2
  4. package/lib/model/create-log-group-details.d.ts +2 -2
  5. package/lib/model/create-log-saved-search-details.d.ts +2 -2
  6. package/lib/model/create-unified-agent-configuration-details.d.ts +2 -2
  7. package/lib/model/log-group-summary.d.ts +2 -2
  8. package/lib/model/log-group.d.ts +2 -2
  9. package/lib/model/log-saved-search-summary.d.ts +2 -2
  10. package/lib/model/log-saved-search.d.ts +2 -2
  11. package/lib/model/log-summary.d.ts +2 -2
  12. package/lib/model/log.d.ts +2 -2
  13. package/lib/model/unified-agent-configuration-summary.d.ts +2 -2
  14. package/lib/model/unified-agent-configuration.d.ts +2 -2
  15. package/lib/model/update-log-details.d.ts +2 -2
  16. package/lib/model/update-log-group-details.d.ts +2 -2
  17. package/lib/model/update-log-saved-search-details.d.ts +2 -2
  18. package/lib/model/update-unified-agent-configuration-details.d.ts +2 -2
  19. package/lib/request/change-log-group-compartment-request.d.ts +2 -2
  20. package/lib/request/change-log-log-group-request.d.ts +2 -2
  21. package/lib/request/change-log-saved-search-compartment-request.d.ts +2 -2
  22. package/lib/request/change-unified-agent-configuration-compartment-request.d.ts +2 -2
  23. package/lib/request/create-log-group-request.d.ts +1 -1
  24. package/lib/request/create-log-request.d.ts +1 -1
  25. package/lib/request/create-log-saved-search-request.d.ts +1 -1
  26. package/lib/request/create-unified-agent-configuration-request.d.ts +1 -1
  27. package/lib/request/delete-log-group-request.d.ts +2 -2
  28. package/lib/request/delete-log-request.d.ts +2 -2
  29. package/lib/request/delete-log-saved-search-request.d.ts +2 -2
  30. package/lib/request/delete-unified-agent-configuration-request.d.ts +2 -2
  31. package/lib/request/delete-work-request-request.d.ts +2 -2
  32. package/lib/request/get-log-group-request.d.ts +1 -1
  33. package/lib/request/get-log-request.d.ts +1 -1
  34. package/lib/request/get-log-saved-search-request.d.ts +1 -1
  35. package/lib/request/get-unified-agent-configuration-request.d.ts +1 -1
  36. package/lib/request/get-work-request-request.d.ts +1 -1
  37. package/lib/request/list-log-groups-request.d.ts +3 -3
  38. package/lib/request/list-log-saved-searches-request.d.ts +3 -3
  39. package/lib/request/list-logs-request.d.ts +3 -3
  40. package/lib/request/list-services-request.d.ts +1 -1
  41. package/lib/request/list-unified-agent-configurations-request.d.ts +3 -3
  42. package/lib/request/list-work-request-errors-request.d.ts +2 -2
  43. package/lib/request/list-work-request-logs-request.d.ts +2 -2
  44. package/lib/request/list-work-requests-request.d.ts +2 -2
  45. package/lib/request/update-log-group-request.d.ts +2 -2
  46. package/lib/request/update-log-request.d.ts +2 -2
  47. package/lib/request/update-log-saved-search-request.d.ts +2 -2
  48. package/lib/request/update-unified-agent-configuration-request.d.ts +2 -2
  49. package/lib/response/create-log-saved-search-response.d.ts +1 -1
  50. package/lib/response/get-log-group-response.d.ts +1 -1
  51. package/lib/response/get-log-response.d.ts +1 -1
  52. package/lib/response/get-log-saved-search-response.d.ts +1 -1
  53. package/lib/response/get-unified-agent-configuration-response.d.ts +1 -1
  54. package/lib/response/get-work-request-response.d.ts +1 -1
  55. package/lib/response/update-log-saved-search-response.d.ts +1 -1
  56. package/package.json +3 -3
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/logging/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/logging/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
16
16
  */
17
17
  export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
18
18
  /**
@@ -26,7 +26,7 @@ export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
26
26
  */
27
27
  "opcRequestId"?: string;
28
28
  /**
29
- * For list pagination. The value of the `opc-next-page` or `opc-previous-page` response header from the previous \"List\" call.
29
+ * For list pagination. The value of the {@code opc-next-page} or {@code opc-previous-page} response header from the previous \"List\" call.
30
30
  * For important details about how pagination works, see [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
31
31
  *
32
32
  */
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/logging/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/logging/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
16
16
  */
17
17
  export interface ListWorkRequestLogsRequest extends common.BaseRequest {
18
18
  /**
@@ -26,7 +26,7 @@ export interface ListWorkRequestLogsRequest extends common.BaseRequest {
26
26
  */
27
27
  "opcRequestId"?: string;
28
28
  /**
29
- * For list pagination. The value of the `opc-next-page` or `opc-previous-page` response header from the previous \"List\" call.
29
+ * For list pagination. The value of the {@code opc-next-page} or {@code opc-previous-page} response header from the previous \"List\" call.
30
30
  * For important details about how pagination works, see [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
31
31
  *
32
32
  */
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/logging/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/logging/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
17
17
  */
18
18
  export interface ListWorkRequestsRequest extends common.BaseRequest {
19
19
  /**
@@ -38,7 +38,7 @@ export interface ListWorkRequestsRequest extends common.BaseRequest {
38
38
  */
39
39
  "opcRequestId"?: string;
40
40
  /**
41
- * For list pagination. The value of the `opc-next-page` or `opc-previous-page` response header from the previous \"List\" call.
41
+ * For list pagination. The value of the {@code opc-next-page} or {@code opc-previous-page} response header from the previous \"List\" call.
42
42
  * For important details about how pagination works, see [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
43
43
  *
44
44
  */
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/logging/UpdateLogGroup.ts.html |here} to see how to use UpdateLogGroupRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/logging/UpdateLogGroup.ts.html |here} to see how to use UpdateLogGroupRequest.
17
17
  */
18
18
  export interface UpdateLogGroupRequest extends common.BaseRequest {
19
19
  /**
@@ -26,7 +26,7 @@ export interface UpdateLogGroupRequest extends common.BaseRequest {
26
26
  "updateLogGroupDetails": model.UpdateLogGroupDetails;
27
27
  /**
28
28
  * For optimistic concurrency control. In the PUT or DELETE call for a
29
- * resource, set the `if-match` parameter to the value of the etag from a
29
+ * resource, set the {@code if-match} parameter to the value of the etag from a
30
30
  * previous GET or POST response for that resource. The resource will be
31
31
  * updated or deleted only if the etag you provide matches the resource's
32
32
  * current etag value.
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/logging/UpdateLog.ts.html |here} to see how to use UpdateLogRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/logging/UpdateLog.ts.html |here} to see how to use UpdateLogRequest.
17
17
  */
18
18
  export interface UpdateLogRequest extends common.BaseRequest {
19
19
  /**
@@ -30,7 +30,7 @@ export interface UpdateLogRequest extends common.BaseRequest {
30
30
  "updateLogDetails": model.UpdateLogDetails;
31
31
  /**
32
32
  * For optimistic concurrency control. In the PUT or DELETE call for a
33
- * resource, set the `if-match` parameter to the value of the etag from a
33
+ * resource, set the {@code if-match} parameter to the value of the etag from a
34
34
  * previous GET or POST response for that resource. The resource will be
35
35
  * updated or deleted only if the etag you provide matches the resource's
36
36
  * current etag value.
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/logging/UpdateLogSavedSearch.ts.html |here} to see how to use UpdateLogSavedSearchRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/logging/UpdateLogSavedSearch.ts.html |here} to see how to use UpdateLogSavedSearchRequest.
17
17
  */
18
18
  export interface UpdateLogSavedSearchRequest extends common.BaseRequest {
19
19
  /**
@@ -27,7 +27,7 @@ export interface UpdateLogSavedSearchRequest extends common.BaseRequest {
27
27
  "updateLogSavedSearchDetails": model.UpdateLogSavedSearchDetails;
28
28
  /**
29
29
  * For optimistic concurrency control. In the PUT or DELETE call for a
30
- * resource, set the `if-match` parameter to the value of the etag from a
30
+ * resource, set the {@code if-match} parameter to the value of the etag from a
31
31
  * previous GET or POST response for that resource. The resource will be
32
32
  * updated or deleted only if the etag you provide matches the resource's
33
33
  * current etag value.
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/logging/UpdateUnifiedAgentConfiguration.ts.html |here} to see how to use UpdateUnifiedAgentConfigurationRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/logging/UpdateUnifiedAgentConfiguration.ts.html |here} to see how to use UpdateUnifiedAgentConfigurationRequest.
17
17
  */
18
18
  export interface UpdateUnifiedAgentConfigurationRequest extends common.BaseRequest {
19
19
  /**
@@ -27,7 +27,7 @@ export interface UpdateUnifiedAgentConfigurationRequest extends common.BaseReque
27
27
  "updateUnifiedAgentConfigurationDetails": model.UpdateUnifiedAgentConfigurationDetails;
28
28
  /**
29
29
  * For optimistic concurrency control. In the PUT or DELETE call for a
30
- * resource, set the `if-match` parameter to the value of the etag from a
30
+ * resource, set the {@code if-match} parameter to the value of the etag from a
31
31
  * previous GET or POST response for that resource. The resource will be
32
32
  * updated or deleted only if the etag you provide matches the resource's
33
33
  * current etag value.
@@ -19,7 +19,7 @@ export interface CreateLogSavedSearchResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  *
24
24
  */
25
25
  "etag": string;
@@ -19,7 +19,7 @@ export interface GetLogGroupResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  *
24
24
  */
25
25
  "etag": string;
@@ -19,7 +19,7 @@ export interface GetLogResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  *
24
24
  */
25
25
  "etag": string;
@@ -19,7 +19,7 @@ export interface GetLogSavedSearchResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  *
24
24
  */
25
25
  "etag": string;
@@ -19,7 +19,7 @@ export interface GetUnifiedAgentConfigurationResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  *
24
24
  */
25
25
  "etag": string;
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  export interface GetWorkRequestResponse {
15
15
  /**
16
- * For optimistic concurrency control. See `if-match`.
16
+ * For optimistic concurrency control. See {@code if-match}.
17
17
  *
18
18
  */
19
19
  "etag": string;
@@ -19,7 +19,7 @@ export interface UpdateLogSavedSearchResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  *
24
24
  */
25
25
  "etag": string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oci-logging",
3
- "version": "2.76.1",
3
+ "version": "2.77.0",
4
4
  "description": "OCI NodeJS client for Logging 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.76.1",
19
- "oci-workrequests": "2.76.1"
18
+ "oci-common": "2.77.0",
19
+ "oci-workrequests": "2.77.0"
20
20
  },
21
21
  "publishConfig": {
22
22
  "registry": "https://registry.npmjs.org"