oci-mysql 2.77.1 → 2.79.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/lib/client.d.ts +46 -46
  2. package/lib/client.js +46 -46
  3. package/lib/model/certificate-generation-type.d.ts +29 -0
  4. package/lib/model/certificate-generation-type.js +40 -0
  5. package/lib/model/certificate-generation-type.js.map +1 -0
  6. package/lib/model/create-db-system-details.d.ts +1 -0
  7. package/lib/model/create-db-system-details.js +6 -0
  8. package/lib/model/create-db-system-details.js.map +1 -1
  9. package/lib/model/db-system-snapshot.d.ts +1 -0
  10. package/lib/model/db-system-snapshot.js +6 -0
  11. package/lib/model/db-system-snapshot.js.map +1 -1
  12. package/lib/model/db-system.d.ts +1 -0
  13. package/lib/model/db-system.js +6 -0
  14. package/lib/model/db-system.js.map +1 -1
  15. package/lib/model/index.d.ts +4 -0
  16. package/lib/model/index.js +6 -2
  17. package/lib/model/index.js.map +1 -1
  18. package/lib/model/replica.d.ts +1 -0
  19. package/lib/model/replica.js +6 -0
  20. package/lib/model/replica.js.map +1 -1
  21. package/lib/model/secure-connection-details.d.ts +32 -0
  22. package/lib/model/secure-connection-details.js +29 -0
  23. package/lib/model/secure-connection-details.js.map +1 -0
  24. package/lib/model/update-db-system-details.d.ts +1 -0
  25. package/lib/model/update-db-system-details.js +6 -0
  26. package/lib/model/update-db-system-details.js.map +1 -1
  27. package/lib/request/add-heat-wave-cluster-request.d.ts +1 -1
  28. package/lib/request/change-backup-compartment-request.d.ts +1 -1
  29. package/lib/request/create-backup-request.d.ts +1 -1
  30. package/lib/request/create-channel-request.d.ts +1 -1
  31. package/lib/request/create-configuration-request.d.ts +1 -1
  32. package/lib/request/create-db-system-request.d.ts +1 -1
  33. package/lib/request/create-replica-request.d.ts +1 -1
  34. package/lib/request/delete-backup-request.d.ts +1 -1
  35. package/lib/request/delete-channel-request.d.ts +1 -1
  36. package/lib/request/delete-configuration-request.d.ts +1 -1
  37. package/lib/request/delete-db-system-request.d.ts +1 -1
  38. package/lib/request/delete-heat-wave-cluster-request.d.ts +1 -1
  39. package/lib/request/delete-replica-request.d.ts +1 -1
  40. package/lib/request/generate-heat-wave-cluster-memory-estimate-request.d.ts +1 -1
  41. package/lib/request/get-backup-request.d.ts +1 -1
  42. package/lib/request/get-channel-request.d.ts +1 -1
  43. package/lib/request/get-configuration-request.d.ts +1 -1
  44. package/lib/request/get-db-system-request.d.ts +1 -1
  45. package/lib/request/get-heat-wave-cluster-memory-estimate-request.d.ts +1 -1
  46. package/lib/request/get-heat-wave-cluster-request.d.ts +1 -1
  47. package/lib/request/get-replica-request.d.ts +1 -1
  48. package/lib/request/get-work-request-request.d.ts +1 -1
  49. package/lib/request/list-backups-request.d.ts +1 -1
  50. package/lib/request/list-channels-request.d.ts +1 -1
  51. package/lib/request/list-configurations-request.d.ts +1 -1
  52. package/lib/request/list-db-systems-request.d.ts +1 -1
  53. package/lib/request/list-replicas-request.d.ts +1 -1
  54. package/lib/request/list-shapes-request.d.ts +1 -1
  55. package/lib/request/list-versions-request.d.ts +1 -1
  56. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  57. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  58. package/lib/request/list-work-requests-request.d.ts +1 -1
  59. package/lib/request/reset-channel-request.d.ts +1 -1
  60. package/lib/request/restart-db-system-request.d.ts +1 -1
  61. package/lib/request/restart-heat-wave-cluster-request.d.ts +1 -1
  62. package/lib/request/resume-channel-request.d.ts +1 -1
  63. package/lib/request/start-db-system-request.d.ts +1 -1
  64. package/lib/request/start-heat-wave-cluster-request.d.ts +1 -1
  65. package/lib/request/stop-db-system-request.d.ts +1 -1
  66. package/lib/request/stop-heat-wave-cluster-request.d.ts +1 -1
  67. package/lib/request/update-backup-request.d.ts +1 -1
  68. package/lib/request/update-channel-request.d.ts +1 -1
  69. package/lib/request/update-configuration-request.d.ts +1 -1
  70. package/lib/request/update-db-system-request.d.ts +1 -1
  71. package/lib/request/update-heat-wave-cluster-request.d.ts +1 -1
  72. package/lib/request/update-replica-request.d.ts +1 -1
  73. package/package.json +3 -3
