oci-databasetools 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/change-database-tools-connection-compartment-details.d.ts +2 -2
- package/lib/model/change-database-tools-private-endpoint-compartment-details.d.ts +1 -1
- package/lib/model/create-database-tools-connection-details.d.ts +2 -2
- package/lib/model/create-database-tools-connection-my-sql-details.d.ts +1 -1
- package/lib/model/create-database-tools-connection-oracle-database-details.d.ts +1 -1
- package/lib/model/create-database-tools-connection-postgresql-details.d.ts +1 -1
- package/lib/model/create-database-tools-private-endpoint-details.d.ts +3 -3
- package/lib/model/database-tools-connection-collection.d.ts +2 -2
- package/lib/model/database-tools-connection-my-sql-summary.d.ts +2 -2
- package/lib/model/database-tools-connection-my-sql.d.ts +1 -1
- package/lib/model/database-tools-connection-oracle-database-summary.d.ts +2 -2
- package/lib/model/database-tools-connection-oracle-database.d.ts +1 -1
- package/lib/model/database-tools-connection-postgresql-summary.d.ts +2 -2
- package/lib/model/database-tools-connection-postgresql.d.ts +1 -1
- package/lib/model/database-tools-connection-summary.d.ts +4 -4
- package/lib/model/database-tools-connection.d.ts +3 -3
- package/lib/model/database-tools-endpoint-service-collection.d.ts +2 -2
- package/lib/model/database-tools-endpoint-service-summary.d.ts +3 -3
- package/lib/model/database-tools-endpoint-service.d.ts +3 -3
- package/lib/model/database-tools-private-endpoint-collection.d.ts +2 -2
- package/lib/model/database-tools-private-endpoint-summary.d.ts +3 -3
- package/lib/model/database-tools-private-endpoint.d.ts +3 -3
- package/lib/model/sort-order.d.ts +1 -1
- package/lib/model/sort-order.js +1 -1
- package/lib/model/update-database-tools-connection-details.d.ts +2 -2
- package/lib/model/update-database-tools-connection-my-sql-details.d.ts +1 -1
- package/lib/model/update-database-tools-connection-oracle-database-details.d.ts +1 -1
- package/lib/model/update-database-tools-connection-postgresql-details.d.ts +1 -1
- package/lib/model/update-database-tools-private-endpoint-details.d.ts +2 -2
- package/lib/model/work-request-collection.d.ts +2 -2
- package/lib/model/work-request-summary.d.ts +2 -2
- package/lib/model/work-request.d.ts +2 -2
- package/lib/request/add-database-tools-connection-lock-request.d.ts +2 -2
- package/lib/request/add-database-tools-private-endpoint-lock-request.d.ts +2 -2
- package/lib/request/change-database-tools-connection-compartment-request.d.ts +2 -2
- package/lib/request/change-database-tools-private-endpoint-compartment-request.d.ts +2 -2
- package/lib/request/create-database-tools-connection-request.d.ts +2 -2
- package/lib/request/create-database-tools-private-endpoint-request.d.ts +1 -1
- package/lib/request/delete-database-tools-connection-request.d.ts +2 -2
- package/lib/request/delete-database-tools-private-endpoint-request.d.ts +2 -2
- package/lib/request/get-database-tools-connection-request.d.ts +1 -1
- package/lib/request/get-database-tools-endpoint-service-request.d.ts +1 -1
- package/lib/request/get-database-tools-private-endpoint-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-database-tools-connections-request.d.ts +2 -2
- package/lib/request/list-database-tools-endpoint-services-request.d.ts +2 -2
- package/lib/request/list-database-tools-private-endpoints-request.d.ts +4 -4
- 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/remove-database-tools-connection-lock-request.d.ts +2 -2
- package/lib/request/remove-database-tools-private-endpoint-lock-request.d.ts +2 -2
- package/lib/request/update-database-tools-connection-request.d.ts +2 -2
- package/lib/request/update-database-tools-private-endpoint-request.d.ts +2 -2
- package/lib/request/validate-database-tools-connection-request.d.ts +2 -2
- package/lib/response/create-database-tools-connection-response.d.ts +1 -1
- package/lib/response/create-database-tools-private-endpoint-response.d.ts +1 -1
- package/lib/response/get-database-tools-connection-response.d.ts +1 -1
- package/lib/response/get-database-tools-endpoint-service-response.d.ts +1 -1
- package/lib/response/get-database-tools-private-endpoint-response.d.ts +1 -1
- package/lib/response/list-database-tools-connections-response.d.ts +1 -1
- package/lib/response/list-database-tools-endpoint-services-response.d.ts +1 -1
- package/lib/response/list-database-tools-private-endpoints-response.d.ts +1 -1
- package/lib/response/list-work-request-errors-response.d.ts +1 -1
- package/lib/response/list-work-request-logs-response.d.ts +1 -1
- package/lib/response/list-work-requests-response.d.ts +1 -1
- package/package.json +3 -3
package/lib/model/sort-order.js
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.SortOrder = void 0;
|
|
16
16
|
/**
|
|
17
|
-
* The sort order to use, either ascending (
|
|
17
|
+
* The sort order to use, either ascending ({@code ASC}) or descending ({@code DESC}).
|
|
18
18
|
**/
|
|
19
19
|
var SortOrder;
|
|
20
20
|
(function (SortOrder) {
|
|
@@ -20,7 +20,7 @@ export interface UpdateDatabaseToolsConnectionDetails {
|
|
|
20
20
|
"displayName"?: string;
|
|
21
21
|
/**
|
|
22
22
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
23
|
-
* Example:
|
|
23
|
+
* Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
"definedTags"?: {
|
|
@@ -30,7 +30,7 @@ export interface UpdateDatabaseToolsConnectionDetails {
|
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
32
|
* Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
|
|
33
|
-
* Example:
|
|
33
|
+
* Example: {@code {\"bar-key\": \"value\"}}
|
|
34
34
|
*
|
|
35
35
|
*/
|
|
36
36
|
"freeformTags"?: {
|
|
@@ -26,7 +26,7 @@ export interface UpdateDatabaseToolsConnectionMySqlDetails extends model.UpdateD
|
|
|
26
26
|
"userName"?: string;
|
|
27
27
|
"userPassword"?: model.DatabaseToolsUserPasswordSecretIdDetails;
|
|
28
28
|
/**
|
|
29
|
-
* The advanced connection properties key-value pair (e.g.,
|
|
29
|
+
* The advanced connection properties key-value pair (e.g., {@code sslMode}).
|
|
30
30
|
*/
|
|
31
31
|
"advancedProperties"?: {
|
|
32
32
|
[key: string]: string;
|
|
@@ -26,7 +26,7 @@ export interface UpdateDatabaseToolsConnectionOracleDatabaseDetails extends mode
|
|
|
26
26
|
"userName"?: string;
|
|
27
27
|
"userPassword"?: model.DatabaseToolsUserPasswordSecretIdDetails;
|
|
28
28
|
/**
|
|
29
|
-
* The advanced connection properties key-value pair (e.g.,
|
|
29
|
+
* The advanced connection properties key-value pair (e.g., {@code oracle.net.ssl_server_dn_match}).
|
|
30
30
|
*/
|
|
31
31
|
"advancedProperties"?: {
|
|
32
32
|
[key: string]: string;
|
|
@@ -26,7 +26,7 @@ export interface UpdateDatabaseToolsConnectionPostgresqlDetails extends model.Up
|
|
|
26
26
|
"userName"?: string;
|
|
27
27
|
"userPassword"?: model.DatabaseToolsUserPasswordSecretIdDetails;
|
|
28
28
|
/**
|
|
29
|
-
* The advanced connection properties key-value pair (e.g.,
|
|
29
|
+
* The advanced connection properties key-value pair (e.g., {@code sslMode}).
|
|
30
30
|
*/
|
|
31
31
|
"advancedProperties"?: {
|
|
32
32
|
[key: string]: string;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
export interface UpdateDatabaseToolsPrivateEndpointDetails {
|
|
17
17
|
/**
|
|
18
18
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
19
|
-
* Example:
|
|
19
|
+
* Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
|
|
20
20
|
*
|
|
21
21
|
*/
|
|
22
22
|
"definedTags"?: {
|
|
@@ -26,7 +26,7 @@ export interface UpdateDatabaseToolsPrivateEndpointDetails {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
|
|
29
|
-
* Example:
|
|
29
|
+
* Example: {@code {\"bar-key\": \"value\"}}
|
|
30
30
|
*
|
|
31
31
|
*/
|
|
32
32
|
"freeformTags"?: {
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
/**
|
|
15
|
-
* List of
|
|
15
|
+
* List of {@code WorkRequestSummary} items.
|
|
16
16
|
*/
|
|
17
17
|
export interface WorkRequestCollection {
|
|
18
18
|
/**
|
|
19
|
-
* Array of
|
|
19
|
+
* Array of {@code WorkRequestSummary} items.
|
|
20
20
|
*/
|
|
21
21
|
"items": Array<model.WorkRequestSummary>;
|
|
22
22
|
}
|
|
@@ -44,13 +44,13 @@ export interface WorkRequestSummary {
|
|
|
44
44
|
*/
|
|
45
45
|
"timeAccepted": Date;
|
|
46
46
|
/**
|
|
47
|
-
* The date and time the work request transitioned from
|
|
47
|
+
* The date and time the work request transitioned from {@code ACCEPTED} to {@code IN_PROGRESS},
|
|
48
48
|
* in the format defined by RFC3339.
|
|
49
49
|
*
|
|
50
50
|
*/
|
|
51
51
|
"timeStarted"?: Date;
|
|
52
52
|
/**
|
|
53
|
-
* The date and time the work request reached a terminal state, either
|
|
53
|
+
* The date and time the work request reached a terminal state, either {@code FAILED} or {@code SUCCEEDED}.
|
|
54
54
|
* Format is defined by RFC3339.
|
|
55
55
|
*
|
|
56
56
|
*/
|
|
@@ -44,13 +44,13 @@ export interface WorkRequest {
|
|
|
44
44
|
*/
|
|
45
45
|
"timeAccepted": Date;
|
|
46
46
|
/**
|
|
47
|
-
* The date and time the work request transitioned from
|
|
47
|
+
* The date and time the work request transitioned from {@code ACCEPTED} to {@code IN_PROGRESS},
|
|
48
48
|
* in the format defined by RFC3339.
|
|
49
49
|
*
|
|
50
50
|
*/
|
|
51
51
|
"timeStarted"?: Date;
|
|
52
52
|
/**
|
|
53
|
-
* The date and time the work request reached a terminal state, either
|
|
53
|
+
* The date and time the work request reached a terminal state, either {@code FAILED} or {@code SUCCEEDED}.
|
|
54
54
|
* Format is defined by RFC3339.
|
|
55
55
|
*
|
|
56
56
|
*/
|
|
@@ -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/databasetools/AddDatabaseToolsConnectionLock.ts.html |here} to see how to use AddDatabaseToolsConnectionLockRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface AddDatabaseToolsConnectionLockRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -31,7 +31,7 @@ export interface AddDatabaseToolsConnectionLockRequest extends common.BaseReques
|
|
|
31
31
|
*/
|
|
32
32
|
"opcRequestId"?: string;
|
|
33
33
|
/**
|
|
34
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
34
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
35
35
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
36
36
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
37
37
|
*
|
|
@@ -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/databasetools/AddDatabaseToolsPrivateEndpointLock.ts.html |here} to see how to use AddDatabaseToolsPrivateEndpointLockRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface AddDatabaseToolsPrivateEndpointLockRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -31,7 +31,7 @@ export interface AddDatabaseToolsPrivateEndpointLockRequest extends common.BaseR
|
|
|
31
31
|
*/
|
|
32
32
|
"opcRequestId"?: string;
|
|
33
33
|
/**
|
|
34
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
34
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
35
35
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
36
36
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
37
37
|
*
|
|
@@ -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/databasetools/ChangeDatabaseToolsConnectionCompartment.ts.html |here} to see how to use ChangeDatabaseToolsConnectionCompartmentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ChangeDatabaseToolsConnectionCompartmentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -26,7 +26,7 @@ export interface ChangeDatabaseToolsConnectionCompartmentRequest extends common.
|
|
|
26
26
|
"changeDatabaseToolsConnectionCompartmentDetails": model.ChangeDatabaseToolsConnectionCompartmentDetails;
|
|
27
27
|
/**
|
|
28
28
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
29
|
-
* for a resource, set the
|
|
29
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
30
30
|
* etag from a previous GET or POST response for that resource.
|
|
31
31
|
* The resource will be updated or deleted only if the etag you
|
|
32
32
|
* provide matches the resource's 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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasetools/ChangeDatabaseToolsPrivateEndpointCompartment.ts.html |here} to see how to use ChangeDatabaseToolsPrivateEndpointCompartmentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ChangeDatabaseToolsPrivateEndpointCompartmentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -26,7 +26,7 @@ export interface ChangeDatabaseToolsPrivateEndpointCompartmentRequest extends co
|
|
|
26
26
|
"changeDatabaseToolsPrivateEndpointCompartmentDetails": model.ChangeDatabaseToolsPrivateEndpointCompartmentDetails;
|
|
27
27
|
/**
|
|
28
28
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
29
|
-
* for a resource, set the
|
|
29
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
30
30
|
* etag from a previous GET or POST response for that resource.
|
|
31
31
|
* The resource will be updated or deleted only if the etag you
|
|
32
32
|
* provide matches the resource's current etag value.
|
|
@@ -13,11 +13,11 @@
|
|
|
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/databasetools/CreateDatabaseToolsConnection.ts.html |here} to see how to use CreateDatabaseToolsConnectionRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateDatabaseToolsConnectionRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
20
|
-
* Details for the new
|
|
20
|
+
* Details for the new {@code DatabaseToolsConnection}.
|
|
21
21
|
*/
|
|
22
22
|
"createDatabaseToolsConnectionDetails": model.CreateDatabaseToolsConnectionGenericJdbcDetails | model.CreateDatabaseToolsConnectionPostgresqlDetails | model.CreateDatabaseToolsConnectionMySqlDetails | model.CreateDatabaseToolsConnectionOracleDatabaseDetails;
|
|
23
23
|
/**
|
|
@@ -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/databasetools/CreateDatabaseToolsPrivateEndpoint.ts.html |here} to see how to use CreateDatabaseToolsPrivateEndpointRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateDatabaseToolsPrivateEndpointRequest 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.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasetools/DeleteDatabaseToolsConnection.ts.html |here} to see how to use DeleteDatabaseToolsConnectionRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteDatabaseToolsConnectionRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -21,7 +21,7 @@ export interface DeleteDatabaseToolsConnectionRequest extends common.BaseRequest
|
|
|
21
21
|
"databaseToolsConnectionId": string;
|
|
22
22
|
/**
|
|
23
23
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
24
|
-
* for a resource, set the
|
|
24
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
25
25
|
* etag from a previous GET or POST response for that resource.
|
|
26
26
|
* The resource will be updated or deleted only if the etag you
|
|
27
27
|
* provide matches the resource's current etag value.
|
|
@@ -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/databasetools/DeleteDatabaseToolsPrivateEndpoint.ts.html |here} to see how to use DeleteDatabaseToolsPrivateEndpointRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteDatabaseToolsPrivateEndpointRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -21,7 +21,7 @@ export interface DeleteDatabaseToolsPrivateEndpointRequest extends common.BaseRe
|
|
|
21
21
|
"databaseToolsPrivateEndpointId": string;
|
|
22
22
|
/**
|
|
23
23
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
24
|
-
* for a resource, set the
|
|
24
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
25
25
|
* etag from a previous GET or POST response for that resource.
|
|
26
26
|
* The resource will be updated or deleted only if the etag you
|
|
27
27
|
* provide matches the resource's current etag value.
|
|
@@ -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/databasetools/GetDatabaseToolsConnection.ts.html |here} to see how to use GetDatabaseToolsConnectionRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetDatabaseToolsConnectionRequest 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.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasetools/GetDatabaseToolsEndpointService.ts.html |here} to see how to use GetDatabaseToolsEndpointServiceRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetDatabaseToolsEndpointServiceRequest 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.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasetools/GetDatabaseToolsPrivateEndpoint.ts.html |here} to see how to use GetDatabaseToolsPrivateEndpointRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetDatabaseToolsPrivateEndpointRequest 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.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasetools/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetWorkRequestRequest 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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasetools/ListDatabaseToolsConnections.ts.html |here} to see how to use ListDatabaseToolsConnectionsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListDatabaseToolsConnectionsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -21,7 +21,7 @@ export interface ListDatabaseToolsConnectionsRequest extends common.BaseRequest
|
|
|
21
21
|
*/
|
|
22
22
|
"compartmentId": string;
|
|
23
23
|
/**
|
|
24
|
-
* A filter to return only resources their
|
|
24
|
+
* A filter to return only resources their {@code lifecycleState} matches the specified {@code lifecycleState}.
|
|
25
25
|
*/
|
|
26
26
|
"lifecycleState"?: model.LifecycleState;
|
|
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/databasetools/ListDatabaseToolsEndpointServices.ts.html |here} to see how to use ListDatabaseToolsEndpointServicesRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListDatabaseToolsEndpointServicesRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -42,7 +42,7 @@ export interface ListDatabaseToolsEndpointServicesRequest extends common.BaseReq
|
|
|
42
42
|
*/
|
|
43
43
|
"opcRequestId"?: string;
|
|
44
44
|
/**
|
|
45
|
-
* A filter to return only resources their
|
|
45
|
+
* A filter to return only resources their {@code lifecycleState} matches the specified {@code lifecycleState}.
|
|
46
46
|
*/
|
|
47
47
|
"lifecycleState"?: model.LifecycleState;
|
|
48
48
|
/**
|
|
@@ -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/databasetools/ListDatabaseToolsPrivateEndpoints.ts.html |here} to see how to use ListDatabaseToolsPrivateEndpointsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListDatabaseToolsPrivateEndpointsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -21,7 +21,7 @@ export interface ListDatabaseToolsPrivateEndpointsRequest extends common.BaseReq
|
|
|
21
21
|
*/
|
|
22
22
|
"compartmentId": string;
|
|
23
23
|
/**
|
|
24
|
-
* A filter to return only resources their
|
|
24
|
+
* A filter to return only resources their {@code subnetId} matches the specified {@code subnetId}.
|
|
25
25
|
*/
|
|
26
26
|
"subnetId"?: string;
|
|
27
27
|
/**
|
|
@@ -46,11 +46,11 @@ export interface ListDatabaseToolsPrivateEndpointsRequest extends common.BaseReq
|
|
|
46
46
|
*/
|
|
47
47
|
"opcRequestId"?: string;
|
|
48
48
|
/**
|
|
49
|
-
* A filter to return only resources their
|
|
49
|
+
* A filter to return only resources their {@code endpointServiceId} matches the specified {@code endpointServiceId}.
|
|
50
50
|
*/
|
|
51
51
|
"endpointServiceId"?: string;
|
|
52
52
|
/**
|
|
53
|
-
* A filter to return only resources their
|
|
53
|
+
* A filter to return only resources their {@code lifecycleState} matches the specified {@code lifecycleState}.
|
|
54
54
|
*/
|
|
55
55
|
"lifecycleState"?: model.LifecycleState;
|
|
56
56
|
/**
|
|
@@ -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/databasetools/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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasetools/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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasetools/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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasetools/RemoveDatabaseToolsConnectionLock.ts.html |here} to see how to use RemoveDatabaseToolsConnectionLockRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface RemoveDatabaseToolsConnectionLockRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -31,7 +31,7 @@ export interface RemoveDatabaseToolsConnectionLockRequest extends common.BaseReq
|
|
|
31
31
|
*/
|
|
32
32
|
"opcRequestId"?: string;
|
|
33
33
|
/**
|
|
34
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
34
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
35
35
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
36
36
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
37
37
|
*
|
|
@@ -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/databasetools/RemoveDatabaseToolsPrivateEndpointLock.ts.html |here} to see how to use RemoveDatabaseToolsPrivateEndpointLockRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface RemoveDatabaseToolsPrivateEndpointLockRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -31,7 +31,7 @@ export interface RemoveDatabaseToolsPrivateEndpointLockRequest extends common.Ba
|
|
|
31
31
|
*/
|
|
32
32
|
"opcRequestId"?: string;
|
|
33
33
|
/**
|
|
34
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
34
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
35
35
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
36
36
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
37
37
|
*
|
|
@@ -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/databasetools/UpdateDatabaseToolsConnection.ts.html |here} to see how to use UpdateDatabaseToolsConnectionRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateDatabaseToolsConnectionRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -26,7 +26,7 @@ export interface UpdateDatabaseToolsConnectionRequest extends common.BaseRequest
|
|
|
26
26
|
"updateDatabaseToolsConnectionDetails": model.UpdateDatabaseToolsConnectionGenericJdbcDetails | model.UpdateDatabaseToolsConnectionPostgresqlDetails | model.UpdateDatabaseToolsConnectionMySqlDetails | model.UpdateDatabaseToolsConnectionOracleDatabaseDetails;
|
|
27
27
|
/**
|
|
28
28
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
29
|
-
* for a resource, set the
|
|
29
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
30
30
|
* etag from a previous GET or POST response for that resource.
|
|
31
31
|
* The resource will be updated or deleted only if the etag you
|
|
32
32
|
* provide matches the resource's 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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasetools/UpdateDatabaseToolsPrivateEndpoint.ts.html |here} to see how to use UpdateDatabaseToolsPrivateEndpointRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateDatabaseToolsPrivateEndpointRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -26,7 +26,7 @@ export interface UpdateDatabaseToolsPrivateEndpointRequest extends common.BaseRe
|
|
|
26
26
|
"updateDatabaseToolsPrivateEndpointDetails": model.UpdateDatabaseToolsPrivateEndpointDetails;
|
|
27
27
|
/**
|
|
28
28
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
29
|
-
* for a resource, set the
|
|
29
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
30
30
|
* etag from a previous GET or POST response for that resource.
|
|
31
31
|
* The resource will be updated or deleted only if the etag you
|
|
32
32
|
* provide matches the resource's 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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasetools/ValidateDatabaseToolsConnection.ts.html |here} to see how to use ValidateDatabaseToolsConnectionRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ValidateDatabaseToolsConnectionRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -26,7 +26,7 @@ export interface ValidateDatabaseToolsConnectionRequest extends common.BaseReque
|
|
|
26
26
|
"validateDatabaseToolsConnectionDetails": model.ValidateDatabaseToolsConnectionPostgresqlDetails | model.ValidateDatabaseToolsConnectionOracleDatabaseDetails | model.ValidateDatabaseToolsConnectionMySqlDetails;
|
|
27
27
|
/**
|
|
28
28
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
29
|
-
* for a resource, set the
|
|
29
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
30
30
|
* etag from a previous GET or POST response for that resource.
|
|
31
31
|
* The resource will be updated or deleted only if the etag you
|
|
32
32
|
* provide matches the resource's current etag value.
|
|
@@ -20,7 +20,7 @@ export interface ListDatabaseToolsConnectionsResponse {
|
|
|
20
20
|
"opcRequestId": string;
|
|
21
21
|
/**
|
|
22
22
|
* For pagination of a list of items. When paging through a list, if this header appears in the response,
|
|
23
|
-
* then a partial list might have been returned. Include this value as the
|
|
23
|
+
* then a partial list might have been returned. Include this value as the {@code page} parameter for the
|
|
24
24
|
* subsequent GET request to get the next batch of items.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
@@ -20,7 +20,7 @@ export interface ListDatabaseToolsEndpointServicesResponse {
|
|
|
20
20
|
"opcRequestId": string;
|
|
21
21
|
/**
|
|
22
22
|
* For pagination of a list of items. When paging through a list, if this header appears in the response,
|
|
23
|
-
* then a partial list might have been returned. Include this value as the
|
|
23
|
+
* then a partial list might have been returned. Include this value as the {@code page} parameter for the
|
|
24
24
|
* subsequent GET request to get the next batch of items.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
@@ -20,7 +20,7 @@ export interface ListDatabaseToolsPrivateEndpointsResponse {
|
|
|
20
20
|
"opcRequestId": string;
|
|
21
21
|
/**
|
|
22
22
|
* For pagination of a list of items. When paging through a list, if this header appears in the response,
|
|
23
|
-
* then a partial list might have been returned. Include this value as the
|
|
23
|
+
* then a partial list might have been returned. Include this value as the {@code page} parameter for the
|
|
24
24
|
* subsequent GET request to get the next batch of items.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
@@ -14,7 +14,7 @@ import * as model from "../model";
|
|
|
14
14
|
export interface ListWorkRequestErrorsResponse {
|
|
15
15
|
/**
|
|
16
16
|
* For pagination of a list of items. When paging through a list, if this header appears in the response,
|
|
17
|
-
* then a partial list might have been returned. Include this value as the
|
|
17
|
+
* then a partial list might have been returned. Include this value as the {@code page} parameter for the
|
|
18
18
|
* subsequent GET request to get the next batch of items.
|
|
19
19
|
*
|
|
20
20
|
*/
|
|
@@ -14,7 +14,7 @@ import * as model from "../model";
|
|
|
14
14
|
export interface ListWorkRequestLogsResponse {
|
|
15
15
|
/**
|
|
16
16
|
* For pagination of a list of items. When paging through a list, if this header appears in the response,
|
|
17
|
-
* then a partial list might have been returned. Include this value as the
|
|
17
|
+
* then a partial list might have been returned. Include this value as the {@code page} parameter for the
|
|
18
18
|
* subsequent GET request to get the next batch of items.
|
|
19
19
|
*
|
|
20
20
|
*/
|