Skip to content

Commit c9bd983

Browse files
trivikralexforsyth
andauthored
feat(clients): update clients as of 07/08/2021 (#2565)
* feat(models): updating models per july 9th 2021 * feat(clients): update clients as of 07/08/2021 Co-authored-by: Alex Forsyth <[email protected]>
1 parent fb42522 commit c9bd983

File tree

399 files changed

+16140
-5618
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

399 files changed

+16140
-5618
lines changed

clients/client-chime/Chime.ts

+148
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ import {
105105
CreateChannelModeratorCommandInput,
106106
CreateChannelModeratorCommandOutput,
107107
} from "./commands/CreateChannelModeratorCommand";
108+
import {
109+
CreateMediaCapturePipelineCommand,
110+
CreateMediaCapturePipelineCommandInput,
111+
CreateMediaCapturePipelineCommandOutput,
112+
} from "./commands/CreateMediaCapturePipelineCommand";
108113
import {
109114
CreateMeetingCommand,
110115
CreateMeetingCommandInput,
@@ -222,6 +227,11 @@ import {
222227
DeleteEventsConfigurationCommandInput,
223228
DeleteEventsConfigurationCommandOutput,
224229
} from "./commands/DeleteEventsConfigurationCommand";
230+
import {
231+
DeleteMediaCapturePipelineCommand,
232+
DeleteMediaCapturePipelineCommandInput,
233+
DeleteMediaCapturePipelineCommandOutput,
234+
} from "./commands/DeleteMediaCapturePipelineCommand";
225235
import {
226236
DeleteMeetingCommand,
227237
DeleteMeetingCommandInput,
@@ -391,6 +401,11 @@ import {
391401
GetGlobalSettingsCommandInput,
392402
GetGlobalSettingsCommandOutput,
393403
} from "./commands/GetGlobalSettingsCommand";
404+
import {
405+
GetMediaCapturePipelineCommand,
406+
GetMediaCapturePipelineCommandInput,
407+
GetMediaCapturePipelineCommandOutput,
408+
} from "./commands/GetMediaCapturePipelineCommand";
394409
import { GetMeetingCommand, GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetMeetingCommand";
395410
import {
396411
GetMessagingSessionEndpointCommand,
@@ -552,6 +567,11 @@ import {
552567
ListChannelsModeratedByAppInstanceUserCommandInput,
553568
ListChannelsModeratedByAppInstanceUserCommandOutput,
554569
} from "./commands/ListChannelsModeratedByAppInstanceUserCommand";
570+
import {
571+
ListMediaCapturePipelinesCommand,
572+
ListMediaCapturePipelinesCommandInput,
573+
ListMediaCapturePipelinesCommandOutput,
574+
} from "./commands/ListMediaCapturePipelinesCommand";
555575
import {
556576
ListMeetingTagsCommand,
557577
ListMeetingTagsCommandInput,
@@ -1721,6 +1741,38 @@ export class Chime extends ChimeClient {
17211741
}
17221742
}
17231743

1744+
/**
1745+
* <p>Creates a media capture pipeline.</p>
1746+
*/
1747+
public createMediaCapturePipeline(
1748+
args: CreateMediaCapturePipelineCommandInput,
1749+
options?: __HttpHandlerOptions
1750+
): Promise<CreateMediaCapturePipelineCommandOutput>;
1751+
public createMediaCapturePipeline(
1752+
args: CreateMediaCapturePipelineCommandInput,
1753+
cb: (err: any, data?: CreateMediaCapturePipelineCommandOutput) => void
1754+
): void;
1755+
public createMediaCapturePipeline(
1756+
args: CreateMediaCapturePipelineCommandInput,
1757+
options: __HttpHandlerOptions,
1758+
cb: (err: any, data?: CreateMediaCapturePipelineCommandOutput) => void
1759+
): void;
1760+
public createMediaCapturePipeline(
1761+
args: CreateMediaCapturePipelineCommandInput,
1762+
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateMediaCapturePipelineCommandOutput) => void),
1763+
cb?: (err: any, data?: CreateMediaCapturePipelineCommandOutput) => void
1764+
): Promise<CreateMediaCapturePipelineCommandOutput> | void {
1765+
const command = new CreateMediaCapturePipelineCommand(args);
1766+
if (typeof optionsOrCb === "function") {
1767+
this.send(command, optionsOrCb);
1768+
} else if (typeof cb === "function") {
1769+
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1770+
this.send(command, optionsOrCb || {}, cb);
1771+
} else {
1772+
return this.send(command, optionsOrCb);
1773+
}
1774+
}
1775+
17241776
/**
17251777
* <p>
17261778
* Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see
@@ -2590,6 +2642,38 @@ export class Chime extends ChimeClient {
25902642
}
25912643
}
25922644

2645+
/**
2646+
* <p>Deletes the media capture pipeline.</p>
2647+
*/
2648+
public deleteMediaCapturePipeline(
2649+
args: DeleteMediaCapturePipelineCommandInput,
2650+
options?: __HttpHandlerOptions
2651+
): Promise<DeleteMediaCapturePipelineCommandOutput>;
2652+
public deleteMediaCapturePipeline(
2653+
args: DeleteMediaCapturePipelineCommandInput,
2654+
cb: (err: any, data?: DeleteMediaCapturePipelineCommandOutput) => void
2655+
): void;
2656+
public deleteMediaCapturePipeline(
2657+
args: DeleteMediaCapturePipelineCommandInput,
2658+
options: __HttpHandlerOptions,
2659+
cb: (err: any, data?: DeleteMediaCapturePipelineCommandOutput) => void
2660+
): void;
2661+
public deleteMediaCapturePipeline(
2662+
args: DeleteMediaCapturePipelineCommandInput,
2663+
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteMediaCapturePipelineCommandOutput) => void),
2664+
cb?: (err: any, data?: DeleteMediaCapturePipelineCommandOutput) => void
2665+
): Promise<DeleteMediaCapturePipelineCommandOutput> | void {
2666+
const command = new DeleteMediaCapturePipelineCommand(args);
2667+
if (typeof optionsOrCb === "function") {
2668+
this.send(command, optionsOrCb);
2669+
} else if (typeof cb === "function") {
2670+
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2671+
this.send(command, optionsOrCb || {}, cb);
2672+
} else {
2673+
return this.send(command, optionsOrCb);
2674+
}
2675+
}
2676+
25932677
/**
25942678
* <p>Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from
25952679
* joining the meeting. For more information about the Amazon Chime SDK, see
@@ -3840,6 +3924,38 @@ export class Chime extends ChimeClient {
38403924
}
38413925
}
38423926

3927+
/**
3928+
* <p>Gets an existing media capture pipeline.</p>
3929+
*/
3930+
public getMediaCapturePipeline(
3931+
args: GetMediaCapturePipelineCommandInput,
3932+
options?: __HttpHandlerOptions
3933+
): Promise<GetMediaCapturePipelineCommandOutput>;
3934+
public getMediaCapturePipeline(
3935+
args: GetMediaCapturePipelineCommandInput,
3936+
cb: (err: any, data?: GetMediaCapturePipelineCommandOutput) => void
3937+
): void;
3938+
public getMediaCapturePipeline(
3939+
args: GetMediaCapturePipelineCommandInput,
3940+
options: __HttpHandlerOptions,
3941+
cb: (err: any, data?: GetMediaCapturePipelineCommandOutput) => void
3942+
): void;
3943+
public getMediaCapturePipeline(
3944+
args: GetMediaCapturePipelineCommandInput,
3945+
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetMediaCapturePipelineCommandOutput) => void),
3946+
cb?: (err: any, data?: GetMediaCapturePipelineCommandOutput) => void
3947+
): Promise<GetMediaCapturePipelineCommandOutput> | void {
3948+
const command = new GetMediaCapturePipelineCommand(args);
3949+
if (typeof optionsOrCb === "function") {
3950+
this.send(command, optionsOrCb);
3951+
} else if (typeof cb === "function") {
3952+
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
3953+
this.send(command, optionsOrCb || {}, cb);
3954+
} else {
3955+
return this.send(command, optionsOrCb);
3956+
}
3957+
}
3958+
38433959
/**
38443960
* <p>
38453961
* Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see
@@ -5080,6 +5196,38 @@ export class Chime extends ChimeClient {
50805196
}
50815197
}
50825198

5199+
/**
5200+
* <p>Returns a list of media capture pipelines.</p>
5201+
*/
5202+
public listMediaCapturePipelines(
5203+
args: ListMediaCapturePipelinesCommandInput,
5204+
options?: __HttpHandlerOptions
5205+
): Promise<ListMediaCapturePipelinesCommandOutput>;
5206+
public listMediaCapturePipelines(
5207+
args: ListMediaCapturePipelinesCommandInput,
5208+
cb: (err: any, data?: ListMediaCapturePipelinesCommandOutput) => void
5209+
): void;
5210+
public listMediaCapturePipelines(
5211+
args: ListMediaCapturePipelinesCommandInput,
5212+
options: __HttpHandlerOptions,
5213+
cb: (err: any, data?: ListMediaCapturePipelinesCommandOutput) => void
5214+
): void;
5215+
public listMediaCapturePipelines(
5216+
args: ListMediaCapturePipelinesCommandInput,
5217+
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListMediaCapturePipelinesCommandOutput) => void),
5218+
cb?: (err: any, data?: ListMediaCapturePipelinesCommandOutput) => void
5219+
): Promise<ListMediaCapturePipelinesCommandOutput> | void {
5220+
const command = new ListMediaCapturePipelinesCommand(args);
5221+
if (typeof optionsOrCb === "function") {
5222+
this.send(command, optionsOrCb);
5223+
} else if (typeof cb === "function") {
5224+
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
5225+
this.send(command, optionsOrCb || {}, cb);
5226+
} else {
5227+
return this.send(command, optionsOrCb);
5228+
}
5229+
}
5230+
50835231
/**
50845232
* <p>
50855233
* Lists up to 100 active Amazon Chime SDK meetings. For more information about the Amazon Chime SDK, see

clients/client-chime/ChimeClient.ts

+24
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ import {
5959
CreateChannelModeratorCommandInput,
6060
CreateChannelModeratorCommandOutput,
6161
} from "./commands/CreateChannelModeratorCommand";
62+
import {
63+
CreateMediaCapturePipelineCommandInput,
64+
CreateMediaCapturePipelineCommandOutput,
65+
} from "./commands/CreateMediaCapturePipelineCommand";
6266
import { CreateMeetingCommandInput, CreateMeetingCommandOutput } from "./commands/CreateMeetingCommand";
6367
import {
6468
CreateMeetingDialOutCommandInput,
@@ -129,6 +133,10 @@ import {
129133
DeleteEventsConfigurationCommandInput,
130134
DeleteEventsConfigurationCommandOutput,
131135
} from "./commands/DeleteEventsConfigurationCommand";
136+
import {
137+
DeleteMediaCapturePipelineCommandInput,
138+
DeleteMediaCapturePipelineCommandOutput,
139+
} from "./commands/DeleteMediaCapturePipelineCommand";
132140
import { DeleteMeetingCommandInput, DeleteMeetingCommandOutput } from "./commands/DeleteMeetingCommand";
133141
import { DeletePhoneNumberCommandInput, DeletePhoneNumberCommandOutput } from "./commands/DeletePhoneNumberCommand";
134142
import { DeleteProxySessionCommandInput, DeleteProxySessionCommandOutput } from "./commands/DeleteProxySessionCommand";
@@ -238,6 +246,10 @@ import {
238246
GetEventsConfigurationCommandOutput,
239247
} from "./commands/GetEventsConfigurationCommand";
240248
import { GetGlobalSettingsCommandInput, GetGlobalSettingsCommandOutput } from "./commands/GetGlobalSettingsCommand";
249+
import {
250+
GetMediaCapturePipelineCommandInput,
251+
GetMediaCapturePipelineCommandOutput,
252+
} from "./commands/GetMediaCapturePipelineCommand";
241253
import { GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetMeetingCommand";
242254
import {
243255
GetMessagingSessionEndpointCommandInput,
@@ -338,6 +350,10 @@ import {
338350
ListChannelsModeratedByAppInstanceUserCommandInput,
339351
ListChannelsModeratedByAppInstanceUserCommandOutput,
340352
} from "./commands/ListChannelsModeratedByAppInstanceUserCommand";
353+
import {
354+
ListMediaCapturePipelinesCommandInput,
355+
ListMediaCapturePipelinesCommandOutput,
356+
} from "./commands/ListMediaCapturePipelinesCommand";
341357
import { ListMeetingTagsCommandInput, ListMeetingTagsCommandOutput } from "./commands/ListMeetingTagsCommand";
342358
import { ListMeetingsCommandInput, ListMeetingsCommandOutput } from "./commands/ListMeetingsCommand";
343359
import {
@@ -580,6 +596,7 @@ export type ServiceInputTypes =
580596
| CreateChannelCommandInput
581597
| CreateChannelMembershipCommandInput
582598
| CreateChannelModeratorCommandInput
599+
| CreateMediaCapturePipelineCommandInput
583600
| CreateMeetingCommandInput
584601
| CreateMeetingDialOutCommandInput
585602
| CreateMeetingWithAttendeesCommandInput
@@ -605,6 +622,7 @@ export type ServiceInputTypes =
605622
| DeleteChannelMessageCommandInput
606623
| DeleteChannelModeratorCommandInput
607624
| DeleteEventsConfigurationCommandInput
625+
| DeleteMediaCapturePipelineCommandInput
608626
| DeleteMeetingCommandInput
609627
| DeletePhoneNumberCommandInput
610628
| DeleteProxySessionCommandInput
@@ -642,6 +660,7 @@ export type ServiceInputTypes =
642660
| GetChannelMessageCommandInput
643661
| GetEventsConfigurationCommandInput
644662
| GetGlobalSettingsCommandInput
663+
| GetMediaCapturePipelineCommandInput
645664
| GetMeetingCommandInput
646665
| GetMessagingSessionEndpointCommandInput
647666
| GetPhoneNumberCommandInput
@@ -679,6 +698,7 @@ export type ServiceInputTypes =
679698
| ListChannelModeratorsCommandInput
680699
| ListChannelsCommandInput
681700
| ListChannelsModeratedByAppInstanceUserCommandInput
701+
| ListMediaCapturePipelinesCommandInput
682702
| ListMeetingTagsCommandInput
683703
| ListMeetingsCommandInput
684704
| ListPhoneNumberOrdersCommandInput
@@ -766,6 +786,7 @@ export type ServiceOutputTypes =
766786
| CreateChannelCommandOutput
767787
| CreateChannelMembershipCommandOutput
768788
| CreateChannelModeratorCommandOutput
789+
| CreateMediaCapturePipelineCommandOutput
769790
| CreateMeetingCommandOutput
770791
| CreateMeetingDialOutCommandOutput
771792
| CreateMeetingWithAttendeesCommandOutput
@@ -791,6 +812,7 @@ export type ServiceOutputTypes =
791812
| DeleteChannelMessageCommandOutput
792813
| DeleteChannelModeratorCommandOutput
793814
| DeleteEventsConfigurationCommandOutput
815+
| DeleteMediaCapturePipelineCommandOutput
794816
| DeleteMeetingCommandOutput
795817
| DeletePhoneNumberCommandOutput
796818
| DeleteProxySessionCommandOutput
@@ -828,6 +850,7 @@ export type ServiceOutputTypes =
828850
| GetChannelMessageCommandOutput
829851
| GetEventsConfigurationCommandOutput
830852
| GetGlobalSettingsCommandOutput
853+
| GetMediaCapturePipelineCommandOutput
831854
| GetMeetingCommandOutput
832855
| GetMessagingSessionEndpointCommandOutput
833856
| GetPhoneNumberCommandOutput
@@ -865,6 +888,7 @@ export type ServiceOutputTypes =
865888
| ListChannelModeratorsCommandOutput
866889
| ListChannelsCommandOutput
867890
| ListChannelsModeratedByAppInstanceUserCommandOutput
891+
| ListMediaCapturePipelinesCommandOutput
868892
| ListMeetingTagsCommandOutput
869893
| ListMeetingsCommandOutput
870894
| ListPhoneNumberOrdersCommandOutput

0 commit comments

Comments
 (0)