@@ -22,6 +22,8 @@ import * as BackupSummary from "./backup-summary";
22
22
  export import BackupSummary = BackupSummary.BackupSummary;
23
23
  import * as CaCertificate from "./ca-certificate";
24
24
  export import CaCertificate = CaCertificate.CaCertificate;
25
+ import * as CertificateGenerationType from "./certificate-generation-type";
26
+ export import CertificateGenerationType = CertificateGenerationType.CertificateGenerationType;
25
27
  import * as ChangeBackupCompartmentDetails from "./change-backup-compartment-details";
26
28
  export import ChangeBackupCompartmentDetails = ChangeBackupCompartmentDetails.ChangeBackupCompartmentDetails;
27
29
  import * as Channel from "./channel";
@@ -112,6 +114,8 @@ import * as ReplicaSummary from "./replica-summary";
112
114
  export import ReplicaSummary = ReplicaSummary.ReplicaSummary;
113
115
  import * as RestartDbSystemDetails from "./restart-db-system-details";
114
116
  export import RestartDbSystemDetails = RestartDbSystemDetails.RestartDbSystemDetails;
117
+ import * as SecureConnectionDetails from "./secure-connection-details";
118
+ export import SecureConnectionDetails = SecureConnectionDetails.SecureConnectionDetails;
115
119
  import * as ShapeSummary from "./shape-summary";
116
120
  export import ShapeSummary = ShapeSummary.ShapeSummary;
117
121
  import * as StopDbSystemDetails from "./stop-db-system-details";
@@ -31,8 +31,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
31
31
  return result;
32
32
  };
33
33
  Object.defineProperty(exports, "__esModule", { value: true });
