@aws-sdk/client-arc-zonal-shift 3.462.0 → 3.464.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 (55) hide show
  1. package/README.md +74 -22
  2. package/dist-cjs/ARCZonalShift.js +10 -0
  3. package/dist-cjs/commands/CreatePracticeRunConfigurationCommand.js +51 -0
  4. package/dist-cjs/commands/DeletePracticeRunConfigurationCommand.js +51 -0
  5. package/dist-cjs/commands/ListAutoshiftsCommand.js +51 -0
  6. package/dist-cjs/commands/UpdatePracticeRunConfigurationCommand.js +51 -0
  7. package/dist-cjs/commands/UpdateZonalAutoshiftConfigurationCommand.js +51 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +61 -34
  10. package/dist-cjs/pagination/ListAutoshiftsPaginator.js +29 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +419 -2
  13. package/dist-es/ARCZonalShift.js +10 -0
  14. package/dist-es/commands/CreatePracticeRunConfigurationCommand.js +47 -0
  15. package/dist-es/commands/DeletePracticeRunConfigurationCommand.js +47 -0
  16. package/dist-es/commands/ListAutoshiftsCommand.js +47 -0
  17. package/dist-es/commands/UpdatePracticeRunConfigurationCommand.js +47 -0
  18. package/dist-es/commands/UpdateZonalAutoshiftConfigurationCommand.js +47 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/models/models_0.js +58 -31
  21. package/dist-es/pagination/ListAutoshiftsPaginator.js +25 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_restJson1.js +408 -1
  24. package/dist-types/ARCZonalShift.d.ts +62 -15
  25. package/dist-types/ARCZonalShiftClient.d.ts +34 -17
  26. package/dist-types/commands/CancelZonalShiftCommand.d.ts +5 -2
  27. package/dist-types/commands/CreatePracticeRunConfigurationCommand.d.ts +138 -0
  28. package/dist-types/commands/DeletePracticeRunConfigurationCommand.d.ts +95 -0
  29. package/dist-types/commands/GetManagedResourceCommand.d.ts +33 -4
  30. package/dist-types/commands/ListAutoshiftsCommand.d.ts +95 -0
  31. package/dist-types/commands/ListManagedResourcesCommand.d.ts +28 -3
  32. package/dist-types/commands/ListZonalShiftsCommand.d.ts +8 -2
  33. package/dist-types/commands/StartZonalShiftCommand.d.ts +8 -7
  34. package/dist-types/commands/UpdatePracticeRunConfigurationCommand.d.ts +133 -0
  35. package/dist-types/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +96 -0
  36. package/dist-types/commands/UpdateZonalShiftCommand.d.ts +2 -2
  37. package/dist-types/commands/index.d.ts +5 -0
  38. package/dist-types/index.d.ts +27 -15
  39. package/dist-types/models/models_0.d.ts +698 -95
  40. package/dist-types/pagination/ListAutoshiftsPaginator.d.ts +7 -0
  41. package/dist-types/pagination/index.d.ts +1 -0
  42. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  43. package/dist-types/ts3.4/ARCZonalShift.d.ts +91 -0
  44. package/dist-types/ts3.4/ARCZonalShiftClient.d.ts +30 -0
  45. package/dist-types/ts3.4/commands/CreatePracticeRunConfigurationCommand.d.ts +42 -0
  46. package/dist-types/ts3.4/commands/DeletePracticeRunConfigurationCommand.d.ts +42 -0
  47. package/dist-types/ts3.4/commands/ListAutoshiftsCommand.d.ts +38 -0
  48. package/dist-types/ts3.4/commands/UpdatePracticeRunConfigurationCommand.d.ts +42 -0
  49. package/dist-types/ts3.4/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +42 -0
  50. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  51. package/dist-types/ts3.4/models/models_0.d.ts +143 -23
  52. package/dist-types/ts3.4/pagination/ListAutoshiftsPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  54. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  55. package/package.json +1 -1
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListAutoshiftsCommandInput, ListAutoshiftsCommandOutput } from "../commands/ListAutoshiftsCommand";
3
+ import { ARCZonalShiftPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListAutoshifts(config: ARCZonalShiftPaginationConfiguration, input: ListAutoshiftsCommandInput, ...additionalArguments: any): Paginator<ListAutoshiftsCommandOutput>;
@@ -1,3 +1,4 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListAutoshiftsPaginator";
2
3
  export * from "./ListManagedResourcesPaginator";
3
4
  export * from "./ListZonalShiftsPaginator";
@@ -1,19 +1,36 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { CancelZonalShiftCommandInput, CancelZonalShiftCommandOutput } from "../commands/CancelZonalShiftCommand";
4
+ import { CreatePracticeRunConfigurationCommandInput, CreatePracticeRunConfigurationCommandOutput } from "../commands/CreatePracticeRunConfigurationCommand";
5
+ import { DeletePracticeRunConfigurationCommandInput, DeletePracticeRunConfigurationCommandOutput } from "../commands/DeletePracticeRunConfigurationCommand";
4
6
  import { GetManagedResourceCommandInput, GetManagedResourceCommandOutput } from "../commands/GetManagedResourceCommand";
7
+ import { ListAutoshiftsCommandInput, ListAutoshiftsCommandOutput } from "../commands/ListAutoshiftsCommand";
5
8
  import { ListManagedResourcesCommandInput, ListManagedResourcesCommandOutput } from "../commands/ListManagedResourcesCommand";
6
9
  import { ListZonalShiftsCommandInput, ListZonalShiftsCommandOutput } from "../commands/ListZonalShiftsCommand";
7
10
  import { StartZonalShiftCommandInput, StartZonalShiftCommandOutput } from "../commands/StartZonalShiftCommand";
11
+ import { UpdatePracticeRunConfigurationCommandInput, UpdatePracticeRunConfigurationCommandOutput } from "../commands/UpdatePracticeRunConfigurationCommand";
12
+ import { UpdateZonalAutoshiftConfigurationCommandInput, UpdateZonalAutoshiftConfigurationCommandOutput } from "../commands/UpdateZonalAutoshiftConfigurationCommand";
8
13
  import { UpdateZonalShiftCommandInput, UpdateZonalShiftCommandOutput } from "../commands/UpdateZonalShiftCommand";
9
14
  /**
10
15
  * serializeAws_restJson1CancelZonalShiftCommand
11
16
  */
12
17
  export declare const se_CancelZonalShiftCommand: (input: CancelZonalShiftCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ /**
19
+ * serializeAws_restJson1CreatePracticeRunConfigurationCommand
20
+ */
21
+ export declare const se_CreatePracticeRunConfigurationCommand: (input: CreatePracticeRunConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ /**
23
+ * serializeAws_restJson1DeletePracticeRunConfigurationCommand
24
+ */
25
+ export declare const se_DeletePracticeRunConfigurationCommand: (input: DeletePracticeRunConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
13
26
  /**
14
27
  * serializeAws_restJson1GetManagedResourceCommand
15
28
  */
16
29
  export declare const se_GetManagedResourceCommand: (input: GetManagedResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ /**
31
+ * serializeAws_restJson1ListAutoshiftsCommand
32
+ */
33
+ export declare const se_ListAutoshiftsCommand: (input: ListAutoshiftsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
34
  /**
18
35
  * serializeAws_restJson1ListManagedResourcesCommand
19
36
  */
@@ -26,6 +43,14 @@ export declare const se_ListZonalShiftsCommand: (input: ListZonalShiftsCommandIn
26
43
  * serializeAws_restJson1StartZonalShiftCommand
27
44
  */
28
45
  export declare const se_StartZonalShiftCommand: (input: StartZonalShiftCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
+ /**
47
+ * serializeAws_restJson1UpdatePracticeRunConfigurationCommand
48
+ */
49
+ export declare const se_UpdatePracticeRunConfigurationCommand: (input: UpdatePracticeRunConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
+ /**
51
+ * serializeAws_restJson1UpdateZonalAutoshiftConfigurationCommand
52
+ */
53
+ export declare const se_UpdateZonalAutoshiftConfigurationCommand: (input: UpdateZonalAutoshiftConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
54
  /**
30
55
  * serializeAws_restJson1UpdateZonalShiftCommand
31
56
  */
@@ -34,10 +59,22 @@ export declare const se_UpdateZonalShiftCommand: (input: UpdateZonalShiftCommand
34
59
  * deserializeAws_restJson1CancelZonalShiftCommand
35
60
  */
36
61
  export declare const de_CancelZonalShiftCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelZonalShiftCommandOutput>;
62
+ /**
63
+ * deserializeAws_restJson1CreatePracticeRunConfigurationCommand
64
+ */
65
+ export declare const de_CreatePracticeRunConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePracticeRunConfigurationCommandOutput>;
66
+ /**
67
+ * deserializeAws_restJson1DeletePracticeRunConfigurationCommand
68
+ */
69
+ export declare const de_DeletePracticeRunConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePracticeRunConfigurationCommandOutput>;
37
70
  /**
38
71
  * deserializeAws_restJson1GetManagedResourceCommand
39
72
  */
40
73
  export declare const de_GetManagedResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetManagedResourceCommandOutput>;
74
+ /**
75
+ * deserializeAws_restJson1ListAutoshiftsCommand
76
+ */
77
+ export declare const de_ListAutoshiftsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAutoshiftsCommandOutput>;
41
78
  /**
42
79
  * deserializeAws_restJson1ListManagedResourcesCommand
43
80
  */
@@ -50,6 +87,14 @@ export declare const de_ListZonalShiftsCommand: (output: __HttpResponse, context
50
87
  * deserializeAws_restJson1StartZonalShiftCommand
51
88
  */
52
89
  export declare const de_StartZonalShiftCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartZonalShiftCommandOutput>;
90
+ /**
91
+ * deserializeAws_restJson1UpdatePracticeRunConfigurationCommand
92
+ */
93
+ export declare const de_UpdatePracticeRunConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePracticeRunConfigurationCommandOutput>;
94
+ /**
95
+ * deserializeAws_restJson1UpdateZonalAutoshiftConfigurationCommand
96
+ */
97
+ export declare const de_UpdateZonalAutoshiftConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateZonalAutoshiftConfigurationCommandOutput>;
53
98
  /**
54
99
  * deserializeAws_restJson1UpdateZonalShiftCommand
55
100
  */
@@ -4,10 +4,22 @@ import {
4
4
  CancelZonalShiftCommandInput,
5
5
  CancelZonalShiftCommandOutput,
6
6
  } from "./commands/CancelZonalShiftCommand";
7
+ import {
8
+ CreatePracticeRunConfigurationCommandInput,
9
+ CreatePracticeRunConfigurationCommandOutput,
10
+ } from "./commands/CreatePracticeRunConfigurationCommand";
11
+ import {
12
+ DeletePracticeRunConfigurationCommandInput,
13
+ DeletePracticeRunConfigurationCommandOutput,
14
+ } from "./commands/DeletePracticeRunConfigurationCommand";
7
15
  import {
8
16
  GetManagedResourceCommandInput,
9
17
  GetManagedResourceCommandOutput,
10
18
  } from "./commands/GetManagedResourceCommand";
19
+ import {
20
+ ListAutoshiftsCommandInput,
21
+ ListAutoshiftsCommandOutput,
22
+ } from "./commands/ListAutoshiftsCommand";
11
23
  import {
12
24
  ListManagedResourcesCommandInput,
13
25
  ListManagedResourcesCommandOutput,
@@ -20,6 +32,14 @@ import {
20
32
  StartZonalShiftCommandInput,
21
33
  StartZonalShiftCommandOutput,
22
34
  } from "./commands/StartZonalShiftCommand";
35
+ import {
36
+ UpdatePracticeRunConfigurationCommandInput,
37
+ UpdatePracticeRunConfigurationCommandOutput,
38
+ } from "./commands/UpdatePracticeRunConfigurationCommand";
39
+ import {
40
+ UpdateZonalAutoshiftConfigurationCommandInput,
41
+ UpdateZonalAutoshiftConfigurationCommandOutput,
42
+ } from "./commands/UpdateZonalAutoshiftConfigurationCommand";
23
43
  import {
24
44
  UpdateZonalShiftCommandInput,
25
45
  UpdateZonalShiftCommandOutput,
@@ -38,6 +58,32 @@ export interface ARCZonalShift {
38
58
  options: __HttpHandlerOptions,
39
59
  cb: (err: any, data?: CancelZonalShiftCommandOutput) => void
40
60
  ): void;
61
+ createPracticeRunConfiguration(
62
+ args: CreatePracticeRunConfigurationCommandInput,
63
+ options?: __HttpHandlerOptions
64
+ ): Promise<CreatePracticeRunConfigurationCommandOutput>;
65
+ createPracticeRunConfiguration(
66
+ args: CreatePracticeRunConfigurationCommandInput,
67
+ cb: (err: any, data?: CreatePracticeRunConfigurationCommandOutput) => void
68
+ ): void;
69
+ createPracticeRunConfiguration(
70
+ args: CreatePracticeRunConfigurationCommandInput,
71
+ options: __HttpHandlerOptions,
72
+ cb: (err: any, data?: CreatePracticeRunConfigurationCommandOutput) => void
73
+ ): void;
74
+ deletePracticeRunConfiguration(
75
+ args: DeletePracticeRunConfigurationCommandInput,
76
+ options?: __HttpHandlerOptions
77
+ ): Promise<DeletePracticeRunConfigurationCommandOutput>;
78
+ deletePracticeRunConfiguration(
79
+ args: DeletePracticeRunConfigurationCommandInput,
80
+ cb: (err: any, data?: DeletePracticeRunConfigurationCommandOutput) => void
81
+ ): void;
82
+ deletePracticeRunConfiguration(
83
+ args: DeletePracticeRunConfigurationCommandInput,
84
+ options: __HttpHandlerOptions,
85
+ cb: (err: any, data?: DeletePracticeRunConfigurationCommandOutput) => void
86
+ ): void;
41
87
  getManagedResource(
42
88
  args: GetManagedResourceCommandInput,
43
89
  options?: __HttpHandlerOptions
@@ -51,6 +97,19 @@ export interface ARCZonalShift {
51
97
  options: __HttpHandlerOptions,
52
98
  cb: (err: any, data?: GetManagedResourceCommandOutput) => void
53
99
  ): void;
100
+ listAutoshifts(
101
+ args: ListAutoshiftsCommandInput,
102
+ options?: __HttpHandlerOptions
103
+ ): Promise<ListAutoshiftsCommandOutput>;
104
+ listAutoshifts(
105
+ args: ListAutoshiftsCommandInput,
106
+ cb: (err: any, data?: ListAutoshiftsCommandOutput) => void
107
+ ): void;
108
+ listAutoshifts(
109
+ args: ListAutoshiftsCommandInput,
110
+ options: __HttpHandlerOptions,
111
+ cb: (err: any, data?: ListAutoshiftsCommandOutput) => void
112
+ ): void;
54
113
  listManagedResources(
55
114
  args: ListManagedResourcesCommandInput,
56
115
  options?: __HttpHandlerOptions
@@ -90,6 +149,38 @@ export interface ARCZonalShift {
90
149
  options: __HttpHandlerOptions,
91
150
  cb: (err: any, data?: StartZonalShiftCommandOutput) => void
92
151
  ): void;
152
+ updatePracticeRunConfiguration(
153
+ args: UpdatePracticeRunConfigurationCommandInput,
154
+ options?: __HttpHandlerOptions
155
+ ): Promise<UpdatePracticeRunConfigurationCommandOutput>;
156
+ updatePracticeRunConfiguration(
157
+ args: UpdatePracticeRunConfigurationCommandInput,
158
+ cb: (err: any, data?: UpdatePracticeRunConfigurationCommandOutput) => void
159
+ ): void;
160
+ updatePracticeRunConfiguration(
161
+ args: UpdatePracticeRunConfigurationCommandInput,
162
+ options: __HttpHandlerOptions,
163
+ cb: (err: any, data?: UpdatePracticeRunConfigurationCommandOutput) => void
164
+ ): void;
165
+ updateZonalAutoshiftConfiguration(
166
+ args: UpdateZonalAutoshiftConfigurationCommandInput,
167
+ options?: __HttpHandlerOptions
168
+ ): Promise<UpdateZonalAutoshiftConfigurationCommandOutput>;
169
+ updateZonalAutoshiftConfiguration(
170
+ args: UpdateZonalAutoshiftConfigurationCommandInput,
171
+ cb: (
172
+ err: any,
173
+ data?: UpdateZonalAutoshiftConfigurationCommandOutput
174
+ ) => void
175
+ ): void;
176
+ updateZonalAutoshiftConfiguration(
177
+ args: UpdateZonalAutoshiftConfigurationCommandInput,
178
+ options: __HttpHandlerOptions,
179
+ cb: (
180
+ err: any,
181
+ data?: UpdateZonalAutoshiftConfigurationCommandOutput
182
+ ) => void
183
+ ): void;
93
184
  updateZonalShift(
94
185
  args: UpdateZonalShiftCommandInput,
95
186
  options?: __HttpHandlerOptions
@@ -49,10 +49,22 @@ import {
49
49
  CancelZonalShiftCommandInput,
50
50
  CancelZonalShiftCommandOutput,
51
51
  } from "./commands/CancelZonalShiftCommand";
52
+ import {
53
+ CreatePracticeRunConfigurationCommandInput,
54
+ CreatePracticeRunConfigurationCommandOutput,
55
+ } from "./commands/CreatePracticeRunConfigurationCommand";
56
+ import {
57
+ DeletePracticeRunConfigurationCommandInput,
58
+ DeletePracticeRunConfigurationCommandOutput,
59
+ } from "./commands/DeletePracticeRunConfigurationCommand";
52
60
  import {
53
61
  GetManagedResourceCommandInput,
54
62
  GetManagedResourceCommandOutput,
55
63
  } from "./commands/GetManagedResourceCommand";
64
+ import {
65
+ ListAutoshiftsCommandInput,
66
+ ListAutoshiftsCommandOutput,
67
+ } from "./commands/ListAutoshiftsCommand";
56
68
  import {
57
69
  ListManagedResourcesCommandInput,
58
70
  ListManagedResourcesCommandOutput,
@@ -65,6 +77,14 @@ import {
65
77
  StartZonalShiftCommandInput,
66
78
  StartZonalShiftCommandOutput,
67
79
  } from "./commands/StartZonalShiftCommand";
80
+ import {
81
+ UpdatePracticeRunConfigurationCommandInput,
82
+ UpdatePracticeRunConfigurationCommandOutput,
83
+ } from "./commands/UpdatePracticeRunConfigurationCommand";
84
+ import {
85
+ UpdateZonalAutoshiftConfigurationCommandInput,
86
+ UpdateZonalAutoshiftConfigurationCommandOutput,
87
+ } from "./commands/UpdateZonalAutoshiftConfigurationCommand";
68
88
  import {
69
89
  UpdateZonalShiftCommandInput,
70
90
  UpdateZonalShiftCommandOutput,
@@ -78,17 +98,27 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
78
98
  export { __Client };
79
99
  export type ServiceInputTypes =
80
100
  | CancelZonalShiftCommandInput
101
+ | CreatePracticeRunConfigurationCommandInput
102
+ | DeletePracticeRunConfigurationCommandInput
81
103
  | GetManagedResourceCommandInput
104
+ | ListAutoshiftsCommandInput
82
105
  | ListManagedResourcesCommandInput
83
106
  | ListZonalShiftsCommandInput
84
107
  | StartZonalShiftCommandInput
108
+ | UpdatePracticeRunConfigurationCommandInput
109
+ | UpdateZonalAutoshiftConfigurationCommandInput
85
110
  | UpdateZonalShiftCommandInput;
86
111
  export type ServiceOutputTypes =
87
112
  | CancelZonalShiftCommandOutput
113
+ | CreatePracticeRunConfigurationCommandOutput
114
+ | DeletePracticeRunConfigurationCommandOutput
88
115
  | GetManagedResourceCommandOutput
116
+ | ListAutoshiftsCommandOutput
89
117
  | ListManagedResourcesCommandOutput
90
118
  | ListZonalShiftsCommandOutput
91
119
  | StartZonalShiftCommandOutput
120
+ | UpdatePracticeRunConfigurationCommandOutput
121
+ | UpdateZonalAutoshiftConfigurationCommandOutput
92
122
  | UpdateZonalShiftCommandOutput;
93
123
  export interface ClientDefaults
94
124
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ARCZonalShiftClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ARCZonalShiftClient";
14
+ import {
15
+ CreatePracticeRunConfigurationRequest,
16
+ CreatePracticeRunConfigurationResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreatePracticeRunConfigurationCommandInput
20
+ extends CreatePracticeRunConfigurationRequest {}
21
+ export interface CreatePracticeRunConfigurationCommandOutput
22
+ extends CreatePracticeRunConfigurationResponse,
23
+ __MetadataBearer {}
24
+ export declare class CreatePracticeRunConfigurationCommand extends $Command<
25
+ CreatePracticeRunConfigurationCommandInput,
26
+ CreatePracticeRunConfigurationCommandOutput,
27
+ ARCZonalShiftClientResolvedConfig
28
+ > {
29
+ readonly input: CreatePracticeRunConfigurationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreatePracticeRunConfigurationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: ARCZonalShiftClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreatePracticeRunConfigurationCommandInput,
38
+ CreatePracticeRunConfigurationCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ARCZonalShiftClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ARCZonalShiftClient";
14
+ import {
15
+ DeletePracticeRunConfigurationRequest,
16
+ DeletePracticeRunConfigurationResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeletePracticeRunConfigurationCommandInput
20
+ extends DeletePracticeRunConfigurationRequest {}
21
+ export interface DeletePracticeRunConfigurationCommandOutput
22
+ extends DeletePracticeRunConfigurationResponse,
23
+ __MetadataBearer {}
24
+ export declare class DeletePracticeRunConfigurationCommand extends $Command<
25
+ DeletePracticeRunConfigurationCommandInput,
26
+ DeletePracticeRunConfigurationCommandOutput,
27
+ ARCZonalShiftClientResolvedConfig
28
+ > {
29
+ readonly input: DeletePracticeRunConfigurationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DeletePracticeRunConfigurationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: ARCZonalShiftClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DeletePracticeRunConfigurationCommandInput,
38
+ DeletePracticeRunConfigurationCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ARCZonalShiftClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ARCZonalShiftClient";
14
+ import {
15
+ ListAutoshiftsRequest,
16
+ ListAutoshiftsResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListAutoshiftsCommandInput extends ListAutoshiftsRequest {}
20
+ export interface ListAutoshiftsCommandOutput
21
+ extends ListAutoshiftsResponse,
22
+ __MetadataBearer {}
23
+ export declare class ListAutoshiftsCommand extends $Command<
24
+ ListAutoshiftsCommandInput,
25
+ ListAutoshiftsCommandOutput,
26
+ ARCZonalShiftClientResolvedConfig
27
+ > {
28
+ readonly input: ListAutoshiftsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListAutoshiftsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ARCZonalShiftClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListAutoshiftsCommandInput, ListAutoshiftsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ARCZonalShiftClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ARCZonalShiftClient";
14
+ import {
15
+ UpdatePracticeRunConfigurationRequest,
16
+ UpdatePracticeRunConfigurationResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdatePracticeRunConfigurationCommandInput
20
+ extends UpdatePracticeRunConfigurationRequest {}
21
+ export interface UpdatePracticeRunConfigurationCommandOutput
22
+ extends UpdatePracticeRunConfigurationResponse,
23
+ __MetadataBearer {}
24
+ export declare class UpdatePracticeRunConfigurationCommand extends $Command<
25
+ UpdatePracticeRunConfigurationCommandInput,
26
+ UpdatePracticeRunConfigurationCommandOutput,
27
+ ARCZonalShiftClientResolvedConfig
28
+ > {
29
+ readonly input: UpdatePracticeRunConfigurationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdatePracticeRunConfigurationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: ARCZonalShiftClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdatePracticeRunConfigurationCommandInput,
38
+ UpdatePracticeRunConfigurationCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ARCZonalShiftClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ARCZonalShiftClient";
14
+ import {
15
+ UpdateZonalAutoshiftConfigurationRequest,
16
+ UpdateZonalAutoshiftConfigurationResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateZonalAutoshiftConfigurationCommandInput
20
+ extends UpdateZonalAutoshiftConfigurationRequest {}
21
+ export interface UpdateZonalAutoshiftConfigurationCommandOutput
22
+ extends UpdateZonalAutoshiftConfigurationResponse,
23
+ __MetadataBearer {}
24
+ export declare class UpdateZonalAutoshiftConfigurationCommand extends $Command<
25
+ UpdateZonalAutoshiftConfigurationCommandInput,
26
+ UpdateZonalAutoshiftConfigurationCommandOutput,
27
+ ARCZonalShiftClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateZonalAutoshiftConfigurationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateZonalAutoshiftConfigurationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: ARCZonalShiftClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdateZonalAutoshiftConfigurationCommandInput,
38
+ UpdateZonalAutoshiftConfigurationCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -1,6 +1,11 @@
1
1
  export * from "./CancelZonalShiftCommand";
2
+ export * from "./CreatePracticeRunConfigurationCommand";
3
+ export * from "./DeletePracticeRunConfigurationCommand";
2
4
  export * from "./GetManagedResourceCommand";
5
+ export * from "./ListAutoshiftsCommand";
3
6
  export * from "./ListManagedResourcesCommand";
4
7
  export * from "./ListZonalShiftsCommand";
5
8
  export * from "./StartZonalShiftCommand";
9
+ export * from "./UpdatePracticeRunConfigurationCommand";
10
+ export * from "./UpdateZonalAutoshiftConfigurationCommand";
6
11
  export * from "./UpdateZonalShiftCommand";