@aws-sdk/client-arc-zonal-shift 3.952.0 → 3.953.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 +197 -140
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CancelPracticeRunCommand.js +2 -2
- package/dist-es/commands/CancelZonalShiftCommand.js +2 -2
- package/dist-es/commands/CreatePracticeRunConfigurationCommand.js +2 -2
- package/dist-es/commands/DeletePracticeRunConfigurationCommand.js +2 -2
- package/dist-es/commands/GetAutoshiftObserverNotificationStatusCommand.js +2 -2
- package/dist-es/commands/GetManagedResourceCommand.js +2 -2
- package/dist-es/commands/ListAutoshiftsCommand.js +2 -2
- package/dist-es/commands/ListManagedResourcesCommand.js +2 -2
- package/dist-es/commands/ListZonalShiftsCommand.js +2 -2
- package/dist-es/commands/StartPracticeRunCommand.js +2 -2
- package/dist-es/commands/StartZonalShiftCommand.js +2 -2
- package/dist-es/commands/UpdateAutoshiftObserverNotificationStatusCommand.js +2 -2
- package/dist-es/commands/UpdatePracticeRunConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateZonalAutoshiftConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateZonalShiftCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +111 -111
- package/dist-types/ARCZonalShiftClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +58 -70
- package/dist-types/ts3.4/ARCZonalShiftClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +57 -70
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.arczonalshift",
|
|
32
|
+
version: "2022-10-30",
|
|
33
|
+
serviceTarget: "PercDataPlane",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "ARC Zonal Shift",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelPracticeRun } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelPracticeRun$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelPracticeRunCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelPracticeRunCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "CancelPracticeRun", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "CancelPracticeRunCommand")
|
|
14
|
-
.sc(CancelPracticeRun)
|
|
14
|
+
.sc(CancelPracticeRun$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelZonalShift } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelZonalShift$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelZonalShiftCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelZonalShiftCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "CancelZonalShift", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "CancelZonalShiftCommand")
|
|
14
|
-
.sc(CancelZonalShift)
|
|
14
|
+
.sc(CancelZonalShift$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreatePracticeRunConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePracticeRunConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePracticeRunConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePracticeRunConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "CreatePracticeRunConfiguration", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "CreatePracticeRunConfigurationCommand")
|
|
14
|
-
.sc(CreatePracticeRunConfiguration)
|
|
14
|
+
.sc(CreatePracticeRunConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePracticeRunConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePracticeRunConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePracticeRunConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePracticeRunConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "DeletePracticeRunConfiguration", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "DeletePracticeRunConfigurationCommand")
|
|
14
|
-
.sc(DeletePracticeRunConfiguration)
|
|
14
|
+
.sc(DeletePracticeRunConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAutoshiftObserverNotificationStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAutoshiftObserverNotificationStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAutoshiftObserverNotificationStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAutoshiftObserverNotificationStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "GetAutoshiftObserverNotificationStatus", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "GetAutoshiftObserverNotificationStatusCommand")
|
|
14
|
-
.sc(GetAutoshiftObserverNotificationStatus)
|
|
14
|
+
.sc(GetAutoshiftObserverNotificationStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetManagedResource } from "../schemas/schemas_0";
|
|
4
|
+
import { GetManagedResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetManagedResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetManagedResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "GetManagedResource", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "GetManagedResourceCommand")
|
|
14
|
-
.sc(GetManagedResource)
|
|
14
|
+
.sc(GetManagedResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAutoshifts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAutoshifts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAutoshiftsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAutoshiftsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "ListAutoshifts", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "ListAutoshiftsCommand")
|
|
14
|
-
.sc(ListAutoshifts)
|
|
14
|
+
.sc(ListAutoshifts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListManagedResources } from "../schemas/schemas_0";
|
|
4
|
+
import { ListManagedResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListManagedResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListManagedResourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "ListManagedResources", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "ListManagedResourcesCommand")
|
|
14
|
-
.sc(ListManagedResources)
|
|
14
|
+
.sc(ListManagedResources$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListZonalShifts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListZonalShifts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListZonalShiftsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListZonalShiftsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "ListZonalShifts", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "ListZonalShiftsCommand")
|
|
14
|
-
.sc(ListZonalShifts)
|
|
14
|
+
.sc(ListZonalShifts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartPracticeRun } from "../schemas/schemas_0";
|
|
4
|
+
import { StartPracticeRun$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartPracticeRunCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartPracticeRunCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "StartPracticeRun", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "StartPracticeRunCommand")
|
|
14
|
-
.sc(StartPracticeRun)
|
|
14
|
+
.sc(StartPracticeRun$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartZonalShift } from "../schemas/schemas_0";
|
|
4
|
+
import { StartZonalShift$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartZonalShiftCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartZonalShiftCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "StartZonalShift", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "StartZonalShiftCommand")
|
|
14
|
-
.sc(StartZonalShift)
|
|
14
|
+
.sc(StartZonalShift$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateAutoshiftObserverNotificationStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAutoshiftObserverNotificationStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAutoshiftObserverNotificationStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAutoshiftObserverNotificationStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "UpdateAutoshiftObserverNotificationStatus", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "UpdateAutoshiftObserverNotificationStatusCommand")
|
|
14
|
-
.sc(UpdateAutoshiftObserverNotificationStatus)
|
|
14
|
+
.sc(UpdateAutoshiftObserverNotificationStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdatePracticeRunConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdatePracticeRunConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdatePracticeRunConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdatePracticeRunConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "UpdatePracticeRunConfiguration", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "UpdatePracticeRunConfigurationCommand")
|
|
14
|
-
.sc(UpdatePracticeRunConfiguration)
|
|
14
|
+
.sc(UpdatePracticeRunConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateZonalAutoshiftConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateZonalAutoshiftConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateZonalAutoshiftConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateZonalAutoshiftConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "UpdateZonalAutoshiftConfiguration", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "UpdateZonalAutoshiftConfigurationCommand")
|
|
14
|
-
.sc(UpdateZonalAutoshiftConfiguration)
|
|
14
|
+
.sc(UpdateZonalAutoshiftConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateZonalShift } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateZonalShift$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateZonalShiftCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateZonalShiftCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("PercDataPlane", "UpdateZonalShift", {})
|
|
13
13
|
.n("ARCZonalShiftClient", "UpdateZonalShiftCommand")
|
|
14
|
-
.sc(UpdateZonalShift)
|
|
14
|
+
.sc(UpdateZonalShift$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.arczonalshift",
|
|
29
|
+
version: "2022-10-30",
|
|
30
|
+
serviceTarget: "PercDataPlane",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "ARC Zonal Shift",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|