@aws-sdk/client-scheduler 3.208.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/LICENSE +201 -0
- package/README.md +209 -0
- package/dist-cjs/Scheduler.js +187 -0
- package/dist-cjs/SchedulerClient.js +40 -0
- package/dist-cjs/commands/CreateScheduleCommand.js +46 -0
- package/dist-cjs/commands/CreateScheduleGroupCommand.js +46 -0
- package/dist-cjs/commands/DeleteScheduleCommand.js +46 -0
- package/dist-cjs/commands/DeleteScheduleGroupCommand.js +46 -0
- package/dist-cjs/commands/GetScheduleCommand.js +46 -0
- package/dist-cjs/commands/GetScheduleGroupCommand.js +46 -0
- package/dist-cjs/commands/ListScheduleGroupsCommand.js +46 -0
- package/dist-cjs/commands/ListSchedulesCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateScheduleCommand.js +46 -0
- package/dist-cjs/commands/index.js +15 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/SchedulerServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +302 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListScheduleGroupsPaginator.js +36 -0
- package/dist-cjs/pagination/ListSchedulesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1494 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +17 -0
- package/dist-es/Scheduler.js +183 -0
- package/dist-es/SchedulerClient.js +36 -0
- package/dist-es/commands/CreateScheduleCommand.js +42 -0
- package/dist-es/commands/CreateScheduleGroupCommand.js +42 -0
- package/dist-es/commands/DeleteScheduleCommand.js +42 -0
- package/dist-es/commands/DeleteScheduleGroupCommand.js +42 -0
- package/dist-es/commands/GetScheduleCommand.js +42 -0
- package/dist-es/commands/GetScheduleGroupCommand.js +42 -0
- package/dist-es/commands/ListScheduleGroupsCommand.js +42 -0
- package/dist-es/commands/ListSchedulesCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateScheduleCommand.js +42 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/SchedulerServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +249 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListScheduleGroupsPaginator.js +32 -0
- package/dist-es/pagination/ListSchedulesPaginator.js +32 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1467 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-types/Scheduler.d.ts +111 -0
- package/dist-types/SchedulerClient.d.ts +157 -0
- package/dist-types/commands/CreateScheduleCommand.d.ts +37 -0
- package/dist-types/commands/CreateScheduleGroupCommand.d.ts +37 -0
- package/dist-types/commands/DeleteScheduleCommand.d.ts +37 -0
- package/dist-types/commands/DeleteScheduleGroupCommand.d.ts +45 -0
- package/dist-types/commands/GetScheduleCommand.d.ts +37 -0
- package/dist-types/commands/GetScheduleGroupCommand.d.ts +37 -0
- package/dist-types/commands/ListScheduleGroupsCommand.d.ts +37 -0
- package/dist-types/commands/ListSchedulesCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/TagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UpdateScheduleCommand.d.ts +45 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/SchedulerServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1148 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListScheduleGroupsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSchedulesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +38 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +17 -0
- package/dist-types/ts3.4/Scheduler.d.ts +208 -0
- package/dist-types/ts3.4/SchedulerClient.d.ts +183 -0
- package/dist-types/ts3.4/commands/CreateScheduleCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/CreateScheduleGroupCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteScheduleCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteScheduleGroupCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetScheduleCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetScheduleGroupCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListScheduleGroupsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSchedulesCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateScheduleCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/SchedulerServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +423 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListScheduleGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSchedulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +86 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +86 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +75 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +17 -0
- package/package.json +105 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateScheduleGroupInput,
|
|
11
|
+
CreateScheduleGroupOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
SchedulerClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../SchedulerClient";
|
|
18
|
+
export interface CreateScheduleGroupCommandInput
|
|
19
|
+
extends CreateScheduleGroupInput {}
|
|
20
|
+
export interface CreateScheduleGroupCommandOutput
|
|
21
|
+
extends CreateScheduleGroupOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateScheduleGroupCommand extends $Command<
|
|
24
|
+
CreateScheduleGroupCommandInput,
|
|
25
|
+
CreateScheduleGroupCommandOutput,
|
|
26
|
+
SchedulerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateScheduleGroupCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateScheduleGroupCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SchedulerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateScheduleGroupCommandInput, CreateScheduleGroupCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { DeleteScheduleInput, DeleteScheduleOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
SchedulerClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../SchedulerClient";
|
|
15
|
+
export interface DeleteScheduleCommandInput extends DeleteScheduleInput {}
|
|
16
|
+
export interface DeleteScheduleCommandOutput
|
|
17
|
+
extends DeleteScheduleOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class DeleteScheduleCommand extends $Command<
|
|
20
|
+
DeleteScheduleCommandInput,
|
|
21
|
+
DeleteScheduleCommandOutput,
|
|
22
|
+
SchedulerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteScheduleCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteScheduleCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SchedulerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteScheduleCommandInput, DeleteScheduleCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteScheduleGroupInput,
|
|
11
|
+
DeleteScheduleGroupOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
SchedulerClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../SchedulerClient";
|
|
18
|
+
export interface DeleteScheduleGroupCommandInput
|
|
19
|
+
extends DeleteScheduleGroupInput {}
|
|
20
|
+
export interface DeleteScheduleGroupCommandOutput
|
|
21
|
+
extends DeleteScheduleGroupOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteScheduleGroupCommand extends $Command<
|
|
24
|
+
DeleteScheduleGroupCommandInput,
|
|
25
|
+
DeleteScheduleGroupCommandOutput,
|
|
26
|
+
SchedulerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteScheduleGroupCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteScheduleGroupCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SchedulerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteScheduleGroupCommandInput, DeleteScheduleGroupCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { GetScheduleInput, GetScheduleOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
SchedulerClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../SchedulerClient";
|
|
15
|
+
export interface GetScheduleCommandInput extends GetScheduleInput {}
|
|
16
|
+
export interface GetScheduleCommandOutput
|
|
17
|
+
extends GetScheduleOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class GetScheduleCommand extends $Command<
|
|
20
|
+
GetScheduleCommandInput,
|
|
21
|
+
GetScheduleCommandOutput,
|
|
22
|
+
SchedulerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetScheduleCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: GetScheduleCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SchedulerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetScheduleCommandInput, GetScheduleCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
GetScheduleGroupInput,
|
|
11
|
+
GetScheduleGroupOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
SchedulerClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../SchedulerClient";
|
|
18
|
+
export interface GetScheduleGroupCommandInput extends GetScheduleGroupInput {}
|
|
19
|
+
export interface GetScheduleGroupCommandOutput
|
|
20
|
+
extends GetScheduleGroupOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetScheduleGroupCommand extends $Command<
|
|
23
|
+
GetScheduleGroupCommandInput,
|
|
24
|
+
GetScheduleGroupCommandOutput,
|
|
25
|
+
SchedulerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetScheduleGroupCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: GetScheduleGroupCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SchedulerClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetScheduleGroupCommandInput, GetScheduleGroupCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListScheduleGroupsInput,
|
|
11
|
+
ListScheduleGroupsOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
SchedulerClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../SchedulerClient";
|
|
18
|
+
export interface ListScheduleGroupsCommandInput
|
|
19
|
+
extends ListScheduleGroupsInput {}
|
|
20
|
+
export interface ListScheduleGroupsCommandOutput
|
|
21
|
+
extends ListScheduleGroupsOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListScheduleGroupsCommand extends $Command<
|
|
24
|
+
ListScheduleGroupsCommandInput,
|
|
25
|
+
ListScheduleGroupsCommandOutput,
|
|
26
|
+
SchedulerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListScheduleGroupsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListScheduleGroupsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SchedulerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListScheduleGroupsCommandInput, ListScheduleGroupsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { ListSchedulesInput, ListSchedulesOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
SchedulerClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../SchedulerClient";
|
|
15
|
+
export interface ListSchedulesCommandInput extends ListSchedulesInput {}
|
|
16
|
+
export interface ListSchedulesCommandOutput
|
|
17
|
+
extends ListSchedulesOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class ListSchedulesCommand extends $Command<
|
|
20
|
+
ListSchedulesCommandInput,
|
|
21
|
+
ListSchedulesCommandOutput,
|
|
22
|
+
SchedulerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListSchedulesCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: ListSchedulesCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SchedulerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListSchedulesCommandInput, ListSchedulesCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListTagsForResourceInput,
|
|
11
|
+
ListTagsForResourceOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
SchedulerClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../SchedulerClient";
|
|
18
|
+
export interface ListTagsForResourceCommandInput
|
|
19
|
+
extends ListTagsForResourceInput {}
|
|
20
|
+
export interface ListTagsForResourceCommandOutput
|
|
21
|
+
extends ListTagsForResourceOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
SchedulerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SchedulerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
SchedulerClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../SchedulerClient";
|
|
15
|
+
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
16
|
+
export interface TagResourceCommandOutput
|
|
17
|
+
extends TagResourceOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class TagResourceCommand extends $Command<
|
|
20
|
+
TagResourceCommandInput,
|
|
21
|
+
TagResourceCommandOutput,
|
|
22
|
+
SchedulerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: TagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: TagResourceCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SchedulerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
SchedulerClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../SchedulerClient";
|
|
15
|
+
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
16
|
+
export interface UntagResourceCommandOutput
|
|
17
|
+
extends UntagResourceOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class UntagResourceCommand extends $Command<
|
|
20
|
+
UntagResourceCommandInput,
|
|
21
|
+
UntagResourceCommandOutput,
|
|
22
|
+
SchedulerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UntagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: UntagResourceCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SchedulerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { UpdateScheduleInput, UpdateScheduleOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
SchedulerClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../SchedulerClient";
|
|
15
|
+
export interface UpdateScheduleCommandInput extends UpdateScheduleInput {}
|
|
16
|
+
export interface UpdateScheduleCommandOutput
|
|
17
|
+
extends UpdateScheduleOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class UpdateScheduleCommand extends $Command<
|
|
20
|
+
UpdateScheduleCommandInput,
|
|
21
|
+
UpdateScheduleCommandOutput,
|
|
22
|
+
SchedulerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateScheduleCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: UpdateScheduleCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SchedulerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateScheduleCommandInput, UpdateScheduleCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./CreateScheduleCommand";
|
|
2
|
+
export * from "./CreateScheduleGroupCommand";
|
|
3
|
+
export * from "./DeleteScheduleCommand";
|
|
4
|
+
export * from "./DeleteScheduleGroupCommand";
|
|
5
|
+
export * from "./GetScheduleCommand";
|
|
6
|
+
export * from "./GetScheduleGroupCommand";
|
|
7
|
+
export * from "./ListScheduleGroupsCommand";
|
|
8
|
+
export * from "./ListSchedulesCommand";
|
|
9
|
+
export * from "./ListTagsForResourceCommand";
|
|
10
|
+
export * from "./TagResourceCommand";
|
|
11
|
+
export * from "./UntagResourceCommand";
|
|
12
|
+
export * from "./UpdateScheduleCommand";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@aws-sdk/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export declare type ClientResolvedEndpointParameters =
|
|
20
|
+
ClientInputEndpointParameters & {
|
|
21
|
+
defaultSigningName: string;
|
|
22
|
+
};
|
|
23
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
24
|
+
options: T & ClientInputEndpointParameters
|
|
25
|
+
) => T &
|
|
26
|
+
ClientInputEndpointParameters & {
|
|
27
|
+
defaultSigningName: string;
|
|
28
|
+
};
|
|
29
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
+
Region?: string;
|
|
31
|
+
UseDualStack?: boolean;
|
|
32
|
+
UseFIPS?: boolean;
|
|
33
|
+
Endpoint?: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class SchedulerServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|