34
- exports.ReplicaSummary = exports.ReplicaOverrides = exports.Replica = exports.PointInTimeRecoveryDetails = exports.PitrPolicy = exports.MaintenanceDetails = exports.InnoDbShutdownMode = exports.InitializationVariables = exports.HeatWaveNode = exports.HeatWaveClusterTableMemoryEstimate = exports.HeatWaveClusterSummary = exports.HeatWaveClusterSchemaMemoryEstimate = exports.HeatWaveClusterMemoryEstimateStatus = exports.HeatWaveClusterMemoryEstimate = exports.HeatWaveCluster = exports.DeletionPolicyDetails = exports.DbSystemSummary = exports.DbSystemSource = exports.DbSystemSnapshot = exports.DbSystemPlacement = exports.DbSystemEndpoint = exports.DbSystem = exports.DatabaseManagementStatus = exports.CreateReplicaDetails = exports.CreateMaintenanceDetails = exports.CreateDeletionPolicyDetails = exports.CreateDbSystemSourceDetails = exports.CreateDbSystemDetails = exports.CreateConfigurationDetails = exports.CreateChannelTargetDetails = exports.CreateChannelSourceDetails = exports.CreateChannelDetails = exports.CreateBackupPolicyDetails = exports.CreateBackupDetails = exports.CrashRecoveryStatus = exports.ConfigurationVariables = exports.ConfigurationSummary = exports.Configuration = exports.ChannelTarget = exports.ChannelSummary = exports.ChannelSource = exports.ChannelFilter = exports.Channel = exports.ChangeBackupCompartmentDetails = exports.CaCertificate = exports.BackupSummary = exports.BackupPolicy = exports.Backup = exports.AnonymousTransactionsHandling = exports.AddHeatWaveClusterDetails = void 0;
35
- exports.UpdateChannelTargetFromDbSystemDetails = exports.UpdateChannelSourceFromMysqlDetails = exports.PemCaCertificate = exports.ErrorOnAnonymousHandling = exports.DbSystemSourceImportFromUrl = exports.DbSystemSourceFromPitr = exports.DbSystemSourceFromNone = exports.DbSystemSourceFromBackup = exports.CreateDbSystemSourceImportFromUrlDetails = exports.CreateDbSystemSourceFromPitrDetails = exports.CreateDbSystemSourceFromNoneDetails = exports.CreateDbSystemSourceFromBackupDetails = exports.CreateChannelTargetFromDbSystemDetails = exports.CreateChannelSourceFromMysqlDetails = exports.ChannelTargetDbSystem = exports.ChannelSourceMysql = exports.AssignTargetUuidHandling = exports.AssignManualUuidHandling = exports.WorkRequestSummary = exports.WorkRequestResourceActionType = exports.WorkRequestResource = exports.WorkRequestOperationType = exports.WorkRequestOperationStatus = exports.WorkRequestLogEntry = exports.WorkRequestError = exports.WorkRequest = exports.VersionSummary = exports.Version = exports.UpdateReplicaDetails = exports.UpdateMaintenanceDetails = exports.UpdateHeatWaveClusterDetails = exports.UpdateDeletionPolicyDetails = exports.UpdateDbSystemDetails = exports.UpdateConfigurationDetails = exports.UpdateChannelTargetDetails = exports.UpdateChannelSourceDetails = exports.UpdateChannelDetails = exports.UpdateBackupPolicyDetails = exports.UpdateBackupDetails = exports.StopDbSystemDetails = exports.ShapeSummary = exports.RestartDbSystemDetails = void 0;
34
+ exports.ReplicaOverrides = exports.Replica = exports.PointInTimeRecoveryDetails = exports.PitrPolicy = exports.MaintenanceDetails = exports.InnoDbShutdownMode = exports.InitializationVariables = exports.HeatWaveNode = exports.HeatWaveClusterTableMemoryEstimate = exports.HeatWaveClusterSummary = exports.HeatWaveClusterSchemaMemoryEstimate = exports.HeatWaveClusterMemoryEstimateStatus = exports.HeatWaveClusterMemoryEstimate = exports.HeatWaveCluster = exports.DeletionPolicyDetails = exports.DbSystemSummary = exports.DbSystemSource = exports.DbSystemSnapshot = exports.DbSystemPlacement = exports.DbSystemEndpoint = exports.DbSystem = exports.DatabaseManagementStatus = exports.CreateReplicaDetails = exports.CreateMaintenanceDetails = exports.CreateDeletionPolicyDetails = exports.CreateDbSystemSourceDetails = exports.CreateDbSystemDetails = exports.CreateConfigurationDetails = exports.CreateChannelTargetDetails = exports.CreateChannelSourceDetails = exports.CreateChannelDetails = exports.CreateBackupPolicyDetails = exports.CreateBackupDetails = exports.CrashRecoveryStatus = exports.ConfigurationVariables = exports.ConfigurationSummary = exports.Configuration = exports.ChannelTarget = exports.ChannelSummary = exports.ChannelSource = exports.ChannelFilter = exports.Channel = exports.ChangeBackupCompartmentDetails = exports.CertificateGenerationType = exports.CaCertificate = exports.BackupSummary = exports.BackupPolicy = exports.Backup = exports.AnonymousTransactionsHandling = exports.AddHeatWaveClusterDetails = void 0;
35
+ exports.UpdateChannelTargetFromDbSystemDetails = exports.UpdateChannelSourceFromMysqlDetails = exports.PemCaCertificate = exports.ErrorOnAnonymousHandling = exports.DbSystemSourceImportFromUrl = exports.DbSystemSourceFromPitr = exports.DbSystemSourceFromNone = exports.DbSystemSourceFromBackup = exports.CreateDbSystemSourceImportFromUrlDetails = exports.CreateDbSystemSourceFromPitrDetails = exports.CreateDbSystemSourceFromNoneDetails = exports.CreateDbSystemSourceFromBackupDetails = exports.CreateChannelTargetFromDbSystemDetails = exports.CreateChannelSourceFromMysqlDetails = exports.ChannelTargetDbSystem = exports.ChannelSourceMysql = exports.AssignTargetUuidHandling = exports.AssignManualUuidHandling = exports.WorkRequestSummary = exports.WorkRequestResourceActionType = exports.WorkRequestResource = exports.WorkRequestOperationType = exports.WorkRequestOperationStatus = exports.WorkRequestLogEntry = exports.WorkRequestError = exports.WorkRequest = exports.VersionSummary = exports.Version = exports.UpdateReplicaDetails = exports.UpdateMaintenanceDetails = exports.UpdateHeatWaveClusterDetails = exports.UpdateDeletionPolicyDetails = exports.UpdateDbSystemDetails = exports.UpdateConfigurationDetails = exports.UpdateChannelTargetDetails = exports.UpdateChannelSourceDetails = exports.UpdateChannelDetails = exports.UpdateBackupPolicyDetails = exports.UpdateBackupDetails = exports.StopDbSystemDetails = exports.ShapeSummary = exports.SecureConnectionDetails = exports.RestartDbSystemDetails = exports.ReplicaSummary = void 0;
36
36
  const AddHeatWaveClusterDetails = __importStar(require("./add-heat-wave-cluster-details"));
37
37
  exports.AddHeatWaveClusterDetails = AddHeatWaveClusterDetails.AddHeatWaveClusterDetails;
38
38
  const AnonymousTransactionsHandling = __importStar(require("./anonymous-transactions-handling"));
@@ -45,6 +45,8 @@ const BackupSummary = __importStar(require("./backup-summary"));
45
45
  exports.BackupSummary = BackupSummary.BackupSummary;
46
46
  const CaCertificate = __importStar(require("./ca-certificate"));
47
47
  exports.CaCertificate = CaCertificate.CaCertificate;
