@aws-sdk/client-scheduler 3.478.0 → 3.481.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 (53) hide show
  1. package/dist-cjs/commands/CreateScheduleCommand.js +18 -41
  2. package/dist-cjs/commands/CreateScheduleGroupCommand.js +18 -41
  3. package/dist-cjs/commands/DeleteScheduleCommand.js +18 -41
  4. package/dist-cjs/commands/DeleteScheduleGroupCommand.js +18 -41
  5. package/dist-cjs/commands/GetScheduleCommand.js +18 -41
  6. package/dist-cjs/commands/GetScheduleGroupCommand.js +18 -41
  7. package/dist-cjs/commands/ListScheduleGroupsCommand.js +18 -41
  8. package/dist-cjs/commands/ListSchedulesCommand.js +18 -41
  9. package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -41
  10. package/dist-cjs/commands/TagResourceCommand.js +18 -41
  11. package/dist-cjs/commands/UntagResourceCommand.js +18 -41
  12. package/dist-cjs/commands/UpdateScheduleCommand.js +18 -41
  13. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  14. package/dist-es/commands/CreateScheduleCommand.js +18 -41
  15. package/dist-es/commands/CreateScheduleGroupCommand.js +18 -41
  16. package/dist-es/commands/DeleteScheduleCommand.js +18 -41
  17. package/dist-es/commands/DeleteScheduleGroupCommand.js +18 -41
  18. package/dist-es/commands/GetScheduleCommand.js +18 -41
  19. package/dist-es/commands/GetScheduleGroupCommand.js +18 -41
  20. package/dist-es/commands/ListScheduleGroupsCommand.js +18 -41
  21. package/dist-es/commands/ListSchedulesCommand.js +18 -41
  22. package/dist-es/commands/ListTagsForResourceCommand.js +18 -41
  23. package/dist-es/commands/TagResourceCommand.js +18 -41
  24. package/dist-es/commands/UntagResourceCommand.js +18 -41
  25. package/dist-es/commands/UpdateScheduleCommand.js +18 -41
  26. package/dist-es/endpoint/EndpointParameters.js +6 -0
  27. package/dist-types/commands/CreateScheduleCommand.d.ts +6 -21
  28. package/dist-types/commands/CreateScheduleGroupCommand.d.ts +6 -21
  29. package/dist-types/commands/DeleteScheduleCommand.d.ts +6 -21
  30. package/dist-types/commands/DeleteScheduleGroupCommand.d.ts +6 -21
  31. package/dist-types/commands/GetScheduleCommand.d.ts +6 -21
  32. package/dist-types/commands/GetScheduleGroupCommand.d.ts +6 -21
  33. package/dist-types/commands/ListScheduleGroupsCommand.d.ts +6 -21
  34. package/dist-types/commands/ListSchedulesCommand.d.ts +6 -21
  35. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
  36. package/dist-types/commands/TagResourceCommand.d.ts +6 -21
  37. package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
  38. package/dist-types/commands/UpdateScheduleCommand.d.ts +6 -21
  39. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  40. package/dist-types/ts3.4/commands/CreateScheduleCommand.d.ts +14 -23
  41. package/dist-types/ts3.4/commands/CreateScheduleGroupCommand.d.ts +14 -23
  42. package/dist-types/ts3.4/commands/DeleteScheduleCommand.d.ts +14 -23
  43. package/dist-types/ts3.4/commands/DeleteScheduleGroupCommand.d.ts +14 -23
  44. package/dist-types/ts3.4/commands/GetScheduleCommand.d.ts +14 -23
  45. package/dist-types/ts3.4/commands/GetScheduleGroupCommand.d.ts +14 -23
  46. package/dist-types/ts3.4/commands/ListScheduleGroupsCommand.d.ts +14 -23
  47. package/dist-types/ts3.4/commands/ListSchedulesCommand.d.ts +14 -23
  48. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
  49. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
  50. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
  51. package/dist-types/ts3.4/commands/UpdateScheduleCommand.d.ts +14 -23
  52. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  53. package/package.json +9 -9
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { GetScheduleGroupInput, GetScheduleGroupOutput } from "../models/models_0";
5
4
  import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetScheduleGroupCommandInput extends GetScheduleGroupInput {
21
20
  */
22
21
  export interface GetScheduleGroupCommandOutput extends GetScheduleGroupOutput, __MetadataBearer {
23
22
  }
23
+ declare const GetScheduleGroupCommand_base: {
24
+ new (input: GetScheduleGroupCommandInput): import("@smithy/smithy-client").CommandImpl<GetScheduleGroupCommandInput, GetScheduleGroupCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Retrieves the specified schedule group.</p>
@@ -67,23 +70,5 @@ export interface GetScheduleGroupCommandOutput extends GetScheduleGroupOutput, _
67
70
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
68
71
  *
69
72
  */
70
- export declare class GetScheduleGroupCommand extends $Command<GetScheduleGroupCommandInput, GetScheduleGroupCommandOutput, SchedulerClientResolvedConfig> {
71
- readonly input: GetScheduleGroupCommandInput;
72
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
- /**
74
- * @public
75
- */
76
- constructor(input: GetScheduleGroupCommandInput);
77
- /**
78
- * @internal
79
- */
80
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchedulerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetScheduleGroupCommandInput, GetScheduleGroupCommandOutput>;
81
- /**
82
- * @internal
83
- */
84
- private serialize;
85
- /**
86
- * @internal
87
- */
88
- private deserialize;
73
+ export declare class GetScheduleGroupCommand extends GetScheduleGroupCommand_base {
89
74
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListScheduleGroupsInput, ListScheduleGroupsOutput } from "../models/models_0";
5
4
  import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListScheduleGroupsCommandInput extends ListScheduleGroupsInput
21
20
  */
22
21
  export interface ListScheduleGroupsCommandOutput extends ListScheduleGroupsOutput, __MetadataBearer {
23
22
  }
23
+ declare const ListScheduleGroupsCommand_base: {
24
+ new (input: ListScheduleGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListScheduleGroupsCommandInput, ListScheduleGroupsCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns a paginated list of your schedule groups.</p>
@@ -71,23 +74,5 @@ export interface ListScheduleGroupsCommandOutput extends ListScheduleGroupsOutpu
71
74
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
72
75
  *
73
76
  */
74
- export declare class ListScheduleGroupsCommand extends $Command<ListScheduleGroupsCommandInput, ListScheduleGroupsCommandOutput, SchedulerClientResolvedConfig> {
75
- readonly input: ListScheduleGroupsCommandInput;
76
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
- /**
78
- * @public
79
- */
80
- constructor(input: ListScheduleGroupsCommandInput);
81
- /**
82
- * @internal
83
- */
84
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchedulerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListScheduleGroupsCommandInput, ListScheduleGroupsCommandOutput>;
85
- /**
86
- * @internal
87
- */
88
- private serialize;
89
- /**
90
- * @internal
91
- */
92
- private deserialize;
77
+ export declare class ListScheduleGroupsCommand extends ListScheduleGroupsCommand_base {
93
78
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListSchedulesInput, ListSchedulesOutput } from "../models/models_0";
5
4
  import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListSchedulesCommandInput extends ListSchedulesInput {
21
20
  */
22
21
  export interface ListSchedulesCommandOutput extends ListSchedulesOutput, __MetadataBearer {
23
22
  }
23
+ declare const ListSchedulesCommand_base: {
24
+ new (input: ListSchedulesCommandInput): import("@smithy/smithy-client").CommandImpl<ListSchedulesCommandInput, ListSchedulesCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns a paginated list of your EventBridge Scheduler schedules.</p>
@@ -80,23 +83,5 @@ export interface ListSchedulesCommandOutput extends ListSchedulesOutput, __Metad
80
83
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
81
84
  *
82
85
  */
83
- export declare class ListSchedulesCommand extends $Command<ListSchedulesCommandInput, ListSchedulesCommandOutput, SchedulerClientResolvedConfig> {
84
- readonly input: ListSchedulesCommandInput;
85
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
86
- /**
87
- * @public
88
- */
89
- constructor(input: ListSchedulesCommandInput);
90
- /**
91
- * @internal
92
- */
93
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchedulerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSchedulesCommandInput, ListSchedulesCommandOutput>;
94
- /**
95
- * @internal
96
- */
97
- private serialize;
98
- /**
99
- * @internal
100
- */
101
- private deserialize;
86
+ export declare class ListSchedulesCommand extends ListSchedulesCommand_base {
102
87
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
5
4
  import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceInpu
21
20
  */
22
21
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
23
22
  }
23
+ declare const ListTagsForResourceCommand_base: {
24
+ new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists the tags associated with the Scheduler resource.</p>
@@ -68,23 +71,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
68
71
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
69
72
  *
70
73
  */
71
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SchedulerClientResolvedConfig> {
72
- readonly input: ListTagsForResourceCommandInput;
73
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
- /**
75
- * @public
76
- */
77
- constructor(input: ListTagsForResourceCommandInput);
78
- /**
79
- * @internal
80
- */
81
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchedulerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
82
- /**
83
- * @internal
84
- */
85
- private serialize;
86
- /**
87
- * @internal
88
- */
89
- private deserialize;
74
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
90
75
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { TagResourceInput, TagResourceOutput } from "../models/models_0";
5
4
  import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface TagResourceCommandInput extends TagResourceInput {
21
20
  */
22
21
  export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
23
22
  }
23
+ declare const TagResourceCommand_base: {
24
+ new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Assigns one or more tags (key-value pairs) to the specified EventBridge Scheduler resource. You can only assign tags to schedule groups.</p>
@@ -70,23 +73,5 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
70
73
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
71
74
  *
72
75
  */
73
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SchedulerClientResolvedConfig> {
74
- readonly input: TagResourceCommandInput;
75
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
- /**
77
- * @public
78
- */
79
- constructor(input: TagResourceCommandInput);
80
- /**
81
- * @internal
82
- */
83
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchedulerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
84
- /**
85
- * @internal
86
- */
87
- private serialize;
88
- /**
89
- * @internal
90
- */
91
- private deserialize;
76
+ export declare class TagResourceCommand extends TagResourceCommand_base {
92
77
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
5
4
  import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UntagResourceCommandInput extends UntagResourceInput {
21
20
  */
22
21
  export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
23
22
  }
23
+ declare const UntagResourceCommand_base: {
24
+ new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Removes one or more tags from the specified EventBridge Scheduler schedule group.</p>
@@ -67,23 +70,5 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
67
70
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
68
71
  *
69
72
  */
70
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SchedulerClientResolvedConfig> {
71
- readonly input: UntagResourceCommandInput;
72
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
- /**
74
- * @public
75
- */
76
- constructor(input: UntagResourceCommandInput);
77
- /**
78
- * @internal
79
- */
80
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchedulerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
81
- /**
82
- * @internal
83
- */
84
- private serialize;
85
- /**
86
- * @internal
87
- */
88
- private deserialize;
73
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
89
74
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { UpdateScheduleInput, UpdateScheduleOutput } from "../models/models_0";
5
4
  import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UpdateScheduleCommandInput extends UpdateScheduleInput {
21
20
  */
22
21
  export interface UpdateScheduleCommandOutput extends UpdateScheduleOutput, __MetadataBearer {
23
22
  }
23
+ declare const UpdateScheduleCommand_base: {
24
+ new (input: UpdateScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateScheduleCommandInput, UpdateScheduleCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>
@@ -164,23 +167,5 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleOutput, __Met
164
167
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
165
168
  *
166
169
  */
167
- export declare class UpdateScheduleCommand extends $Command<UpdateScheduleCommandInput, UpdateScheduleCommandOutput, SchedulerClientResolvedConfig> {
168
- readonly input: UpdateScheduleCommandInput;
169
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
170
- /**
171
- * @public
172
- */
173
- constructor(input: UpdateScheduleCommandInput);
174
- /**
175
- * @internal
176
- */
177
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchedulerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateScheduleCommandInput, UpdateScheduleCommandOutput>;
178
- /**
179
- * @internal
180
- */
181
- private serialize;
182
- /**
183
- * @internal
184
- */
185
- private deserialize;
170
+ export declare class UpdateScheduleCommand extends UpdateScheduleCommand_base {
186
171
  }
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
14
14
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
15
  defaultSigningName: string;
16
16
  };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
17
35
  export interface EndpointParameters extends __EndpointParameters {
18
36
  Region?: string;
19
37
  UseDualStack?: boolean;
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { CreateScheduleInput, CreateScheduleOutput } from "../models/models_0";
10
4
  import {
11
5
  SchedulerClientResolvedConfig,
@@ -17,19 +11,16 @@ export interface CreateScheduleCommandInput extends CreateScheduleInput {}
17
11
  export interface CreateScheduleCommandOutput
18
12
  extends CreateScheduleOutput,
19
13
  __MetadataBearer {}
20
- export declare class CreateScheduleCommand extends $Command<
21
- CreateScheduleCommandInput,
22
- CreateScheduleCommandOutput,
23
- SchedulerClientResolvedConfig
24
- > {
25
- readonly input: CreateScheduleCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: CreateScheduleCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: SchedulerClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<CreateScheduleCommandInput, CreateScheduleCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const CreateScheduleCommand_base: {
15
+ new (
16
+ input: CreateScheduleCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ CreateScheduleCommandInput,
19
+ CreateScheduleCommandOutput,
20
+ SchedulerClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class CreateScheduleCommand extends CreateScheduleCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  CreateScheduleGroupInput,
11
5
  CreateScheduleGroupOutput,
@@ -21,19 +15,16 @@ export interface CreateScheduleGroupCommandInput
21
15
  export interface CreateScheduleGroupCommandOutput
22
16
  extends CreateScheduleGroupOutput,
23
17
  __MetadataBearer {}
24
- export declare class CreateScheduleGroupCommand extends $Command<
25
- CreateScheduleGroupCommandInput,
26
- CreateScheduleGroupCommandOutput,
27
- SchedulerClientResolvedConfig
28
- > {
29
- readonly input: CreateScheduleGroupCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: CreateScheduleGroupCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: SchedulerClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<CreateScheduleGroupCommandInput, CreateScheduleGroupCommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const CreateScheduleGroupCommand_base: {
19
+ new (
20
+ input: CreateScheduleGroupCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateScheduleGroupCommandInput,
23
+ CreateScheduleGroupCommandOutput,
24
+ SchedulerClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class CreateScheduleGroupCommand extends CreateScheduleGroupCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { DeleteScheduleInput, DeleteScheduleOutput } from "../models/models_0";
10
4
  import {
11
5
  SchedulerClientResolvedConfig,
@@ -17,19 +11,16 @@ export interface DeleteScheduleCommandInput extends DeleteScheduleInput {}
17
11
  export interface DeleteScheduleCommandOutput
18
12
  extends DeleteScheduleOutput,
19
13
  __MetadataBearer {}
20
- export declare class DeleteScheduleCommand extends $Command<
21
- DeleteScheduleCommandInput,
22
- DeleteScheduleCommandOutput,
23
- SchedulerClientResolvedConfig
24
- > {
25
- readonly input: DeleteScheduleCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: DeleteScheduleCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: SchedulerClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<DeleteScheduleCommandInput, DeleteScheduleCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const DeleteScheduleCommand_base: {
15
+ new (
16
+ input: DeleteScheduleCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteScheduleCommandInput,
19
+ DeleteScheduleCommandOutput,
20
+ SchedulerClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class DeleteScheduleCommand extends DeleteScheduleCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DeleteScheduleGroupInput,
11
5
  DeleteScheduleGroupOutput,
@@ -21,19 +15,16 @@ export interface DeleteScheduleGroupCommandInput
21
15
  export interface DeleteScheduleGroupCommandOutput
22
16
  extends DeleteScheduleGroupOutput,
23
17
  __MetadataBearer {}
24
- export declare class DeleteScheduleGroupCommand extends $Command<
25
- DeleteScheduleGroupCommandInput,
26
- DeleteScheduleGroupCommandOutput,
27
- SchedulerClientResolvedConfig
28
- > {
29
- readonly input: DeleteScheduleGroupCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: DeleteScheduleGroupCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: SchedulerClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<DeleteScheduleGroupCommandInput, DeleteScheduleGroupCommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const DeleteScheduleGroupCommand_base: {
19
+ new (
20
+ input: DeleteScheduleGroupCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteScheduleGroupCommandInput,
23
+ DeleteScheduleGroupCommandOutput,
24
+ SchedulerClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class DeleteScheduleGroupCommand extends DeleteScheduleGroupCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { GetScheduleInput, GetScheduleOutput } from "../models/models_0";
10
4
  import {
11
5
  SchedulerClientResolvedConfig,
@@ -17,19 +11,16 @@ export interface GetScheduleCommandInput extends GetScheduleInput {}
17
11
  export interface GetScheduleCommandOutput
18
12
  extends GetScheduleOutput,
19
13
  __MetadataBearer {}
20
- export declare class GetScheduleCommand extends $Command<
21
- GetScheduleCommandInput,
22
- GetScheduleCommandOutput,
23
- SchedulerClientResolvedConfig
24
- > {
25
- readonly input: GetScheduleCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: GetScheduleCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: SchedulerClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<GetScheduleCommandInput, GetScheduleCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const GetScheduleCommand_base: {
15
+ new (
16
+ input: GetScheduleCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetScheduleCommandInput,
19
+ GetScheduleCommandOutput,
20
+ SchedulerClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetScheduleCommand extends GetScheduleCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  GetScheduleGroupInput,
11
5
  GetScheduleGroupOutput,
@@ -20,19 +14,16 @@ export interface GetScheduleGroupCommandInput extends GetScheduleGroupInput {}
20
14
  export interface GetScheduleGroupCommandOutput
21
15
  extends GetScheduleGroupOutput,
22
16
  __MetadataBearer {}
23
- export declare class GetScheduleGroupCommand extends $Command<
24
- GetScheduleGroupCommandInput,
25
- GetScheduleGroupCommandOutput,
26
- SchedulerClientResolvedConfig
27
- > {
28
- readonly input: GetScheduleGroupCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: GetScheduleGroupCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: SchedulerClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<GetScheduleGroupCommandInput, GetScheduleGroupCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const GetScheduleGroupCommand_base: {
18
+ new (
19
+ input: GetScheduleGroupCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ GetScheduleGroupCommandInput,
22
+ GetScheduleGroupCommandOutput,
23
+ SchedulerClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class GetScheduleGroupCommand extends GetScheduleGroupCommand_base {}