oci-analytics 2.76.1 → 2.77.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +30 -24
- package/lib/client.js +32 -23
- package/lib/client.js.map +1 -1
- package/lib/model/analytics-instance-summary.d.ts +1 -1
- package/lib/model/analytics-instance.d.ts +3 -3
- package/lib/model/create-analytics-instance-details.d.ts +2 -2
- package/lib/model/sort-by.d.ts +1 -1
- package/lib/model/sort-by.js +1 -1
- package/lib/model/sort-order.d.ts +1 -1
- package/lib/model/sort-order.js +1 -1
- package/lib/model/update-analytics-instance-details.d.ts +2 -2
- package/lib/model/work-request-error.d.ts +1 -1
- package/lib/model/work-request-log.d.ts +1 -1
- package/lib/model/work-request-sort-by.d.ts +1 -1
- package/lib/model/work-request-sort-by.js +1 -1
- package/lib/model/work-request-summary.d.ts +3 -3
- package/lib/model/work-request.d.ts +3 -3
- package/lib/request/change-analytics-instance-compartment-request.d.ts +2 -2
- package/lib/request/change-analytics-instance-network-endpoint-request.d.ts +2 -2
- package/lib/request/create-analytics-instance-request.d.ts +1 -1
- package/lib/request/create-private-access-channel-request.d.ts +1 -1
- package/lib/request/create-vanity-url-request.d.ts +1 -1
- package/lib/request/delete-analytics-instance-request.d.ts +2 -2
- package/lib/request/delete-private-access-channel-request.d.ts +2 -2
- package/lib/request/delete-vanity-url-request.d.ts +2 -2
- package/lib/request/delete-work-request-request.d.ts +2 -2
- package/lib/request/get-analytics-instance-request.d.ts +1 -1
- package/lib/request/get-private-access-channel-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-analytics-instances-request.d.ts +5 -5
- package/lib/request/list-work-request-errors-request.d.ts +3 -3
- package/lib/request/list-work-request-logs-request.d.ts +3 -3
- package/lib/request/list-work-requests-request.d.ts +4 -4
- package/lib/request/scale-analytics-instance-request.d.ts +2 -2
- package/lib/request/set-kms-key-request.d.ts +2 -2
- package/lib/request/start-analytics-instance-request.d.ts +2 -2
- package/lib/request/stop-analytics-instance-request.d.ts +2 -2
- package/lib/request/update-analytics-instance-request.d.ts +2 -2
- package/lib/request/update-private-access-channel-request.d.ts +2 -2
- package/lib/request/update-vanity-url-request.d.ts +2 -2
- package/lib/response/create-analytics-instance-response.d.ts +1 -1
- package/lib/response/get-analytics-instance-response.d.ts +1 -1
- package/lib/response/get-private-access-channel-response.d.ts +1 -1
- package/lib/response/get-work-request-response.d.ts +1 -1
- package/lib/response/update-analytics-instance-response.d.ts +1 -1
- package/package.json +3 -3
|
@@ -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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/analytics/ListAnalyticsInstances.ts.html |here} to see how to use ListAnalyticsInstancesRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListAnalyticsInstancesRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -55,12 +55,12 @@ export interface ListAnalyticsInstancesRequest extends common.BaseRequest {
|
|
|
55
55
|
* \"List\" call. For important details about how pagination works, see
|
|
56
56
|
* [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
57
57
|
* <p>
|
|
58
|
-
Example:
|
|
58
|
+
Example: {@code 50}
|
|
59
59
|
*
|
|
60
60
|
*/
|
|
61
61
|
"limit"?: number;
|
|
62
62
|
/**
|
|
63
|
-
* For list pagination. The value of the
|
|
63
|
+
* For list pagination. The value of the {@code opc-next-page} response header from the previous \"List\"
|
|
64
64
|
* call. For important details about how pagination works, see
|
|
65
65
|
* [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
66
66
|
*
|
|
@@ -68,12 +68,12 @@ export interface ListAnalyticsInstancesRequest extends common.BaseRequest {
|
|
|
68
68
|
"page"?: string;
|
|
69
69
|
/**
|
|
70
70
|
* The field to sort by (one column only). Default sort order is
|
|
71
|
-
* ascending exception of
|
|
71
|
+
* ascending exception of {@code timeCreated} column (descending).
|
|
72
72
|
*
|
|
73
73
|
*/
|
|
74
74
|
"sortBy"?: model.SortBy;
|
|
75
75
|
/**
|
|
76
|
-
* The sort order to use, either ascending (
|
|
76
|
+
* The sort order to use, either ascending ({@code ASC}) or descending ({@code DESC}).
|
|
77
77
|
*
|
|
78
78
|
*/
|
|
79
79
|
"sortOrder"?: model.SortOrder;
|
|
@@ -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.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/analytics/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -31,12 +31,12 @@ export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
|
|
|
31
31
|
* \"List\" call. For important details about how pagination works, see
|
|
32
32
|
* [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
33
33
|
* <p>
|
|
34
|
-
Example:
|
|
34
|
+
Example: {@code 50}
|
|
35
35
|
*
|
|
36
36
|
*/
|
|
37
37
|
"limit"?: number;
|
|
38
38
|
/**
|
|
39
|
-
* For list pagination. The value of the
|
|
39
|
+
* For list pagination. The value of the {@code opc-next-page} response header from the previous \"List\"
|
|
40
40
|
* call. For important details about how pagination works, see
|
|
41
41
|
* [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
42
42
|
*
|
|
@@ -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.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/analytics/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestLogsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -31,12 +31,12 @@ export interface ListWorkRequestLogsRequest extends common.BaseRequest {
|
|
|
31
31
|
* \"List\" call. For important details about how pagination works, see
|
|
32
32
|
* [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
33
33
|
* <p>
|
|
34
|
-
Example:
|
|
34
|
+
Example: {@code 50}
|
|
35
35
|
*
|
|
36
36
|
*/
|
|
37
37
|
"limit"?: number;
|
|
38
38
|
/**
|
|
39
|
-
* For list pagination. The value of the
|
|
39
|
+
* For list pagination. The value of the {@code opc-next-page} response header from the previous \"List\"
|
|
40
40
|
* call. For important details about how pagination works, see
|
|
41
41
|
* [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
42
42
|
*
|
|
@@ -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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/analytics/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -41,12 +41,12 @@ export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
|
41
41
|
* \"List\" call. For important details about how pagination works, see
|
|
42
42
|
* [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
43
43
|
* <p>
|
|
44
|
-
Example:
|
|
44
|
+
Example: {@code 50}
|
|
45
45
|
*
|
|
46
46
|
*/
|
|
47
47
|
"limit"?: number;
|
|
48
48
|
/**
|
|
49
|
-
* For list pagination. The value of the
|
|
49
|
+
* For list pagination. The value of the {@code opc-next-page} response header from the previous \"List\"
|
|
50
50
|
* call. For important details about how pagination works, see
|
|
51
51
|
* [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
52
52
|
*
|
|
@@ -58,7 +58,7 @@ export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
|
58
58
|
*/
|
|
59
59
|
"sortBy"?: model.WorkRequestSortBy;
|
|
60
60
|
/**
|
|
61
|
-
* The sort order to use, either ascending (
|
|
61
|
+
* The sort order to use, either ascending ({@code ASC}) or descending ({@code DESC}).
|
|
62
62
|
*
|
|
63
63
|
*/
|
|
64
64
|
"sortOrder"?: model.SortOrder;
|
|
@@ -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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/analytics/ScaleAnalyticsInstance.ts.html |here} to see how to use ScaleAnalyticsInstanceRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ScaleAnalyticsInstanceRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -27,7 +27,7 @@ export interface ScaleAnalyticsInstanceRequest extends common.BaseRequest {
|
|
|
27
27
|
*/
|
|
28
28
|
"scaleAnalyticsInstanceDetails": model.ScaleAnalyticsInstanceDetails;
|
|
29
29
|
/**
|
|
30
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
30
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
31
31
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
32
32
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
33
33
|
*
|
|
@@ -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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/analytics/SetKmsKey.ts.html |here} to see how to use SetKmsKeyRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface SetKmsKeyRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -27,7 +27,7 @@ export interface SetKmsKeyRequest extends common.BaseRequest {
|
|
|
27
27
|
*/
|
|
28
28
|
"setKmsKeyDetails": model.SetKmsKeyDetails;
|
|
29
29
|
/**
|
|
30
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
30
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
31
31
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
32
32
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
33
33
|
*
|
|
@@ -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.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/analytics/StartAnalyticsInstance.ts.html |here} to see how to use StartAnalyticsInstanceRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface StartAnalyticsInstanceRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -21,7 +21,7 @@ export interface StartAnalyticsInstanceRequest extends common.BaseRequest {
|
|
|
21
21
|
*/
|
|
22
22
|
"analyticsInstanceId": string;
|
|
23
23
|
/**
|
|
24
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
24
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
25
25
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
26
26
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
27
27
|
*
|
|
@@ -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.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/analytics/StopAnalyticsInstance.ts.html |here} to see how to use StopAnalyticsInstanceRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface StopAnalyticsInstanceRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -21,7 +21,7 @@ export interface StopAnalyticsInstanceRequest extends common.BaseRequest {
|
|
|
21
21
|
*/
|
|
22
22
|
"analyticsInstanceId": string;
|
|
23
23
|
/**
|
|
24
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
24
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
25
25
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
26
26
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
27
27
|
*
|
|
@@ -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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/analytics/UpdateAnalyticsInstance.ts.html |here} to see how to use UpdateAnalyticsInstanceRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateAnalyticsInstanceRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -28,7 +28,7 @@ export interface UpdateAnalyticsInstanceRequest extends common.BaseRequest {
|
|
|
28
28
|
*/
|
|
29
29
|
"updateAnalyticsInstanceDetails": model.UpdateAnalyticsInstanceDetails;
|
|
30
30
|
/**
|
|
31
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
31
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
32
32
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
33
33
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
34
34
|
*
|
|
@@ -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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/analytics/UpdatePrivateAccessChannel.ts.html |here} to see how to use UpdatePrivateAccessChannelRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdatePrivateAccessChannelRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -32,7 +32,7 @@ export interface UpdatePrivateAccessChannelRequest extends common.BaseRequest {
|
|
|
32
32
|
*/
|
|
33
33
|
"updatePrivateAccessChannelDetails": model.UpdatePrivateAccessChannelDetails;
|
|
34
34
|
/**
|
|
35
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
35
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
36
36
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
37
37
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
38
38
|
*
|
|
@@ -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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/analytics/UpdateVanityUrl.ts.html |here} to see how to use UpdateVanityUrlRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateVanityUrlRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -32,7 +32,7 @@ export interface UpdateVanityUrlRequest extends common.BaseRequest {
|
|
|
32
32
|
*/
|
|
33
33
|
"updateVanityUrlDetails": model.UpdateVanityUrlDetails;
|
|
34
34
|
/**
|
|
35
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
35
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
36
36
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
37
37
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
38
38
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-analytics",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.77.1",
|
|
4
4
|
"description": "OCI NodeJS client for Analytics 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.77.1",
|
|
19
|
+
"oci-workrequests": "2.77.1"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|