48
+ const CertificateGenerationType = __importStar(require("./certificate-generation-type"));
49
+ exports.CertificateGenerationType = CertificateGenerationType.CertificateGenerationType;
48
50
  const ChangeBackupCompartmentDetails = __importStar(require("./change-backup-compartment-details"));
49
51
  exports.ChangeBackupCompartmentDetails = ChangeBackupCompartmentDetails.ChangeBackupCompartmentDetails;
50
52
  const Channel = __importStar(require("./channel"));
@@ -135,6 +137,8 @@ const ReplicaSummary = __importStar(require("./replica-summary"));
135
137
  exports.ReplicaSummary = ReplicaSummary.ReplicaSummary;
136
138
  const RestartDbSystemDetails = __importStar(require("./restart-db-system-details"));
137
139
  exports.RestartDbSystemDetails = RestartDbSystemDetails.RestartDbSystemDetails;
140
+ const SecureConnectionDetails = __importStar(require("./secure-connection-details"));
141
+ exports.SecureConnectionDetails = SecureConnectionDetails.SecureConnectionDetails;
138
142
  const ShapeSummary = __importStar(require("./shape-summary"));
139
143
  exports.ShapeSummary = ShapeSummary.ShapeSummary;
140
144
  const StopDbSystemDetails = __importStar(require("./stop-db-system-details"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;;AAEH,2FAA6E;AAC/D,QAAA,yBAAyB,GAAG,yBAAyB,CAAC,yBAAyB,CAAC;AAC9F,iGAAmF;AACrE,QAAA,6BAA6B,GAAG,6BAA6B,CAAC,6BAA6B,CAAC;AAC1G,iDAAmC;AACrB,QAAA,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;AACrC,8DAAgD;AAClC,QAAA,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC;AACvD,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,yFAA2E;AAC7D,QAAA,yBAAyB,GAAG,yBAAyB,CAAC,yBAAyB,CAAC;AAC9F,oGAAsF;AACxE,QAAA,8BAA8B,GAAG,8BAA8B,CAAC,8BAA8B,CAAC;AAC7G,mDAAqC;AACvB,QAAA,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AACxC,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,kEAAoD;AACtC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,+DAAiD;AACnC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,8EAAgE;AAClD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,kFAAoE;AACtD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,0FAA4E;AAC9D,QAAA,yBAAyB,GAAG,yBAAyB,CAAC,yBAAyB,CAAC;AAC9F,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,4FAA8E;AAChE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,4FAA8E;AAChE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,2FAA6E;AAC/D,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,kFAAoE;AACtD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,+FAAiF;AACnE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,uFAAyE;AAC3D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,uFAAyE;AAC3D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,sDAAwC;AAC1B,QAAA,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC;AAC3C,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,mEAAqD;AACvC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,qEAAuD;AACzC,QAAA,eAAe,GAAG,eAAe,CAAC,eAAe,CAAC;AAChE,iFAAmE;AACrD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,qEAAuD;AACzC,QAAA,eAAe,GAAG,eAAe,CAAC,eAAe,CAAC;AAChE,mGAAqF;AACvE,QAAA,6BAA6B,GAAG,6BAA6B,CAAC,6BAA6B,CAAC;AAC1G,gHAAkG;AACpF,QAAA,mCAAmC,GAAG,mCAAmC,CAAC,mCAAmC,CAAC;AAC5H,gHAAkG;AACpF,QAAA,mCAAmC,GAAG,mCAAmC,CAAC,mCAAmC,CAAC;AAC5H,oFAAsE;AACxD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,8GAAgG;AAClF,QAAA,kCAAkC,GAAG,kCAAkC,CAAC,kCAAkC,CAAC;AACzH,+DAAiD;AACnC,QAAA,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC;AACvD,oFAAsE;AACxD,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,4EAA8D;AAChD,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,0EAA4D;AAC9C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,0DAA4C;AAC9B,QAAA,UAAU,GAAG,UAAU,CAAC,UAAU,CAAC;AACjD,6FAA+E;AACjE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,mDAAqC;AACvB,QAAA,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AACxC,sEAAwD;AAC1C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,kEAAoD;AACtC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,oFAAsE;AACxD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,qFAAuE;AACzD,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,8DAAgD;AAClC,QAAA,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC;AACvD,8EAAgE;AAClD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,0FAA4E;AAC9D,QAAA,yBAAyB,GAAG,yBAAyB,CAAC,yBAAyB,CAAC;AAC9F,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,4FAA8E;AAChE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,4FAA8E;AAChE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,2FAA6E;AAC/D,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,kFAAoE;AACtD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,iGAAmF;AACrE,QAAA,4BAA4B,GAAG,4BAA4B,CAAC,4BAA4B,CAAC;AACvG,uFAAyE;AAC3D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,mDAAqC;AACvB,QAAA,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AACxC,kEAAoD;AACtC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,4DAA8C;AAChC,QAAA,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;AACpD,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,8EAAgE;AAClD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,4FAA8E;AAChE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,wFAA0E;AAC5D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,mGAAqF;AACvE,QAAA,6BAA6B,GAAG,6BAA6B,CAAC,6BAA6B,CAAC;AAC1G,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AAEzE,wFAA0E;AAC5D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,wFAA0E;AAC5D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,kFAAoE;AACtD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,gHAAkG;AACpF,QAAA,mCAAmC,GAAG,mCAAmC,CAAC,mCAAmC,CAAC;AAC5H,uHAAyG;AAC3F,QAAA,sCAAsC,GAAG,sCAAsC,CAAC,sCAAsC,CAAC;AACrI,qHAAuG;AACzF,QAAA,qCAAqC,GAAG,qCAAqC,CAAC,qCAAqC,CAAC;AAClI,iHAAmG;AACrF,QAAA,mCAAmC,GAAG,mCAAmC,CAAC,mCAAmC,CAAC;AAC5H,iHAAmG;AACrF,QAAA,mCAAmC,GAAG,mCAAmC,CAAC,mCAAmC,CAAC;AAC5H,4HAA8G;AAChG,QAAA,wCAAwC,GAAG,wCAAwC,CAAC,wCAAwC,CAAC;AAC3I,yFAA2E;AAC7D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,qFAAuE;AACzD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,qFAAuE;AACzD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,gGAAkF;AACpE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,wFAA0E;AAC5D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,gHAAkG;AACpF,QAAA,mCAAmC,GAAG,mCAAmC,CAAC,mCAAmC,CAAC;AAC5H,uHAAyG;AAC3F,QAAA,sCAAsC,GAAG,sCAAsC,CAAC,sCAAsC,CAAC"}
@@ -15,6 +15,7 @@ import * as model from "../model";
15
15
  * A DB System read replica.
16
16
  */
17
17
  export interface Replica {
18
+ "secureConnections"?: model.SecureConnectionDetails;
18
19
  /**
19
20
  * The OCID of the read replica.
20
21
  */
@@ -53,6 +53,9 @@ var Replica;
53
53
  })(LifecycleState = Replica.LifecycleState || (Replica.LifecycleState = {}));
54
54
  function getJsonObj(obj) {
55
55
  const jsonObj = Object.assign(Object.assign({}, obj), {
56
+ "secureConnections": obj.secureConnections
57
+ ? model.SecureConnectionDetails.getJsonObj(obj.secureConnections)
58
+ : undefined,
56
59
  "replicaOverrides": obj.replicaOverrides
57
60
  ? model.ReplicaOverrides.getJsonObj(obj.replicaOverrides)
58
61
  : undefined
@@ -62,6 +65,9 @@ var Replica;
62
65
  Replica.getJsonObj = getJsonObj;
63
66
  function getDeserializedJsonObj(obj) {
64
67
  const jsonObj = Object.assign(Object.assign({}, obj), {
68
+ "secureConnections": obj.secureConnections
69
+ ? model.SecureConnectionDetails.getDeserializedJsonObj(obj.secureConnections)
70
+ : undefined,
65
71
  "replicaOverrides": obj.replicaOverrides
66
72
  ? model.ReplicaOverrides.getDeserializedJsonObj(obj.replicaOverrides)
67
73
  : undefined
@@ -1 +1 @@
1
- {"version":3,"file":"replica.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/replica.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAyGlC,IAAiB,OAAO,CAyCvB;AAzCD,WAAiB,OAAO;IACtB,IAAY,cAcX;IAdD,WAAY,cAAc;QACxB,uCAAqB,CAAA;QACrB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,qCAAmB,CAAA;QACnB,oDAAkC,CAAA;QAClC,mCAAiB,CAAA;QACjB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAdW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAczB;IAED,SAAgB,UAAU,CAAC,GAAY;QACrC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,kBAAkB,EAAE,GAAG,CAAC,gBAAgB;gBACtC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,UAAU,CAAC,GAAG,CAAC,gBAAgB,CAAC;gBACzD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,kBAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAY;QACjD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,kBAAkB,EAAE,GAAG,CAAC,gBAAgB;gBACtC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,sBAAsB,CAAC,GAAG,CAAC,gBAAgB,CAAC;gBACrE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,8BAAsB,yBAWrC,CAAA;AACH,CAAC,EAzCgB,OAAO,GAAP,eAAO,KAAP,eAAO,QAyCvB"}
1
+ {"version":3,"file":"replica.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/replica.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA0GlC,IAAiB,OAAO,CAiDvB;AAjDD,WAAiB,OAAO;IACtB,IAAY,cAcX;IAdD,WAAY,cAAc;QACxB,uCAAqB,CAAA;QACrB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,qCAAmB,CAAA;QACnB,oDAAkC,CAAA;QAClC,mCAAiB,CAAA;QACjB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAdW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAczB;IAED,SAAgB,UAAU,CAAC,GAAY;QACrC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,mBAAmB,EAAE,GAAG,CAAC,iBAAiB;gBACxC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,UAAU,CAAC,GAAG,CAAC,iBAAiB,CAAC;gBACjE,CAAC,CAAC,SAAS;YAEb,kBAAkB,EAAE,GAAG,CAAC,gBAAgB;gBACtC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,UAAU,CAAC,GAAG,CAAC,gBAAgB,CAAC;gBACzD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAfe,kBAAU,aAezB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAY;QACjD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,mBAAmB,EAAE,GAAG,CAAC,iBAAiB;gBACxC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,sBAAsB,CAAC,GAAG,CAAC,iBAAiB,CAAC;gBAC7E,CAAC,CAAC,SAAS;YAEb,kBAAkB,EAAE,GAAG,CAAC,gBAAgB;gBACtC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,sBAAsB,CAAC,GAAG,CAAC,gBAAgB,CAAC;gBACrE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAfe,8BAAsB,yBAerC,CAAA;AACH,CAAC,EAjDgB,OAAO,GAAP,eAAO,KAAP,eAAO,QAiDvB"}
@@ -0,0 +1,32 @@
1
+ /**
2
+ * MySQL Database Service API
3
+ * The API for the MySQL Database Service
4
+ * OpenAPI spec version: 20190415
5
+ * Contact: mysql-cloud-dev_ww_grp@oracle.com
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 * as model from "../model";
14
+ /**
15
+ * Secure connection configuration details.
16
+ *
17
+ */
18
+ export interface SecureConnectionDetails {
19
+ /**
20
+ * The OCID of the certificate to use.
21
+ */
22
+ "certificateId"?: string;
23
+ /**
24
+ * Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
25
+ *
26
+ */
27
+ "certificateGenerationType": model.CertificateGenerationType;
28
+ }
29
+ export declare namespace SecureConnectionDetails {
30
+ function getJsonObj(obj: SecureConnectionDetails): object;
31
+ function getDeserializedJsonObj(obj: SecureConnectionDetails): object;
32
+ }
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ /**
3
+ * MySQL Database Service API
4
+ * The API for the MySQL Database Service
5
+ * OpenAPI spec version: 20190415
6
+ * Contact: mysql-cloud-dev_ww_grp@oracle.com
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
+ exports.SecureConnectionDetails = void 0;
16
+ var SecureConnectionDetails;
17
+ (function (SecureConnectionDetails) {
18
+ function getJsonObj(obj) {
19
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
20
+ return jsonObj;
21
+ }
22
+ SecureConnectionDetails.getJsonObj = getJsonObj;
23
+ function getDeserializedJsonObj(obj) {
24
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
25
+ return jsonObj;
26
+ }
27
+ SecureConnectionDetails.getDeserializedJsonObj = getDeserializedJsonObj;
28
+ })(SecureConnectionDetails = exports.SecureConnectionDetails || (exports.SecureConnectionDetails = {}));
29
+ //# sourceMappingURL=secure-connection-details.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"secure-connection-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/secure-connection-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAqBH,IAAiB,uBAAuB,CAWvC;AAXD,WAAiB,uBAAuB;IACtC,SAAgB,UAAU,CAAC,GAA4B;QACrD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,kCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA4B;QACjE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,8CAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAWvC"}
@@ -164,6 +164,7 @@ export interface UpdateDbSystemDetails {
164
164
  *
165
165
  */
166
166
  "databaseManagement"?: model.DatabaseManagementStatus;
167
+ "secureConnections"?: model.SecureConnectionDetails;
167
168
  }
168
169
  export declare namespace UpdateDbSystemDetails {
169
170
  function getJsonObj(obj: UpdateDbSystemDetails): object;
@@ -45,6 +45,9 @@ var UpdateDbSystemDetails;
45
45
  : undefined,
46
46
  "deletionPolicy": obj.deletionPolicy
47
47
  ? model.UpdateDeletionPolicyDetails.getJsonObj(obj.deletionPolicy)
48
+ : undefined,
49
+ "secureConnections": obj.secureConnections
50
+ ? model.SecureConnectionDetails.getJsonObj(obj.secureConnections)
48
51
  : undefined
49
52
  });
50
53
  return jsonObj;
@@ -60,6 +63,9 @@ var UpdateDbSystemDetails;
60
63
  : undefined,
61
64
  "deletionPolicy": obj.deletionPolicy
62
65
  ? model.UpdateDeletionPolicyDetails.getDeserializedJsonObj(obj.deletionPolicy)
66
+ : undefined,
67
+ "secureConnections": obj.secureConnections
68
+ ? model.SecureConnectionDetails.getDeserializedJsonObj(obj.secureConnections)
63
69
  : undefined
64
70
  });
65
71
  return jsonObj;
@@ -1 +1 @@
1
- {"version":3,"file":"update-db-system-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/update-db-system-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAwJlC,IAAiB,qBAAqB,CAuCrC;AAvCD,WAAiB,qBAAqB;IACpC,SAAgB,UAAU,CAAC,GAA0B;QACnD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,UAAU,CAAC,GAAG,CAAC,YAAY,CAAC;gBAC9D,CAAC,CAAC,SAAS;YACb,aAAa,EAAE,GAAG,CAAC,WAAW;gBAC5B,CAAC,CAAC,KAAK,CAAC,wBAAwB,CAAC,UAAU,CAAC,GAAG,CAAC,WAAW,CAAC;gBAC5D,CAAC,CAAC,SAAS;YAEb,gBAAgB,EAAE,GAAG,CAAC,cAAc;gBAClC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,UAAU,CAAC,GAAG,CAAC,cAAc,CAAC;gBAClE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAlBe,gCAAU,aAkBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA0B;QAC/D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,sBAAsB,CAAC,GAAG,CAAC,YAAY,CAAC;gBAC1E,CAAC,CAAC,SAAS;YACb,aAAa,EAAE,GAAG,CAAC,WAAW;gBAC5B,CAAC,CAAC,KAAK,CAAC,wBAAwB,CAAC,sBAAsB,CAAC,GAAG,CAAC,WAAW,CAAC;gBACxE,CAAC,CAAC,SAAS;YAEb,gBAAgB,EAAE,GAAG,CAAC,cAAc;gBAClC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,sBAAsB,CAAC,GAAG,CAAC,cAAc,CAAC;gBAC9E,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAlBe,4CAAsB,yBAkBrC,CAAA;AACH,CAAC,EAvCgB,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAuCrC"}
1
+ {"version":3,"file":"update-db-system-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/update-db-system-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAyJlC,IAAiB,qBAAqB,CA+CrC;AA/CD,WAAiB,qBAAqB;IACpC,SAAgB,UAAU,CAAC,GAA0B;QACnD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,UAAU,CAAC,GAAG,CAAC,YAAY,CAAC;gBAC9D,CAAC,CAAC,SAAS;YACb,aAAa,EAAE,GAAG,CAAC,WAAW;gBAC5B,CAAC,CAAC,KAAK,CAAC,wBAAwB,CAAC,UAAU,CAAC,GAAG,CAAC,WAAW,CAAC;gBAC5D,CAAC,CAAC,SAAS;YAEb,gBAAgB,EAAE,GAAG,CAAC,cAAc;gBAClC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,UAAU,CAAC,GAAG,CAAC,cAAc,CAAC;gBAClE,CAAC,CAAC,SAAS;YAEb,mBAAmB,EAAE,GAAG,CAAC,iBAAiB;gBACxC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,UAAU,CAAC,GAAG,CAAC,iBAAiB,CAAC;gBACjE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAtBe,gCAAU,aAsBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA0B;QAC/D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,sBAAsB,CAAC,GAAG,CAAC,YAAY,CAAC;gBAC1E,CAAC,CAAC,SAAS;YACb,aAAa,EAAE,GAAG,CAAC,WAAW;gBAC5B,CAAC,CAAC,KAAK,CAAC,wBAAwB,CAAC,sBAAsB,CAAC,GAAG,CAAC,WAAW,CAAC;gBACxE,CAAC,CAAC,SAAS;YAEb,gBAAgB,EAAE,GAAG,CAAC,cAAc;gBAClC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,sBAAsB,CAAC,GAAG,CAAC,cAAc,CAAC;gBAC9E,CAAC,CAAC,SAAS;YAEb,mBAAmB,EAAE,GAAG,CAAC,iBAAiB;gBACxC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,sBAAsB,CAAC,GAAG,CAAC,iBAAiB,CAAC;gBAC7E,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAtBe,4CAAsB,yBAsBrC,CAAA;AACH,CAAC,EA/CgB,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QA+CrC"}
@@ -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.77.1/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveClusterRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveClusterRequest.
17
17
  */
18
18
  export interface AddHeatWaveClusterRequest 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.77.1/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartmentRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartmentRequest.
17
17
  */
18
18
  export interface ChangeBackupCompartmentRequest 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.77.1/mysql/CreateBackup.ts.html |here} to see how to use CreateBackupRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/CreateBackup.ts.html |here} to see how to use CreateBackupRequest.
17
17
  */
18
18
  export interface CreateBackupRequest 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.77.1/mysql/CreateChannel.ts.html |here} to see how to use CreateChannelRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/CreateChannel.ts.html |here} to see how to use CreateChannelRequest.
