@aws-sdk/client-scheduler 3.1087.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/Scheduler.d.ts +40 -46
- package/dist-types/ts3.4/SchedulerClient.d.ts +7 -22
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateScheduleCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateScheduleGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteScheduleCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteScheduleGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetScheduleCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetScheduleGroupCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListScheduleGroupsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListSchedulesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateScheduleCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -19,10 +19,7 @@ import {
|
|
|
19
19
|
DeleteScheduleGroupCommandInput,
|
|
20
20
|
DeleteScheduleGroupCommandOutput,
|
|
21
21
|
} from "./commands/DeleteScheduleGroupCommand";
|
|
22
|
-
import {
|
|
23
|
-
GetScheduleCommandInput,
|
|
24
|
-
GetScheduleCommandOutput,
|
|
25
|
-
} from "./commands/GetScheduleCommand";
|
|
22
|
+
import { GetScheduleCommandInput, GetScheduleCommandOutput } from "./commands/GetScheduleCommand";
|
|
26
23
|
import {
|
|
27
24
|
GetScheduleGroupCommandInput,
|
|
28
25
|
GetScheduleGroupCommandOutput,
|
|
@@ -39,10 +36,7 @@ import {
|
|
|
39
36
|
ListTagsForResourceCommandInput,
|
|
40
37
|
ListTagsForResourceCommandOutput,
|
|
41
38
|
} from "./commands/ListTagsForResourceCommand";
|
|
42
|
-
import {
|
|
43
|
-
TagResourceCommandInput,
|
|
44
|
-
TagResourceCommandOutput,
|
|
45
|
-
} from "./commands/TagResourceCommand";
|
|
39
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
46
40
|
import {
|
|
47
41
|
UntagResourceCommandInput,
|
|
48
42
|
UntagResourceCommandOutput,
|
|
@@ -55,175 +49,175 @@ import { SchedulerClient } from "./SchedulerClient";
|
|
|
55
49
|
export interface Scheduler {
|
|
56
50
|
createSchedule(
|
|
57
51
|
args: CreateScheduleCommandInput,
|
|
58
|
-
options?: __HttpHandlerOptions
|
|
52
|
+
options?: __HttpHandlerOptions,
|
|
59
53
|
): Promise<CreateScheduleCommandOutput>;
|
|
60
54
|
createSchedule(
|
|
61
55
|
args: CreateScheduleCommandInput,
|
|
62
|
-
cb: (err: any, data?: CreateScheduleCommandOutput) => void
|
|
56
|
+
cb: (err: any, data?: CreateScheduleCommandOutput) => void,
|
|
63
57
|
): void;
|
|
64
58
|
createSchedule(
|
|
65
59
|
args: CreateScheduleCommandInput,
|
|
66
60
|
options: __HttpHandlerOptions,
|
|
67
|
-
cb: (err: any, data?: CreateScheduleCommandOutput) => void
|
|
61
|
+
cb: (err: any, data?: CreateScheduleCommandOutput) => void,
|
|
68
62
|
): void;
|
|
69
63
|
createScheduleGroup(
|
|
70
64
|
args: CreateScheduleGroupCommandInput,
|
|
71
|
-
options?: __HttpHandlerOptions
|
|
65
|
+
options?: __HttpHandlerOptions,
|
|
72
66
|
): Promise<CreateScheduleGroupCommandOutput>;
|
|
73
67
|
createScheduleGroup(
|
|
74
68
|
args: CreateScheduleGroupCommandInput,
|
|
75
|
-
cb: (err: any, data?: CreateScheduleGroupCommandOutput) => void
|
|
69
|
+
cb: (err: any, data?: CreateScheduleGroupCommandOutput) => void,
|
|
76
70
|
): void;
|
|
77
71
|
createScheduleGroup(
|
|
78
72
|
args: CreateScheduleGroupCommandInput,
|
|
79
73
|
options: __HttpHandlerOptions,
|
|
80
|
-
cb: (err: any, data?: CreateScheduleGroupCommandOutput) => void
|
|
74
|
+
cb: (err: any, data?: CreateScheduleGroupCommandOutput) => void,
|
|
81
75
|
): void;
|
|
82
76
|
deleteSchedule(
|
|
83
77
|
args: DeleteScheduleCommandInput,
|
|
84
|
-
options?: __HttpHandlerOptions
|
|
78
|
+
options?: __HttpHandlerOptions,
|
|
85
79
|
): Promise<DeleteScheduleCommandOutput>;
|
|
86
80
|
deleteSchedule(
|
|
87
81
|
args: DeleteScheduleCommandInput,
|
|
88
|
-
cb: (err: any, data?: DeleteScheduleCommandOutput) => void
|
|
82
|
+
cb: (err: any, data?: DeleteScheduleCommandOutput) => void,
|
|
89
83
|
): void;
|
|
90
84
|
deleteSchedule(
|
|
91
85
|
args: DeleteScheduleCommandInput,
|
|
92
86
|
options: __HttpHandlerOptions,
|
|
93
|
-
cb: (err: any, data?: DeleteScheduleCommandOutput) => void
|
|
87
|
+
cb: (err: any, data?: DeleteScheduleCommandOutput) => void,
|
|
94
88
|
): void;
|
|
95
89
|
deleteScheduleGroup(
|
|
96
90
|
args: DeleteScheduleGroupCommandInput,
|
|
97
|
-
options?: __HttpHandlerOptions
|
|
91
|
+
options?: __HttpHandlerOptions,
|
|
98
92
|
): Promise<DeleteScheduleGroupCommandOutput>;
|
|
99
93
|
deleteScheduleGroup(
|
|
100
94
|
args: DeleteScheduleGroupCommandInput,
|
|
101
|
-
cb: (err: any, data?: DeleteScheduleGroupCommandOutput) => void
|
|
95
|
+
cb: (err: any, data?: DeleteScheduleGroupCommandOutput) => void,
|
|
102
96
|
): void;
|
|
103
97
|
deleteScheduleGroup(
|
|
104
98
|
args: DeleteScheduleGroupCommandInput,
|
|
105
99
|
options: __HttpHandlerOptions,
|
|
106
|
-
cb: (err: any, data?: DeleteScheduleGroupCommandOutput) => void
|
|
100
|
+
cb: (err: any, data?: DeleteScheduleGroupCommandOutput) => void,
|
|
107
101
|
): void;
|
|
108
102
|
getSchedule(
|
|
109
103
|
args: GetScheduleCommandInput,
|
|
110
|
-
options?: __HttpHandlerOptions
|
|
104
|
+
options?: __HttpHandlerOptions,
|
|
111
105
|
): Promise<GetScheduleCommandOutput>;
|
|
112
106
|
getSchedule(
|
|
113
107
|
args: GetScheduleCommandInput,
|
|
114
|
-
cb: (err: any, data?: GetScheduleCommandOutput) => void
|
|
108
|
+
cb: (err: any, data?: GetScheduleCommandOutput) => void,
|
|
115
109
|
): void;
|
|
116
110
|
getSchedule(
|
|
117
111
|
args: GetScheduleCommandInput,
|
|
118
112
|
options: __HttpHandlerOptions,
|
|
119
|
-
cb: (err: any, data?: GetScheduleCommandOutput) => void
|
|
113
|
+
cb: (err: any, data?: GetScheduleCommandOutput) => void,
|
|
120
114
|
): void;
|
|
121
115
|
getScheduleGroup(
|
|
122
116
|
args: GetScheduleGroupCommandInput,
|
|
123
|
-
options?: __HttpHandlerOptions
|
|
117
|
+
options?: __HttpHandlerOptions,
|
|
124
118
|
): Promise<GetScheduleGroupCommandOutput>;
|
|
125
119
|
getScheduleGroup(
|
|
126
120
|
args: GetScheduleGroupCommandInput,
|
|
127
|
-
cb: (err: any, data?: GetScheduleGroupCommandOutput) => void
|
|
121
|
+
cb: (err: any, data?: GetScheduleGroupCommandOutput) => void,
|
|
128
122
|
): void;
|
|
129
123
|
getScheduleGroup(
|
|
130
124
|
args: GetScheduleGroupCommandInput,
|
|
131
125
|
options: __HttpHandlerOptions,
|
|
132
|
-
cb: (err: any, data?: GetScheduleGroupCommandOutput) => void
|
|
126
|
+
cb: (err: any, data?: GetScheduleGroupCommandOutput) => void,
|
|
133
127
|
): void;
|
|
134
128
|
listScheduleGroups(): Promise<ListScheduleGroupsCommandOutput>;
|
|
135
129
|
listScheduleGroups(
|
|
136
130
|
args: ListScheduleGroupsCommandInput,
|
|
137
|
-
options?: __HttpHandlerOptions
|
|
131
|
+
options?: __HttpHandlerOptions,
|
|
138
132
|
): Promise<ListScheduleGroupsCommandOutput>;
|
|
139
133
|
listScheduleGroups(
|
|
140
134
|
args: ListScheduleGroupsCommandInput,
|
|
141
|
-
cb: (err: any, data?: ListScheduleGroupsCommandOutput) => void
|
|
135
|
+
cb: (err: any, data?: ListScheduleGroupsCommandOutput) => void,
|
|
142
136
|
): void;
|
|
143
137
|
listScheduleGroups(
|
|
144
138
|
args: ListScheduleGroupsCommandInput,
|
|
145
139
|
options: __HttpHandlerOptions,
|
|
146
|
-
cb: (err: any, data?: ListScheduleGroupsCommandOutput) => void
|
|
140
|
+
cb: (err: any, data?: ListScheduleGroupsCommandOutput) => void,
|
|
147
141
|
): void;
|
|
148
142
|
listSchedules(): Promise<ListSchedulesCommandOutput>;
|
|
149
143
|
listSchedules(
|
|
150
144
|
args: ListSchedulesCommandInput,
|
|
151
|
-
options?: __HttpHandlerOptions
|
|
145
|
+
options?: __HttpHandlerOptions,
|
|
152
146
|
): Promise<ListSchedulesCommandOutput>;
|
|
153
147
|
listSchedules(
|
|
154
148
|
args: ListSchedulesCommandInput,
|
|
155
|
-
cb: (err: any, data?: ListSchedulesCommandOutput) => void
|
|
149
|
+
cb: (err: any, data?: ListSchedulesCommandOutput) => void,
|
|
156
150
|
): void;
|
|
157
151
|
listSchedules(
|
|
158
152
|
args: ListSchedulesCommandInput,
|
|
159
153
|
options: __HttpHandlerOptions,
|
|
160
|
-
cb: (err: any, data?: ListSchedulesCommandOutput) => void
|
|
154
|
+
cb: (err: any, data?: ListSchedulesCommandOutput) => void,
|
|
161
155
|
): void;
|
|
162
156
|
listTagsForResource(
|
|
163
157
|
args: ListTagsForResourceCommandInput,
|
|
164
|
-
options?: __HttpHandlerOptions
|
|
158
|
+
options?: __HttpHandlerOptions,
|
|
165
159
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
166
160
|
listTagsForResource(
|
|
167
161
|
args: ListTagsForResourceCommandInput,
|
|
168
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
162
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
169
163
|
): void;
|
|
170
164
|
listTagsForResource(
|
|
171
165
|
args: ListTagsForResourceCommandInput,
|
|
172
166
|
options: __HttpHandlerOptions,
|
|
173
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
167
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
174
168
|
): void;
|
|
175
169
|
tagResource(
|
|
176
170
|
args: TagResourceCommandInput,
|
|
177
|
-
options?: __HttpHandlerOptions
|
|
171
|
+
options?: __HttpHandlerOptions,
|
|
178
172
|
): Promise<TagResourceCommandOutput>;
|
|
179
173
|
tagResource(
|
|
180
174
|
args: TagResourceCommandInput,
|
|
181
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
175
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
182
176
|
): void;
|
|
183
177
|
tagResource(
|
|
184
178
|
args: TagResourceCommandInput,
|
|
185
179
|
options: __HttpHandlerOptions,
|
|
186
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
180
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
187
181
|
): void;
|
|
188
182
|
untagResource(
|
|
189
183
|
args: UntagResourceCommandInput,
|
|
190
|
-
options?: __HttpHandlerOptions
|
|
184
|
+
options?: __HttpHandlerOptions,
|
|
191
185
|
): Promise<UntagResourceCommandOutput>;
|
|
192
186
|
untagResource(
|
|
193
187
|
args: UntagResourceCommandInput,
|
|
194
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
188
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
195
189
|
): void;
|
|
196
190
|
untagResource(
|
|
197
191
|
args: UntagResourceCommandInput,
|
|
198
192
|
options: __HttpHandlerOptions,
|
|
199
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
193
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
200
194
|
): void;
|
|
201
195
|
updateSchedule(
|
|
202
196
|
args: UpdateScheduleCommandInput,
|
|
203
|
-
options?: __HttpHandlerOptions
|
|
197
|
+
options?: __HttpHandlerOptions,
|
|
204
198
|
): Promise<UpdateScheduleCommandOutput>;
|
|
205
199
|
updateSchedule(
|
|
206
200
|
args: UpdateScheduleCommandInput,
|
|
207
|
-
cb: (err: any, data?: UpdateScheduleCommandOutput) => void
|
|
201
|
+
cb: (err: any, data?: UpdateScheduleCommandOutput) => void,
|
|
208
202
|
): void;
|
|
209
203
|
updateSchedule(
|
|
210
204
|
args: UpdateScheduleCommandInput,
|
|
211
205
|
options: __HttpHandlerOptions,
|
|
212
|
-
cb: (err: any, data?: UpdateScheduleCommandOutput) => void
|
|
206
|
+
cb: (err: any, data?: UpdateScheduleCommandOutput) => void,
|
|
213
207
|
): void;
|
|
214
208
|
paginateListScheduleGroups(
|
|
215
209
|
args?: ListScheduleGroupsCommandInput,
|
|
216
210
|
paginationConfig?: Pick<
|
|
217
211
|
PaginationConfiguration,
|
|
218
212
|
Exclude<keyof PaginationConfiguration, "client">
|
|
219
|
-
|
|
213
|
+
>,
|
|
220
214
|
): Paginator<ListScheduleGroupsCommandOutput>;
|
|
221
215
|
paginateListSchedules(
|
|
222
216
|
args?: ListSchedulesCommandInput,
|
|
223
217
|
paginationConfig?: Pick<
|
|
224
218
|
PaginationConfiguration,
|
|
225
219
|
Exclude<keyof PaginationConfiguration, "client">
|
|
226
|
-
|
|
220
|
+
>,
|
|
227
221
|
): Paginator<ListSchedulesCommandOutput>;
|
|
228
222
|
}
|
|
229
223
|
export declare class Scheduler extends SchedulerClient implements Scheduler {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -52,10 +49,7 @@ import {
|
|
|
52
49
|
DeleteScheduleGroupCommandInput,
|
|
53
50
|
DeleteScheduleGroupCommandOutput,
|
|
54
51
|
} from "./commands/DeleteScheduleGroupCommand";
|
|
55
|
-
import {
|
|
56
|
-
GetScheduleCommandInput,
|
|
57
|
-
GetScheduleCommandOutput,
|
|
58
|
-
} from "./commands/GetScheduleCommand";
|
|
52
|
+
import { GetScheduleCommandInput, GetScheduleCommandOutput } from "./commands/GetScheduleCommand";
|
|
59
53
|
import {
|
|
60
54
|
GetScheduleGroupCommandInput,
|
|
61
55
|
GetScheduleGroupCommandOutput,
|
|
@@ -72,10 +66,7 @@ import {
|
|
|
72
66
|
ListTagsForResourceCommandInput,
|
|
73
67
|
ListTagsForResourceCommandOutput,
|
|
74
68
|
} from "./commands/ListTagsForResourceCommand";
|
|
75
|
-
import {
|
|
76
|
-
TagResourceCommandInput,
|
|
77
|
-
TagResourceCommandOutput,
|
|
78
|
-
} from "./commands/TagResourceCommand";
|
|
69
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
79
70
|
import {
|
|
80
71
|
UntagResourceCommandInput,
|
|
81
72
|
UntagResourceCommandOutput,
|
|
@@ -117,8 +108,7 @@ export type ServiceOutputTypes =
|
|
|
117
108
|
| TagResourceCommandOutput
|
|
118
109
|
| UntagResourceCommandOutput
|
|
119
110
|
| UpdateScheduleCommandOutput;
|
|
120
|
-
export interface ClientDefaults
|
|
121
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
111
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
122
112
|
requestHandler?: __HttpHandlerUserInput;
|
|
123
113
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
124
114
|
urlParser?: __UrlParser;
|
|
@@ -143,9 +133,7 @@ export interface ClientDefaults
|
|
|
143
133
|
extensions?: RuntimeExtension[];
|
|
144
134
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
145
135
|
}
|
|
146
|
-
export type SchedulerClientConfigType = Partial<
|
|
147
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
148
|
-
> &
|
|
136
|
+
export type SchedulerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
149
137
|
ClientDefaults &
|
|
150
138
|
UserAgentInputConfig &
|
|
151
139
|
RetryInputConfig &
|
|
@@ -166,8 +154,7 @@ export type SchedulerClientResolvedConfigType =
|
|
|
166
154
|
EndpointResolvedConfig<EndpointParameters> &
|
|
167
155
|
HttpAuthSchemeResolvedConfig &
|
|
168
156
|
ClientResolvedEndpointParameters;
|
|
169
|
-
export interface SchedulerClientResolvedConfig
|
|
170
|
-
extends SchedulerClientResolvedConfigType {}
|
|
157
|
+
export interface SchedulerClientResolvedConfig extends SchedulerClientResolvedConfigType {}
|
|
171
158
|
export declare class SchedulerClient extends __Client<
|
|
172
159
|
__HttpHandlerOptions,
|
|
173
160
|
ServiceInputTypes,
|
|
@@ -175,8 +162,6 @@ export declare class SchedulerClient extends __Client<
|
|
|
175
162
|
SchedulerClientResolvedConfig
|
|
176
163
|
> {
|
|
177
164
|
readonly config: SchedulerClientResolvedConfig;
|
|
178
|
-
constructor(
|
|
179
|
-
...[configuration]: __CheckOptionalClientConfig<SchedulerClientConfig>
|
|
180
|
-
);
|
|
165
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<SchedulerClientConfig>);
|
|
181
166
|
destroy(): void;
|
|
182
167
|
}
|
|
@@ -7,17 +7,10 @@ import { SchedulerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: SchedulerHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: SchedulerHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): SchedulerHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { SchedulerClientResolvedConfig } from "../SchedulerClient";
|
|
15
|
-
export interface SchedulerHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface SchedulerHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface SchedulerHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface SchedulerHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
SchedulerClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
SchedulerHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultSchedulerHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: SchedulerClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<SchedulerHttpAuthSchemeParameters>;
|
|
31
|
-
export interface SchedulerHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<SchedulerHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface SchedulerHttpAuthSchemeProvider extends HttpAuthSchemeProvider<SchedulerHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultSchedulerHttpAuthSchemeProvider: SchedulerHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: SchedulerHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: SchedulerHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./SchedulerClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
SchedulerClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateScheduleInput, CreateScheduleOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateScheduleCommandInput extends CreateScheduleInput {}
|
|
5
|
-
export interface CreateScheduleCommandOutput
|
|
6
|
-
extends CreateScheduleOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateScheduleCommandOutput extends CreateScheduleOutput, __MetadataBearer {}
|
|
8
6
|
declare const CreateScheduleCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateScheduleCommandInput
|
|
8
|
+
input: CreateScheduleCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateScheduleCommandInput,
|
|
13
11
|
CreateScheduleCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateScheduleCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateScheduleCommandInput
|
|
17
|
+
input: CreateScheduleCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateScheduleCommandInput,
|
|
22
20
|
CreateScheduleCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateScheduleGroupInput,
|
|
4
|
-
CreateScheduleGroupOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateScheduleGroupInput, CreateScheduleGroupOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateScheduleGroupCommandInput
|
|
8
|
-
extends CreateScheduleGroupInput {}
|
|
4
|
+
export interface CreateScheduleGroupCommandInput extends CreateScheduleGroupInput {}
|
|
9
5
|
export interface CreateScheduleGroupCommandOutput
|
|
10
|
-
extends CreateScheduleGroupOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateScheduleGroupOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateScheduleGroupCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateScheduleGroupCommandInput
|
|
9
|
+
input: CreateScheduleGroupCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateScheduleGroupCommandInput,
|
|
17
12
|
CreateScheduleGroupCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateScheduleGroupCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateScheduleGroupCommandInput
|
|
18
|
+
input: CreateScheduleGroupCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateScheduleGroupCommandInput,
|
|
26
21
|
CreateScheduleGroupCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteScheduleInput, DeleteScheduleOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteScheduleCommandInput extends DeleteScheduleInput {}
|
|
5
|
-
export interface DeleteScheduleCommandOutput
|
|
6
|
-
extends DeleteScheduleOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteScheduleCommandOutput extends DeleteScheduleOutput, __MetadataBearer {}
|
|
8
6
|
declare const DeleteScheduleCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteScheduleCommandInput
|
|
8
|
+
input: DeleteScheduleCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteScheduleCommandInput,
|
|
13
11
|
DeleteScheduleCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteScheduleCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteScheduleCommandInput
|
|
17
|
+
input: DeleteScheduleCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteScheduleCommandInput,
|
|
22
20
|
DeleteScheduleCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteScheduleGroupInput,
|
|
4
|
-
DeleteScheduleGroupOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteScheduleGroupInput, DeleteScheduleGroupOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteScheduleGroupCommandInput
|
|
8
|
-
extends DeleteScheduleGroupInput {}
|
|
4
|
+
export interface DeleteScheduleGroupCommandInput extends DeleteScheduleGroupInput {}
|
|
9
5
|
export interface DeleteScheduleGroupCommandOutput
|
|
10
|
-
extends DeleteScheduleGroupOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteScheduleGroupOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeleteScheduleGroupCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteScheduleGroupCommandInput
|
|
9
|
+
input: DeleteScheduleGroupCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteScheduleGroupCommandInput,
|
|
17
12
|
DeleteScheduleGroupCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteScheduleGroupCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteScheduleGroupCommandInput
|
|
18
|
+
input: DeleteScheduleGroupCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteScheduleGroupCommandInput,
|
|
26
21
|
DeleteScheduleGroupCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetScheduleInput, GetScheduleOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetScheduleCommandInput extends GetScheduleInput {}
|
|
5
|
-
export interface GetScheduleCommandOutput
|
|
6
|
-
extends GetScheduleOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetScheduleCommandOutput extends GetScheduleOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetScheduleCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetScheduleCommandInput
|
|
8
|
+
input: GetScheduleCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetScheduleCommandInput,
|
|
13
11
|
GetScheduleCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetScheduleCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetScheduleCommandInput
|
|
17
|
+
input: GetScheduleCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetScheduleCommandInput,
|
|
22
20
|
GetScheduleCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetScheduleGroupInput,
|
|
4
|
-
GetScheduleGroupOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetScheduleGroupInput, GetScheduleGroupOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetScheduleGroupCommandInput extends GetScheduleGroupInput {}
|
|
8
|
-
export interface GetScheduleGroupCommandOutput
|
|
9
|
-
extends GetScheduleGroupOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetScheduleGroupCommandOutput extends GetScheduleGroupOutput, __MetadataBearer {}
|
|
11
6
|
declare const GetScheduleGroupCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetScheduleGroupCommandInput
|
|
8
|
+
input: GetScheduleGroupCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetScheduleGroupCommandInput,
|
|
16
11
|
GetScheduleGroupCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetScheduleGroupCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetScheduleGroupCommandInput
|
|
17
|
+
input: GetScheduleGroupCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetScheduleGroupCommandInput,
|
|
25
20
|
GetScheduleGroupCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListScheduleGroupsInput,
|
|
4
|
-
ListScheduleGroupsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListScheduleGroupsInput, ListScheduleGroupsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListScheduleGroupsCommandInput
|
|
8
|
-
extends ListScheduleGroupsInput {}
|
|
4
|
+
export interface ListScheduleGroupsCommandInput extends ListScheduleGroupsInput {}
|
|
9
5
|
export interface ListScheduleGroupsCommandOutput
|
|
10
|
-
extends ListScheduleGroupsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListScheduleGroupsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListScheduleGroupsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListScheduleGroupsCommandInput
|
|
9
|
+
input: ListScheduleGroupsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListScheduleGroupsCommandInput,
|
|
17
12
|
ListScheduleGroupsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListSchedulesInput, ListSchedulesOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListSchedulesCommandInput extends ListSchedulesInput {}
|
|
5
|
-
export interface ListSchedulesCommandOutput
|
|
6
|
-
extends ListSchedulesOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListSchedulesCommandOutput extends ListSchedulesOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListSchedulesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListSchedulesCommandInput
|
|
8
|
+
input: ListSchedulesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListSchedulesCommandInput,
|
|
13
11
|
ListSchedulesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceInput,
|
|
4
|
-
ListTagsForResourceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceInput {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
5
|
-
export interface UntagResourceCommandOutput
|
|
6
|
-
extends UntagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const UntagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UntagResourceCommandInput,
|
|
13
11
|
UntagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UntagResourceCommandInput,
|
|
22
20
|
UntagResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateScheduleInput, UpdateScheduleOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateScheduleCommandInput extends UpdateScheduleInput {}
|
|
5
|
-
export interface UpdateScheduleCommandOutput
|
|
6
|
-
extends UpdateScheduleOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateScheduleCommandOutput extends UpdateScheduleOutput, __MetadataBearer {}
|
|
8
6
|
declare const UpdateScheduleCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateScheduleCommandInput
|
|
8
|
+
input: UpdateScheduleCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateScheduleCommandInput,
|
|
13
11
|
UpdateScheduleCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateScheduleCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateScheduleCommandInput
|
|
17
|
+
input: UpdateScheduleCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateScheduleCommandInput,
|
|
22
20
|
UpdateScheduleCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface SchedulerExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -8,8 +8,7 @@ export declare const AssignPublicIp: {
|
|
|
8
8
|
readonly DISABLED: "DISABLED";
|
|
9
9
|
readonly ENABLED: "ENABLED";
|
|
10
10
|
};
|
|
11
|
-
export type AssignPublicIp =
|
|
12
|
-
(typeof AssignPublicIp)[keyof typeof AssignPublicIp];
|
|
11
|
+
export type AssignPublicIp = (typeof AssignPublicIp)[keyof typeof AssignPublicIp];
|
|
13
12
|
export declare const FlexibleTimeWindowMode: {
|
|
14
13
|
readonly FLEXIBLE: "FLEXIBLE";
|
|
15
14
|
readonly OFF: "OFF";
|
|
@@ -48,5 +47,4 @@ export declare const ScheduleGroupState: {
|
|
|
48
47
|
readonly ACTIVE: "ACTIVE";
|
|
49
48
|
readonly DELETING: "DELETING";
|
|
50
49
|
};
|
|
51
|
-
export type ScheduleGroupState =
|
|
52
|
-
(typeof ScheduleGroupState)[keyof typeof ScheduleGroupState];
|
|
50
|
+
export type ScheduleGroupState = (typeof ScheduleGroupState)[keyof typeof ScheduleGroupState];
|
|
@@ -4,33 +4,25 @@ export declare class InternalServerException extends __BaseException {
|
|
|
4
4
|
readonly name: "InternalServerException";
|
|
5
5
|
readonly $fault: "server";
|
|
6
6
|
Message: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
12
10
|
readonly name: "ResourceNotFoundException";
|
|
13
11
|
readonly $fault: "client";
|
|
14
12
|
Message: string | undefined;
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
17
|
-
);
|
|
13
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
18
14
|
}
|
|
19
15
|
export declare class ThrottlingException extends __BaseException {
|
|
20
16
|
readonly name: "ThrottlingException";
|
|
21
17
|
readonly $fault: "client";
|
|
22
18
|
Message: string | undefined;
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
25
|
-
);
|
|
19
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
26
20
|
}
|
|
27
21
|
export declare class ValidationException extends __BaseException {
|
|
28
22
|
readonly name: "ValidationException";
|
|
29
23
|
readonly $fault: "client";
|
|
30
24
|
Message: string | undefined;
|
|
31
|
-
constructor(
|
|
32
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
33
|
-
);
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
34
26
|
}
|
|
35
27
|
export declare class ConflictException extends __BaseException {
|
|
36
28
|
readonly name: "ConflictException";
|
|
@@ -42,7 +34,5 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
42
34
|
readonly name: "ServiceQuotaExceededException";
|
|
43
35
|
readonly $fault: "client";
|
|
44
36
|
Message: string | undefined;
|
|
45
|
-
constructor(
|
|
46
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
47
|
-
);
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
48
38
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { SchedulerClient } from "../SchedulerClient";
|
|
3
|
-
export interface SchedulerPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface SchedulerPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: SchedulerClient;
|
|
6
5
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SchedulerHttpAuthSchemeProvider;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var SchedulerServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var ConflictException$: StaticErrorSchema;
|
|
9
5
|
export declare var InternalServerException$: StaticErrorSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-scheduler",
|
|
3
|
+
"version": "3.1088.0",
|
|
3
4
|
"description": "AWS SDK for JavaScript Scheduler Client for Node.js, Browser and React Native",
|
|
4
|
-
"
|
|
5
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-scheduler",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "AWS SDK for JavaScript Team",
|
|
9
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
14
|
+
"directory": "clients/client-scheduler"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist-*/**"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"main": "./dist-cjs/index.js",
|
|
21
|
+
"module": "./dist-es/index.js",
|
|
22
|
+
"browser": {
|
|
23
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
24
|
+
},
|
|
25
|
+
"types": "./dist-types/index.d.ts",
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"<4.5": {
|
|
28
|
+
"dist-types/*": [
|
|
29
|
+
"dist-types/ts3.4/*"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"react-native": {
|
|
34
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
35
|
+
},
|
|
5
36
|
"scripts": {
|
|
6
37
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
38
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -14,17 +45,13 @@
|
|
|
14
45
|
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
47
|
},
|
|
17
|
-
"main": "./dist-cjs/index.js",
|
|
18
|
-
"types": "./dist-types/index.d.ts",
|
|
19
|
-
"module": "./dist-es/index.js",
|
|
20
|
-
"sideEffects": false,
|
|
21
48
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.975.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.974.
|
|
25
|
-
"@smithy/core": "^3.29.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
49
|
+
"@aws-sdk/core": "^3.975.3",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.69",
|
|
51
|
+
"@aws-sdk/types": "^3.974.2",
|
|
52
|
+
"@smithy/core": "^3.29.4",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.6",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.6",
|
|
28
55
|
"@smithy/types": "^4.16.1",
|
|
29
56
|
"tslib": "^2.6.2"
|
|
30
57
|
},
|
|
@@ -38,32 +65,5 @@
|
|
|
38
65
|
},
|
|
39
66
|
"engines": {
|
|
40
67
|
"node": ">=20.0.0"
|
|
41
|
-
},
|
|
42
|
-
"typesVersions": {
|
|
43
|
-
"<4.5": {
|
|
44
|
-
"dist-types/*": [
|
|
45
|
-
"dist-types/ts3.4/*"
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"files": [
|
|
50
|
-
"dist-*/**"
|
|
51
|
-
],
|
|
52
|
-
"author": {
|
|
53
|
-
"name": "AWS SDK for JavaScript Team",
|
|
54
|
-
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
55
|
-
},
|
|
56
|
-
"license": "Apache-2.0",
|
|
57
|
-
"browser": {
|
|
58
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
59
|
-
},
|
|
60
|
-
"react-native": {
|
|
61
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
62
|
-
},
|
|
63
|
-
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-scheduler",
|
|
64
|
-
"repository": {
|
|
65
|
-
"type": "git",
|
|
66
|
-
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
67
|
-
"directory": "clients/client-scheduler"
|
|
68
68
|
}
|
|
69
69
|
}
|