@aws-sdk/client-chime-sdk-media-pipelines 3.404.0 → 3.405.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/README.md +48 -0
- package/dist-cjs/ChimeSDKMediaPipelines.js +12 -0
- package/dist-cjs/commands/GetSpeakerSearchTaskCommand.js +46 -0
- package/dist-cjs/commands/GetVoiceToneAnalysisTaskCommand.js +46 -0
- package/dist-cjs/commands/StartSpeakerSearchTaskCommand.js +47 -0
- package/dist-cjs/commands/StartVoiceToneAnalysisTaskCommand.js +47 -0
- package/dist-cjs/commands/StopSpeakerSearchTaskCommand.js +46 -0
- package/dist-cjs/commands/StopVoiceToneAnalysisTaskCommand.js +46 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +23 -1
- package/dist-cjs/protocols/Aws_restJson1.js +478 -1
- package/dist-es/ChimeSDKMediaPipelines.js +12 -0
- package/dist-es/commands/GetSpeakerSearchTaskCommand.js +42 -0
- package/dist-es/commands/GetVoiceToneAnalysisTaskCommand.js +42 -0
- package/dist-es/commands/StartSpeakerSearchTaskCommand.js +43 -0
- package/dist-es/commands/StartVoiceToneAnalysisTaskCommand.js +43 -0
- package/dist-es/commands/StopSpeakerSearchTaskCommand.js +42 -0
- package/dist-es/commands/StopVoiceToneAnalysisTaskCommand.js +42 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +20 -0
- package/dist-es/protocols/Aws_restJson1.js +465 -0
- package/dist-types/ChimeSDKMediaPipelines.d.ts +42 -0
- package/dist-types/ChimeSDKMediaPipelinesClient.d.ts +8 -2
- package/dist-types/commands/DeleteMediaPipelineCommand.d.ts +4 -0
- package/dist-types/commands/GetSpeakerSearchTaskCommand.d.ts +100 -0
- package/dist-types/commands/GetVoiceToneAnalysisTaskCommand.d.ts +100 -0
- package/dist-types/commands/StartSpeakerSearchTaskCommand.d.ts +114 -0
- package/dist-types/commands/StartVoiceToneAnalysisTaskCommand.d.ts +116 -0
- package/dist-types/commands/StopSpeakerSearchTaskCommand.d.ts +97 -0
- package/dist-types/commands/StopVoiceToneAnalysisTaskCommand.d.ts +97 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +263 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/ChimeSDKMediaPipelines.d.ts +102 -0
- package/dist-types/ts3.4/ChimeSDKMediaPipelinesClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetSpeakerSearchTaskCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetVoiceToneAnalysisTaskCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartSpeakerSearchTaskCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartVoiceToneAnalysisTaskCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StopSpeakerSearchTaskCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/StopVoiceToneAnalysisTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +78 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +7 -7
|
@@ -1530,7 +1530,7 @@ export interface FragmentSelector {
|
|
|
1530
1530
|
/**
|
|
1531
1531
|
* @public
|
|
1532
1532
|
* <p>The origin of the timestamps to use, <code>Server</code> or <code>Producer</code>. For more information, see
|
|
1533
|
-
* <a href="kinesisvideostreams/latest/dg/API_dataplane_StartSelector.html
|
|
1533
|
+
* <a href="https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/API_dataplane_StartSelector.html">StartSelectorType</a> in the <i>Amazon Kinesis Video Streams Developer Guide</i>.</p>
|
|
1534
1534
|
*/
|
|
1535
1535
|
FragmentSelectorType: FragmentSelectorType | string | undefined;
|
|
1536
1536
|
/**
|
|
@@ -1998,7 +1998,7 @@ export interface MediaInsightsPipelineConfigurationElement {
|
|
|
1998
1998
|
SnsTopicSinkConfiguration?: SnsTopicSinkConfiguration;
|
|
1999
1999
|
/**
|
|
2000
2000
|
* @public
|
|
2001
|
-
* <p>The configuration settings for
|
|
2001
|
+
* <p>The configuration settings for voice enhancement sink in a media insights pipeline configuration element.</p>
|
|
2002
2002
|
*/
|
|
2003
2003
|
VoiceEnhancementSinkConfiguration?: VoiceEnhancementSinkConfiguration;
|
|
2004
2004
|
}
|
|
@@ -2540,6 +2540,125 @@ export interface GetMediaPipelineResponse {
|
|
|
2540
2540
|
*/
|
|
2541
2541
|
MediaPipeline?: MediaPipeline;
|
|
2542
2542
|
}
|
|
2543
|
+
/**
|
|
2544
|
+
* @public
|
|
2545
|
+
*/
|
|
2546
|
+
export interface GetSpeakerSearchTaskRequest {
|
|
2547
|
+
/**
|
|
2548
|
+
* @public
|
|
2549
|
+
* <p>The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.</p>
|
|
2550
|
+
*/
|
|
2551
|
+
Identifier: string | undefined;
|
|
2552
|
+
/**
|
|
2553
|
+
* @public
|
|
2554
|
+
* <p>The ID of the speaker search task.</p>
|
|
2555
|
+
*/
|
|
2556
|
+
SpeakerSearchTaskId: string | undefined;
|
|
2557
|
+
}
|
|
2558
|
+
/**
|
|
2559
|
+
* @public
|
|
2560
|
+
* @enum
|
|
2561
|
+
*/
|
|
2562
|
+
export declare const MediaPipelineTaskStatus: {
|
|
2563
|
+
readonly Failed: "Failed";
|
|
2564
|
+
readonly InProgress: "InProgress";
|
|
2565
|
+
readonly Initializing: "Initializing";
|
|
2566
|
+
readonly NotStarted: "NotStarted";
|
|
2567
|
+
readonly Stopped: "Stopped";
|
|
2568
|
+
readonly Stopping: "Stopping";
|
|
2569
|
+
};
|
|
2570
|
+
/**
|
|
2571
|
+
* @public
|
|
2572
|
+
*/
|
|
2573
|
+
export type MediaPipelineTaskStatus = (typeof MediaPipelineTaskStatus)[keyof typeof MediaPipelineTaskStatus];
|
|
2574
|
+
/**
|
|
2575
|
+
* @public
|
|
2576
|
+
* <p>A representation of an asynchronous request to perform speaker search analysis on a
|
|
2577
|
+
* media insights pipeline.</p>
|
|
2578
|
+
*/
|
|
2579
|
+
export interface SpeakerSearchTask {
|
|
2580
|
+
/**
|
|
2581
|
+
* @public
|
|
2582
|
+
* <p>The speaker search task ID.</p>
|
|
2583
|
+
*/
|
|
2584
|
+
SpeakerSearchTaskId?: string;
|
|
2585
|
+
/**
|
|
2586
|
+
* @public
|
|
2587
|
+
* <p>The status of the speaker search task.</p>
|
|
2588
|
+
*/
|
|
2589
|
+
SpeakerSearchTaskStatus?: MediaPipelineTaskStatus | string;
|
|
2590
|
+
/**
|
|
2591
|
+
* @public
|
|
2592
|
+
* <p>The time at which a speaker search task was created.</p>
|
|
2593
|
+
*/
|
|
2594
|
+
CreatedTimestamp?: Date;
|
|
2595
|
+
/**
|
|
2596
|
+
* @public
|
|
2597
|
+
* <p>The time at which a speaker search task was updated.</p>
|
|
2598
|
+
*/
|
|
2599
|
+
UpdatedTimestamp?: Date;
|
|
2600
|
+
}
|
|
2601
|
+
/**
|
|
2602
|
+
* @public
|
|
2603
|
+
*/
|
|
2604
|
+
export interface GetSpeakerSearchTaskResponse {
|
|
2605
|
+
/**
|
|
2606
|
+
* @public
|
|
2607
|
+
* <p>The details of the speaker search task.</p>
|
|
2608
|
+
*/
|
|
2609
|
+
SpeakerSearchTask?: SpeakerSearchTask;
|
|
2610
|
+
}
|
|
2611
|
+
/**
|
|
2612
|
+
* @public
|
|
2613
|
+
*/
|
|
2614
|
+
export interface GetVoiceToneAnalysisTaskRequest {
|
|
2615
|
+
/**
|
|
2616
|
+
* @public
|
|
2617
|
+
* <p>The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.</p>
|
|
2618
|
+
*/
|
|
2619
|
+
Identifier: string | undefined;
|
|
2620
|
+
/**
|
|
2621
|
+
* @public
|
|
2622
|
+
* <p>The ID of the voice tone anlysis task.</p>
|
|
2623
|
+
*/
|
|
2624
|
+
VoiceToneAnalysisTaskId: string | undefined;
|
|
2625
|
+
}
|
|
2626
|
+
/**
|
|
2627
|
+
* @public
|
|
2628
|
+
* <p>A representation of an asynchronous request to perform voice tone analysis on a media insights pipeline.</p>
|
|
2629
|
+
*/
|
|
2630
|
+
export interface VoiceToneAnalysisTask {
|
|
2631
|
+
/**
|
|
2632
|
+
* @public
|
|
2633
|
+
* <p>The ID of the voice tone analysis task.</p>
|
|
2634
|
+
*/
|
|
2635
|
+
VoiceToneAnalysisTaskId?: string;
|
|
2636
|
+
/**
|
|
2637
|
+
* @public
|
|
2638
|
+
* <p>The status of a voice tone analysis task.</p>
|
|
2639
|
+
*/
|
|
2640
|
+
VoiceToneAnalysisTaskStatus?: MediaPipelineTaskStatus | string;
|
|
2641
|
+
/**
|
|
2642
|
+
* @public
|
|
2643
|
+
* <p>The time at which a voice tone analysis task was created.</p>
|
|
2644
|
+
*/
|
|
2645
|
+
CreatedTimestamp?: Date;
|
|
2646
|
+
/**
|
|
2647
|
+
* @public
|
|
2648
|
+
* <p>The time at which a voice tone analysis task was updated.</p>
|
|
2649
|
+
*/
|
|
2650
|
+
UpdatedTimestamp?: Date;
|
|
2651
|
+
}
|
|
2652
|
+
/**
|
|
2653
|
+
* @public
|
|
2654
|
+
*/
|
|
2655
|
+
export interface GetVoiceToneAnalysisTaskResponse {
|
|
2656
|
+
/**
|
|
2657
|
+
* @public
|
|
2658
|
+
* <p>The details of the voice tone analysis task.</p>
|
|
2659
|
+
*/
|
|
2660
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
2661
|
+
}
|
|
2543
2662
|
/**
|
|
2544
2663
|
* @public
|
|
2545
2664
|
*/
|
|
@@ -2703,6 +2822,140 @@ export interface ListTagsForResourceResponse {
|
|
|
2703
2822
|
*/
|
|
2704
2823
|
Tags?: Tag[];
|
|
2705
2824
|
}
|
|
2825
|
+
/**
|
|
2826
|
+
* @public
|
|
2827
|
+
* <p>The task configuration settings for the Kinesis video stream source.</p>
|
|
2828
|
+
*/
|
|
2829
|
+
export interface KinesisVideoStreamSourceTaskConfiguration {
|
|
2830
|
+
/**
|
|
2831
|
+
* @public
|
|
2832
|
+
* <p>The ARN of the stream.</p>
|
|
2833
|
+
*/
|
|
2834
|
+
StreamArn: string | undefined;
|
|
2835
|
+
/**
|
|
2836
|
+
* @public
|
|
2837
|
+
* <p>The channel ID.</p>
|
|
2838
|
+
*/
|
|
2839
|
+
ChannelId: number | undefined;
|
|
2840
|
+
/**
|
|
2841
|
+
* @public
|
|
2842
|
+
* <p>The unique identifier of the fragment to begin processing.</p>
|
|
2843
|
+
*/
|
|
2844
|
+
FragmentNumber?: string;
|
|
2845
|
+
}
|
|
2846
|
+
/**
|
|
2847
|
+
* @public
|
|
2848
|
+
*/
|
|
2849
|
+
export interface StartSpeakerSearchTaskRequest {
|
|
2850
|
+
/**
|
|
2851
|
+
* @public
|
|
2852
|
+
* <p>The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.</p>
|
|
2853
|
+
*/
|
|
2854
|
+
Identifier: string | undefined;
|
|
2855
|
+
/**
|
|
2856
|
+
* @public
|
|
2857
|
+
* <p>The ARN of the voice profile domain that will store the voice profile.</p>
|
|
2858
|
+
*/
|
|
2859
|
+
VoiceProfileDomainArn: string | undefined;
|
|
2860
|
+
/**
|
|
2861
|
+
* @public
|
|
2862
|
+
* <p>The task configuration for the Kinesis video stream source of the media insights
|
|
2863
|
+
* pipeline.</p>
|
|
2864
|
+
*/
|
|
2865
|
+
KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration;
|
|
2866
|
+
/**
|
|
2867
|
+
* @public
|
|
2868
|
+
* <p>The unique identifier for the client request. Use a different token for different speaker search tasks.</p>
|
|
2869
|
+
*/
|
|
2870
|
+
ClientRequestToken?: string;
|
|
2871
|
+
}
|
|
2872
|
+
/**
|
|
2873
|
+
* @public
|
|
2874
|
+
*/
|
|
2875
|
+
export interface StartSpeakerSearchTaskResponse {
|
|
2876
|
+
/**
|
|
2877
|
+
* @public
|
|
2878
|
+
* <p>The details of the speaker search task.</p>
|
|
2879
|
+
*/
|
|
2880
|
+
SpeakerSearchTask?: SpeakerSearchTask;
|
|
2881
|
+
}
|
|
2882
|
+
/**
|
|
2883
|
+
* @public
|
|
2884
|
+
* @enum
|
|
2885
|
+
*/
|
|
2886
|
+
export declare const VoiceAnalyticsLanguageCode: {
|
|
2887
|
+
readonly EN_US: "en-US";
|
|
2888
|
+
};
|
|
2889
|
+
/**
|
|
2890
|
+
* @public
|
|
2891
|
+
*/
|
|
2892
|
+
export type VoiceAnalyticsLanguageCode = (typeof VoiceAnalyticsLanguageCode)[keyof typeof VoiceAnalyticsLanguageCode];
|
|
2893
|
+
/**
|
|
2894
|
+
* @public
|
|
2895
|
+
*/
|
|
2896
|
+
export interface StartVoiceToneAnalysisTaskRequest {
|
|
2897
|
+
/**
|
|
2898
|
+
* @public
|
|
2899
|
+
* <p>The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.</p>
|
|
2900
|
+
*/
|
|
2901
|
+
Identifier: string | undefined;
|
|
2902
|
+
/**
|
|
2903
|
+
* @public
|
|
2904
|
+
* <p>The language code.</p>
|
|
2905
|
+
*/
|
|
2906
|
+
LanguageCode: VoiceAnalyticsLanguageCode | string | undefined;
|
|
2907
|
+
/**
|
|
2908
|
+
* @public
|
|
2909
|
+
* <p>The task configuration for the Kinesis video stream source of the media insights
|
|
2910
|
+
* pipeline.</p>
|
|
2911
|
+
*/
|
|
2912
|
+
KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration;
|
|
2913
|
+
/**
|
|
2914
|
+
* @public
|
|
2915
|
+
* <p>The unique identifier for the client request. Use a different token for different voice tone analysis tasks.</p>
|
|
2916
|
+
*/
|
|
2917
|
+
ClientRequestToken?: string;
|
|
2918
|
+
}
|
|
2919
|
+
/**
|
|
2920
|
+
* @public
|
|
2921
|
+
*/
|
|
2922
|
+
export interface StartVoiceToneAnalysisTaskResponse {
|
|
2923
|
+
/**
|
|
2924
|
+
* @public
|
|
2925
|
+
* <p>The details of the voice tone analysis task.</p>
|
|
2926
|
+
*/
|
|
2927
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
2928
|
+
}
|
|
2929
|
+
/**
|
|
2930
|
+
* @public
|
|
2931
|
+
*/
|
|
2932
|
+
export interface StopSpeakerSearchTaskRequest {
|
|
2933
|
+
/**
|
|
2934
|
+
* @public
|
|
2935
|
+
* <p>The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.</p>
|
|
2936
|
+
*/
|
|
2937
|
+
Identifier: string | undefined;
|
|
2938
|
+
/**
|
|
2939
|
+
* @public
|
|
2940
|
+
* <p>The speaker search task ID.</p>
|
|
2941
|
+
*/
|
|
2942
|
+
SpeakerSearchTaskId: string | undefined;
|
|
2943
|
+
}
|
|
2944
|
+
/**
|
|
2945
|
+
* @public
|
|
2946
|
+
*/
|
|
2947
|
+
export interface StopVoiceToneAnalysisTaskRequest {
|
|
2948
|
+
/**
|
|
2949
|
+
* @public
|
|
2950
|
+
* <p>The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.</p>
|
|
2951
|
+
*/
|
|
2952
|
+
Identifier: string | undefined;
|
|
2953
|
+
/**
|
|
2954
|
+
* @public
|
|
2955
|
+
* <p>The ID of the voice tone analysis task.</p>
|
|
2956
|
+
*/
|
|
2957
|
+
VoiceToneAnalysisTaskId: string | undefined;
|
|
2958
|
+
}
|
|
2706
2959
|
/**
|
|
2707
2960
|
* @public
|
|
2708
2961
|
*/
|
|
@@ -2961,6 +3214,14 @@ export declare const MediaInsightsPipelineConfigurationSummaryFilterSensitiveLog
|
|
|
2961
3214
|
* @internal
|
|
2962
3215
|
*/
|
|
2963
3216
|
export declare const ListMediaInsightsPipelineConfigurationsResponseFilterSensitiveLog: (obj: ListMediaInsightsPipelineConfigurationsResponse) => any;
|
|
3217
|
+
/**
|
|
3218
|
+
* @internal
|
|
3219
|
+
*/
|
|
3220
|
+
export declare const StartSpeakerSearchTaskRequestFilterSensitiveLog: (obj: StartSpeakerSearchTaskRequest) => any;
|
|
3221
|
+
/**
|
|
3222
|
+
* @internal
|
|
3223
|
+
*/
|
|
3224
|
+
export declare const StartVoiceToneAnalysisTaskRequestFilterSensitiveLog: (obj: StartVoiceToneAnalysisTaskRequest) => any;
|
|
2964
3225
|
/**
|
|
2965
3226
|
* @internal
|
|
2966
3227
|
*/
|
|
@@ -11,10 +11,16 @@ import { DeleteMediaPipelineCommandInput, DeleteMediaPipelineCommandOutput } fro
|
|
|
11
11
|
import { GetMediaCapturePipelineCommandInput, GetMediaCapturePipelineCommandOutput } from "../commands/GetMediaCapturePipelineCommand";
|
|
12
12
|
import { GetMediaInsightsPipelineConfigurationCommandInput, GetMediaInsightsPipelineConfigurationCommandOutput } from "../commands/GetMediaInsightsPipelineConfigurationCommand";
|
|
13
13
|
import { GetMediaPipelineCommandInput, GetMediaPipelineCommandOutput } from "../commands/GetMediaPipelineCommand";
|
|
14
|
+
import { GetSpeakerSearchTaskCommandInput, GetSpeakerSearchTaskCommandOutput } from "../commands/GetSpeakerSearchTaskCommand";
|
|
15
|
+
import { GetVoiceToneAnalysisTaskCommandInput, GetVoiceToneAnalysisTaskCommandOutput } from "../commands/GetVoiceToneAnalysisTaskCommand";
|
|
14
16
|
import { ListMediaCapturePipelinesCommandInput, ListMediaCapturePipelinesCommandOutput } from "../commands/ListMediaCapturePipelinesCommand";
|
|
15
17
|
import { ListMediaInsightsPipelineConfigurationsCommandInput, ListMediaInsightsPipelineConfigurationsCommandOutput } from "../commands/ListMediaInsightsPipelineConfigurationsCommand";
|
|
16
18
|
import { ListMediaPipelinesCommandInput, ListMediaPipelinesCommandOutput } from "../commands/ListMediaPipelinesCommand";
|
|
17
19
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
20
|
+
import { StartSpeakerSearchTaskCommandInput, StartSpeakerSearchTaskCommandOutput } from "../commands/StartSpeakerSearchTaskCommand";
|
|
21
|
+
import { StartVoiceToneAnalysisTaskCommandInput, StartVoiceToneAnalysisTaskCommandOutput } from "../commands/StartVoiceToneAnalysisTaskCommand";
|
|
22
|
+
import { StopSpeakerSearchTaskCommandInput, StopSpeakerSearchTaskCommandOutput } from "../commands/StopSpeakerSearchTaskCommand";
|
|
23
|
+
import { StopVoiceToneAnalysisTaskCommandInput, StopVoiceToneAnalysisTaskCommandOutput } from "../commands/StopVoiceToneAnalysisTaskCommand";
|
|
18
24
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
19
25
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
20
26
|
import { UpdateMediaInsightsPipelineConfigurationCommandInput, UpdateMediaInsightsPipelineConfigurationCommandOutput } from "../commands/UpdateMediaInsightsPipelineConfigurationCommand";
|
|
@@ -63,6 +69,14 @@ export declare const se_GetMediaInsightsPipelineConfigurationCommand: (input: Ge
|
|
|
63
69
|
* serializeAws_restJson1GetMediaPipelineCommand
|
|
64
70
|
*/
|
|
65
71
|
export declare const se_GetMediaPipelineCommand: (input: GetMediaPipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
+
/**
|
|
73
|
+
* serializeAws_restJson1GetSpeakerSearchTaskCommand
|
|
74
|
+
*/
|
|
75
|
+
export declare const se_GetSpeakerSearchTaskCommand: (input: GetSpeakerSearchTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
+
/**
|
|
77
|
+
* serializeAws_restJson1GetVoiceToneAnalysisTaskCommand
|
|
78
|
+
*/
|
|
79
|
+
export declare const se_GetVoiceToneAnalysisTaskCommand: (input: GetVoiceToneAnalysisTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
80
|
/**
|
|
67
81
|
* serializeAws_restJson1ListMediaCapturePipelinesCommand
|
|
68
82
|
*/
|
|
@@ -79,6 +93,22 @@ export declare const se_ListMediaPipelinesCommand: (input: ListMediaPipelinesCom
|
|
|
79
93
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
80
94
|
*/
|
|
81
95
|
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
+
/**
|
|
97
|
+
* serializeAws_restJson1StartSpeakerSearchTaskCommand
|
|
98
|
+
*/
|
|
99
|
+
export declare const se_StartSpeakerSearchTaskCommand: (input: StartSpeakerSearchTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
+
/**
|
|
101
|
+
* serializeAws_restJson1StartVoiceToneAnalysisTaskCommand
|
|
102
|
+
*/
|
|
103
|
+
export declare const se_StartVoiceToneAnalysisTaskCommand: (input: StartVoiceToneAnalysisTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
|
+
/**
|
|
105
|
+
* serializeAws_restJson1StopSpeakerSearchTaskCommand
|
|
106
|
+
*/
|
|
107
|
+
export declare const se_StopSpeakerSearchTaskCommand: (input: StopSpeakerSearchTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
|
+
/**
|
|
109
|
+
* serializeAws_restJson1StopVoiceToneAnalysisTaskCommand
|
|
110
|
+
*/
|
|
111
|
+
export declare const se_StopVoiceToneAnalysisTaskCommand: (input: StopVoiceToneAnalysisTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
112
|
/**
|
|
83
113
|
* serializeAws_restJson1TagResourceCommand
|
|
84
114
|
*/
|
|
@@ -139,6 +169,14 @@ export declare const de_GetMediaInsightsPipelineConfigurationCommand: (output: _
|
|
|
139
169
|
* deserializeAws_restJson1GetMediaPipelineCommand
|
|
140
170
|
*/
|
|
141
171
|
export declare const de_GetMediaPipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMediaPipelineCommandOutput>;
|
|
172
|
+
/**
|
|
173
|
+
* deserializeAws_restJson1GetSpeakerSearchTaskCommand
|
|
174
|
+
*/
|
|
175
|
+
export declare const de_GetSpeakerSearchTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSpeakerSearchTaskCommandOutput>;
|
|
176
|
+
/**
|
|
177
|
+
* deserializeAws_restJson1GetVoiceToneAnalysisTaskCommand
|
|
178
|
+
*/
|
|
179
|
+
export declare const de_GetVoiceToneAnalysisTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVoiceToneAnalysisTaskCommandOutput>;
|
|
142
180
|
/**
|
|
143
181
|
* deserializeAws_restJson1ListMediaCapturePipelinesCommand
|
|
144
182
|
*/
|
|
@@ -155,6 +193,22 @@ export declare const de_ListMediaPipelinesCommand: (output: __HttpResponse, cont
|
|
|
155
193
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
156
194
|
*/
|
|
157
195
|
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
196
|
+
/**
|
|
197
|
+
* deserializeAws_restJson1StartSpeakerSearchTaskCommand
|
|
198
|
+
*/
|
|
199
|
+
export declare const de_StartSpeakerSearchTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartSpeakerSearchTaskCommandOutput>;
|
|
200
|
+
/**
|
|
201
|
+
* deserializeAws_restJson1StartVoiceToneAnalysisTaskCommand
|
|
202
|
+
*/
|
|
203
|
+
export declare const de_StartVoiceToneAnalysisTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartVoiceToneAnalysisTaskCommandOutput>;
|
|
204
|
+
/**
|
|
205
|
+
* deserializeAws_restJson1StopSpeakerSearchTaskCommand
|
|
206
|
+
*/
|
|
207
|
+
export declare const de_StopSpeakerSearchTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopSpeakerSearchTaskCommandOutput>;
|
|
208
|
+
/**
|
|
209
|
+
* deserializeAws_restJson1StopVoiceToneAnalysisTaskCommand
|
|
210
|
+
*/
|
|
211
|
+
export declare const de_StopVoiceToneAnalysisTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopVoiceToneAnalysisTaskCommandOutput>;
|
|
158
212
|
/**
|
|
159
213
|
* deserializeAws_restJson1TagResourceCommand
|
|
160
214
|
*/
|
|
@@ -44,6 +44,14 @@ import {
|
|
|
44
44
|
GetMediaPipelineCommandInput,
|
|
45
45
|
GetMediaPipelineCommandOutput,
|
|
46
46
|
} from "./commands/GetMediaPipelineCommand";
|
|
47
|
+
import {
|
|
48
|
+
GetSpeakerSearchTaskCommandInput,
|
|
49
|
+
GetSpeakerSearchTaskCommandOutput,
|
|
50
|
+
} from "./commands/GetSpeakerSearchTaskCommand";
|
|
51
|
+
import {
|
|
52
|
+
GetVoiceToneAnalysisTaskCommandInput,
|
|
53
|
+
GetVoiceToneAnalysisTaskCommandOutput,
|
|
54
|
+
} from "./commands/GetVoiceToneAnalysisTaskCommand";
|
|
47
55
|
import {
|
|
48
56
|
ListMediaCapturePipelinesCommandInput,
|
|
49
57
|
ListMediaCapturePipelinesCommandOutput,
|
|
@@ -60,6 +68,22 @@ import {
|
|
|
60
68
|
ListTagsForResourceCommandInput,
|
|
61
69
|
ListTagsForResourceCommandOutput,
|
|
62
70
|
} from "./commands/ListTagsForResourceCommand";
|
|
71
|
+
import {
|
|
72
|
+
StartSpeakerSearchTaskCommandInput,
|
|
73
|
+
StartSpeakerSearchTaskCommandOutput,
|
|
74
|
+
} from "./commands/StartSpeakerSearchTaskCommand";
|
|
75
|
+
import {
|
|
76
|
+
StartVoiceToneAnalysisTaskCommandInput,
|
|
77
|
+
StartVoiceToneAnalysisTaskCommandOutput,
|
|
78
|
+
} from "./commands/StartVoiceToneAnalysisTaskCommand";
|
|
79
|
+
import {
|
|
80
|
+
StopSpeakerSearchTaskCommandInput,
|
|
81
|
+
StopSpeakerSearchTaskCommandOutput,
|
|
82
|
+
} from "./commands/StopSpeakerSearchTaskCommand";
|
|
83
|
+
import {
|
|
84
|
+
StopVoiceToneAnalysisTaskCommandInput,
|
|
85
|
+
StopVoiceToneAnalysisTaskCommandOutput,
|
|
86
|
+
} from "./commands/StopVoiceToneAnalysisTaskCommand";
|
|
63
87
|
import {
|
|
64
88
|
TagResourceCommandInput,
|
|
65
89
|
TagResourceCommandOutput,
|
|
@@ -238,6 +262,32 @@ export interface ChimeSDKMediaPipelines {
|
|
|
238
262
|
options: __HttpHandlerOptions,
|
|
239
263
|
cb: (err: any, data?: GetMediaPipelineCommandOutput) => void
|
|
240
264
|
): void;
|
|
265
|
+
getSpeakerSearchTask(
|
|
266
|
+
args: GetSpeakerSearchTaskCommandInput,
|
|
267
|
+
options?: __HttpHandlerOptions
|
|
268
|
+
): Promise<GetSpeakerSearchTaskCommandOutput>;
|
|
269
|
+
getSpeakerSearchTask(
|
|
270
|
+
args: GetSpeakerSearchTaskCommandInput,
|
|
271
|
+
cb: (err: any, data?: GetSpeakerSearchTaskCommandOutput) => void
|
|
272
|
+
): void;
|
|
273
|
+
getSpeakerSearchTask(
|
|
274
|
+
args: GetSpeakerSearchTaskCommandInput,
|
|
275
|
+
options: __HttpHandlerOptions,
|
|
276
|
+
cb: (err: any, data?: GetSpeakerSearchTaskCommandOutput) => void
|
|
277
|
+
): void;
|
|
278
|
+
getVoiceToneAnalysisTask(
|
|
279
|
+
args: GetVoiceToneAnalysisTaskCommandInput,
|
|
280
|
+
options?: __HttpHandlerOptions
|
|
281
|
+
): Promise<GetVoiceToneAnalysisTaskCommandOutput>;
|
|
282
|
+
getVoiceToneAnalysisTask(
|
|
283
|
+
args: GetVoiceToneAnalysisTaskCommandInput,
|
|
284
|
+
cb: (err: any, data?: GetVoiceToneAnalysisTaskCommandOutput) => void
|
|
285
|
+
): void;
|
|
286
|
+
getVoiceToneAnalysisTask(
|
|
287
|
+
args: GetVoiceToneAnalysisTaskCommandInput,
|
|
288
|
+
options: __HttpHandlerOptions,
|
|
289
|
+
cb: (err: any, data?: GetVoiceToneAnalysisTaskCommandOutput) => void
|
|
290
|
+
): void;
|
|
241
291
|
listMediaCapturePipelines(
|
|
242
292
|
args: ListMediaCapturePipelinesCommandInput,
|
|
243
293
|
options?: __HttpHandlerOptions
|
|
@@ -296,6 +346,58 @@ export interface ChimeSDKMediaPipelines {
|
|
|
296
346
|
options: __HttpHandlerOptions,
|
|
297
347
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
298
348
|
): void;
|
|
349
|
+
startSpeakerSearchTask(
|
|
350
|
+
args: StartSpeakerSearchTaskCommandInput,
|
|
351
|
+
options?: __HttpHandlerOptions
|
|
352
|
+
): Promise<StartSpeakerSearchTaskCommandOutput>;
|
|
353
|
+
startSpeakerSearchTask(
|
|
354
|
+
args: StartSpeakerSearchTaskCommandInput,
|
|
355
|
+
cb: (err: any, data?: StartSpeakerSearchTaskCommandOutput) => void
|
|
356
|
+
): void;
|
|
357
|
+
startSpeakerSearchTask(
|
|
358
|
+
args: StartSpeakerSearchTaskCommandInput,
|
|
359
|
+
options: __HttpHandlerOptions,
|
|
360
|
+
cb: (err: any, data?: StartSpeakerSearchTaskCommandOutput) => void
|
|
361
|
+
): void;
|
|
362
|
+
startVoiceToneAnalysisTask(
|
|
363
|
+
args: StartVoiceToneAnalysisTaskCommandInput,
|
|
364
|
+
options?: __HttpHandlerOptions
|
|
365
|
+
): Promise<StartVoiceToneAnalysisTaskCommandOutput>;
|
|
366
|
+
startVoiceToneAnalysisTask(
|
|
367
|
+
args: StartVoiceToneAnalysisTaskCommandInput,
|
|
368
|
+
cb: (err: any, data?: StartVoiceToneAnalysisTaskCommandOutput) => void
|
|
369
|
+
): void;
|
|
370
|
+
startVoiceToneAnalysisTask(
|
|
371
|
+
args: StartVoiceToneAnalysisTaskCommandInput,
|
|
372
|
+
options: __HttpHandlerOptions,
|
|
373
|
+
cb: (err: any, data?: StartVoiceToneAnalysisTaskCommandOutput) => void
|
|
374
|
+
): void;
|
|
375
|
+
stopSpeakerSearchTask(
|
|
376
|
+
args: StopSpeakerSearchTaskCommandInput,
|
|
377
|
+
options?: __HttpHandlerOptions
|
|
378
|
+
): Promise<StopSpeakerSearchTaskCommandOutput>;
|
|
379
|
+
stopSpeakerSearchTask(
|
|
380
|
+
args: StopSpeakerSearchTaskCommandInput,
|
|
381
|
+
cb: (err: any, data?: StopSpeakerSearchTaskCommandOutput) => void
|
|
382
|
+
): void;
|
|
383
|
+
stopSpeakerSearchTask(
|
|
384
|
+
args: StopSpeakerSearchTaskCommandInput,
|
|
385
|
+
options: __HttpHandlerOptions,
|
|
386
|
+
cb: (err: any, data?: StopSpeakerSearchTaskCommandOutput) => void
|
|
387
|
+
): void;
|
|
388
|
+
stopVoiceToneAnalysisTask(
|
|
389
|
+
args: StopVoiceToneAnalysisTaskCommandInput,
|
|
390
|
+
options?: __HttpHandlerOptions
|
|
391
|
+
): Promise<StopVoiceToneAnalysisTaskCommandOutput>;
|
|
392
|
+
stopVoiceToneAnalysisTask(
|
|
393
|
+
args: StopVoiceToneAnalysisTaskCommandInput,
|
|
394
|
+
cb: (err: any, data?: StopVoiceToneAnalysisTaskCommandOutput) => void
|
|
395
|
+
): void;
|
|
396
|
+
stopVoiceToneAnalysisTask(
|
|
397
|
+
args: StopVoiceToneAnalysisTaskCommandInput,
|
|
398
|
+
options: __HttpHandlerOptions,
|
|
399
|
+
cb: (err: any, data?: StopVoiceToneAnalysisTaskCommandOutput) => void
|
|
400
|
+
): void;
|
|
299
401
|
tagResource(
|
|
300
402
|
args: TagResourceCommandInput,
|
|
301
403
|
options?: __HttpHandlerOptions
|
|
@@ -89,6 +89,14 @@ import {
|
|
|
89
89
|
GetMediaPipelineCommandInput,
|
|
90
90
|
GetMediaPipelineCommandOutput,
|
|
91
91
|
} from "./commands/GetMediaPipelineCommand";
|
|
92
|
+
import {
|
|
93
|
+
GetSpeakerSearchTaskCommandInput,
|
|
94
|
+
GetSpeakerSearchTaskCommandOutput,
|
|
95
|
+
} from "./commands/GetSpeakerSearchTaskCommand";
|
|
96
|
+
import {
|
|
97
|
+
GetVoiceToneAnalysisTaskCommandInput,
|
|
98
|
+
GetVoiceToneAnalysisTaskCommandOutput,
|
|
99
|
+
} from "./commands/GetVoiceToneAnalysisTaskCommand";
|
|
92
100
|
import {
|
|
93
101
|
ListMediaCapturePipelinesCommandInput,
|
|
94
102
|
ListMediaCapturePipelinesCommandOutput,
|
|
@@ -105,6 +113,22 @@ import {
|
|
|
105
113
|
ListTagsForResourceCommandInput,
|
|
106
114
|
ListTagsForResourceCommandOutput,
|
|
107
115
|
} from "./commands/ListTagsForResourceCommand";
|
|
116
|
+
import {
|
|
117
|
+
StartSpeakerSearchTaskCommandInput,
|
|
118
|
+
StartSpeakerSearchTaskCommandOutput,
|
|
119
|
+
} from "./commands/StartSpeakerSearchTaskCommand";
|
|
120
|
+
import {
|
|
121
|
+
StartVoiceToneAnalysisTaskCommandInput,
|
|
122
|
+
StartVoiceToneAnalysisTaskCommandOutput,
|
|
123
|
+
} from "./commands/StartVoiceToneAnalysisTaskCommand";
|
|
124
|
+
import {
|
|
125
|
+
StopSpeakerSearchTaskCommandInput,
|
|
126
|
+
StopSpeakerSearchTaskCommandOutput,
|
|
127
|
+
} from "./commands/StopSpeakerSearchTaskCommand";
|
|
128
|
+
import {
|
|
129
|
+
StopVoiceToneAnalysisTaskCommandInput,
|
|
130
|
+
StopVoiceToneAnalysisTaskCommandOutput,
|
|
131
|
+
} from "./commands/StopVoiceToneAnalysisTaskCommand";
|
|
108
132
|
import {
|
|
109
133
|
TagResourceCommandInput,
|
|
110
134
|
TagResourceCommandOutput,
|
|
@@ -140,10 +164,16 @@ export type ServiceInputTypes =
|
|
|
140
164
|
| GetMediaCapturePipelineCommandInput
|
|
141
165
|
| GetMediaInsightsPipelineConfigurationCommandInput
|
|
142
166
|
| GetMediaPipelineCommandInput
|
|
167
|
+
| GetSpeakerSearchTaskCommandInput
|
|
168
|
+
| GetVoiceToneAnalysisTaskCommandInput
|
|
143
169
|
| ListMediaCapturePipelinesCommandInput
|
|
144
170
|
| ListMediaInsightsPipelineConfigurationsCommandInput
|
|
145
171
|
| ListMediaPipelinesCommandInput
|
|
146
172
|
| ListTagsForResourceCommandInput
|
|
173
|
+
| StartSpeakerSearchTaskCommandInput
|
|
174
|
+
| StartVoiceToneAnalysisTaskCommandInput
|
|
175
|
+
| StopSpeakerSearchTaskCommandInput
|
|
176
|
+
| StopVoiceToneAnalysisTaskCommandInput
|
|
147
177
|
| TagResourceCommandInput
|
|
148
178
|
| UntagResourceCommandInput
|
|
149
179
|
| UpdateMediaInsightsPipelineConfigurationCommandInput
|
|
@@ -160,10 +190,16 @@ export type ServiceOutputTypes =
|
|
|
160
190
|
| GetMediaCapturePipelineCommandOutput
|
|
161
191
|
| GetMediaInsightsPipelineConfigurationCommandOutput
|
|
162
192
|
| GetMediaPipelineCommandOutput
|
|
193
|
+
| GetSpeakerSearchTaskCommandOutput
|
|
194
|
+
| GetVoiceToneAnalysisTaskCommandOutput
|
|
163
195
|
| ListMediaCapturePipelinesCommandOutput
|
|
164
196
|
| ListMediaInsightsPipelineConfigurationsCommandOutput
|
|
165
197
|
| ListMediaPipelinesCommandOutput
|
|
166
198
|
| ListTagsForResourceCommandOutput
|
|
199
|
+
| StartSpeakerSearchTaskCommandOutput
|
|
200
|
+
| StartVoiceToneAnalysisTaskCommandOutput
|
|
201
|
+
| StopSpeakerSearchTaskCommandOutput
|
|
202
|
+
| StopVoiceToneAnalysisTaskCommandOutput
|
|
167
203
|
| TagResourceCommandOutput
|
|
168
204
|
| UntagResourceCommandOutput
|
|
169
205
|
| UpdateMediaInsightsPipelineConfigurationCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ChimeSDKMediaPipelinesClient";
|
|
14
|
+
import {
|
|
15
|
+
GetSpeakerSearchTaskRequest,
|
|
16
|
+
GetSpeakerSearchTaskResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetSpeakerSearchTaskCommandInput
|
|
20
|
+
extends GetSpeakerSearchTaskRequest {}
|
|
21
|
+
export interface GetSpeakerSearchTaskCommandOutput
|
|
22
|
+
extends GetSpeakerSearchTaskResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetSpeakerSearchTaskCommand extends $Command<
|
|
25
|
+
GetSpeakerSearchTaskCommandInput,
|
|
26
|
+
GetSpeakerSearchTaskCommandOutput,
|
|
27
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetSpeakerSearchTaskCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetSpeakerSearchTaskCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetSpeakerSearchTaskCommandInput,
|
|
38
|
+
GetSpeakerSearchTaskCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ChimeSDKMediaPipelinesClient";
|
|
14
|
+
import {
|
|
15
|
+
GetVoiceToneAnalysisTaskRequest,
|
|
16
|
+
GetVoiceToneAnalysisTaskResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetVoiceToneAnalysisTaskCommandInput
|
|
20
|
+
extends GetVoiceToneAnalysisTaskRequest {}
|
|
21
|
+
export interface GetVoiceToneAnalysisTaskCommandOutput
|
|
22
|
+
extends GetVoiceToneAnalysisTaskResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetVoiceToneAnalysisTaskCommand extends $Command<
|
|
25
|
+
GetVoiceToneAnalysisTaskCommandInput,
|
|
26
|
+
GetVoiceToneAnalysisTaskCommandOutput,
|
|
27
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetVoiceToneAnalysisTaskCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetVoiceToneAnalysisTaskCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetVoiceToneAnalysisTaskCommandInput,
|
|
38
|
+
GetVoiceToneAnalysisTaskCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|