@aws-sdk/client-scheduler 3.529.1 → 3.535.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 (37) hide show
  1. package/dist-types/Scheduler.d.ts +3 -1
  2. package/dist-types/SchedulerClient.d.ts +1 -1
  3. package/dist-types/commands/CreateScheduleCommand.d.ts +2 -1
  4. package/dist-types/commands/CreateScheduleGroupCommand.d.ts +2 -1
  5. package/dist-types/commands/DeleteScheduleCommand.d.ts +2 -1
  6. package/dist-types/commands/DeleteScheduleGroupCommand.d.ts +2 -1
  7. package/dist-types/commands/GetScheduleCommand.d.ts +2 -1
  8. package/dist-types/commands/GetScheduleGroupCommand.d.ts +2 -1
  9. package/dist-types/commands/ListScheduleGroupsCommand.d.ts +2 -1
  10. package/dist-types/commands/ListSchedulesCommand.d.ts +2 -1
  11. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  12. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  13. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  14. package/dist-types/commands/UpdateScheduleCommand.d.ts +2 -1
  15. package/dist-types/models/models_0.d.ts +165 -165
  16. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  17. package/dist-types/runtimeConfig.d.ts +2 -2
  18. package/dist-types/runtimeConfig.native.d.ts +2 -2
  19. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  20. package/dist-types/ts3.4/Scheduler.d.ts +2 -0
  21. package/dist-types/ts3.4/commands/CreateScheduleCommand.d.ts +9 -0
  22. package/dist-types/ts3.4/commands/CreateScheduleGroupCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/DeleteScheduleCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/DeleteScheduleGroupCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/GetScheduleCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/GetScheduleGroupCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/ListScheduleGroupsCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/ListSchedulesCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/UpdateScheduleCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  36. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
  37. package/package.json +40 -40
@@ -52,12 +52,14 @@ export interface Scheduler {
52
52
  /**
53
53
  * @see {@link ListScheduleGroupsCommand}
54
54
  */
55
+ listScheduleGroups(): Promise<ListScheduleGroupsCommandOutput>;
55
56
  listScheduleGroups(args: ListScheduleGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListScheduleGroupsCommandOutput>;
56
57
  listScheduleGroups(args: ListScheduleGroupsCommandInput, cb: (err: any, data?: ListScheduleGroupsCommandOutput) => void): void;
57
58
  listScheduleGroups(args: ListScheduleGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListScheduleGroupsCommandOutput) => void): void;
58
59
  /**
59
60
  * @see {@link ListSchedulesCommand}
60
61
  */
62
+ listSchedules(): Promise<ListSchedulesCommandOutput>;
61
63
  listSchedules(args: ListSchedulesCommandInput, options?: __HttpHandlerOptions): Promise<ListSchedulesCommandOutput>;
62
64
  listSchedules(args: ListSchedulesCommandInput, cb: (err: any, data?: ListSchedulesCommandOutput) => void): void;
63
65
  listSchedules(args: ListSchedulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSchedulesCommandOutput) => void): void;
@@ -87,12 +89,12 @@ export interface Scheduler {
87
89
  updateSchedule(args: UpdateScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateScheduleCommandOutput) => void): void;
88
90
  }
89
91
  /**
90
- * @public
91
92
  * <p>
92
93
  * Amazon EventBridge Scheduler is a serverless scheduler that allows you to create, run, and manage tasks from one central, managed service.
93
94
  * EventBridge Scheduler delivers your tasks reliably, with built-in mechanisms that adjust your schedules based on the availability of downstream targets.
94
95
  * The following reference lists the available API actions, and data types for EventBridge Scheduler.
95
96
  * </p>
97
+ * @public
96
98
  */
97
99
  export declare class Scheduler extends SchedulerClient implements Scheduler {
98
100
  }
@@ -163,12 +163,12 @@ export type SchedulerClientResolvedConfigType = __SmithyResolvedConfiguration<__
163
163
  export interface SchedulerClientResolvedConfig extends SchedulerClientResolvedConfigType {
164
164
  }