17
17
  */
18
18
  export interface CreateChannelRequest 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.77.1/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfigurationRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfigurationRequest.
17
17
  */
18
18
  export interface CreateConfigurationRequest 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.77.1/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystemRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystemRequest.
17
17
  */
18
18
  export interface CreateDbSystemRequest 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.77.1/mysql/CreateReplica.ts.html |here} to see how to use CreateReplicaRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/CreateReplica.ts.html |here} to see how to use CreateReplicaRequest.
17
17
  */
18
18
  export interface CreateReplicaRequest 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.77.1/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackupRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackupRequest.
16
16
  */
17
17
  export interface DeleteBackupRequest 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.77.1/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannelRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannelRequest.
16
16
  */
17
17
  export interface DeleteChannelRequest 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.77.1/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfigurationRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfigurationRequest.
16
16
  */
17
17
  export interface DeleteConfigurationRequest 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.77.1/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystemRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystemRequest.
16
16
  */
17
17
  export interface DeleteDbSystemRequest 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.77.1/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveClusterRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveClusterRequest.
16
16
  */
17
17
  export interface DeleteHeatWaveClusterRequest 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.77.1/mysql/DeleteReplica.ts.html |here} to see how to use DeleteReplicaRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/DeleteReplica.ts.html |here} to see how to use DeleteReplicaRequest.
