@aws-sdk/client-arc-zonal-shift 3.1077.0 → 3.1078.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 +23 -153
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/CancelPracticeRunCommand.js +2 -14
- package/dist-es/commands/CancelZonalShiftCommand.js +2 -14
- package/dist-es/commands/CreatePracticeRunConfigurationCommand.js +2 -14
- package/dist-es/commands/DeletePracticeRunConfigurationCommand.js +2 -14
- package/dist-es/commands/GetAutoshiftObserverNotificationStatusCommand.js +2 -14
- package/dist-es/commands/GetManagedResourceCommand.js +2 -14
- package/dist-es/commands/ListAutoshiftsCommand.js +2 -14
- package/dist-es/commands/ListManagedResourcesCommand.js +2 -14
- package/dist-es/commands/ListZonalShiftsCommand.js +2 -14
- package/dist-es/commands/StartPracticeRunCommand.js +2 -14
- package/dist-es/commands/StartZonalShiftCommand.js +2 -14
- package/dist-es/commands/UpdateAutoshiftObserverNotificationStatusCommand.js +2 -14
- package/dist-es/commands/UpdatePracticeRunConfigurationCommand.js +2 -14
- package/dist-es/commands/UpdateZonalAutoshiftConfigurationCommand.js +2 -14
- package/dist-es/commands/UpdateZonalShiftCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/CancelPracticeRunCommand.d.ts +3 -8
- package/dist-types/commands/CancelZonalShiftCommand.d.ts +3 -8
- package/dist-types/commands/CreatePracticeRunConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/DeletePracticeRunConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/GetAutoshiftObserverNotificationStatusCommand.d.ts +3 -8
- package/dist-types/commands/GetManagedResourceCommand.d.ts +3 -8
- package/dist-types/commands/ListAutoshiftsCommand.d.ts +3 -8
- package/dist-types/commands/ListManagedResourcesCommand.d.ts +3 -8
- package/dist-types/commands/ListZonalShiftsCommand.d.ts +3 -8
- package/dist-types/commands/StartPracticeRunCommand.d.ts +3 -8
- package/dist-types/commands/StartZonalShiftCommand.d.ts +3 -8
- package/dist-types/commands/UpdateAutoshiftObserverNotificationStatusCommand.d.ts +3 -8
- package/dist-types/commands/UpdatePracticeRunConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/UpdateZonalShiftCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/CancelPracticeRunCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CancelZonalShiftCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreatePracticeRunConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeletePracticeRunConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAutoshiftObserverNotificationStatusCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetManagedResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListAutoshiftsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListManagedResourcesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListZonalShiftsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartPracticeRunCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartZonalShiftCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateAutoshiftObserverNotificationStatusCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdatePracticeRunConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateZonalShiftCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ARCZonalShiftClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ARCZonalShiftClient";
|
|
8
2
|
import {
|
|
9
3
|
DeletePracticeRunConfigurationRequest,
|
|
10
4
|
DeletePracticeRunConfigurationResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeletePracticeRunConfigurationCommandInput
|
|
15
8
|
extends DeletePracticeRunConfigurationRequest {}
|
|
16
9
|
export interface DeletePracticeRunConfigurationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DeletePracticeRunConfigurationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DeletePracticeRunConfigurationCommandInput,
|
|
24
17
|
DeletePracticeRunConfigurationCommandOutput,
|
|
25
|
-
ARCZonalShiftClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DeletePracticeRunConfigurationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DeletePracticeRunConfigurationCommandInput,
|
|
33
26
|
DeletePracticeRunConfigurationCommandOutput,
|
|
34
|
-
ARCZonalShiftClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DeletePracticeRunConfigurationCommand extends DeletePracticeRunConfigurationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ARCZonalShiftClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ARCZonalShiftClient";
|
|
8
2
|
import {
|
|
9
3
|
GetAutoshiftObserverNotificationStatusRequest,
|
|
10
4
|
GetAutoshiftObserverNotificationStatusResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetAutoshiftObserverNotificationStatusCommandInput
|
|
15
8
|
extends GetAutoshiftObserverNotificationStatusRequest {}
|
|
16
9
|
export interface GetAutoshiftObserverNotificationStatusCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetAutoshiftObserverNotificationStatusCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetAutoshiftObserverNotificationStatusCommandInput,
|
|
24
17
|
GetAutoshiftObserverNotificationStatusCommandOutput,
|
|
25
|
-
ARCZonalShiftClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [GetAutoshiftObserverNotificationStatusCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetAutoshiftObserverNotificationStatusCommandInput,
|
|
33
26
|
GetAutoshiftObserverNotificationStatusCommandOutput,
|
|
34
|
-
ARCZonalShiftClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetAutoshiftObserverNotificationStatusCommand extends GetAutoshiftObserverNotificationStatusCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ARCZonalShiftClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ARCZonalShiftClient";
|
|
8
2
|
import {
|
|
9
3
|
GetManagedResourceRequest,
|
|
10
4
|
GetManagedResourceResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetManagedResourceCommandInput
|
|
15
8
|
extends GetManagedResourceRequest {}
|
|
16
9
|
export interface GetManagedResourceCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetManagedResourceCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetManagedResourceCommandInput,
|
|
24
17
|
GetManagedResourceCommandOutput,
|
|
25
|
-
ARCZonalShiftClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetManagedResourceCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetManagedResourceCommandInput,
|
|
33
26
|
GetManagedResourceCommandOutput,
|
|
34
|
-
ARCZonalShiftClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetManagedResourceCommand extends GetManagedResourceCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ARCZonalShiftClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ARCZonalShiftClient";
|
|
8
2
|
import {
|
|
9
3
|
ListAutoshiftsRequest,
|
|
10
4
|
ListAutoshiftsResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListAutoshiftsCommandInput extends ListAutoshiftsRequest {}
|
|
15
8
|
export interface ListAutoshiftsCommandOutput
|
|
16
9
|
extends ListAutoshiftsResponse,
|
|
@@ -21,22 +14,20 @@ declare const ListAutoshiftsCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
ListAutoshiftsCommandInput,
|
|
23
16
|
ListAutoshiftsCommandOutput,
|
|
24
|
-
ARCZonalShiftClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
...[input]: [] | [ListAutoshiftsCommandInput]
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
ListAutoshiftsCommandInput,
|
|
32
25
|
ListAutoshiftsCommandOutput,
|
|
33
|
-
ARCZonalShiftClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class ListAutoshiftsCommand extends ListAutoshiftsCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ARCZonalShiftClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ARCZonalShiftClient";
|
|
8
2
|
import {
|
|
9
3
|
ListManagedResourcesRequest,
|
|
10
4
|
ListManagedResourcesResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListManagedResourcesCommandInput
|
|
15
8
|
extends ListManagedResourcesRequest {}
|
|
16
9
|
export interface ListManagedResourcesCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListManagedResourcesCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListManagedResourcesCommandInput,
|
|
24
17
|
ListManagedResourcesCommandOutput,
|
|
25
|
-
ARCZonalShiftClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [ListManagedResourcesCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListManagedResourcesCommandInput,
|
|
33
26
|
ListManagedResourcesCommandOutput,
|
|
34
|
-
ARCZonalShiftClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListManagedResourcesCommand extends ListManagedResourcesCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ARCZonalShiftClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ARCZonalShiftClient";
|
|
8
2
|
import {
|
|
9
3
|
ListZonalShiftsRequest,
|
|
10
4
|
ListZonalShiftsResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListZonalShiftsCommandInput extends ListZonalShiftsRequest {}
|
|
15
8
|
export interface ListZonalShiftsCommandOutput
|
|
16
9
|
extends ListZonalShiftsResponse,
|
|
@@ -21,22 +14,20 @@ declare const ListZonalShiftsCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
ListZonalShiftsCommandInput,
|
|
23
16
|
ListZonalShiftsCommandOutput,
|
|
24
|
-
ARCZonalShiftClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
...[input]: [] | [ListZonalShiftsCommandInput]
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
ListZonalShiftsCommandInput,
|
|
32
25
|
ListZonalShiftsCommandOutput,
|
|
33
|
-
ARCZonalShiftClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class ListZonalShiftsCommand extends ListZonalShiftsCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ARCZonalShiftClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ARCZonalShiftClient";
|
|
8
2
|
import {
|
|
9
3
|
StartPracticeRunRequest,
|
|
10
4
|
StartPracticeRunResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface StartPracticeRunCommandInput extends StartPracticeRunRequest {}
|
|
15
8
|
export interface StartPracticeRunCommandOutput
|
|
16
9
|
extends StartPracticeRunResponse,
|
|
@@ -21,22 +14,20 @@ declare const StartPracticeRunCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
StartPracticeRunCommandInput,
|
|
23
16
|
StartPracticeRunCommandOutput,
|
|
24
|
-
ARCZonalShiftClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: StartPracticeRunCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
StartPracticeRunCommandInput,
|
|
32
25
|
StartPracticeRunCommandOutput,
|
|
33
|
-
ARCZonalShiftClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class StartPracticeRunCommand extends StartPracticeRunCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ARCZonalShiftClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ARCZonalShiftClient";
|
|
8
2
|
import { StartZonalShiftRequest, ZonalShift } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface StartZonalShiftCommandInput extends StartZonalShiftRequest {}
|
|
12
5
|
export interface StartZonalShiftCommandOutput
|
|
13
6
|
extends ZonalShift,
|
|
@@ -18,22 +11,20 @@ declare const StartZonalShiftCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
StartZonalShiftCommandInput,
|
|
20
13
|
StartZonalShiftCommandOutput,
|
|
21
|
-
ARCZonalShiftClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: StartZonalShiftCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
StartZonalShiftCommandInput,
|
|
29
22
|
StartZonalShiftCommandOutput,
|
|
30
|
-
ARCZonalShiftClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class StartZonalShiftCommand extends StartZonalShiftCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ARCZonalShiftClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ARCZonalShiftClient";
|
|
8
2
|
import {
|
|
9
3
|
UpdateAutoshiftObserverNotificationStatusRequest,
|
|
10
4
|
UpdateAutoshiftObserverNotificationStatusResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface UpdateAutoshiftObserverNotificationStatusCommandInput
|
|
15
8
|
extends UpdateAutoshiftObserverNotificationStatusRequest {}
|
|
16
9
|
export interface UpdateAutoshiftObserverNotificationStatusCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const UpdateAutoshiftObserverNotificationStatusCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
UpdateAutoshiftObserverNotificationStatusCommandInput,
|
|
24
17
|
UpdateAutoshiftObserverNotificationStatusCommandOutput,
|
|
25
|
-
ARCZonalShiftClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: UpdateAutoshiftObserverNotificationStatusCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
UpdateAutoshiftObserverNotificationStatusCommandInput,
|
|
33
26
|
UpdateAutoshiftObserverNotificationStatusCommandOutput,
|
|
34
|
-
ARCZonalShiftClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class UpdateAutoshiftObserverNotificationStatusCommand extends UpdateAutoshiftObserverNotificationStatusCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ARCZonalShiftClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ARCZonalShiftClient";
|
|
8
2
|
import {
|
|
9
3
|
UpdatePracticeRunConfigurationRequest,
|
|
10
4
|
UpdatePracticeRunConfigurationResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface UpdatePracticeRunConfigurationCommandInput
|
|
15
8
|
extends UpdatePracticeRunConfigurationRequest {}
|
|
16
9
|
export interface UpdatePracticeRunConfigurationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const UpdatePracticeRunConfigurationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
UpdatePracticeRunConfigurationCommandInput,
|
|
24
17
|
UpdatePracticeRunConfigurationCommandOutput,
|
|
25
|
-
ARCZonalShiftClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: UpdatePracticeRunConfigurationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
UpdatePracticeRunConfigurationCommandInput,
|
|
33
26
|
UpdatePracticeRunConfigurationCommandOutput,
|
|
34
|
-
ARCZonalShiftClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class UpdatePracticeRunConfigurationCommand extends UpdatePracticeRunConfigurationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ARCZonalShiftClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ARCZonalShiftClient";
|
|
8
2
|
import {
|
|
9
3
|
UpdateZonalAutoshiftConfigurationRequest,
|
|
10
4
|
UpdateZonalAutoshiftConfigurationResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface UpdateZonalAutoshiftConfigurationCommandInput
|
|
15
8
|
extends UpdateZonalAutoshiftConfigurationRequest {}
|
|
16
9
|
export interface UpdateZonalAutoshiftConfigurationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const UpdateZonalAutoshiftConfigurationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
UpdateZonalAutoshiftConfigurationCommandInput,
|
|
24
17
|
UpdateZonalAutoshiftConfigurationCommandOutput,
|
|
25
|
-
ARCZonalShiftClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: UpdateZonalAutoshiftConfigurationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
UpdateZonalAutoshiftConfigurationCommandInput,
|
|
33
26
|
UpdateZonalAutoshiftConfigurationCommandOutput,
|
|
34
|
-
ARCZonalShiftClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class UpdateZonalAutoshiftConfigurationCommand extends UpdateZonalAutoshiftConfigurationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ARCZonalShiftClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ARCZonalShiftClient";
|
|
8
2
|
import { UpdateZonalShiftRequest, ZonalShift } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface UpdateZonalShiftCommandInput extends UpdateZonalShiftRequest {}
|
|
12
5
|
export interface UpdateZonalShiftCommandOutput
|
|
13
6
|
extends ZonalShift,
|
|
@@ -18,22 +11,20 @@ declare const UpdateZonalShiftCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
UpdateZonalShiftCommandInput,
|
|
20
13
|
UpdateZonalShiftCommandOutput,
|
|
21
|
-
ARCZonalShiftClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: UpdateZonalShiftCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
UpdateZonalShiftCommandInput,
|
|
29
22
|
UpdateZonalShiftCommandOutput,
|
|
30
|
-
ARCZonalShiftClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ARCZonalShiftClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class UpdateZonalShiftCommand extends UpdateZonalShiftCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { ARCZonalShiftExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./pagination";
|
|
9
10
|
export * from "./models/enums";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-arc-zonal-shift",
|
|
3
3
|
"description": "AWS SDK for JavaScript Arc Zonal Shift Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1078.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.973.
|
|
25
|
-
"@smithy/core": "^3.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
28
|
-
"@smithy/types": "^4.15.
|
|
22
|
+
"@aws-sdk/core": "^3.974.26",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.61",
|
|
24
|
+
"@aws-sdk/types": "^3.973.15",
|
|
25
|
+
"@smithy/core": "^3.29.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
28
|
+
"@smithy/types": "^4.15.1",
|
|
29
29
|
"tslib": "^2.6.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|