165
165
  /**
166
- * @public
167
166
  * <p>
168
167
  * Amazon EventBridge Scheduler is a serverless scheduler that allows you to create, run, and manage tasks from one central, managed service.
169
168
  * EventBridge Scheduler delivers your tasks reliably, with built-in mechanisms that adjust your schedules based on the availability of downstream targets.
170
169
  * The following reference lists the available API actions, and data types for EventBridge Scheduler.
171
170
  * </p>
171
+ * @public
172
172
  */
173
173
  export declare class SchedulerClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SchedulerClientResolvedConfig> {
174
174
  /**
@@ -22,10 +22,10 @@ export interface CreateScheduleCommandOutput extends CreateScheduleOutput, __Met
22
22
  }
23
23
  declare const CreateScheduleCommand_base: {
24
24
  new (input: CreateScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<CreateScheduleCommandInput, CreateScheduleCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<CreateScheduleCommandInput, CreateScheduleCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates the specified schedule.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -161,6 +161,7 @@ declare const CreateScheduleCommand_base: {
161
161
  * @throws {@link SchedulerServiceException}
162
162
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
163
163
  *
164
+ * @public
164
165
  */
165
166
  export declare class CreateScheduleCommand extends CreateScheduleCommand_base {
166
167
  }
@@ -22,10 +22,10 @@ export interface CreateScheduleGroupCommandOutput extends CreateScheduleGroupOut
22
22
  }