16
16
  */
17
17
  export interface DeleteReplicaRequest 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.77.1/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimateRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimateRequest.
16
16
  */
17
17
  export interface GenerateHeatWaveClusterMemoryEstimateRequest 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.77.1/mysql/GetBackup.ts.html |here} to see how to use GetBackupRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/GetBackup.ts.html |here} to see how to use GetBackupRequest.
16
16
  */
17
17
  export interface GetBackupRequest 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.77.1/mysql/GetChannel.ts.html |here} to see how to use GetChannelRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/GetChannel.ts.html |here} to see how to use GetChannelRequest.
16
16
  */
17
17
  export interface GetChannelRequest 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.77.1/mysql/GetConfiguration.ts.html |here} to see how to use GetConfigurationRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/GetConfiguration.ts.html |here} to see how to use GetConfigurationRequest.
16
16
  */
17
17
  export interface GetConfigurationRequest 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.77.1/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystemRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystemRequest.
16
16
  */
17
17
  export interface GetDbSystemRequest 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.77.1/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimateRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimateRequest.
16
16
  */
17
17
  export interface GetHeatWaveClusterMemoryEstimateRequest 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.77.1/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveClusterRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveClusterRequest.
16
16
  */
17
17
  export interface GetHeatWaveClusterRequest 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.77.1/mysql/GetReplica.ts.html |here} to see how to use GetReplicaRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/GetReplica.ts.html |here} to see how to use GetReplicaRequest.
