@aws-sdk/client-eventbridge 3.1068.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +15 -19
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +211 -231
- package/dist-cjs/models/EventBridgeServiceException.js +4 -8
- package/dist-cjs/models/errors.js +27 -43
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +31 -35
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +23 -27
- package/dist-cjs/schemas/schemas_0.js +514 -331
- package/package.json +12 -12
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultEventBridgeHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { ActivateEventSource$, CancelReplay$, CreateApiDestination$, CreateArchive$, CreateConnection$, CreateEndpoint$, CreateEventBus$, CreatePartnerEventSource$, DeactivateEventSource$, DeauthorizeConnection$, DeleteApiDestination$, DeleteArchive$, DeleteConnection$, DeleteEndpoint$, DeleteEventBus$, DeletePartnerEventSource$, DeleteRule$, DescribeApiDestination$, DescribeArchive$, DescribeConnection$, DescribeEndpoint$, DescribeEventBus$, DescribeEventSource$, DescribePartnerEventSource$, DescribeReplay$, DescribeRule$, DisableRule$, EnableRule$, ListApiDestinations$, ListArchives$, ListConnections$, ListEndpoints$, ListEventBuses$, ListEventSources$, ListPartnerEventSourceAccounts$, ListPartnerEventSources$, ListReplays$, ListRuleNamesByTarget$, ListRules$, ListTagsForResource$, ListTargetsByRule$, PutEvents$, PutPartnerEvents$, PutPermission$, PutRule$, PutTargets$, RemovePermission$, RemoveTargets$, StartReplay$, TagResource$, TestEventPattern$, UntagResource$, UpdateApiDestination$, UpdateArchive$, UpdateConnection$, UpdateEndpoint$, UpdateEventBus$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { EventBridgeServiceException } = require("./models/EventBridgeServiceException");
|
|
18
|
+
exports.EventBridgeServiceException = EventBridgeServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -68,731 +71,731 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
68
71
|
};
|
|
69
72
|
|
|
70
73
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
71
|
-
const extensionConfiguration = Object.assign(
|
|
74
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
72
75
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
73
|
-
return Object.assign(runtimeConfig,
|
|
76
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
74
77
|
};
|
|
75
78
|
|
|
76
|
-
class EventBridgeClient extends
|
|
79
|
+
class EventBridgeClient extends Client {
|
|
77
80
|
config;
|
|
78
81
|
constructor(...[configuration]) {
|
|
79
|
-
const _config_0 =
|
|
82
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
80
83
|
super(_config_0);
|
|
81
84
|
this.initConfig = _config_0;
|
|
82
85
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
83
|
-
const _config_2 =
|
|
84
|
-
const _config_3 =
|
|
85
|
-
const _config_4 =
|
|
86
|
-
const _config_5 =
|
|
87
|
-
const _config_6 =
|
|
88
|
-
const _config_7 =
|
|
86
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
87
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
88
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
89
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
90
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
91
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
89
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
90
93
|
this.config = _config_8;
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
httpAuthSchemeParametersProvider:
|
|
100
|
-
identityProviderConfigProvider: async (config) => new
|
|
94
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
102
|
+
httpAuthSchemeParametersProvider: defaultEventBridgeHttpAuthSchemeParametersProvider,
|
|
103
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
101
104
|
"aws.auth#sigv4": config.credentials,
|
|
102
105
|
"aws.auth#sigv4a": config.credentials,
|
|
103
106
|
}),
|
|
104
107
|
}));
|
|
105
|
-
this.middlewareStack.use(
|
|
108
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
106
109
|
}
|
|
107
110
|
destroy() {
|
|
108
111
|
super.destroy();
|
|
109
112
|
}
|
|
110
113
|
}
|
|
111
114
|
|
|
112
|
-
class ActivateEventSourceCommand extends
|
|
115
|
+
class ActivateEventSourceCommand extends Command
|
|
113
116
|
.classBuilder()
|
|
114
117
|
.ep(commonParams)
|
|
115
118
|
.m(function (Command, cs, config, o) {
|
|
116
|
-
return [
|
|
119
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
117
120
|
})
|
|
118
121
|
.s("AWSEvents", "ActivateEventSource", {})
|
|
119
122
|
.n("EventBridgeClient", "ActivateEventSourceCommand")
|
|
120
|
-
.sc(
|
|
123
|
+
.sc(ActivateEventSource$)
|
|
121
124
|
.build() {
|
|
122
125
|
}
|
|
123
126
|
|
|
124
|
-
class CancelReplayCommand extends
|
|
127
|
+
class CancelReplayCommand extends Command
|
|
125
128
|
.classBuilder()
|
|
126
129
|
.ep(commonParams)
|
|
127
130
|
.m(function (Command, cs, config, o) {
|
|
128
|
-
return [
|
|
131
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
129
132
|
})
|
|
130
133
|
.s("AWSEvents", "CancelReplay", {})
|
|
131
134
|
.n("EventBridgeClient", "CancelReplayCommand")
|
|
132
|
-
.sc(
|
|
135
|
+
.sc(CancelReplay$)
|
|
133
136
|
.build() {
|
|
134
137
|
}
|
|
135
138
|
|
|
136
|
-
class CreateApiDestinationCommand extends
|
|
139
|
+
class CreateApiDestinationCommand extends Command
|
|
137
140
|
.classBuilder()
|
|
138
141
|
.ep(commonParams)
|
|
139
142
|
.m(function (Command, cs, config, o) {
|
|
140
|
-
return [
|
|
143
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
141
144
|
})
|
|
142
145
|
.s("AWSEvents", "CreateApiDestination", {})
|
|
143
146
|
.n("EventBridgeClient", "CreateApiDestinationCommand")
|
|
144
|
-
.sc(
|
|
147
|
+
.sc(CreateApiDestination$)
|
|
145
148
|
.build() {
|
|
146
149
|
}
|
|
147
150
|
|
|
148
|
-
class CreateArchiveCommand extends
|
|
151
|
+
class CreateArchiveCommand extends Command
|
|
149
152
|
.classBuilder()
|
|
150
153
|
.ep(commonParams)
|
|
151
154
|
.m(function (Command, cs, config, o) {
|
|
152
|
-
return [
|
|
155
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
153
156
|
})
|
|
154
157
|
.s("AWSEvents", "CreateArchive", {})
|
|
155
158
|
.n("EventBridgeClient", "CreateArchiveCommand")
|
|
156
|
-
.sc(
|
|
159
|
+
.sc(CreateArchive$)
|
|
157
160
|
.build() {
|
|
158
161
|
}
|
|
159
162
|
|
|
160
|
-
class CreateConnectionCommand extends
|
|
163
|
+
class CreateConnectionCommand extends Command
|
|
161
164
|
.classBuilder()
|
|
162
165
|
.ep(commonParams)
|
|
163
166
|
.m(function (Command, cs, config, o) {
|
|
164
|
-
return [
|
|
167
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
165
168
|
})
|
|
166
169
|
.s("AWSEvents", "CreateConnection", {})
|
|
167
170
|
.n("EventBridgeClient", "CreateConnectionCommand")
|
|
168
|
-
.sc(
|
|
171
|
+
.sc(CreateConnection$)
|
|
169
172
|
.build() {
|
|
170
173
|
}
|
|
171
174
|
|
|
172
|
-
class CreateEndpointCommand extends
|
|
175
|
+
class CreateEndpointCommand extends Command
|
|
173
176
|
.classBuilder()
|
|
174
177
|
.ep(commonParams)
|
|
175
178
|
.m(function (Command, cs, config, o) {
|
|
176
|
-
return [
|
|
179
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
177
180
|
})
|
|
178
181
|
.s("AWSEvents", "CreateEndpoint", {})
|
|
179
182
|
.n("EventBridgeClient", "CreateEndpointCommand")
|
|
180
|
-
.sc(
|
|
183
|
+
.sc(CreateEndpoint$)
|
|
181
184
|
.build() {
|
|
182
185
|
}
|
|
183
186
|
|
|
184
|
-
class CreateEventBusCommand extends
|
|
187
|
+
class CreateEventBusCommand extends Command
|
|
185
188
|
.classBuilder()
|
|
186
189
|
.ep(commonParams)
|
|
187
190
|
.m(function (Command, cs, config, o) {
|
|
188
|
-
return [
|
|
191
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
189
192
|
})
|
|
190
193
|
.s("AWSEvents", "CreateEventBus", {})
|
|
191
194
|
.n("EventBridgeClient", "CreateEventBusCommand")
|
|
192
|
-
.sc(
|
|
195
|
+
.sc(CreateEventBus$)
|
|
193
196
|
.build() {
|
|
194
197
|
}
|
|
195
198
|
|
|
196
|
-
class CreatePartnerEventSourceCommand extends
|
|
199
|
+
class CreatePartnerEventSourceCommand extends Command
|
|
197
200
|
.classBuilder()
|
|
198
201
|
.ep(commonParams)
|
|
199
202
|
.m(function (Command, cs, config, o) {
|
|
200
|
-
return [
|
|
203
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
201
204
|
})
|
|
202
205
|
.s("AWSEvents", "CreatePartnerEventSource", {})
|
|
203
206
|
.n("EventBridgeClient", "CreatePartnerEventSourceCommand")
|
|
204
|
-
.sc(
|
|
207
|
+
.sc(CreatePartnerEventSource$)
|
|
205
208
|
.build() {
|
|
206
209
|
}
|
|
207
210
|
|
|
208
|
-
class DeactivateEventSourceCommand extends
|
|
211
|
+
class DeactivateEventSourceCommand extends Command
|
|
209
212
|
.classBuilder()
|
|
210
213
|
.ep(commonParams)
|
|
211
214
|
.m(function (Command, cs, config, o) {
|
|
212
|
-
return [
|
|
215
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
213
216
|
})
|
|
214
217
|
.s("AWSEvents", "DeactivateEventSource", {})
|
|
215
218
|
.n("EventBridgeClient", "DeactivateEventSourceCommand")
|
|
216
|
-
.sc(
|
|
219
|
+
.sc(DeactivateEventSource$)
|
|
217
220
|
.build() {
|
|
218
221
|
}
|
|
219
222
|
|
|
220
|
-
class DeauthorizeConnectionCommand extends
|
|
223
|
+
class DeauthorizeConnectionCommand extends Command
|
|
221
224
|
.classBuilder()
|
|
222
225
|
.ep(commonParams)
|
|
223
226
|
.m(function (Command, cs, config, o) {
|
|
224
|
-
return [
|
|
227
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
225
228
|
})
|
|
226
229
|
.s("AWSEvents", "DeauthorizeConnection", {})
|
|
227
230
|
.n("EventBridgeClient", "DeauthorizeConnectionCommand")
|
|
228
|
-
.sc(
|
|
231
|
+
.sc(DeauthorizeConnection$)
|
|
229
232
|
.build() {
|
|
230
233
|
}
|
|
231
234
|
|
|
232
|
-
class DeleteApiDestinationCommand extends
|
|
235
|
+
class DeleteApiDestinationCommand extends Command
|
|
233
236
|
.classBuilder()
|
|
234
237
|
.ep(commonParams)
|
|
235
238
|
.m(function (Command, cs, config, o) {
|
|
236
|
-
return [
|
|
239
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
237
240
|
})
|
|
238
241
|
.s("AWSEvents", "DeleteApiDestination", {})
|
|
239
242
|
.n("EventBridgeClient", "DeleteApiDestinationCommand")
|
|
240
|
-
.sc(
|
|
243
|
+
.sc(DeleteApiDestination$)
|
|
241
244
|
.build() {
|
|
242
245
|
}
|
|
243
246
|
|
|
244
|
-
class DeleteArchiveCommand extends
|
|
247
|
+
class DeleteArchiveCommand extends Command
|
|
245
248
|
.classBuilder()
|
|
246
249
|
.ep(commonParams)
|
|
247
250
|
.m(function (Command, cs, config, o) {
|
|
248
|
-
return [
|
|
251
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
249
252
|
})
|
|
250
253
|
.s("AWSEvents", "DeleteArchive", {})
|
|
251
254
|
.n("EventBridgeClient", "DeleteArchiveCommand")
|
|
252
|
-
.sc(
|
|
255
|
+
.sc(DeleteArchive$)
|
|
253
256
|
.build() {
|
|
254
257
|
}
|
|
255
258
|
|
|
256
|
-
class DeleteConnectionCommand extends
|
|
259
|
+
class DeleteConnectionCommand extends Command
|
|
257
260
|
.classBuilder()
|
|
258
261
|
.ep(commonParams)
|
|
259
262
|
.m(function (Command, cs, config, o) {
|
|
260
|
-
return [
|
|
263
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
261
264
|
})
|
|
262
265
|
.s("AWSEvents", "DeleteConnection", {})
|
|
263
266
|
.n("EventBridgeClient", "DeleteConnectionCommand")
|
|
264
|
-
.sc(
|
|
267
|
+
.sc(DeleteConnection$)
|
|
265
268
|
.build() {
|
|
266
269
|
}
|
|
267
270
|
|
|
268
|
-
class DeleteEndpointCommand extends
|
|
271
|
+
class DeleteEndpointCommand extends Command
|
|
269
272
|
.classBuilder()
|
|
270
273
|
.ep(commonParams)
|
|
271
274
|
.m(function (Command, cs, config, o) {
|
|
272
|
-
return [
|
|
275
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
273
276
|
})
|
|
274
277
|
.s("AWSEvents", "DeleteEndpoint", {})
|
|
275
278
|
.n("EventBridgeClient", "DeleteEndpointCommand")
|
|
276
|
-
.sc(
|
|
279
|
+
.sc(DeleteEndpoint$)
|
|
277
280
|
.build() {
|
|
278
281
|
}
|
|
279
282
|
|
|
280
|
-
class DeleteEventBusCommand extends
|
|
283
|
+
class DeleteEventBusCommand extends Command
|
|
281
284
|
.classBuilder()
|
|
282
285
|
.ep(commonParams)
|
|
283
286
|
.m(function (Command, cs, config, o) {
|
|
284
|
-
return [
|
|
287
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
285
288
|
})
|
|
286
289
|
.s("AWSEvents", "DeleteEventBus", {})
|
|
287
290
|
.n("EventBridgeClient", "DeleteEventBusCommand")
|
|
288
|
-
.sc(
|
|
291
|
+
.sc(DeleteEventBus$)
|
|
289
292
|
.build() {
|
|
290
293
|
}
|
|
291
294
|
|
|
292
|
-
class DeletePartnerEventSourceCommand extends
|
|
295
|
+
class DeletePartnerEventSourceCommand extends Command
|
|
293
296
|
.classBuilder()
|
|
294
297
|
.ep(commonParams)
|
|
295
298
|
.m(function (Command, cs, config, o) {
|
|
296
|
-
return [
|
|
299
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
297
300
|
})
|
|
298
301
|
.s("AWSEvents", "DeletePartnerEventSource", {})
|
|
299
302
|
.n("EventBridgeClient", "DeletePartnerEventSourceCommand")
|
|
300
|
-
.sc(
|
|
303
|
+
.sc(DeletePartnerEventSource$)
|
|
301
304
|
.build() {
|
|
302
305
|
}
|
|
303
306
|
|
|
304
|
-
class DeleteRuleCommand extends
|
|
307
|
+
class DeleteRuleCommand extends Command
|
|
305
308
|
.classBuilder()
|
|
306
309
|
.ep(commonParams)
|
|
307
310
|
.m(function (Command, cs, config, o) {
|
|
308
|
-
return [
|
|
311
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
309
312
|
})
|
|
310
313
|
.s("AWSEvents", "DeleteRule", {})
|
|
311
314
|
.n("EventBridgeClient", "DeleteRuleCommand")
|
|
312
|
-
.sc(
|
|
315
|
+
.sc(DeleteRule$)
|
|
313
316
|
.build() {
|
|
314
317
|
}
|
|
315
318
|
|
|
316
|
-
class DescribeApiDestinationCommand extends
|
|
319
|
+
class DescribeApiDestinationCommand extends Command
|
|
317
320
|
.classBuilder()
|
|
318
321
|
.ep(commonParams)
|
|
319
322
|
.m(function (Command, cs, config, o) {
|
|
320
|
-
return [
|
|
323
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
321
324
|
})
|
|
322
325
|
.s("AWSEvents", "DescribeApiDestination", {})
|
|
323
326
|
.n("EventBridgeClient", "DescribeApiDestinationCommand")
|
|
324
|
-
.sc(
|
|
327
|
+
.sc(DescribeApiDestination$)
|
|
325
328
|
.build() {
|
|
326
329
|
}
|
|
327
330
|
|
|
328
|
-
class DescribeArchiveCommand extends
|
|
331
|
+
class DescribeArchiveCommand extends Command
|
|
329
332
|
.classBuilder()
|
|
330
333
|
.ep(commonParams)
|
|
331
334
|
.m(function (Command, cs, config, o) {
|
|
332
|
-
return [
|
|
335
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
333
336
|
})
|
|
334
337
|
.s("AWSEvents", "DescribeArchive", {})
|
|
335
338
|
.n("EventBridgeClient", "DescribeArchiveCommand")
|
|
336
|
-
.sc(
|
|
339
|
+
.sc(DescribeArchive$)
|
|
337
340
|
.build() {
|
|
338
341
|
}
|
|
339
342
|
|
|
340
|
-
class DescribeConnectionCommand extends
|
|
343
|
+
class DescribeConnectionCommand extends Command
|
|
341
344
|
.classBuilder()
|
|
342
345
|
.ep(commonParams)
|
|
343
346
|
.m(function (Command, cs, config, o) {
|
|
344
|
-
return [
|
|
347
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
345
348
|
})
|
|
346
349
|
.s("AWSEvents", "DescribeConnection", {})
|
|
347
350
|
.n("EventBridgeClient", "DescribeConnectionCommand")
|
|
348
|
-
.sc(
|
|
351
|
+
.sc(DescribeConnection$)
|
|
349
352
|
.build() {
|
|
350
353
|
}
|
|
351
354
|
|
|
352
|
-
class DescribeEndpointCommand extends
|
|
355
|
+
class DescribeEndpointCommand extends Command
|
|
353
356
|
.classBuilder()
|
|
354
357
|
.ep(commonParams)
|
|
355
358
|
.m(function (Command, cs, config, o) {
|
|
356
|
-
return [
|
|
359
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
357
360
|
})
|
|
358
361
|
.s("AWSEvents", "DescribeEndpoint", {})
|
|
359
362
|
.n("EventBridgeClient", "DescribeEndpointCommand")
|
|
360
|
-
.sc(
|
|
363
|
+
.sc(DescribeEndpoint$)
|
|
361
364
|
.build() {
|
|
362
365
|
}
|
|
363
366
|
|
|
364
|
-
class DescribeEventBusCommand extends
|
|
367
|
+
class DescribeEventBusCommand extends Command
|
|
365
368
|
.classBuilder()
|
|
366
369
|
.ep(commonParams)
|
|
367
370
|
.m(function (Command, cs, config, o) {
|
|
368
|
-
return [
|
|
371
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
369
372
|
})
|
|
370
373
|
.s("AWSEvents", "DescribeEventBus", {})
|
|
371
374
|
.n("EventBridgeClient", "DescribeEventBusCommand")
|
|
372
|
-
.sc(
|
|
375
|
+
.sc(DescribeEventBus$)
|
|
373
376
|
.build() {
|
|
374
377
|
}
|
|
375
378
|
|
|
376
|
-
class DescribeEventSourceCommand extends
|
|
379
|
+
class DescribeEventSourceCommand extends Command
|
|
377
380
|
.classBuilder()
|
|
378
381
|
.ep(commonParams)
|
|
379
382
|
.m(function (Command, cs, config, o) {
|
|
380
|
-
return [
|
|
383
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
381
384
|
})
|
|
382
385
|
.s("AWSEvents", "DescribeEventSource", {})
|
|
383
386
|
.n("EventBridgeClient", "DescribeEventSourceCommand")
|
|
384
|
-
.sc(
|
|
387
|
+
.sc(DescribeEventSource$)
|
|
385
388
|
.build() {
|
|
386
389
|
}
|
|
387
390
|
|
|
388
|
-
class DescribePartnerEventSourceCommand extends
|
|
391
|
+
class DescribePartnerEventSourceCommand extends Command
|
|
389
392
|
.classBuilder()
|
|
390
393
|
.ep(commonParams)
|
|
391
394
|
.m(function (Command, cs, config, o) {
|
|
392
|
-
return [
|
|
395
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
393
396
|
})
|
|
394
397
|
.s("AWSEvents", "DescribePartnerEventSource", {})
|
|
395
398
|
.n("EventBridgeClient", "DescribePartnerEventSourceCommand")
|
|
396
|
-
.sc(
|
|
399
|
+
.sc(DescribePartnerEventSource$)
|
|
397
400
|
.build() {
|
|
398
401
|
}
|
|
399
402
|
|
|
400
|
-
class DescribeReplayCommand extends
|
|
403
|
+
class DescribeReplayCommand extends Command
|
|
401
404
|
.classBuilder()
|
|
402
405
|
.ep(commonParams)
|
|
403
406
|
.m(function (Command, cs, config, o) {
|
|
404
|
-
return [
|
|
407
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
405
408
|
})
|
|
406
409
|
.s("AWSEvents", "DescribeReplay", {})
|
|
407
410
|
.n("EventBridgeClient", "DescribeReplayCommand")
|
|
408
|
-
.sc(
|
|
411
|
+
.sc(DescribeReplay$)
|
|
409
412
|
.build() {
|
|
410
413
|
}
|
|
411
414
|
|
|
412
|
-
class DescribeRuleCommand extends
|
|
415
|
+
class DescribeRuleCommand extends Command
|
|
413
416
|
.classBuilder()
|
|
414
417
|
.ep(commonParams)
|
|
415
418
|
.m(function (Command, cs, config, o) {
|
|
416
|
-
return [
|
|
419
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
417
420
|
})
|
|
418
421
|
.s("AWSEvents", "DescribeRule", {})
|
|
419
422
|
.n("EventBridgeClient", "DescribeRuleCommand")
|
|
420
|
-
.sc(
|
|
423
|
+
.sc(DescribeRule$)
|
|
421
424
|
.build() {
|
|
422
425
|
}
|
|
423
426
|
|
|
424
|
-
class DisableRuleCommand extends
|
|
427
|
+
class DisableRuleCommand extends Command
|
|
425
428
|
.classBuilder()
|
|
426
429
|
.ep(commonParams)
|
|
427
430
|
.m(function (Command, cs, config, o) {
|
|
428
|
-
return [
|
|
431
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
429
432
|
})
|
|
430
433
|
.s("AWSEvents", "DisableRule", {})
|
|
431
434
|
.n("EventBridgeClient", "DisableRuleCommand")
|
|
432
|
-
.sc(
|
|
435
|
+
.sc(DisableRule$)
|
|
433
436
|
.build() {
|
|
434
437
|
}
|
|
435
438
|
|
|
436
|
-
class EnableRuleCommand extends
|
|
439
|
+
class EnableRuleCommand extends Command
|
|
437
440
|
.classBuilder()
|
|
438
441
|
.ep(commonParams)
|
|
439
442
|
.m(function (Command, cs, config, o) {
|
|
440
|
-
return [
|
|
443
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
441
444
|
})
|
|
442
445
|
.s("AWSEvents", "EnableRule", {})
|
|
443
446
|
.n("EventBridgeClient", "EnableRuleCommand")
|
|
444
|
-
.sc(
|
|
447
|
+
.sc(EnableRule$)
|
|
445
448
|
.build() {
|
|
446
449
|
}
|
|
447
450
|
|
|
448
|
-
class ListApiDestinationsCommand extends
|
|
451
|
+
class ListApiDestinationsCommand extends Command
|
|
449
452
|
.classBuilder()
|
|
450
453
|
.ep(commonParams)
|
|
451
454
|
.m(function (Command, cs, config, o) {
|
|
452
|
-
return [
|
|
455
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
453
456
|
})
|
|
454
457
|
.s("AWSEvents", "ListApiDestinations", {})
|
|
455
458
|
.n("EventBridgeClient", "ListApiDestinationsCommand")
|
|
456
|
-
.sc(
|
|
459
|
+
.sc(ListApiDestinations$)
|
|
457
460
|
.build() {
|
|
458
461
|
}
|
|
459
462
|
|
|
460
|
-
class ListArchivesCommand extends
|
|
463
|
+
class ListArchivesCommand extends Command
|
|
461
464
|
.classBuilder()
|
|
462
465
|
.ep(commonParams)
|
|
463
466
|
.m(function (Command, cs, config, o) {
|
|
464
|
-
return [
|
|
467
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
465
468
|
})
|
|
466
469
|
.s("AWSEvents", "ListArchives", {})
|
|
467
470
|
.n("EventBridgeClient", "ListArchivesCommand")
|
|
468
|
-
.sc(
|
|
471
|
+
.sc(ListArchives$)
|
|
469
472
|
.build() {
|
|
470
473
|
}
|
|
471
474
|
|
|
472
|
-
class ListConnectionsCommand extends
|
|
475
|
+
class ListConnectionsCommand extends Command
|
|
473
476
|
.classBuilder()
|
|
474
477
|
.ep(commonParams)
|
|
475
478
|
.m(function (Command, cs, config, o) {
|
|
476
|
-
return [
|
|
479
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
477
480
|
})
|
|
478
481
|
.s("AWSEvents", "ListConnections", {})
|
|
479
482
|
.n("EventBridgeClient", "ListConnectionsCommand")
|
|
480
|
-
.sc(
|
|
483
|
+
.sc(ListConnections$)
|
|
481
484
|
.build() {
|
|
482
485
|
}
|
|
483
486
|
|
|
484
|
-
class ListEndpointsCommand extends
|
|
487
|
+
class ListEndpointsCommand extends Command
|
|
485
488
|
.classBuilder()
|
|
486
489
|
.ep(commonParams)
|
|
487
490
|
.m(function (Command, cs, config, o) {
|
|
488
|
-
return [
|
|
491
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
489
492
|
})
|
|
490
493
|
.s("AWSEvents", "ListEndpoints", {})
|
|
491
494
|
.n("EventBridgeClient", "ListEndpointsCommand")
|
|
492
|
-
.sc(
|
|
495
|
+
.sc(ListEndpoints$)
|
|
493
496
|
.build() {
|
|
494
497
|
}
|
|
495
498
|
|
|
496
|
-
class ListEventBusesCommand extends
|
|
499
|
+
class ListEventBusesCommand extends Command
|
|
497
500
|
.classBuilder()
|
|
498
501
|
.ep(commonParams)
|
|
499
502
|
.m(function (Command, cs, config, o) {
|
|
500
|
-
return [
|
|
503
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
501
504
|
})
|
|
502
505
|
.s("AWSEvents", "ListEventBuses", {})
|
|
503
506
|
.n("EventBridgeClient", "ListEventBusesCommand")
|
|
504
|
-
.sc(
|
|
507
|
+
.sc(ListEventBuses$)
|
|
505
508
|
.build() {
|
|
506
509
|
}
|
|
507
510
|
|
|
508
|
-
class ListEventSourcesCommand extends
|
|
511
|
+
class ListEventSourcesCommand extends Command
|
|
509
512
|
.classBuilder()
|
|
510
513
|
.ep(commonParams)
|
|
511
514
|
.m(function (Command, cs, config, o) {
|
|
512
|
-
return [
|
|
515
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
513
516
|
})
|
|
514
517
|
.s("AWSEvents", "ListEventSources", {})
|
|
515
518
|
.n("EventBridgeClient", "ListEventSourcesCommand")
|
|
516
|
-
.sc(
|
|
519
|
+
.sc(ListEventSources$)
|
|
517
520
|
.build() {
|
|
518
521
|
}
|
|
519
522
|
|
|
520
|
-
class ListPartnerEventSourceAccountsCommand extends
|
|
523
|
+
class ListPartnerEventSourceAccountsCommand extends Command
|
|
521
524
|
.classBuilder()
|
|
522
525
|
.ep(commonParams)
|
|
523
526
|
.m(function (Command, cs, config, o) {
|
|
524
|
-
return [
|
|
527
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
525
528
|
})
|
|
526
529
|
.s("AWSEvents", "ListPartnerEventSourceAccounts", {})
|
|
527
530
|
.n("EventBridgeClient", "ListPartnerEventSourceAccountsCommand")
|
|
528
|
-
.sc(
|
|
531
|
+
.sc(ListPartnerEventSourceAccounts$)
|
|
529
532
|
.build() {
|
|
530
533
|
}
|
|
531
534
|
|
|
532
|
-
class ListPartnerEventSourcesCommand extends
|
|
535
|
+
class ListPartnerEventSourcesCommand extends Command
|
|
533
536
|
.classBuilder()
|
|
534
537
|
.ep(commonParams)
|
|
535
538
|
.m(function (Command, cs, config, o) {
|
|
536
|
-
return [
|
|
539
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
537
540
|
})
|
|
538
541
|
.s("AWSEvents", "ListPartnerEventSources", {})
|
|
539
542
|
.n("EventBridgeClient", "ListPartnerEventSourcesCommand")
|
|
540
|
-
.sc(
|
|
543
|
+
.sc(ListPartnerEventSources$)
|
|
541
544
|
.build() {
|
|
542
545
|
}
|
|
543
546
|
|
|
544
|
-
class ListReplaysCommand extends
|
|
547
|
+
class ListReplaysCommand extends Command
|
|
545
548
|
.classBuilder()
|
|
546
549
|
.ep(commonParams)
|
|
547
550
|
.m(function (Command, cs, config, o) {
|
|
548
|
-
return [
|
|
551
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
549
552
|
})
|
|
550
553
|
.s("AWSEvents", "ListReplays", {})
|
|
551
554
|
.n("EventBridgeClient", "ListReplaysCommand")
|
|
552
|
-
.sc(
|
|
555
|
+
.sc(ListReplays$)
|
|
553
556
|
.build() {
|
|
554
557
|
}
|
|
555
558
|
|
|
556
|
-
class ListRuleNamesByTargetCommand extends
|
|
559
|
+
class ListRuleNamesByTargetCommand extends Command
|
|
557
560
|
.classBuilder()
|
|
558
561
|
.ep(commonParams)
|
|
559
562
|
.m(function (Command, cs, config, o) {
|
|
560
|
-
return [
|
|
563
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
561
564
|
})
|
|
562
565
|
.s("AWSEvents", "ListRuleNamesByTarget", {})
|
|
563
566
|
.n("EventBridgeClient", "ListRuleNamesByTargetCommand")
|
|
564
|
-
.sc(
|
|
567
|
+
.sc(ListRuleNamesByTarget$)
|
|
565
568
|
.build() {
|
|
566
569
|
}
|
|
567
570
|
|
|
568
|
-
class ListRulesCommand extends
|
|
571
|
+
class ListRulesCommand extends Command
|
|
569
572
|
.classBuilder()
|
|
570
573
|
.ep(commonParams)
|
|
571
574
|
.m(function (Command, cs, config, o) {
|
|
572
|
-
return [
|
|
575
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
573
576
|
})
|
|
574
577
|
.s("AWSEvents", "ListRules", {})
|
|
575
578
|
.n("EventBridgeClient", "ListRulesCommand")
|
|
576
|
-
.sc(
|
|
579
|
+
.sc(ListRules$)
|
|
577
580
|
.build() {
|
|
578
581
|
}
|
|
579
582
|
|
|
580
|
-
class ListTagsForResourceCommand extends
|
|
583
|
+
class ListTagsForResourceCommand extends Command
|
|
581
584
|
.classBuilder()
|
|
582
585
|
.ep(commonParams)
|
|
583
586
|
.m(function (Command, cs, config, o) {
|
|
584
|
-
return [
|
|
587
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
585
588
|
})
|
|
586
589
|
.s("AWSEvents", "ListTagsForResource", {})
|
|
587
590
|
.n("EventBridgeClient", "ListTagsForResourceCommand")
|
|
588
|
-
.sc(
|
|
591
|
+
.sc(ListTagsForResource$)
|
|
589
592
|
.build() {
|
|
590
593
|
}
|
|
591
594
|
|
|
592
|
-
class ListTargetsByRuleCommand extends
|
|
595
|
+
class ListTargetsByRuleCommand extends Command
|
|
593
596
|
.classBuilder()
|
|
594
597
|
.ep(commonParams)
|
|
595
598
|
.m(function (Command, cs, config, o) {
|
|
596
|
-
return [
|
|
599
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
597
600
|
})
|
|
598
601
|
.s("AWSEvents", "ListTargetsByRule", {})
|
|
599
602
|
.n("EventBridgeClient", "ListTargetsByRuleCommand")
|
|
600
|
-
.sc(
|
|
603
|
+
.sc(ListTargetsByRule$)
|
|
601
604
|
.build() {
|
|
602
605
|
}
|
|
603
606
|
|
|
604
|
-
class PutEventsCommand extends
|
|
607
|
+
class PutEventsCommand extends Command
|
|
605
608
|
.classBuilder()
|
|
606
609
|
.ep({
|
|
607
610
|
...commonParams,
|
|
608
611
|
EndpointId: { type: "contextParams", name: "EndpointId" },
|
|
609
612
|
})
|
|
610
613
|
.m(function (Command, cs, config, o) {
|
|
611
|
-
return [
|
|
614
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
612
615
|
})
|
|
613
616
|
.s("AWSEvents", "PutEvents", {})
|
|
614
617
|
.n("EventBridgeClient", "PutEventsCommand")
|
|
615
|
-
.sc(
|
|
618
|
+
.sc(PutEvents$)
|
|
616
619
|
.build() {
|
|
617
620
|
}
|
|
618
621
|
|
|
619
|
-
class PutPartnerEventsCommand extends
|
|
622
|
+
class PutPartnerEventsCommand extends Command
|
|
620
623
|
.classBuilder()
|
|
621
624
|
.ep(commonParams)
|
|
622
625
|
.m(function (Command, cs, config, o) {
|
|
623
|
-
return [
|
|
626
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
624
627
|
})
|
|
625
628
|
.s("AWSEvents", "PutPartnerEvents", {})
|
|
626
629
|
.n("EventBridgeClient", "PutPartnerEventsCommand")
|
|
627
|
-
.sc(
|
|
630
|
+
.sc(PutPartnerEvents$)
|
|
628
631
|
.build() {
|
|
629
632
|
}
|
|
630
633
|
|
|
631
|
-
class PutPermissionCommand extends
|
|
634
|
+
class PutPermissionCommand extends Command
|
|
632
635
|
.classBuilder()
|
|
633
636
|
.ep(commonParams)
|
|
634
637
|
.m(function (Command, cs, config, o) {
|
|
635
|
-
return [
|
|
638
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
636
639
|
})
|
|
637
640
|
.s("AWSEvents", "PutPermission", {})
|
|
638
641
|
.n("EventBridgeClient", "PutPermissionCommand")
|
|
639
|
-
.sc(
|
|
642
|
+
.sc(PutPermission$)
|
|
640
643
|
.build() {
|
|
641
644
|
}
|
|
642
645
|
|
|
643
|
-
class PutRuleCommand extends
|
|
646
|
+
class PutRuleCommand extends Command
|
|
644
647
|
.classBuilder()
|
|
645
648
|
.ep(commonParams)
|
|
646
649
|
.m(function (Command, cs, config, o) {
|
|
647
|
-
return [
|
|
650
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
648
651
|
})
|
|
649
652
|
.s("AWSEvents", "PutRule", {})
|
|
650
653
|
.n("EventBridgeClient", "PutRuleCommand")
|
|
651
|
-
.sc(
|
|
654
|
+
.sc(PutRule$)
|
|
652
655
|
.build() {
|
|
653
656
|
}
|
|
654
657
|
|
|
655
|
-
class PutTargetsCommand extends
|
|
658
|
+
class PutTargetsCommand extends Command
|
|
656
659
|
.classBuilder()
|
|
657
660
|
.ep(commonParams)
|
|
658
661
|
.m(function (Command, cs, config, o) {
|
|
659
|
-
return [
|
|
662
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
660
663
|
})
|
|
661
664
|
.s("AWSEvents", "PutTargets", {})
|
|
662
665
|
.n("EventBridgeClient", "PutTargetsCommand")
|
|
663
|
-
.sc(
|
|
666
|
+
.sc(PutTargets$)
|
|
664
667
|
.build() {
|
|
665
668
|
}
|
|
666
669
|
|
|
667
|
-
class RemovePermissionCommand extends
|
|
670
|
+
class RemovePermissionCommand extends Command
|
|
668
671
|
.classBuilder()
|
|
669
672
|
.ep(commonParams)
|
|
670
673
|
.m(function (Command, cs, config, o) {
|
|
671
|
-
return [
|
|
674
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
672
675
|
})
|
|
673
676
|
.s("AWSEvents", "RemovePermission", {})
|
|
674
677
|
.n("EventBridgeClient", "RemovePermissionCommand")
|
|
675
|
-
.sc(
|
|
678
|
+
.sc(RemovePermission$)
|
|
676
679
|
.build() {
|
|
677
680
|
}
|
|
678
681
|
|
|
679
|
-
class RemoveTargetsCommand extends
|
|
682
|
+
class RemoveTargetsCommand extends Command
|
|
680
683
|
.classBuilder()
|
|
681
684
|
.ep(commonParams)
|
|
682
685
|
.m(function (Command, cs, config, o) {
|
|
683
|
-
return [
|
|
686
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
684
687
|
})
|
|
685
688
|
.s("AWSEvents", "RemoveTargets", {})
|
|
686
689
|
.n("EventBridgeClient", "RemoveTargetsCommand")
|
|
687
|
-
.sc(
|
|
690
|
+
.sc(RemoveTargets$)
|
|
688
691
|
.build() {
|
|
689
692
|
}
|
|
690
693
|
|
|
691
|
-
class StartReplayCommand extends
|
|
694
|
+
class StartReplayCommand extends Command
|
|
692
695
|
.classBuilder()
|
|
693
696
|
.ep(commonParams)
|
|
694
697
|
.m(function (Command, cs, config, o) {
|
|
695
|
-
return [
|
|
698
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
696
699
|
})
|
|
697
700
|
.s("AWSEvents", "StartReplay", {})
|
|
698
701
|
.n("EventBridgeClient", "StartReplayCommand")
|
|
699
|
-
.sc(
|
|
702
|
+
.sc(StartReplay$)
|
|
700
703
|
.build() {
|
|
701
704
|
}
|
|
702
705
|
|
|
703
|
-
class TagResourceCommand extends
|
|
706
|
+
class TagResourceCommand extends Command
|
|
704
707
|
.classBuilder()
|
|
705
708
|
.ep(commonParams)
|
|
706
709
|
.m(function (Command, cs, config, o) {
|
|
707
|
-
return [
|
|
710
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
708
711
|
})
|
|
709
712
|
.s("AWSEvents", "TagResource", {})
|
|
710
713
|
.n("EventBridgeClient", "TagResourceCommand")
|
|
711
|
-
.sc(
|
|
714
|
+
.sc(TagResource$)
|
|
712
715
|
.build() {
|
|
713
716
|
}
|
|
714
717
|
|
|
715
|
-
class TestEventPatternCommand extends
|
|
718
|
+
class TestEventPatternCommand extends Command
|
|
716
719
|
.classBuilder()
|
|
717
720
|
.ep(commonParams)
|
|
718
721
|
.m(function (Command, cs, config, o) {
|
|
719
|
-
return [
|
|
722
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
720
723
|
})
|
|
721
724
|
.s("AWSEvents", "TestEventPattern", {})
|
|
722
725
|
.n("EventBridgeClient", "TestEventPatternCommand")
|
|
723
|
-
.sc(
|
|
726
|
+
.sc(TestEventPattern$)
|
|
724
727
|
.build() {
|
|
725
728
|
}
|
|
726
729
|
|
|
727
|
-
class UntagResourceCommand extends
|
|
730
|
+
class UntagResourceCommand extends Command
|
|
728
731
|
.classBuilder()
|
|
729
732
|
.ep(commonParams)
|
|
730
733
|
.m(function (Command, cs, config, o) {
|
|
731
|
-
return [
|
|
734
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
732
735
|
})
|
|
733
736
|
.s("AWSEvents", "UntagResource", {})
|
|
734
737
|
.n("EventBridgeClient", "UntagResourceCommand")
|
|
735
|
-
.sc(
|
|
738
|
+
.sc(UntagResource$)
|
|
736
739
|
.build() {
|
|
737
740
|
}
|
|
738
741
|
|
|
739
|
-
class UpdateApiDestinationCommand extends
|
|
742
|
+
class UpdateApiDestinationCommand extends Command
|
|
740
743
|
.classBuilder()
|
|
741
744
|
.ep(commonParams)
|
|
742
745
|
.m(function (Command, cs, config, o) {
|
|
743
|
-
return [
|
|
746
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
744
747
|
})
|
|
745
748
|
.s("AWSEvents", "UpdateApiDestination", {})
|
|
746
749
|
.n("EventBridgeClient", "UpdateApiDestinationCommand")
|
|
747
|
-
.sc(
|
|
750
|
+
.sc(UpdateApiDestination$)
|
|
748
751
|
.build() {
|
|
749
752
|
}
|
|
750
753
|
|
|
751
|
-
class UpdateArchiveCommand extends
|
|
754
|
+
class UpdateArchiveCommand extends Command
|
|
752
755
|
.classBuilder()
|
|
753
756
|
.ep(commonParams)
|
|
754
757
|
.m(function (Command, cs, config, o) {
|
|
755
|
-
return [
|
|
758
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
756
759
|
})
|
|
757
760
|
.s("AWSEvents", "UpdateArchive", {})
|
|
758
761
|
.n("EventBridgeClient", "UpdateArchiveCommand")
|
|
759
|
-
.sc(
|
|
762
|
+
.sc(UpdateArchive$)
|
|
760
763
|
.build() {
|
|
761
764
|
}
|
|
762
765
|
|
|
763
|
-
class UpdateConnectionCommand extends
|
|
766
|
+
class UpdateConnectionCommand extends Command
|
|
764
767
|
.classBuilder()
|
|
765
768
|
.ep(commonParams)
|
|
766
769
|
.m(function (Command, cs, config, o) {
|
|
767
|
-
return [
|
|
770
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
768
771
|
})
|
|
769
772
|
.s("AWSEvents", "UpdateConnection", {})
|
|
770
773
|
.n("EventBridgeClient", "UpdateConnectionCommand")
|
|
771
|
-
.sc(
|
|
774
|
+
.sc(UpdateConnection$)
|
|
772
775
|
.build() {
|
|
773
776
|
}
|
|
774
777
|
|
|
775
|
-
class UpdateEndpointCommand extends
|
|
778
|
+
class UpdateEndpointCommand extends Command
|
|
776
779
|
.classBuilder()
|
|
777
780
|
.ep(commonParams)
|
|
778
781
|
.m(function (Command, cs, config, o) {
|
|
779
|
-
return [
|
|
782
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
780
783
|
})
|
|
781
784
|
.s("AWSEvents", "UpdateEndpoint", {})
|
|
782
785
|
.n("EventBridgeClient", "UpdateEndpointCommand")
|
|
783
|
-
.sc(
|
|
786
|
+
.sc(UpdateEndpoint$)
|
|
784
787
|
.build() {
|
|
785
788
|
}
|
|
786
789
|
|
|
787
|
-
class UpdateEventBusCommand extends
|
|
790
|
+
class UpdateEventBusCommand extends Command
|
|
788
791
|
.classBuilder()
|
|
789
792
|
.ep(commonParams)
|
|
790
793
|
.m(function (Command, cs, config, o) {
|
|
791
|
-
return [
|
|
794
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
792
795
|
})
|
|
793
796
|
.s("AWSEvents", "UpdateEventBus", {})
|
|
794
797
|
.n("EventBridgeClient", "UpdateEventBusCommand")
|
|
795
|
-
.sc(
|
|
798
|
+
.sc(UpdateEventBus$)
|
|
796
799
|
.build() {
|
|
797
800
|
}
|
|
798
801
|
|
|
@@ -857,7 +860,7 @@ const commands = {
|
|
|
857
860
|
};
|
|
858
861
|
class EventBridge extends EventBridgeClient {
|
|
859
862
|
}
|
|
860
|
-
|
|
863
|
+
createAggregatedClient(commands, EventBridge);
|
|
861
864
|
|
|
862
865
|
const ApiDestinationState = {
|
|
863
866
|
ACTIVE: "ACTIVE",
|
|
@@ -964,9 +967,6 @@ const PropagateTags = {
|
|
|
964
967
|
TASK_DEFINITION: "TASK_DEFINITION",
|
|
965
968
|
};
|
|
966
969
|
|
|
967
|
-
exports.$Command = client.Command;
|
|
968
|
-
exports.__Client = client.Client;
|
|
969
|
-
exports.EventBridgeServiceException = EventBridgeServiceException.EventBridgeServiceException;
|
|
970
970
|
exports.ActivateEventSourceCommand = ActivateEventSourceCommand;
|
|
971
971
|
exports.ApiDestinationHttpMethod = ApiDestinationHttpMethod;
|
|
972
972
|
exports.ApiDestinationState = ApiDestinationState;
|
|
@@ -1044,23 +1044,3 @@ exports.UpdateArchiveCommand = UpdateArchiveCommand;
|
|
|
1044
1044
|
exports.UpdateConnectionCommand = UpdateConnectionCommand;
|
|
1045
1045
|
exports.UpdateEndpointCommand = UpdateEndpointCommand;
|
|
1046
1046
|
exports.UpdateEventBusCommand = UpdateEventBusCommand;
|
|
1047
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
1048
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1049
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1050
|
-
enumerable: true,
|
|
1051
|
-
value: schemas_0['__proto__']
|
|
1052
|
-
});
|
|
1053
|
-
|
|
1054
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
1055
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
1056
|
-
});
|
|
1057
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
1058
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1059
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1060
|
-
enumerable: true,
|
|
1061
|
-
value: errors['__proto__']
|
|
1062
|
-
});
|
|
1063
|
-
|
|
1064
|
-
Object.keys(errors).forEach(function (k) {
|
|
1065
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
1066
|
-
});
|