@aws-sdk/client-neptune 3.934.0 → 3.936.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/dist-cjs/index.js CHANGED
@@ -719,11 +719,6 @@ let SubscriptionCategoryNotFoundFault$1 = class SubscriptionCategoryNotFoundFaul
719
719
  Object.setPrototypeOf(this, SubscriptionCategoryNotFoundFault.prototype);
720
720
  }
721
721
  };
722
- const FailoverStatus = {
723
- CANCELLING: "cancelling",
724
- FAILING_OVER: "failing-over",
725
- PENDING: "pending",
726
- };
727
722
  let GlobalClusterAlreadyExistsFault$1 = class GlobalClusterAlreadyExistsFault extends NeptuneServiceException$1 {
728
723
  name = "GlobalClusterAlreadyExistsFault";
729
724
  $fault = "client";
@@ -820,18 +815,6 @@ let InvalidEventSubscriptionStateFault$1 = class InvalidEventSubscriptionStateFa
820
815
  Object.setPrototypeOf(this, InvalidEventSubscriptionStateFault.prototype);
821
816
  }
822
817
  };
823
- const ApplyMethod = {
824
- immediate: "immediate",
825
- pending_reboot: "pending-reboot",
826
- };
827
- const SourceType = {
828
- db_cluster: "db-cluster",
829
- db_cluster_snapshot: "db-cluster-snapshot",
830
- db_instance: "db-instance",
831
- db_parameter_group: "db-parameter-group",
832
- db_security_group: "db-security-group",
833
- db_snapshot: "db-snapshot",
834
- };
835
818
  let InvalidDBSecurityGroupStateFault$1 = class InvalidDBSecurityGroupStateFault extends NeptuneServiceException$1 {
836
819
  name = "InvalidDBSecurityGroupStateFault";
837
820
  $fault = "client";
@@ -6236,6 +6219,24 @@ const waitUntilDBInstanceDeleted = async (params, input) => {
6236
6219
  return utilWaiter.checkExceptions(result);
6237
6220
  };
6238
6221
 
6222
+ const FailoverStatus = {
6223
+ CANCELLING: "cancelling",
6224
+ FAILING_OVER: "failing-over",
6225
+ PENDING: "pending",
6226
+ };
6227
+ const ApplyMethod = {
6228
+ immediate: "immediate",
6229
+ pending_reboot: "pending-reboot",
6230
+ };
6231
+ const SourceType = {
6232
+ db_cluster: "db-cluster",
6233
+ db_cluster_snapshot: "db-cluster-snapshot",
6234
+ db_instance: "db-instance",
6235
+ db_parameter_group: "db-parameter-group",
6236
+ db_security_group: "db-security-group",
6237
+ db_snapshot: "db-snapshot",
6238
+ };
6239
+
6239
6240
  Object.defineProperty(exports, "$Command", {
6240
6241
  enumerable: true,
6241
6242
  get: function () { return smithyClient.Command; }
package/dist-es/index.js CHANGED
@@ -3,5 +3,6 @@ export * from "./Neptune";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
5
  export * from "./waiters";
6
- export * from "./models";
6
+ export * from "./models/enums";
7
+ export * from "./models/errors";
7
8
  export { NeptuneServiceException } from "./models/NeptuneServiceException";
@@ -0,0 +1,17 @@
1
+ export const FailoverStatus = {
2
+ CANCELLING: "cancelling",
3
+ FAILING_OVER: "failing-over",
4
+ PENDING: "pending",
5
+ };
6
+ export const ApplyMethod = {
7
+ immediate: "immediate",
8
+ pending_reboot: "pending-reboot",
9
+ };
10
+ export const SourceType = {
11
+ db_cluster: "db-cluster",
12
+ db_cluster_snapshot: "db-cluster-snapshot",
13
+ db_instance: "db-instance",
14
+ db_parameter_group: "db-parameter-group",
15
+ db_security_group: "db-security-group",
16
+ db_snapshot: "db-snapshot",
17
+ };