16
16
  */
17
17
  export interface GetReplicaRequest 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.77.1/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
16
16
  */
17
17
  export interface GetWorkRequestRequest 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.77.1/mysql/ListBackups.ts.html |here} to see how to use ListBackupsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/ListBackups.ts.html |here} to see how to use ListBackupsRequest.
16
16
  */
17
17
  export interface ListBackupsRequest 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.77.1/mysql/ListChannels.ts.html |here} to see how to use ListChannelsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/ListChannels.ts.html |here} to see how to use ListChannelsRequest.
16
16
  */
17
17
  export interface ListChannelsRequest 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.77.1/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurationsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurationsRequest.
16
16
  */
17
17
  export interface ListConfigurationsRequest 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.77.1/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystemsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystemsRequest.
16
16
  */
17
17
  export interface ListDbSystemsRequest 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.77.1/mysql/ListReplicas.ts.html |here} to see how to use ListReplicasRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/ListReplicas.ts.html |here} to see how to use ListReplicasRequest.
16
16
  */
17
17
  export interface ListReplicasRequest 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.77.1/mysql/ListShapes.ts.html |here} to see how to use ListShapesRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/ListShapes.ts.html |here} to see how to use ListShapesRequest.
16
16
  */
17
17
  export interface ListShapesRequest 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.77.1/mysql/ListVersions.ts.html |here} to see how to use ListVersionsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/ListVersions.ts.html |here} to see how to use ListVersionsRequest.
16
16
  */
17
17
  export interface ListVersionsRequest 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.77.1/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
16
16
  */
17
17
  export interface ListWorkRequestErrorsRequest 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.77.1/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
16
16
  */
17
17
  export interface ListWorkRequestLogsRequest 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.77.1/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
16
16
  */
17
17
  export interface ListWorkRequestsRequest 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.77.1/mysql/ResetChannel.ts.html |here} to see how to use ResetChannelRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/ResetChannel.ts.html |here} to see how to use ResetChannelRequest.
16
16
  */
17
17
  export interface ResetChannelRequest 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.77.1/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystemRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystemRequest.
17
17
  */
18
18
  export interface RestartDbSystemRequest 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.77.1/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveClusterRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveClusterRequest.
16
16
  */
17
17
  export interface RestartHeatWaveClusterRequest extends common.BaseRequest {
18
18
  /**