oci-mysql 2.102.2 → 2.103.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +47 -47
- package/lib/client.js +47 -47
- package/lib/model/backup-summary.d.ts +11 -1
- package/lib/model/backup-summary.js.map +1 -1
- package/lib/model/backup.d.ts +11 -1
- package/lib/model/backup.js.map +1 -1
- package/lib/model/channel-summary.d.ts +10 -0
- package/lib/model/channel-summary.js.map +1 -1
- package/lib/model/channel.d.ts +10 -0
- package/lib/model/channel.js.map +1 -1
- package/lib/model/configuration-summary.d.ts +10 -0
- package/lib/model/configuration-summary.js.map +1 -1
- package/lib/model/configuration-variables.d.ts +751 -5
- package/lib/model/configuration-variables.js +354 -0
- package/lib/model/configuration-variables.js.map +1 -1
- package/lib/model/configuration.d.ts +10 -0
- package/lib/model/configuration.js.map +1 -1
- package/lib/model/db-system-summary.d.ts +10 -0
- package/lib/model/db-system-summary.js.map +1 -1
- package/lib/model/db-system.d.ts +10 -0
- package/lib/model/db-system.js.map +1 -1
- package/lib/model/shape-summary.d.ts +1 -1
- package/lib/model/work-request-error.d.ts +1 -1
- package/lib/request/add-heat-wave-cluster-request.d.ts +2 -2
- package/lib/request/change-backup-compartment-request.d.ts +1 -1
- package/lib/request/copy-backup-request.d.ts +1 -1
- package/lib/request/create-backup-request.d.ts +1 -1
- package/lib/request/create-channel-request.d.ts +1 -1
- package/lib/request/create-configuration-request.d.ts +1 -1
- package/lib/request/create-db-system-request.d.ts +1 -1
- package/lib/request/create-replica-request.d.ts +1 -1
- package/lib/request/delete-backup-request.d.ts +1 -1
- package/lib/request/delete-channel-request.d.ts +2 -2
- package/lib/request/delete-configuration-request.d.ts +1 -1
- package/lib/request/delete-db-system-request.d.ts +2 -2
- package/lib/request/delete-heat-wave-cluster-request.d.ts +2 -2
- package/lib/request/delete-replica-request.d.ts +2 -2
- package/lib/request/generate-heat-wave-cluster-memory-estimate-request.d.ts +2 -2
- package/lib/request/get-backup-request.d.ts +1 -1
- package/lib/request/get-channel-request.d.ts +2 -2
- package/lib/request/get-configuration-request.d.ts +1 -1
- package/lib/request/get-db-system-request.d.ts +2 -2
- package/lib/request/get-heat-wave-cluster-memory-estimate-request.d.ts +2 -2
- package/lib/request/get-heat-wave-cluster-request.d.ts +2 -2
- package/lib/request/get-replica-request.d.ts +2 -2
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-backups-request.d.ts +5 -5
- package/lib/request/list-channels-request.d.ts +5 -5
- package/lib/request/list-configurations-request.d.ts +4 -4
- package/lib/request/list-db-systems-request.d.ts +5 -5
- package/lib/request/list-replicas-request.d.ts +6 -6
- package/lib/request/list-shapes-request.d.ts +2 -2
- package/lib/request/list-versions-request.d.ts +2 -2
- 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/reset-channel-request.d.ts +2 -2
- package/lib/request/restart-db-system-request.d.ts +2 -2
- package/lib/request/restart-heat-wave-cluster-request.d.ts +2 -2
- package/lib/request/resume-channel-request.d.ts +2 -2
- package/lib/request/start-db-system-request.d.ts +2 -2
- package/lib/request/start-heat-wave-cluster-request.d.ts +2 -2
- package/lib/request/stop-db-system-request.d.ts +2 -2
- package/lib/request/stop-heat-wave-cluster-request.d.ts +2 -2
- package/lib/request/update-backup-request.d.ts +1 -1
- package/lib/request/update-channel-request.d.ts +2 -2
- package/lib/request/update-configuration-request.d.ts +1 -1
- package/lib/request/update-db-system-request.d.ts +2 -2
- package/lib/request/update-heat-wave-cluster-request.d.ts +2 -2
- package/lib/request/update-replica-request.d.ts +2 -2
- package/package.json +3 -3
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannelRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteChannelRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The Channel [OCID](https://docs.
|
|
19
|
+
* The Channel [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"channelId": string;
|
|
22
22
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfigurationRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteConfigurationRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystemRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteDbSystemRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The DB System [OCID](https://docs.
|
|
19
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"dbSystemId": string;
|
|
22
22
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveClusterRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteHeatWaveClusterRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The DB System [OCID](https://docs.
|
|
19
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"dbSystemId": string;
|
|
22
22
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteReplica.ts.html |here} to see how to use DeleteReplicaRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteReplicaRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The Replica [OCID](https://docs.
|
|
19
|
+
* The Replica [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"replicaId": string;
|
|
22
22
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimateRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GenerateHeatWaveClusterMemoryEstimateRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The DB System [OCID](https://docs.
|
|
19
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"dbSystemId": string;
|
|
22
22
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetBackup.ts.html |here} to see how to use GetBackupRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetBackupRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetChannel.ts.html |here} to see how to use GetChannelRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetChannelRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The Channel [OCID](https://docs.
|
|
19
|
+
* The Channel [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"channelId": string;
|
|
22
22
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetConfiguration.ts.html |here} to see how to use GetConfigurationRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetConfigurationRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystemRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetDbSystemRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The DB System [OCID](https://docs.
|
|
19
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"dbSystemId": string;
|
|
22
22
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimateRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetHeatWaveClusterMemoryEstimateRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The DB System [OCID](https://docs.
|
|
19
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"dbSystemId": string;
|
|
22
22
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveClusterRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetHeatWaveClusterRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The DB System [OCID](https://docs.
|
|
19
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"dbSystemId": string;
|
|
22
22
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetReplica.ts.html |here} to see how to use GetReplicaRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetReplicaRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The Replica [OCID](https://docs.
|
|
19
|
+
* The Replica [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"replicaId": string;
|
|
22
22
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetWorkRequestRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListBackups.ts.html |here} to see how to use ListBackupsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListBackupsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The compartment [OCID](https://docs.
|
|
19
|
+
* The compartment [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"compartmentId": string;
|
|
22
22
|
/**
|
|
@@ -35,7 +35,7 @@ export interface ListBackupsRequest extends common.BaseRequest {
|
|
|
35
35
|
*/
|
|
36
36
|
"lifecycleState"?: string;
|
|
37
37
|
/**
|
|
38
|
-
* The DB System [OCID](https://docs.
|
|
38
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
39
39
|
*/
|
|
40
40
|
"dbSystemId"?: string;
|
|
41
41
|
/**
|
|
@@ -57,14 +57,14 @@ export interface ListBackupsRequest extends common.BaseRequest {
|
|
|
57
57
|
"sortOrder"?: ListBackupsRequest.SortOrder;
|
|
58
58
|
/**
|
|
59
59
|
* The maximum number of items to return in a paginated list call. For information about pagination, see
|
|
60
|
-
* [List Pagination](https://docs.
|
|
60
|
+
* [List Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
61
61
|
*
|
|
62
62
|
*/
|
|
63
63
|
"limit"?: number;
|
|
64
64
|
/**
|
|
65
65
|
* The value of the {@code opc-next-page} or {@code opc-prev-page} response header from
|
|
66
66
|
* the previous list call. For information about pagination, see [List
|
|
67
|
-
* Pagination](https://docs.
|
|
67
|
+
* Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
68
68
|
*
|
|
69
69
|
*/
|
|
70
70
|
"page"?: string;
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListChannels.ts.html |here} to see how to use ListChannelsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListChannelsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The compartment [OCID](https://docs.
|
|
19
|
+
* The compartment [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"compartmentId": string;
|
|
22
22
|
/**
|
|
@@ -27,7 +27,7 @@ export interface ListChannelsRequest extends common.BaseRequest {
|
|
|
27
27
|
*/
|
|
28
28
|
"opcRequestId"?: string;
|
|
29
29
|
/**
|
|
30
|
-
* The DB System [OCID](https://docs.
|
|
30
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
31
31
|
*/
|
|
32
32
|
"dbSystemId"?: string;
|
|
33
33
|
/**
|
|
@@ -59,14 +59,14 @@ export interface ListChannelsRequest extends common.BaseRequest {
|
|
|
59
59
|
"sortOrder"?: ListChannelsRequest.SortOrder;
|
|
60
60
|
/**
|
|
61
61
|
* The maximum number of items to return in a paginated list call. For information about pagination, see
|
|
62
|
-
* [List Pagination](https://docs.
|
|
62
|
+
* [List Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
63
63
|
*
|
|
64
64
|
*/
|
|
65
65
|
"limit"?: number;
|
|
66
66
|
/**
|
|
67
67
|
* The value of the {@code opc-next-page} or {@code opc-prev-page} response header from
|
|
68
68
|
* the previous list call. For information about pagination, see [List
|
|
69
|
-
* Pagination](https://docs.
|
|
69
|
+
* Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
70
70
|
*
|
|
71
71
|
*/
|
|
72
72
|
"page"?: string;
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurationsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListConfigurationsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The compartment [OCID](https://docs.
|
|
19
|
+
* The compartment [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"compartmentId": string;
|
|
22
22
|
/**
|
|
@@ -57,14 +57,14 @@ export interface ListConfigurationsRequest extends common.BaseRequest {
|
|
|
57
57
|
"sortOrder"?: ListConfigurationsRequest.SortOrder;
|
|
58
58
|
/**
|
|
59
59
|
* The maximum number of items to return in a paginated list call. For information about pagination, see
|
|
60
|
-
* [List Pagination](https://docs.
|
|
60
|
+
* [List Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
61
61
|
*
|
|
62
62
|
*/
|
|
63
63
|
"limit"?: number;
|
|
64
64
|
/**
|
|
65
65
|
* The value of the {@code opc-next-page} or {@code opc-prev-page} response header from
|
|
66
66
|
* the previous list call. For information about pagination, see [List
|
|
67
|
-
* Pagination](https://docs.
|
|
67
|
+
* Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
68
68
|
*
|
|
69
69
|
*/
|
|
70
70
|
"page"?: string;
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystemsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListDbSystemsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The compartment [OCID](https://docs.
|
|
19
|
+
* The compartment [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"compartmentId": string;
|
|
22
22
|
/**
|
|
@@ -34,7 +34,7 @@ export interface ListDbSystemsRequest extends common.BaseRequest {
|
|
|
34
34
|
*/
|
|
35
35
|
"isHeatWaveClusterAttached"?: boolean;
|
|
36
36
|
/**
|
|
37
|
-
* The DB System [OCID](https://docs.
|
|
37
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
38
38
|
*/
|
|
39
39
|
"dbSystemId"?: string;
|
|
40
40
|
/**
|
|
@@ -71,14 +71,14 @@ export interface ListDbSystemsRequest extends common.BaseRequest {
|
|
|
71
71
|
"sortOrder"?: ListDbSystemsRequest.SortOrder;
|
|
72
72
|
/**
|
|
73
73
|
* The maximum number of items to return in a paginated list call. For information about pagination, see
|
|
74
|
-
* [List Pagination](https://docs.
|
|
74
|
+
* [List Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
75
75
|
*
|
|
76
76
|
*/
|
|
77
77
|
"limit"?: number;
|
|
78
78
|
/**
|
|
79
79
|
* The value of the {@code opc-next-page} or {@code opc-prev-page} response header from
|
|
80
80
|
* the previous list call. For information about pagination, see [List
|
|
81
|
-
* Pagination](https://docs.
|
|
81
|
+
* Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
82
82
|
*
|
|
83
83
|
*/
|
|
84
84
|
"page"?: string;
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListReplicas.ts.html |here} to see how to use ListReplicasRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListReplicasRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The compartment [OCID](https://docs.
|
|
19
|
+
* The compartment [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"compartmentId": string;
|
|
22
22
|
/**
|
|
@@ -28,14 +28,14 @@ export interface ListReplicasRequest extends common.BaseRequest {
|
|
|
28
28
|
"opcRequestId"?: string;
|
|
29
29
|
/**
|
|
30
30
|
* The maximum number of items to return in a paginated list call. For information about pagination, see
|
|
31
|
-
* [List Pagination](https://docs.
|
|
31
|
+
* [List Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
32
32
|
*
|
|
33
33
|
*/
|
|
34
34
|
"limit"?: number;
|
|
35
35
|
/**
|
|
36
36
|
* The value of the {@code opc-next-page} or {@code opc-prev-page} response header from
|
|
37
37
|
* the previous list call. For information about pagination, see [List
|
|
38
|
-
* Pagination](https://docs.
|
|
38
|
+
* Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
39
39
|
*
|
|
40
40
|
*/
|
|
41
41
|
"page"?: string;
|
|
@@ -44,7 +44,7 @@ export interface ListReplicasRequest extends common.BaseRequest {
|
|
|
44
44
|
*/
|
|
45
45
|
"displayName"?: string;
|
|
46
46
|
/**
|
|
47
|
-
* The DB System [OCID](https://docs.
|
|
47
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
48
48
|
*/
|
|
49
49
|
"dbSystemId"?: string;
|
|
50
50
|
/**
|
|
@@ -52,7 +52,7 @@ export interface ListReplicasRequest extends common.BaseRequest {
|
|
|
52
52
|
*/
|
|
53
53
|
"lifecycleState"?: string;
|
|
54
54
|
/**
|
|
55
|
-
* The read replica [OCID](https://docs.
|
|
55
|
+
* The read replica [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
56
56
|
*/
|
|
57
57
|
"replicaId"?: string;
|
|
58
58
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListShapes.ts.html |here} to see how to use ListShapesRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListShapesRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The compartment [OCID](https://docs.
|
|
19
|
+
* The compartment [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"compartmentId": string;
|
|
22
22
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListVersions.ts.html |here} to see how to use ListVersionsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListVersionsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The compartment [OCID](https://docs.
|
|
19
|
+
* The compartment [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"compartmentId": string;
|
|
22
22
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -28,14 +28,14 @@ export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
|
|
|
28
28
|
"opcRequestId"?: string;
|
|
29
29
|
/**
|
|
30
30
|
* The maximum number of items to return in a paginated list call. For information about pagination, see
|
|
31
|
-
* [List Pagination](https://docs.
|
|
31
|
+
* [List Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
32
32
|
*
|
|
33
33
|
*/
|
|
34
34
|
"limit"?: number;
|
|
35
35
|
/**
|
|
36
36
|
* The value of the {@code opc-next-page} or {@code opc-prev-page} response header from
|
|
37
37
|
* the previous list call. For information about pagination, see [List
|
|
38
|
-
* Pagination](https://docs.
|
|
38
|
+
* Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
39
39
|
*
|
|
40
40
|
*/
|
|
41
41
|
"page"?: string;
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestLogsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -28,14 +28,14 @@ export interface ListWorkRequestLogsRequest extends common.BaseRequest {
|
|
|
28
28
|
"opcRequestId"?: string;
|
|
29
29
|
/**
|
|
30
30
|
* The maximum number of items to return in a paginated list call. For information about pagination, see
|
|
31
|
-
* [List Pagination](https://docs.
|
|
31
|
+
* [List Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
32
32
|
*
|
|
33
33
|
*/
|
|
34
34
|
"limit"?: number;
|
|
35
35
|
/**
|
|
36
36
|
* The value of the {@code opc-next-page} or {@code opc-prev-page} response header from
|
|
37
37
|
* the previous list call. For information about pagination, see [List
|
|
38
|
-
* Pagination](https://docs.
|
|
38
|
+
* Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
39
39
|
*
|
|
40
40
|
*/
|
|
41
41
|
"page"?: string;
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The compartment [OCID](https://docs.
|
|
19
|
+
* The compartment [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"compartmentId": string;
|
|
22
22
|
/**
|
|
@@ -36,14 +36,14 @@ export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
|
36
36
|
"sortOrder"?: ListWorkRequestsRequest.SortOrder;
|
|
37
37
|
/**
|
|
38
38
|
* The maximum number of items to return in a paginated list call. For information about pagination, see
|
|
39
|
-
* [List Pagination](https://docs.
|
|
39
|
+
* [List Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
40
40
|
*
|
|
41
41
|
*/
|
|
42
42
|
"limit"?: number;
|
|
43
43
|
/**
|
|
44
44
|
* The value of the {@code opc-next-page} or {@code opc-prev-page} response header from
|
|
45
45
|
* the previous list call. For information about pagination, see [List
|
|
46
|
-
* Pagination](https://docs.
|
|
46
|
+
* Pagination](https://docs.oracle.com/iaas/#API/Concepts/usingapi.htm#List_Pagination).
|
|
47
47
|
*
|
|
48
48
|
*/
|
|
49
49
|
"page"?: string;
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ResetChannel.ts.html |here} to see how to use ResetChannelRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ResetChannelRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The Channel [OCID](https://docs.
|
|
19
|
+
* The Channel [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"channelId": string;
|
|
22
22
|
/**
|
|
@@ -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.
|
|
16
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystemRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface RestartDbSystemRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
20
|
-
* The DB System [OCID](https://docs.
|
|
20
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
21
21
|
*/
|
|
22
22
|
"dbSystemId": string;
|
|
23
23
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveClusterRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface RestartHeatWaveClusterRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The DB System [OCID](https://docs.
|
|
19
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"dbSystemId": string;
|
|
22
22
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannelRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ResumeChannelRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The Channel [OCID](https://docs.
|
|
19
|
+
* The Channel [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"channelId": string;
|
|
22
22
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/StartDbSystem.ts.html |here} to see how to use StartDbSystemRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface StartDbSystemRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The DB System [OCID](https://docs.
|
|
19
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"dbSystemId": string;
|
|
22
22
|
/**
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/StartHeatWaveCluster.ts.html |here} to see how to use StartHeatWaveClusterRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface StartHeatWaveClusterRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The DB System [OCID](https://docs.
|
|
19
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
20
20
|
*/
|
|
21
21
|
"dbSystemId": string;
|
|
22
22
|
/**
|
|
@@ -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.
|
|
16
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/StopDbSystem.ts.html |here} to see how to use StopDbSystemRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface StopDbSystemRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
20
|
-
* The DB System [OCID](https://docs.
|
|
20
|
+
* The DB System [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
21
21
|
*/
|
|
22
22
|
"dbSystemId": string;
|
|
23
23
|
/**
|