oci-globallydistributeddatabase 2.88.0 → 2.88.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 +39 -29
- package/lib/client.js +96 -30
- package/lib/client.js.map +1 -1
- package/lib/model/create-dedicated-sharded-database.d.ts +13 -0
- package/lib/model/create-dedicated-sharded-database.js.map +1 -1
- package/lib/model/dedicated-sharded-database-summary.d.ts +13 -0
- package/lib/model/dedicated-sharded-database-summary.js.map +1 -1
- package/lib/model/dedicated-sharded-database.d.ts +24 -0
- package/lib/model/dedicated-sharded-database.js +10 -0
- package/lib/model/dedicated-sharded-database.js.map +1 -1
- package/lib/model/operation-type.d.ts +12 -0
- package/lib/model/operation-type.js +12 -0
- package/lib/model/operation-type.js.map +1 -1
- package/lib/model/private-endpoint.d.ts +4 -0
- package/lib/model/private-endpoint.js.map +1 -1
- package/lib/request/change-private-endpoint-compartment-request.d.ts +1 -1
- package/lib/request/change-sharded-database-compartment-request.d.ts +1 -1
- package/lib/request/configure-sharded-database-gsms-request.d.ts +1 -1
- package/lib/request/configure-sharding-request.d.ts +1 -1
- package/lib/request/create-private-endpoint-request.d.ts +1 -1
- package/lib/request/create-sharded-database-request.d.ts +1 -1
- package/lib/request/delete-private-endpoint-request.d.ts +1 -1
- package/lib/request/delete-sharded-database-request.d.ts +1 -1
- package/lib/request/download-gsm-certificate-signing-request-request.d.ts +1 -1
- package/lib/request/fetch-connection-string-request.d.ts +1 -1
- package/lib/request/fetch-shardable-cloud-autonomous-vm-clusters-request.d.ts +1 -1
- package/lib/request/generate-gsm-certificate-signing-request-request.d.ts +5 -1
- package/lib/request/generate-wallet-request.d.ts +1 -1
- package/lib/request/get-private-endpoint-request.d.ts +10 -1
- package/lib/request/get-sharded-database-request.d.ts +10 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/index.d.ts +2 -0
- package/lib/request/list-private-endpoints-request.d.ts +1 -1
- package/lib/request/list-sharded-databases-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/patch-sharded-database-request.d.ts +1 -1
- package/lib/request/prevalidate-sharded-database-request.d.ts +1 -1
- package/lib/request/reinstate-proxy-instance-request.d.ts +44 -0
- package/lib/request/reinstate-proxy-instance-request.js +15 -0
- package/lib/request/reinstate-proxy-instance-request.js.map +1 -0
- package/lib/request/start-sharded-database-request.d.ts +1 -1
- package/lib/request/stop-sharded-database-request.d.ts +1 -1
- package/lib/request/update-private-endpoint-request.d.ts +1 -1
- package/lib/request/update-sharded-database-request.d.ts +1 -1
- package/lib/request/upload-signed-certificate-and-generate-wallet-request.d.ts +1 -1
- package/lib/request/validate-network-request.d.ts +1 -1
- package/lib/response/index.d.ts +2 -0
- package/lib/response/reinstate-proxy-instance-response.d.ts +25 -0
- package/lib/response/reinstate-proxy-instance-response.js +15 -0
- package/lib/response/reinstate-proxy-instance-response.js.map +1 -0
- package/package.json +3 -3
|
@@ -12,13 +12,22 @@
|
|
|
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.88.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpointRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetPrivateEndpointRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
19
|
* Oracle Sharded Database PrivateEndpoint identifier
|
|
20
20
|
*/
|
|
21
21
|
"privateEndpointId": string;
|
|
22
|
+
/**
|
|
23
|
+
* For conditional requests. In the GET call for a resource, set the
|
|
24
|
+
* {@code If-None-Match} header to the value of the ETag from a previous GET (or
|
|
25
|
+
* POST or PUT) response for that resource. The server will return with
|
|
26
|
+
* either a 304 Not Modified response if the resource has not changed, or a
|
|
27
|
+
* 200 OK response with the updated representation.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
"ifNoneMatch"?: string;
|
|
22
31
|
/**
|
|
23
32
|
* The client request ID for tracing.
|
|
24
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.88.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/GetShardedDatabase.ts.html |here} to see how to use GetShardedDatabaseRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetShardedDatabaseRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -25,6 +25,15 @@ export interface GetShardedDatabaseRequest extends common.BaseRequest {
|
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
"metadata"?: string;
|
|
28
|
+
/**
|
|
29
|
+
* For conditional requests. In the GET call for a resource, set the
|
|
30
|
+
* {@code If-None-Match} header to the value of the ETag from a previous GET (or
|
|
31
|
+
* POST or PUT) response for that resource. The server will return with
|
|
32
|
+
* either a 304 Not Modified response if the resource has not changed, or a
|
|
33
|
+
* 200 OK response with the updated representation.
|
|
34
|
+
*
|
|
35
|
+
*/
|
|
36
|
+
"ifNoneMatch"?: string;
|
|
28
37
|
/**
|
|
29
38
|
* The client request ID for tracing.
|
|
30
39
|
*/
|
|
@@ -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.88.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetWorkRequestRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
package/lib/request/index.d.ts
CHANGED
|
@@ -56,6 +56,8 @@ import * as PatchShardedDatabaseRequest from "./patch-sharded-database-request";
|
|
|
56
56
|
export import PatchShardedDatabaseRequest = PatchShardedDatabaseRequest.PatchShardedDatabaseRequest;
|
|
57
57
|
import * as PrevalidateShardedDatabaseRequest from "./prevalidate-sharded-database-request";
|
|
58
58
|
export import PrevalidateShardedDatabaseRequest = PrevalidateShardedDatabaseRequest.PrevalidateShardedDatabaseRequest;
|
|
59
|
+
import * as ReinstateProxyInstanceRequest from "./reinstate-proxy-instance-request";
|
|
60
|
+
export import ReinstateProxyInstanceRequest = ReinstateProxyInstanceRequest.ReinstateProxyInstanceRequest;
|
|
59
61
|
import * as StartShardedDatabaseRequest from "./start-sharded-database-request";
|
|
60
62
|
export import StartShardedDatabaseRequest = StartShardedDatabaseRequest.StartShardedDatabaseRequest;
|
|
61
63
|
import * as StopShardedDatabaseRequest from "./stop-sharded-database-request";
|
|
@@ -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.88.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpointsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListPrivateEndpointsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.88.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/ListShardedDatabases.ts.html |here} to see how to use ListShardedDatabasesRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListShardedDatabasesRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.88.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.88.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListWorkRequestLogsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.88.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.88.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/PatchShardedDatabase.ts.html |here} to see how to use PatchShardedDatabaseRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface PatchShardedDatabaseRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.88.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/PrevalidateShardedDatabase.ts.html |here} to see how to use PrevalidateShardedDatabaseRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface PrevalidateShardedDatabaseRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20230301
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import common = require("oci-common");
|
|
14
|
+
/**
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/ReinstateProxyInstance.ts.html |here} to see how to use ReinstateProxyInstanceRequest.
|
|
16
|
+
*/
|
|
17
|
+
export interface ReinstateProxyInstanceRequest extends common.BaseRequest {
|
|
18
|
+
/**
|
|
19
|
+
* Oracle Sharded Database PrivateEndpoint identifier
|
|
20
|
+
*/
|
|
21
|
+
"privateEndpointId": string;
|
|
22
|
+
/**
|
|
23
|
+
* The client request ID for tracing.
|
|
24
|
+
*/
|
|
25
|
+
"opcRequestId"?: string;
|
|
26
|
+
/**
|
|
27
|
+
* For optimistic concurrency control. In the PUT or DELETE call
|
|
28
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
29
|
+
* etag from a previous GET or POST response for that resource.
|
|
30
|
+
* The resource will be updated or deleted only if the etag you
|
|
31
|
+
* provide matches the resource's current etag value.
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
"ifMatch"?: string;
|
|
35
|
+
/**
|
|
36
|
+
* A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
37
|
+
* server error without risk of executing that same action again. Retry tokens expire after 24
|
|
38
|
+
* hours, but can be invalidated before then due to conflicting operations. For example, if a resource
|
|
39
|
+
* has been deleted and purged from the system, then a retry of the original creation request
|
|
40
|
+
* might be rejected.
|
|
41
|
+
*
|
|
42
|
+
*/
|
|
43
|
+
"opcRetryToken"?: string;
|
|
44
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20230301
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=reinstate-proxy-instance-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reinstate-proxy-instance-request.js","sourceRoot":"","sources":["../../../../../lib/globallydistributeddatabase/lib/request/reinstate-proxy-instance-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -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.88.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/StartShardedDatabase.ts.html |here} to see how to use StartShardedDatabaseRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface StartShardedDatabaseRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -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.88.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/StopShardedDatabase.ts.html |here} to see how to use StopShardedDatabaseRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface StopShardedDatabaseRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -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.88.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpointRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdatePrivateEndpointRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.88.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/UpdateShardedDatabase.ts.html |here} to see how to use UpdateShardedDatabaseRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateShardedDatabaseRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.88.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/UploadSignedCertificateAndGenerateWallet.ts.html |here} to see how to use UploadSignedCertificateAndGenerateWalletRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UploadSignedCertificateAndGenerateWalletRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.88.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/globallydistributeddatabase/ValidateNetwork.ts.html |here} to see how to use ValidateNetworkRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ValidateNetworkRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
package/lib/response/index.d.ts
CHANGED
|
@@ -56,6 +56,8 @@ import * as PatchShardedDatabaseResponse from "./patch-sharded-database-response
|
|
|
56
56
|
export import PatchShardedDatabaseResponse = PatchShardedDatabaseResponse.PatchShardedDatabaseResponse;
|
|
57
57
|
import * as PrevalidateShardedDatabaseResponse from "./prevalidate-sharded-database-response";
|
|
58
58
|
export import PrevalidateShardedDatabaseResponse = PrevalidateShardedDatabaseResponse.PrevalidateShardedDatabaseResponse;
|
|
59
|
+
import * as ReinstateProxyInstanceResponse from "./reinstate-proxy-instance-response";
|
|
60
|
+
export import ReinstateProxyInstanceResponse = ReinstateProxyInstanceResponse.ReinstateProxyInstanceResponse;
|
|
59
61
|
import * as StartShardedDatabaseResponse from "./start-sharded-database-response";
|
|
60
62
|
export import StartShardedDatabaseResponse = StartShardedDatabaseResponse.StartShardedDatabaseResponse;
|
|
61
63
|
import * as StopShardedDatabaseResponse from "./stop-sharded-database-response";
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20230301
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
export interface ReinstateProxyInstanceResponse {
|
|
14
|
+
/**
|
|
15
|
+
* Unique Oracle-assigned identifier for the asynchronous work. You can use this to query its status.
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
"opcWorkRequestId": string;
|
|
19
|
+
/**
|
|
20
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
21
|
+
* Oracle about a particular request, please provide the request ID.
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
"opcRequestId": string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20230301
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=reinstate-proxy-instance-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reinstate-proxy-instance-response.js","sourceRoot":"","sources":["../../../../../lib/globallydistributeddatabase/lib/response/reinstate-proxy-instance-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-globallydistributeddatabase",
|
|
3
|
-
"version": "2.88.
|
|
3
|
+
"version": "2.88.1",
|
|
4
4
|
"description": "OCI NodeJS client for Globally Distributed Database 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.88.
|
|
19
|
-
"oci-workrequests": "2.88.
|
|
18
|
+
"oci-common": "2.88.1",
|
|
19
|
+
"oci-workrequests": "2.88.1"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|