23
23
  declare const CreateScheduleGroupCommand_base: {
24
24
  new (input: CreateScheduleGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateScheduleGroupCommandInput, CreateScheduleGroupCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateScheduleGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateScheduleGroupCommandInput, CreateScheduleGroupCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates the specified schedule group.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -75,6 +75,7 @@ declare const CreateScheduleGroupCommand_base: {
75
75
  * @throws {@link SchedulerServiceException}
76
76
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
77
77
  *
78
+ * @public
78
79
  */
79
80
  export declare class CreateScheduleGroupCommand extends CreateScheduleGroupCommand_base {
80
81
  }
@@ -22,10 +22,10 @@ export interface DeleteScheduleCommandOutput extends DeleteScheduleOutput, __Met
22
22
  }
23
23
  declare const DeleteScheduleCommand_base: {
24
24
  new (input: DeleteScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteScheduleCommandInput, DeleteScheduleCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteScheduleCommandInput, DeleteScheduleCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the specified schedule.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -68,6 +68,7 @@ declare const DeleteScheduleCommand_base: {
68
68
  * @throws {@link SchedulerServiceException}
69
69
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
70
70
  *
71
+ * @public
71
72
  */
72
73
  export declare class DeleteScheduleCommand extends DeleteScheduleCommand_base {
73
74
  }
@@ -22,10 +22,10 @@ export interface DeleteScheduleGroupCommandOutput extends DeleteScheduleGroupOut
22
22
  }
23
23
  declare const DeleteScheduleGroupCommand_base: {
24
24
  new (input: DeleteScheduleGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteScheduleGroupCommandInput, DeleteScheduleGroupCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteScheduleGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteScheduleGroupCommandInput, DeleteScheduleGroupCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the specified schedule group. Deleting a schedule group results in EventBridge Scheduler deleting all schedules associated with the group.
30
30
  * When you delete a group, it remains in a <code>DELETING</code> state until all of its associated schedules are deleted.
31
31
  * Schedules associated with the group that are set to run while the schedule group is in the process of being deleted might continue to invoke their targets
@@ -75,6 +75,7 @@ declare const DeleteScheduleGroupCommand_base: {
75
75
  * @throws {@link SchedulerServiceException}
76
76
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
77
77
  *
78
+ * @public
78
79
  */
79
80
  export declare class DeleteScheduleGroupCommand extends DeleteScheduleGroupCommand_base {
80
81
  }
@@ -22,10 +22,10 @@ export interface GetScheduleCommandOutput extends GetScheduleOutput, __MetadataB
22
22
  }
23
23
  declare const GetScheduleCommand_base: {
24
24
  new (input: GetScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<GetScheduleCommandInput, GetScheduleCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<GetScheduleCommandInput, GetScheduleCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the specified schedule.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -158,6 +158,7 @@ declare const GetScheduleCommand_base: {
158
158
  * @throws {@link SchedulerServiceException}
159
159
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
160
160
  *
161
+ * @public
161
162
  */
162
163
  export declare class GetScheduleCommand extends GetScheduleCommand_base {
163
164
  }
@@ -22,10 +22,10 @@ export interface GetScheduleGroupCommandOutput extends GetScheduleGroupOutput, _
22
22
  }
23
23
  declare const GetScheduleGroupCommand_base: {
24
24
  new (input: GetScheduleGroupCommandInput): import("@smithy/smithy-client").CommandImpl<GetScheduleGroupCommandInput, GetScheduleGroupCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetScheduleGroupCommandInput): import("@smithy/smithy-client").CommandImpl<GetScheduleGroupCommandInput, GetScheduleGroupCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the specified schedule group.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -69,6 +69,7 @@ declare const GetScheduleGroupCommand_base: {
69
69
  * @throws {@link SchedulerServiceException}
70
70
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class GetScheduleGroupCommand extends GetScheduleGroupCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface ListScheduleGroupsCommandOutput extends ListScheduleGroupsOutpu
22
22
  }
23
23
  declare const ListScheduleGroupsCommand_base: {
24
24
  new (input: ListScheduleGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListScheduleGroupsCommandInput, ListScheduleGroupsCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListScheduleGroupsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListScheduleGroupsCommandInput, ListScheduleGroupsCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a paginated list of your schedule groups.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -73,6 +73,7 @@ declare const ListScheduleGroupsCommand_base: {
73
73
  * @throws {@link SchedulerServiceException}
74
74
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
75
75
  *
76
+ * @public
76
77
  */
77
78
  export declare class ListScheduleGroupsCommand extends ListScheduleGroupsCommand_base {
78
79
  }
@@ -22,10 +22,10 @@ export interface ListSchedulesCommandOutput extends ListSchedulesOutput, __Metad
22
22
  }
23
23
  declare const ListSchedulesCommand_base: {
24
24
  new (input: ListSchedulesCommandInput): import("@smithy/smithy-client").CommandImpl<ListSchedulesCommandInput, ListSchedulesCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListSchedulesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSchedulesCommandInput, ListSchedulesCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a paginated list of your EventBridge Scheduler schedules.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -82,6 +82,7 @@ declare const ListSchedulesCommand_base: {
82
82
  * @throws {@link SchedulerServiceException}
83
83
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
84
84
  *
85
+ * @public
85
86
  */
86
87
  export declare class ListSchedulesCommand extends ListSchedulesCommand_base {
87
88
  }
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
22
22
  }
23
23
  declare const ListTagsForResourceCommand_base: {
24
24
  new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the tags associated with the Scheduler resource.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -70,6 +70,7 @@ declare const ListTagsForResourceCommand_base: {
70
70
  * @throws {@link SchedulerServiceException}
71
71
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
72
72
  *
73
+ * @public
73
74
  */
74
75
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
75
76
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
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>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -72,6 +72,7 @@ declare const TagResourceCommand_base: {
72
72
  * @throws {@link SchedulerServiceException}
73
73
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
74
74
  *
75
+ * @public
75
76
  */
76
77
  export declare class TagResourceCommand extends TagResourceCommand_base {
77
78
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes one or more tags from the specified EventBridge Scheduler schedule group.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -69,6 +69,7 @@ declare const UntagResourceCommand_base: {
69
69
  * @throws {@link SchedulerServiceException}
70
70
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleOutput, __Met
22
22
  }
23
23
  declare const UpdateScheduleCommand_base: {
24
24
  new (input: UpdateScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateScheduleCommandInput, UpdateScheduleCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateScheduleCommandInput, UpdateScheduleCommandOutput, SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>
30
30
  * Updates the specified schedule. When you call <code>UpdateSchedule</code>, EventBridge Scheduler uses all values, including empty values, specified in the request and
31
31
  * overrides the existing schedule. This is by design. This means that if you do not set an optional field in your request, that field will be set to
@@ -166,6 +166,7 @@ declare const UpdateScheduleCommand_base: {
166
166
  * @throws {@link SchedulerServiceException}
167
167
  * <p>Base exception class for all service exceptions from Scheduler service.</p>
168
168
  *
169
+ * @public
169
170
  */
170
171
  export declare class UpdateScheduleCommand extends UpdateScheduleCommand_base {
171
172
  }