@aws-sdk/client-medialive 3.958.0 → 3.962.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +168 -105
- package/dist-es/models/enums.js +8 -0
- package/dist-es/schemas/schemas_0.js +72 -25
- package/dist-es/waiters/waitForChannelCreated.js +4 -4
- package/dist-es/waiters/waitForChannelDeleted.js +3 -3
- package/dist-es/waiters/waitForChannelPlacementGroupAssigned.js +3 -3
- package/dist-es/waiters/waitForChannelPlacementGroupDeleted.js +3 -3
- package/dist-es/waiters/waitForChannelPlacementGroupUnassigned.js +3 -3
- package/dist-es/waiters/waitForChannelRunning.js +3 -3
- package/dist-es/waiters/waitForChannelStopped.js +3 -3
- package/dist-es/waiters/waitForClusterCreated.js +4 -4
- package/dist-es/waiters/waitForClusterDeleted.js +3 -3
- package/dist-es/waiters/waitForInputAttached.js +3 -3
- package/dist-es/waiters/waitForInputDeleted.js +3 -3
- package/dist-es/waiters/waitForInputDetached.js +4 -4
- package/dist-es/waiters/waitForMultiplexCreated.js +4 -4
- package/dist-es/waiters/waitForMultiplexDeleted.js +3 -3
- package/dist-es/waiters/waitForMultiplexRunning.js +3 -3
- package/dist-es/waiters/waitForMultiplexStopped.js +3 -3
- package/dist-es/waiters/waitForNodeDeregistered.js +4 -4
- package/dist-es/waiters/waitForNodeRegistered.js +4 -4
- package/dist-es/waiters/waitForSignalMapCreated.js +4 -4
- package/dist-es/waiters/waitForSignalMapMonitorDeleted.js +4 -4
- package/dist-es/waiters/waitForSignalMapMonitorDeployed.js +7 -7
- package/dist-es/waiters/waitForSignalMapUpdated.js +5 -5
- package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +1 -1
- package/dist-types/commands/CreateChannelCommand.d.ts +25 -2
- package/dist-types/commands/DeleteChannelCommand.d.ts +13 -1
- package/dist-types/commands/DescribeChannelCommand.d.ts +13 -1
- package/dist-types/commands/ListChannelsCommand.d.ts +10 -0
- package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +13 -1
- package/dist-types/commands/StartChannelCommand.d.ts +13 -1
- package/dist-types/commands/StopChannelCommand.d.ts +13 -1
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +13 -1
- package/dist-types/commands/UpdateChannelCommand.d.ts +25 -2
- package/dist-types/models/enums.d.ts +24 -0
- package/dist-types/models/models_0.d.ts +54 -49
- package/dist-types/models/models_1.d.ts +138 -2
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/commands/CancelInputDeviceTransferCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -13
- package/dist-types/ts3.4/models/models_1.d.ts +38 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/package.json +2 -2
package/dist-cjs/index.js
CHANGED
|
@@ -582,6 +582,7 @@ const _DEBRTR = "DeleteEventBridgeRuleTemplateRequest";
|
|
|
582
582
|
const _DED = "DolbyEDecode";
|
|
583
583
|
const _DEPA = "DiscoveryEntryPointArn";
|
|
584
584
|
const _DF = "DcFilter";
|
|
585
|
+
const _DFCS = "DescribeFollowerChannelSettings";
|
|
585
586
|
const _DFS = "DefaultFontSize";
|
|
586
587
|
const _DFe = "DeblockFilter";
|
|
587
588
|
const _DFen = "DenoiseFilter";
|
|
@@ -605,6 +606,7 @@ const _DISGe = "DescribeInputSecurityGroup";
|
|
|
605
606
|
const _DIe = "DeleteInput";
|
|
606
607
|
const _DIes = "DescribeInput";
|
|
607
608
|
const _DL = "DrcLine";
|
|
609
|
+
const _DLCS = "DescribeLinkedChannelSettings";
|
|
608
610
|
const _DLH = "DefaultLineHeight";
|
|
609
611
|
const _DM = "DeleteMultiplex";
|
|
610
612
|
const _DMP = "DeleteMultiplexProgram";
|
|
@@ -637,6 +639,7 @@ const _DO = "DescribeOffering";
|
|
|
637
639
|
const _DOR = "DescribeOfferingRequest";
|
|
638
640
|
const _DORe = "DescribeOfferingResponse";
|
|
639
641
|
const _DP = "DrcProfile";
|
|
642
|
+
const _DPCS = "DescribePrimaryChannelSettings";
|
|
640
643
|
const _DR = "DefaultRoute";
|
|
641
644
|
const _DRI = "DestinationRefId";
|
|
642
645
|
const _DRR = "DeleteReservationRequest";
|
|
@@ -742,12 +745,14 @@ const _FAe = "FeatureActivations";
|
|
|
742
745
|
const _FAl = "FlickerAq";
|
|
743
746
|
const _FAlo = "FlowArn";
|
|
744
747
|
const _FC = "FailoverConditions";
|
|
748
|
+
const _FCA = "FollowingChannelArns";
|
|
745
749
|
const _FCCS = "FrameCaptureCdnSettings";
|
|
746
750
|
const _FCGS = "FrameCaptureGroupSettings";
|
|
747
751
|
const _FCHS = "FrameCaptureHlsSettings";
|
|
748
752
|
const _FCOS = "FrameCaptureOutputSettings";
|
|
749
|
-
const _FCS = "
|
|
753
|
+
const _FCS = "FollowerChannelSettings";
|
|
750
754
|
const _FCSS = "FrameCaptureS3Settings";
|
|
755
|
+
const _FCSa = "FailoverConditionSettings";
|
|
751
756
|
const _FCSr = "FrameCaptureSettings";
|
|
752
757
|
const _FCa = "FailoverCondition";
|
|
753
758
|
const _FCo = "FontColor";
|
|
@@ -967,6 +972,8 @@ const _LCR = "ListChannelsRequest";
|
|
|
967
972
|
const _LCRi = "ListChannelsResponse";
|
|
968
973
|
const _LCRis = "ListClustersRequest";
|
|
969
974
|
const _LCRist = "ListClustersResponse";
|
|
975
|
+
const _LCS = "LinkedChannelSettings";
|
|
976
|
+
const _LCT = "LinkedChannelType";
|
|
970
977
|
const _LCWAT = "ListCloudWatchAlarmTemplates";
|
|
971
978
|
const _LCWATG = "ListCloudWatchAlarmTemplateGroups";
|
|
972
979
|
const _LCWATGR = "ListCloudWatchAlarmTemplateGroupsRequest";
|
|
@@ -1214,7 +1221,9 @@ const _Out = "Outputs";
|
|
|
1214
1221
|
const _P = "Profile";
|
|
1215
1222
|
const _PAAI = "PublicAddressAllocationIds";
|
|
1216
1223
|
const _PC = "ProgramCount";
|
|
1224
|
+
const _PCA = "PrimaryChannelArn";
|
|
1217
1225
|
const _PCP = "PreferredChannelPipeline";
|
|
1226
|
+
const _PCS = "PrimaryChannelSettings";
|
|
1218
1227
|
const _PCa = "PassthroughControl";
|
|
1219
1228
|
const _PCar = "ParControl";
|
|
1220
1229
|
const _PCc = "PcrControl";
|
|
@@ -1235,6 +1244,7 @@ const _PIa = "PatInterval";
|
|
|
1235
1244
|
const _PIi = "PipelineIds";
|
|
1236
1245
|
const _PIm = "PmtInterval";
|
|
1237
1246
|
const _PIr = "ProgramId";
|
|
1247
|
+
const _PLM = "PipelineLockingMethod";
|
|
1238
1248
|
const _PLS = "PipelineLockingSettings";
|
|
1239
1249
|
const _PMP = "PrivateMetadataPid";
|
|
1240
1250
|
const _PN = "ParNumerator";
|
|
@@ -1950,12 +1960,14 @@ const _fAe = "featureActivations";
|
|
|
1950
1960
|
const _fAl = "flickerAq";
|
|
1951
1961
|
const _fAlo = "flowArn";
|
|
1952
1962
|
const _fC = "failoverConditions";
|
|
1963
|
+
const _fCA = "followingChannelArns";
|
|
1953
1964
|
const _fCCS = "frameCaptureCdnSettings";
|
|
1954
1965
|
const _fCGS = "frameCaptureGroupSettings";
|
|
1955
1966
|
const _fCHS = "frameCaptureHlsSettings";
|
|
1956
1967
|
const _fCOS = "frameCaptureOutputSettings";
|
|
1957
|
-
const _fCS = "
|
|
1968
|
+
const _fCS = "followerChannelSettings";
|
|
1958
1969
|
const _fCSS = "frameCaptureS3Settings";
|
|
1970
|
+
const _fCSa = "failoverConditionSettings";
|
|
1959
1971
|
const _fCSr = "frameCaptureSettings";
|
|
1960
1972
|
const _fCo = "fontColor";
|
|
1961
1973
|
const _fCr = "framerateControl";
|
|
@@ -2104,6 +2116,8 @@ const _l = "level";
|
|
|
2104
2116
|
const _lARC = "lookAheadRateControl";
|
|
2105
2117
|
const _lC = "languageCode";
|
|
2106
2118
|
const _lCC = "languageCodeControl";
|
|
2119
|
+
const _lCS = "linkedChannelSettings";
|
|
2120
|
+
const _lCT = "linkedChannelType";
|
|
2107
2121
|
const _lCf = "lfeControl";
|
|
2108
2122
|
const _lD = "languageDescription";
|
|
2109
2123
|
const _lDA = "lastDiscoveredAt";
|
|
@@ -2340,7 +2354,9 @@ const _ou = "outputs";
|
|
|
2340
2354
|
const _p = "profile";
|
|
2341
2355
|
const _pAAI = "publicAddressAllocationIds";
|
|
2342
2356
|
const _pC = "programCount";
|
|
2357
|
+
const _pCA = "primaryChannelArn";
|
|
2343
2358
|
const _pCP = "preferredChannelPipeline";
|
|
2359
|
+
const _pCS = "primaryChannelSettings";
|
|
2344
2360
|
const _pCa = "passthroughControl";
|
|
2345
2361
|
const _pCar = "parControl";
|
|
2346
2362
|
const _pCc = "pcrControl";
|
|
@@ -2360,6 +2376,7 @@ const _pIa = "patInterval";
|
|
|
2360
2376
|
const _pIi = "pipelineIds";
|
|
2361
2377
|
const _pIm = "pmtInterval";
|
|
2362
2378
|
const _pIr = "programId";
|
|
2379
|
+
const _pLM = "pipelineLockingMethod";
|
|
2363
2380
|
const _pLS = "pipelineLockingSettings";
|
|
2364
2381
|
const _pMP = "privateMetadataPid";
|
|
2365
2382
|
const _pN = "parNumerator";
|
|
@@ -2977,8 +2994,8 @@ var CdiInputSpecification$ = [3, n0, _CIS,
|
|
|
2977
2994
|
];
|
|
2978
2995
|
var Channel$ = [3, n0, _Ch,
|
|
2979
2996
|
0,
|
|
2980
|
-
[_Ar, _CIS, _CCh, _Des, _EE, _ESn, _I, _IA, _IS, _LL, _Ma, _N, _PDi, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV],
|
|
2981
|
-
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [() => EncoderSettings$, { [_jN]: _eSn }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _n }], [() => __listOfPipelineDetail, { [_jN]: _pDi }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }]]
|
|
2997
|
+
[_Ar, _CIS, _CCh, _Des, _EE, _ESn, _I, _IA, _IS, _LL, _Ma, _N, _PDi, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV, _LCS],
|
|
2998
|
+
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [() => EncoderSettings$, { [_jN]: _eSn }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _n }], [() => __listOfPipelineDetail, { [_jN]: _pDi }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }], [() => DescribeLinkedChannelSettings$, { [_jN]: _lCS }]]
|
|
2982
2999
|
];
|
|
2983
3000
|
var ChannelAlert$ = [3, n0, _CAh,
|
|
2984
3001
|
0,
|
|
@@ -3002,8 +3019,8 @@ var ChannelEngineVersionResponse$ = [3, n0, _CEVRh,
|
|
|
3002
3019
|
];
|
|
3003
3020
|
var ChannelSummary$ = [3, n0, _CSh,
|
|
3004
3021
|
0,
|
|
3005
|
-
[_Ar, _CIS, _CCh, _Des, _EE, _I, _IA, _IS, _LL, _Ma, _N, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV, _UCEV],
|
|
3006
|
-
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _n }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }], [() => __listOfChannelEngineVersionResponse, { [_jN]: _uCEV }]]
|
|
3022
|
+
[_Ar, _CIS, _CCh, _Des, _EE, _I, _IA, _IS, _LL, _Ma, _N, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV, _UCEV, _LCS],
|
|
3023
|
+
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _n }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }], [() => __listOfChannelEngineVersionResponse, { [_jN]: _uCEV }], [() => DescribeLinkedChannelSettings$, { [_jN]: _lCS }]]
|
|
3007
3024
|
];
|
|
3008
3025
|
var ClaimDeviceRequest$ = [3, n0, _CDRl,
|
|
3009
3026
|
0,
|
|
@@ -3093,8 +3110,8 @@ var CreateChannelPlacementGroupResponse$ = [3, n0, _CCPGRr,
|
|
|
3093
3110
|
];
|
|
3094
3111
|
var CreateChannelRequest$ = [3, n0, _CCR,
|
|
3095
3112
|
0,
|
|
3096
|
-
[_CIS, _CCh, _Des, _ESn, _IA, _IS, _LL, _Ma, _N, _RIe, _Re, _RA, _Ta, _V, _ASn, _CEV, _DRr],
|
|
3097
|
-
[[() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => EncoderSettings$, { [_jN]: _eSn }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceCreateSettings$, { [_jN]: _ma }], [0, { [_jN]: _n }], [0, { [_iTd]: 1, [_jN]: _rIe }], [0, { [_jN]: _re }], [0, { [_jN]: _rA }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettings$, { [_jN]: _v }], [() => AnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionRequest$, { [_jN]: _cEV }], [2, { [_jN]: _dRr }]]
|
|
3113
|
+
[_CIS, _CCh, _Des, _ESn, _IA, _IS, _LL, _Ma, _N, _RIe, _Re, _RA, _Ta, _V, _ASn, _CEV, _DRr, _LCS],
|
|
3114
|
+
[[() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => EncoderSettings$, { [_jN]: _eSn }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceCreateSettings$, { [_jN]: _ma }], [0, { [_jN]: _n }], [0, { [_iTd]: 1, [_jN]: _rIe }], [0, { [_jN]: _re }], [0, { [_jN]: _rA }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettings$, { [_jN]: _v }], [() => AnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionRequest$, { [_jN]: _cEV }], [2, { [_jN]: _dRr }], [() => LinkedChannelSettings$, { [_jN]: _lCS }]]
|
|
3098
3115
|
];
|
|
3099
3116
|
var CreateChannelResponse$ = [3, n0, _CCRr,
|
|
3100
3117
|
0,
|
|
@@ -3273,8 +3290,8 @@ var DeleteChannelRequest$ = [3, n0, _DCR,
|
|
|
3273
3290
|
];
|
|
3274
3291
|
var DeleteChannelResponse$ = [3, n0, _DCRe,
|
|
3275
3292
|
0,
|
|
3276
|
-
[_Ar, _CIS, _CCh, _Des, _EE, _ESn, _I, _IA, _IS, _LL, _Ma, _N, _PDi, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV],
|
|
3277
|
-
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [() => EncoderSettings$, { [_jN]: _eSn }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _n }], [() => __listOfPipelineDetail, { [_jN]: _pDi }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }]]
|
|
3293
|
+
[_Ar, _CIS, _CCh, _Des, _EE, _ESn, _I, _IA, _IS, _LL, _Ma, _N, _PDi, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV, _LCS],
|
|
3294
|
+
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [() => EncoderSettings$, { [_jN]: _eSn }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _n }], [() => __listOfPipelineDetail, { [_jN]: _pDi }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }], [() => DescribeLinkedChannelSettings$, { [_jN]: _lCS }]]
|
|
3278
3295
|
];
|
|
3279
3296
|
var DeleteCloudWatchAlarmTemplateGroupRequest$ = [3, n0, _DCWATGR,
|
|
3280
3297
|
0,
|
|
@@ -3443,8 +3460,8 @@ var DescribeChannelRequest$ = [3, n0, _DCRes,
|
|
|
3443
3460
|
];
|
|
3444
3461
|
var DescribeChannelResponse$ = [3, n0, _DCResc,
|
|
3445
3462
|
0,
|
|
3446
|
-
[_Ar, _CIS, _CCh, _Des, _EE, _ESn, _I, _IA, _IS, _LL, _Ma, _N, _PDi, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV],
|
|
3447
|
-
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [() => EncoderSettings$, { [_jN]: _eSn }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _n }], [() => __listOfPipelineDetail, { [_jN]: _pDi }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }]]
|
|
3463
|
+
[_Ar, _CIS, _CCh, _Des, _EE, _ESn, _I, _IA, _IS, _LL, _Ma, _N, _PDi, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV, _LCS],
|
|
3464
|
+
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [() => EncoderSettings$, { [_jN]: _eSn }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _n }], [() => __listOfPipelineDetail, { [_jN]: _pDi }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }], [() => DescribeLinkedChannelSettings$, { [_jN]: _lCS }]]
|
|
3448
3465
|
];
|
|
3449
3466
|
var DescribeClusterRequest$ = [3, n0, _DCRescr,
|
|
3450
3467
|
0,
|
|
@@ -3461,6 +3478,11 @@ var DescribeClusterSummary$ = [3, n0, _DCS,
|
|
|
3461
3478
|
[_Ar, _CIh, _CTl, _I, _IRA, _N, _NS, _St],
|
|
3462
3479
|
[[0, { [_jN]: _ar }], [64 | 0, { [_jN]: _cIh }], [0, { [_jN]: _cTl }], [0, { [_jN]: _i }], [0, { [_jN]: _iRA }], [0, { [_jN]: _n }], [() => ClusterNetworkSettings$, { [_jN]: _nS }], [0, { [_jN]: _st }]]
|
|
3463
3480
|
];
|
|
3481
|
+
var DescribeFollowerChannelSettings$ = [3, n0, _DFCS,
|
|
3482
|
+
0,
|
|
3483
|
+
[_LCT, _PCA],
|
|
3484
|
+
[[0, { [_jN]: _lCT }], [0, { [_jN]: _pCA }]]
|
|
3485
|
+
];
|
|
3464
3486
|
var DescribeInputDeviceRequest$ = [3, n0, _DIDR,
|
|
3465
3487
|
0,
|
|
3466
3488
|
[_IDI],
|
|
@@ -3501,6 +3523,11 @@ var DescribeInputSecurityGroupResponse$ = [3, n0, _DISGResc,
|
|
|
3501
3523
|
[_Ar, _I, _Inp, _St, _Ta, _WR],
|
|
3502
3524
|
[[0, { [_jN]: _ar }], [0, { [_jN]: _i }], [64 | 0, { [_jN]: _inp }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => __listOfInputWhitelistRule, { [_jN]: _wR }]]
|
|
3503
3525
|
];
|
|
3526
|
+
var DescribeLinkedChannelSettings$ = [3, n0, _DLCS,
|
|
3527
|
+
0,
|
|
3528
|
+
[_FCS, _PCS],
|
|
3529
|
+
[[() => DescribeFollowerChannelSettings$, { [_jN]: _fCS }], [() => DescribePrimaryChannelSettings$, { [_jN]: _pCS }]]
|
|
3530
|
+
];
|
|
3504
3531
|
var DescribeMultiplexProgramRequest$ = [3, n0, _DMPRes,
|
|
3505
3532
|
0,
|
|
3506
3533
|
[_MIu, _PNr],
|
|
@@ -3561,6 +3588,11 @@ var DescribeOfferingResponse$ = [3, n0, _DORe,
|
|
|
3561
3588
|
[_Ar, _CCu, _Du, _DU, _FP, _OD, _OI, _OT, _Reg, _RSes, _UP],
|
|
3562
3589
|
[[0, { [_jN]: _ar }], [0, { [_jN]: _cCu }], [1, { [_jN]: _du }], [0, { [_jN]: _dU }], [1, { [_jN]: _fP }], [0, { [_jN]: _oD }], [0, { [_jN]: _oI }], [0, { [_jN]: _oT }], [0, { [_jN]: _reg }], [() => ReservationResourceSpecification$, { [_jN]: _rSes }], [1, { [_jN]: _uP }]]
|
|
3563
3590
|
];
|
|
3591
|
+
var DescribePrimaryChannelSettings$ = [3, n0, _DPCS,
|
|
3592
|
+
0,
|
|
3593
|
+
[_FCA, _LCT],
|
|
3594
|
+
[[64 | 0, { [_jN]: _fCA }], [0, { [_jN]: _lCT }]]
|
|
3595
|
+
];
|
|
3564
3596
|
var DescribeReservationRequest$ = [3, n0, _DRRes,
|
|
3565
3597
|
0,
|
|
3566
3598
|
[_RIes],
|
|
@@ -3693,10 +3725,10 @@ var EventBridgeRuleTemplateTarget$ = [3, n0, _EBRTT,
|
|
|
3693
3725
|
];
|
|
3694
3726
|
var FailoverCondition$ = [3, n0, _FCa,
|
|
3695
3727
|
0,
|
|
3696
|
-
[
|
|
3697
|
-
[[() => FailoverConditionSettings$, { [_jN]:
|
|
3728
|
+
[_FCSa],
|
|
3729
|
+
[[() => FailoverConditionSettings$, { [_jN]: _fCSa }]]
|
|
3698
3730
|
];
|
|
3699
|
-
var FailoverConditionSettings$ = [3, n0,
|
|
3731
|
+
var FailoverConditionSettings$ = [3, n0, _FCSa,
|
|
3700
3732
|
0,
|
|
3701
3733
|
[_ASSud, _ILS, _VBS],
|
|
3702
3734
|
[[() => AudioSilenceFailoverSettings$, { [_jN]: _aSSu }], [() => InputLossFailoverSettings$, { [_jN]: _iLS }], [() => VideoBlackFailoverSettings$, { [_jN]: _vBS }]]
|
|
@@ -3721,6 +3753,11 @@ var Fmp4HlsSettings$ = [3, n0, _FHS,
|
|
|
3721
3753
|
[_ARS, _NIB, _TMB],
|
|
3722
3754
|
[[0, { [_jN]: _aRS }], [0, { [_jN]: _nIB }], [0, { [_jN]: _tMB }]]
|
|
3723
3755
|
];
|
|
3756
|
+
var FollowerChannelSettings$ = [3, n0, _FCS,
|
|
3757
|
+
0,
|
|
3758
|
+
[_LCT, _PCA],
|
|
3759
|
+
[[0, { [_jN]: _lCT }], [0, { [_jN]: _pCA }]]
|
|
3760
|
+
];
|
|
3724
3761
|
var FollowModeScheduleActionStartSettings$ = [3, n0, _FMSASSo,
|
|
3725
3762
|
0,
|
|
3726
3763
|
[_FPo, _RAN],
|
|
@@ -4149,6 +4186,11 @@ var KeyProviderSettings$ = [3, n0, _KPS,
|
|
|
4149
4186
|
[_SKS],
|
|
4150
4187
|
[[() => StaticKeySettings$, { [_jN]: _sKS }]]
|
|
4151
4188
|
];
|
|
4189
|
+
var LinkedChannelSettings$ = [3, n0, _LCS,
|
|
4190
|
+
0,
|
|
4191
|
+
[_FCS, _PCS],
|
|
4192
|
+
[[() => FollowerChannelSettings$, { [_jN]: _fCS }], [() => PrimaryChannelSettings$, { [_jN]: _pCS }]]
|
|
4193
|
+
];
|
|
4152
4194
|
var ListAlertsRequest$ = [3, n0, _LAR,
|
|
4153
4195
|
0,
|
|
4154
4196
|
[_CIha, _MR, _NT, _SF],
|
|
@@ -4747,14 +4789,19 @@ var PipelineDetail$ = [3, n0, _PDip,
|
|
|
4747
4789
|
];
|
|
4748
4790
|
var PipelineLockingSettings$ = [3, n0, _PLS,
|
|
4749
4791
|
0,
|
|
4750
|
-
[],
|
|
4751
|
-
[]
|
|
4792
|
+
[_PLM],
|
|
4793
|
+
[[0, { [_jN]: _pLM }]]
|
|
4752
4794
|
];
|
|
4753
4795
|
var PipelinePauseStateSettings$ = [3, n0, _PPSS,
|
|
4754
4796
|
0,
|
|
4755
4797
|
[_PI],
|
|
4756
4798
|
[[0, { [_jN]: _pI }]]
|
|
4757
4799
|
];
|
|
4800
|
+
var PrimaryChannelSettings$ = [3, n0, _PCS,
|
|
4801
|
+
0,
|
|
4802
|
+
[_LCT],
|
|
4803
|
+
[[0, { [_jN]: _lCT }]]
|
|
4804
|
+
];
|
|
4758
4805
|
var PurchaseOfferingRequest$ = [3, n0, _POR,
|
|
4759
4806
|
0,
|
|
4760
4807
|
[_Co, _N, _OI, _RSen, _RIe, _Star, _Ta],
|
|
@@ -4827,8 +4874,8 @@ var RestartChannelPipelinesRequest$ = [3, n0, _RCPR,
|
|
|
4827
4874
|
];
|
|
4828
4875
|
var RestartChannelPipelinesResponse$ = [3, n0, _RCPRe,
|
|
4829
4876
|
0,
|
|
4830
|
-
[_Ar, _CIS, _CCh, _Des, _EE, _ESn, _I, _IA, _IS, _LL, _Ma, _MSa, _N, _PDi, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV],
|
|
4831
|
-
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [() => EncoderSettings$, { [_jN]: _eSn }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _mSa }], [0, { [_jN]: _n }], [() => __listOfPipelineDetail, { [_jN]: _pDi }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }]]
|
|
4877
|
+
[_Ar, _CIS, _CCh, _Des, _EE, _ESn, _I, _IA, _IS, _LL, _Ma, _MSa, _N, _PDi, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV, _LCS],
|
|
4878
|
+
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [() => EncoderSettings$, { [_jN]: _eSn }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _mSa }], [0, { [_jN]: _n }], [() => __listOfPipelineDetail, { [_jN]: _pDi }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }], [() => DescribeLinkedChannelSettings$, { [_jN]: _lCS }]]
|
|
4832
4879
|
];
|
|
4833
4880
|
var Route$ = [3, n0, _Rou,
|
|
4834
4881
|
0,
|
|
@@ -5072,8 +5119,8 @@ var StartChannelRequest$ = [3, n0, _SCR,
|
|
|
5072
5119
|
];
|
|
5073
5120
|
var StartChannelResponse$ = [3, n0, _SCRt,
|
|
5074
5121
|
0,
|
|
5075
|
-
[_Ar, _CIS, _CCh, _Des, _EE, _ESn, _I, _IA, _IS, _LL, _Ma, _N, _PDi, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV],
|
|
5076
|
-
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [() => EncoderSettings$, { [_jN]: _eSn }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _n }], [() => __listOfPipelineDetail, { [_jN]: _pDi }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }]]
|
|
5122
|
+
[_Ar, _CIS, _CCh, _Des, _EE, _ESn, _I, _IA, _IS, _LL, _Ma, _N, _PDi, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV, _LCS],
|
|
5123
|
+
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [() => EncoderSettings$, { [_jN]: _eSn }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _n }], [() => __listOfPipelineDetail, { [_jN]: _pDi }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }], [() => DescribeLinkedChannelSettings$, { [_jN]: _lCS }]]
|
|
5077
5124
|
];
|
|
5078
5125
|
var StartDeleteMonitorDeploymentRequest$ = [3, n0, _SDMDR,
|
|
5079
5126
|
0,
|
|
@@ -5172,8 +5219,8 @@ var StopChannelRequest$ = [3, n0, _SCRto,
|
|
|
5172
5219
|
];
|
|
5173
5220
|
var StopChannelResponse$ = [3, n0, _SCRtop,
|
|
5174
5221
|
0,
|
|
5175
|
-
[_Ar, _CIS, _CCh, _Des, _EE, _ESn, _I, _IA, _IS, _LL, _Ma, _N, _PDi, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV],
|
|
5176
|
-
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [() => EncoderSettings$, { [_jN]: _eSn }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _n }], [() => __listOfPipelineDetail, { [_jN]: _pDi }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }]]
|
|
5222
|
+
[_Ar, _CIS, _CCh, _Des, _EE, _ESn, _I, _IA, _IS, _LL, _Ma, _N, _PDi, _PRC, _RA, _St, _Ta, _V, _ASn, _CEV, _LCS],
|
|
5223
|
+
[[0, { [_jN]: _ar }], [() => CdiInputSpecification$, { [_jN]: _cIS }], [0, { [_jN]: _cCh }], [() => __listOfOutputDestination, { [_jN]: _des }], [() => __listOfChannelEgressEndpoint, { [_jN]: _eE }], [() => EncoderSettings$, { [_jN]: _eSn }], [0, { [_jN]: _i }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceStatus$, { [_jN]: _ma }], [0, { [_jN]: _n }], [() => __listOfPipelineDetail, { [_jN]: _pDi }], [1, { [_jN]: _pRC }], [0, { [_jN]: _rA }], [0, { [_jN]: _st }], [128 | 0, { [_jN]: _ta }], [() => VpcOutputSettingsDescription$, { [_jN]: _v }], [() => DescribeAnywhereSettings$, { [_jN]: _aSn }], [() => ChannelEngineVersionResponse$, { [_jN]: _cEV }], [() => DescribeLinkedChannelSettings$, { [_jN]: _lCS }]]
|
|
5177
5224
|
];
|
|
5178
5225
|
var StopInputDeviceRequest$ = [3, n0, _SIDRto,
|
|
5179
5226
|
0,
|
|
@@ -5329,8 +5376,8 @@ var UpdateChannelPlacementGroupResponse$ = [3, n0, _UCPGRp,
|
|
|
5329
5376
|
];
|
|
5330
5377
|
var UpdateChannelRequest$ = [3, n0, _UCR,
|
|
5331
5378
|
0,
|
|
5332
|
-
[_CIS, _CIha, _Des, _ESn, _IA, _IS, _LL, _Ma, _N, _RA, _CEV, _DRr, _ASn],
|
|
5333
|
-
[[() => CdiInputSpecification$, { [_jN]: _cIS }], [0, 1], [() => __listOfOutputDestination, { [_jN]: _des }], [() => EncoderSettings$, { [_jN]: _eSn }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceUpdateSettings$, { [_jN]: _ma }], [0, { [_jN]: _n }], [0, { [_jN]: _rA }], [() => ChannelEngineVersionRequest$, { [_jN]: _cEV }], [2, { [_jN]: _dRr }], [() => AnywhereSettings$, { [_jN]: _aSn }]]
|
|
5379
|
+
[_CIS, _CIha, _Des, _ESn, _IA, _IS, _LL, _Ma, _N, _RA, _CEV, _DRr, _ASn, _LCS],
|
|
5380
|
+
[[() => CdiInputSpecification$, { [_jN]: _cIS }], [0, 1], [() => __listOfOutputDestination, { [_jN]: _des }], [() => EncoderSettings$, { [_jN]: _eSn }], [() => __listOfInputAttachment, { [_jN]: _iA }], [() => InputSpecification$, { [_jN]: _iS }], [0, { [_jN]: _lL }], [() => MaintenanceUpdateSettings$, { [_jN]: _ma }], [0, { [_jN]: _n }], [0, { [_jN]: _rA }], [() => ChannelEngineVersionRequest$, { [_jN]: _cEV }], [2, { [_jN]: _dRr }], [() => AnywhereSettings$, { [_jN]: _aSn }], [() => LinkedChannelSettings$, { [_jN]: _lCS }]]
|
|
5334
5381
|
];
|
|
5335
5382
|
var UpdateChannelResponse$ = [3, n0, _UCRp,
|
|
5336
5383
|
0,
|
|
@@ -7969,10 +8016,10 @@ const paginateListSignalMaps = core.createPaginator(MediaLiveClient, ListSignalM
|
|
|
7969
8016
|
const checkState$l = async (client, input) => {
|
|
7970
8017
|
let reason;
|
|
7971
8018
|
try {
|
|
7972
|
-
|
|
8019
|
+
let result = await client.send(new DescribeChannelCommand(input));
|
|
7973
8020
|
reason = result;
|
|
7974
8021
|
try {
|
|
7975
|
-
|
|
8022
|
+
const returnComparator = () => {
|
|
7976
8023
|
return result.State;
|
|
7977
8024
|
};
|
|
7978
8025
|
if (returnComparator() === "IDLE") {
|
|
@@ -7981,7 +8028,7 @@ const checkState$l = async (client, input) => {
|
|
|
7981
8028
|
}
|
|
7982
8029
|
catch (e) { }
|
|
7983
8030
|
try {
|
|
7984
|
-
|
|
8031
|
+
const returnComparator = () => {
|
|
7985
8032
|
return result.State;
|
|
7986
8033
|
};
|
|
7987
8034
|
if (returnComparator() === "CREATING") {
|
|
@@ -7990,7 +8037,7 @@ const checkState$l = async (client, input) => {
|
|
|
7990
8037
|
}
|
|
7991
8038
|
catch (e) { }
|
|
7992
8039
|
try {
|
|
7993
|
-
|
|
8040
|
+
const returnComparator = () => {
|
|
7994
8041
|
return result.State;
|
|
7995
8042
|
};
|
|
7996
8043
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -8020,10 +8067,10 @@ const waitUntilChannelCreated = async (params, input) => {
|
|
|
8020
8067
|
const checkState$k = async (client, input) => {
|
|
8021
8068
|
let reason;
|
|
8022
8069
|
try {
|
|
8023
|
-
|
|
8070
|
+
let result = await client.send(new DescribeChannelCommand(input));
|
|
8024
8071
|
reason = result;
|
|
8025
8072
|
try {
|
|
8026
|
-
|
|
8073
|
+
const returnComparator = () => {
|
|
8027
8074
|
return result.State;
|
|
8028
8075
|
};
|
|
8029
8076
|
if (returnComparator() === "DELETED") {
|
|
@@ -8032,7 +8079,7 @@ const checkState$k = async (client, input) => {
|
|
|
8032
8079
|
}
|
|
8033
8080
|
catch (e) { }
|
|
8034
8081
|
try {
|
|
8035
|
-
|
|
8082
|
+
const returnComparator = () => {
|
|
8036
8083
|
return result.State;
|
|
8037
8084
|
};
|
|
8038
8085
|
if (returnComparator() === "DELETING") {
|
|
@@ -8062,10 +8109,10 @@ const waitUntilChannelDeleted = async (params, input) => {
|
|
|
8062
8109
|
const checkState$j = async (client, input) => {
|
|
8063
8110
|
let reason;
|
|
8064
8111
|
try {
|
|
8065
|
-
|
|
8112
|
+
let result = await client.send(new DescribeChannelCommand(input));
|
|
8066
8113
|
reason = result;
|
|
8067
8114
|
try {
|
|
8068
|
-
|
|
8115
|
+
const returnComparator = () => {
|
|
8069
8116
|
return result.State;
|
|
8070
8117
|
};
|
|
8071
8118
|
if (returnComparator() === "RUNNING") {
|
|
@@ -8074,7 +8121,7 @@ const checkState$j = async (client, input) => {
|
|
|
8074
8121
|
}
|
|
8075
8122
|
catch (e) { }
|
|
8076
8123
|
try {
|
|
8077
|
-
|
|
8124
|
+
const returnComparator = () => {
|
|
8078
8125
|
return result.State;
|
|
8079
8126
|
};
|
|
8080
8127
|
if (returnComparator() === "STARTING") {
|
|
@@ -8104,10 +8151,10 @@ const waitUntilChannelRunning = async (params, input) => {
|
|
|
8104
8151
|
const checkState$i = async (client, input) => {
|
|
8105
8152
|
let reason;
|
|
8106
8153
|
try {
|
|
8107
|
-
|
|
8154
|
+
let result = await client.send(new DescribeChannelCommand(input));
|
|
8108
8155
|
reason = result;
|
|
8109
8156
|
try {
|
|
8110
|
-
|
|
8157
|
+
const returnComparator = () => {
|
|
8111
8158
|
return result.State;
|
|
8112
8159
|
};
|
|
8113
8160
|
if (returnComparator() === "IDLE") {
|
|
@@ -8116,7 +8163,7 @@ const checkState$i = async (client, input) => {
|
|
|
8116
8163
|
}
|
|
8117
8164
|
catch (e) { }
|
|
8118
8165
|
try {
|
|
8119
|
-
|
|
8166
|
+
const returnComparator = () => {
|
|
8120
8167
|
return result.State;
|
|
8121
8168
|
};
|
|
8122
8169
|
if (returnComparator() === "STOPPING") {
|
|
@@ -8146,10 +8193,10 @@ const waitUntilChannelStopped = async (params, input) => {
|
|
|
8146
8193
|
const checkState$h = async (client, input) => {
|
|
8147
8194
|
let reason;
|
|
8148
8195
|
try {
|
|
8149
|
-
|
|
8196
|
+
let result = await client.send(new DescribeChannelPlacementGroupCommand(input));
|
|
8150
8197
|
reason = result;
|
|
8151
8198
|
try {
|
|
8152
|
-
|
|
8199
|
+
const returnComparator = () => {
|
|
8153
8200
|
return result.State;
|
|
8154
8201
|
};
|
|
8155
8202
|
if (returnComparator() === "ASSIGNED") {
|
|
@@ -8158,7 +8205,7 @@ const checkState$h = async (client, input) => {
|
|
|
8158
8205
|
}
|
|
8159
8206
|
catch (e) { }
|
|
8160
8207
|
try {
|
|
8161
|
-
|
|
8208
|
+
const returnComparator = () => {
|
|
8162
8209
|
return result.State;
|
|
8163
8210
|
};
|
|
8164
8211
|
if (returnComparator() === "ASSIGNING") {
|
|
@@ -8188,10 +8235,10 @@ const waitUntilChannelPlacementGroupAssigned = async (params, input) => {
|
|
|
8188
8235
|
const checkState$g = async (client, input) => {
|
|
8189
8236
|
let reason;
|
|
8190
8237
|
try {
|
|
8191
|
-
|
|
8238
|
+
let result = await client.send(new DescribeChannelPlacementGroupCommand(input));
|
|
8192
8239
|
reason = result;
|
|
8193
8240
|
try {
|
|
8194
|
-
|
|
8241
|
+
const returnComparator = () => {
|
|
8195
8242
|
return result.State;
|
|
8196
8243
|
};
|
|
8197
8244
|
if (returnComparator() === "DELETED") {
|
|
@@ -8200,7 +8247,7 @@ const checkState$g = async (client, input) => {
|
|
|
8200
8247
|
}
|
|
8201
8248
|
catch (e) { }
|
|
8202
8249
|
try {
|
|
8203
|
-
|
|
8250
|
+
const returnComparator = () => {
|
|
8204
8251
|
return result.State;
|
|
8205
8252
|
};
|
|
8206
8253
|
if (returnComparator() === "DELETING") {
|
|
@@ -8230,10 +8277,10 @@ const waitUntilChannelPlacementGroupDeleted = async (params, input) => {
|
|
|
8230
8277
|
const checkState$f = async (client, input) => {
|
|
8231
8278
|
let reason;
|
|
8232
8279
|
try {
|
|
8233
|
-
|
|
8280
|
+
let result = await client.send(new DescribeChannelPlacementGroupCommand(input));
|
|
8234
8281
|
reason = result;
|
|
8235
8282
|
try {
|
|
8236
|
-
|
|
8283
|
+
const returnComparator = () => {
|
|
8237
8284
|
return result.State;
|
|
8238
8285
|
};
|
|
8239
8286
|
if (returnComparator() === "UNASSIGNED") {
|
|
@@ -8242,7 +8289,7 @@ const checkState$f = async (client, input) => {
|
|
|
8242
8289
|
}
|
|
8243
8290
|
catch (e) { }
|
|
8244
8291
|
try {
|
|
8245
|
-
|
|
8292
|
+
const returnComparator = () => {
|
|
8246
8293
|
return result.State;
|
|
8247
8294
|
};
|
|
8248
8295
|
if (returnComparator() === "UNASSIGNING") {
|
|
@@ -8272,10 +8319,10 @@ const waitUntilChannelPlacementGroupUnassigned = async (params, input) => {
|
|
|
8272
8319
|
const checkState$e = async (client, input) => {
|
|
8273
8320
|
let reason;
|
|
8274
8321
|
try {
|
|
8275
|
-
|
|
8322
|
+
let result = await client.send(new DescribeClusterCommand(input));
|
|
8276
8323
|
reason = result;
|
|
8277
8324
|
try {
|
|
8278
|
-
|
|
8325
|
+
const returnComparator = () => {
|
|
8279
8326
|
return result.State;
|
|
8280
8327
|
};
|
|
8281
8328
|
if (returnComparator() === "ACTIVE") {
|
|
@@ -8284,7 +8331,7 @@ const checkState$e = async (client, input) => {
|
|
|
8284
8331
|
}
|
|
8285
8332
|
catch (e) { }
|
|
8286
8333
|
try {
|
|
8287
|
-
|
|
8334
|
+
const returnComparator = () => {
|
|
8288
8335
|
return result.State;
|
|
8289
8336
|
};
|
|
8290
8337
|
if (returnComparator() === "CREATING") {
|
|
@@ -8293,7 +8340,7 @@ const checkState$e = async (client, input) => {
|
|
|
8293
8340
|
}
|
|
8294
8341
|
catch (e) { }
|
|
8295
8342
|
try {
|
|
8296
|
-
|
|
8343
|
+
const returnComparator = () => {
|
|
8297
8344
|
return result.State;
|
|
8298
8345
|
};
|
|
8299
8346
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -8323,10 +8370,10 @@ const waitUntilClusterCreated = async (params, input) => {
|
|
|
8323
8370
|
const checkState$d = async (client, input) => {
|
|
8324
8371
|
let reason;
|
|
8325
8372
|
try {
|
|
8326
|
-
|
|
8373
|
+
let result = await client.send(new DescribeClusterCommand(input));
|
|
8327
8374
|
reason = result;
|
|
8328
8375
|
try {
|
|
8329
|
-
|
|
8376
|
+
const returnComparator = () => {
|
|
8330
8377
|
return result.State;
|
|
8331
8378
|
};
|
|
8332
8379
|
if (returnComparator() === "DELETED") {
|
|
@@ -8335,7 +8382,7 @@ const checkState$d = async (client, input) => {
|
|
|
8335
8382
|
}
|
|
8336
8383
|
catch (e) { }
|
|
8337
8384
|
try {
|
|
8338
|
-
|
|
8385
|
+
const returnComparator = () => {
|
|
8339
8386
|
return result.State;
|
|
8340
8387
|
};
|
|
8341
8388
|
if (returnComparator() === "DELETING") {
|
|
@@ -8365,10 +8412,10 @@ const waitUntilClusterDeleted = async (params, input) => {
|
|
|
8365
8412
|
const checkState$c = async (client, input) => {
|
|
8366
8413
|
let reason;
|
|
8367
8414
|
try {
|
|
8368
|
-
|
|
8415
|
+
let result = await client.send(new DescribeInputCommand(input));
|
|
8369
8416
|
reason = result;
|
|
8370
8417
|
try {
|
|
8371
|
-
|
|
8418
|
+
const returnComparator = () => {
|
|
8372
8419
|
return result.State;
|
|
8373
8420
|
};
|
|
8374
8421
|
if (returnComparator() === "ATTACHED") {
|
|
@@ -8377,7 +8424,7 @@ const checkState$c = async (client, input) => {
|
|
|
8377
8424
|
}
|
|
8378
8425
|
catch (e) { }
|
|
8379
8426
|
try {
|
|
8380
|
-
|
|
8427
|
+
const returnComparator = () => {
|
|
8381
8428
|
return result.State;
|
|
8382
8429
|
};
|
|
8383
8430
|
if (returnComparator() === "DETACHED") {
|
|
@@ -8407,10 +8454,10 @@ const waitUntilInputAttached = async (params, input) => {
|
|
|
8407
8454
|
const checkState$b = async (client, input) => {
|
|
8408
8455
|
let reason;
|
|
8409
8456
|
try {
|
|
8410
|
-
|
|
8457
|
+
let result = await client.send(new DescribeInputCommand(input));
|
|
8411
8458
|
reason = result;
|
|
8412
8459
|
try {
|
|
8413
|
-
|
|
8460
|
+
const returnComparator = () => {
|
|
8414
8461
|
return result.State;
|
|
8415
8462
|
};
|
|
8416
8463
|
if (returnComparator() === "DELETED") {
|
|
@@ -8419,7 +8466,7 @@ const checkState$b = async (client, input) => {
|
|
|
8419
8466
|
}
|
|
8420
8467
|
catch (e) { }
|
|
8421
8468
|
try {
|
|
8422
|
-
|
|
8469
|
+
const returnComparator = () => {
|
|
8423
8470
|
return result.State;
|
|
8424
8471
|
};
|
|
8425
8472
|
if (returnComparator() === "DELETING") {
|
|
@@ -8449,10 +8496,10 @@ const waitUntilInputDeleted = async (params, input) => {
|
|
|
8449
8496
|
const checkState$a = async (client, input) => {
|
|
8450
8497
|
let reason;
|
|
8451
8498
|
try {
|
|
8452
|
-
|
|
8499
|
+
let result = await client.send(new DescribeInputCommand(input));
|
|
8453
8500
|
reason = result;
|
|
8454
8501
|
try {
|
|
8455
|
-
|
|
8502
|
+
const returnComparator = () => {
|
|
8456
8503
|
return result.State;
|
|
8457
8504
|
};
|
|
8458
8505
|
if (returnComparator() === "DETACHED") {
|
|
@@ -8461,7 +8508,7 @@ const checkState$a = async (client, input) => {
|
|
|
8461
8508
|
}
|
|
8462
8509
|
catch (e) { }
|
|
8463
8510
|
try {
|
|
8464
|
-
|
|
8511
|
+
const returnComparator = () => {
|
|
8465
8512
|
return result.State;
|
|
8466
8513
|
};
|
|
8467
8514
|
if (returnComparator() === "CREATING") {
|
|
@@ -8470,7 +8517,7 @@ const checkState$a = async (client, input) => {
|
|
|
8470
8517
|
}
|
|
8471
8518
|
catch (e) { }
|
|
8472
8519
|
try {
|
|
8473
|
-
|
|
8520
|
+
const returnComparator = () => {
|
|
8474
8521
|
return result.State;
|
|
8475
8522
|
};
|
|
8476
8523
|
if (returnComparator() === "ATTACHED") {
|
|
@@ -8500,10 +8547,10 @@ const waitUntilInputDetached = async (params, input) => {
|
|
|
8500
8547
|
const checkState$9 = async (client, input) => {
|
|
8501
8548
|
let reason;
|
|
8502
8549
|
try {
|
|
8503
|
-
|
|
8550
|
+
let result = await client.send(new DescribeMultiplexCommand(input));
|
|
8504
8551
|
reason = result;
|
|
8505
8552
|
try {
|
|
8506
|
-
|
|
8553
|
+
const returnComparator = () => {
|
|
8507
8554
|
return result.State;
|
|
8508
8555
|
};
|
|
8509
8556
|
if (returnComparator() === "IDLE") {
|
|
@@ -8512,7 +8559,7 @@ const checkState$9 = async (client, input) => {
|
|
|
8512
8559
|
}
|
|
8513
8560
|
catch (e) { }
|
|
8514
8561
|
try {
|
|
8515
|
-
|
|
8562
|
+
const returnComparator = () => {
|
|
8516
8563
|
return result.State;
|
|
8517
8564
|
};
|
|
8518
8565
|
if (returnComparator() === "CREATING") {
|
|
@@ -8521,7 +8568,7 @@ const checkState$9 = async (client, input) => {
|
|
|
8521
8568
|
}
|
|
8522
8569
|
catch (e) { }
|
|
8523
8570
|
try {
|
|
8524
|
-
|
|
8571
|
+
const returnComparator = () => {
|
|
8525
8572
|
return result.State;
|
|
8526
8573
|
};
|
|
8527
8574
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -8551,10 +8598,10 @@ const waitUntilMultiplexCreated = async (params, input) => {
|
|
|
8551
8598
|
const checkState$8 = async (client, input) => {
|
|
8552
8599
|
let reason;
|
|
8553
8600
|
try {
|
|
8554
|
-
|
|
8601
|
+
let result = await client.send(new DescribeMultiplexCommand(input));
|
|
8555
8602
|
reason = result;
|
|
8556
8603
|
try {
|
|
8557
|
-
|
|
8604
|
+
const returnComparator = () => {
|
|
8558
8605
|
return result.State;
|
|
8559
8606
|
};
|
|
8560
8607
|
if (returnComparator() === "DELETED") {
|
|
@@ -8563,7 +8610,7 @@ const checkState$8 = async (client, input) => {
|
|
|
8563
8610
|
}
|
|
8564
8611
|
catch (e) { }
|
|
8565
8612
|
try {
|
|
8566
|
-
|
|
8613
|
+
const returnComparator = () => {
|
|
8567
8614
|
return result.State;
|
|
8568
8615
|
};
|
|
8569
8616
|
if (returnComparator() === "DELETING") {
|
|
@@ -8593,10 +8640,10 @@ const waitUntilMultiplexDeleted = async (params, input) => {
|
|
|
8593
8640
|
const checkState$7 = async (client, input) => {
|
|
8594
8641
|
let reason;
|
|
8595
8642
|
try {
|
|
8596
|
-
|
|
8643
|
+
let result = await client.send(new DescribeMultiplexCommand(input));
|
|
8597
8644
|
reason = result;
|
|
8598
8645
|
try {
|
|
8599
|
-
|
|
8646
|
+
const returnComparator = () => {
|
|
8600
8647
|
return result.State;
|
|
8601
8648
|
};
|
|
8602
8649
|
if (returnComparator() === "RUNNING") {
|
|
@@ -8605,7 +8652,7 @@ const checkState$7 = async (client, input) => {
|
|
|
8605
8652
|
}
|
|
8606
8653
|
catch (e) { }
|
|
8607
8654
|
try {
|
|
8608
|
-
|
|
8655
|
+
const returnComparator = () => {
|
|
8609
8656
|
return result.State;
|
|
8610
8657
|
};
|
|
8611
8658
|
if (returnComparator() === "STARTING") {
|
|
@@ -8635,10 +8682,10 @@ const waitUntilMultiplexRunning = async (params, input) => {
|
|
|
8635
8682
|
const checkState$6 = async (client, input) => {
|
|
8636
8683
|
let reason;
|
|
8637
8684
|
try {
|
|
8638
|
-
|
|
8685
|
+
let result = await client.send(new DescribeMultiplexCommand(input));
|
|
8639
8686
|
reason = result;
|
|
8640
8687
|
try {
|
|
8641
|
-
|
|
8688
|
+
const returnComparator = () => {
|
|
8642
8689
|
return result.State;
|
|
8643
8690
|
};
|
|
8644
8691
|
if (returnComparator() === "IDLE") {
|
|
@@ -8647,7 +8694,7 @@ const checkState$6 = async (client, input) => {
|
|
|
8647
8694
|
}
|
|
8648
8695
|
catch (e) { }
|
|
8649
8696
|
try {
|
|
8650
|
-
|
|
8697
|
+
const returnComparator = () => {
|
|
8651
8698
|
return result.State;
|
|
8652
8699
|
};
|
|
8653
8700
|
if (returnComparator() === "STOPPING") {
|
|
@@ -8677,10 +8724,10 @@ const waitUntilMultiplexStopped = async (params, input) => {
|
|
|
8677
8724
|
const checkState$5 = async (client, input) => {
|
|
8678
8725
|
let reason;
|
|
8679
8726
|
try {
|
|
8680
|
-
|
|
8727
|
+
let result = await client.send(new DescribeNodeCommand(input));
|
|
8681
8728
|
reason = result;
|
|
8682
8729
|
try {
|
|
8683
|
-
|
|
8730
|
+
const returnComparator = () => {
|
|
8684
8731
|
return result.State;
|
|
8685
8732
|
};
|
|
8686
8733
|
if (returnComparator() === "DEREGISTERED") {
|
|
@@ -8689,7 +8736,7 @@ const checkState$5 = async (client, input) => {
|
|
|
8689
8736
|
}
|
|
8690
8737
|
catch (e) { }
|
|
8691
8738
|
try {
|
|
8692
|
-
|
|
8739
|
+
const returnComparator = () => {
|
|
8693
8740
|
return result.State;
|
|
8694
8741
|
};
|
|
8695
8742
|
if (returnComparator() === "DEREGISTERING") {
|
|
@@ -8698,7 +8745,7 @@ const checkState$5 = async (client, input) => {
|
|
|
8698
8745
|
}
|
|
8699
8746
|
catch (e) { }
|
|
8700
8747
|
try {
|
|
8701
|
-
|
|
8748
|
+
const returnComparator = () => {
|
|
8702
8749
|
return result.State;
|
|
8703
8750
|
};
|
|
8704
8751
|
if (returnComparator() === "DRAINING") {
|
|
@@ -8728,10 +8775,10 @@ const waitUntilNodeDeregistered = async (params, input) => {
|
|
|
8728
8775
|
const checkState$4 = async (client, input) => {
|
|
8729
8776
|
let reason;
|
|
8730
8777
|
try {
|
|
8731
|
-
|
|
8778
|
+
let result = await client.send(new DescribeNodeCommand(input));
|
|
8732
8779
|
reason = result;
|
|
8733
8780
|
try {
|
|
8734
|
-
|
|
8781
|
+
const returnComparator = () => {
|
|
8735
8782
|
return result.State;
|
|
8736
8783
|
};
|
|
8737
8784
|
if (returnComparator() === "ACTIVE") {
|
|
@@ -8740,7 +8787,7 @@ const checkState$4 = async (client, input) => {
|
|
|
8740
8787
|
}
|
|
8741
8788
|
catch (e) { }
|
|
8742
8789
|
try {
|
|
8743
|
-
|
|
8790
|
+
const returnComparator = () => {
|
|
8744
8791
|
return result.State;
|
|
8745
8792
|
};
|
|
8746
8793
|
if (returnComparator() === "REGISTERING") {
|
|
@@ -8749,7 +8796,7 @@ const checkState$4 = async (client, input) => {
|
|
|
8749
8796
|
}
|
|
8750
8797
|
catch (e) { }
|
|
8751
8798
|
try {
|
|
8752
|
-
|
|
8799
|
+
const returnComparator = () => {
|
|
8753
8800
|
return result.State;
|
|
8754
8801
|
};
|
|
8755
8802
|
if (returnComparator() === "REGISTRATION_FAILED") {
|
|
@@ -8782,10 +8829,10 @@ const waitUntilNodeRegistered = async (params, input) => {
|
|
|
8782
8829
|
const checkState$3 = async (client, input) => {
|
|
8783
8830
|
let reason;
|
|
8784
8831
|
try {
|
|
8785
|
-
|
|
8832
|
+
let result = await client.send(new GetSignalMapCommand(input));
|
|
8786
8833
|
reason = result;
|
|
8787
8834
|
try {
|
|
8788
|
-
|
|
8835
|
+
const returnComparator = () => {
|
|
8789
8836
|
return result.Status;
|
|
8790
8837
|
};
|
|
8791
8838
|
if (returnComparator() === "CREATE_COMPLETE") {
|
|
@@ -8794,7 +8841,7 @@ const checkState$3 = async (client, input) => {
|
|
|
8794
8841
|
}
|
|
8795
8842
|
catch (e) { }
|
|
8796
8843
|
try {
|
|
8797
|
-
|
|
8844
|
+
const returnComparator = () => {
|
|
8798
8845
|
return result.Status;
|
|
8799
8846
|
};
|
|
8800
8847
|
if (returnComparator() === "CREATE_IN_PROGRESS") {
|
|
@@ -8803,7 +8850,7 @@ const checkState$3 = async (client, input) => {
|
|
|
8803
8850
|
}
|
|
8804
8851
|
catch (e) { }
|
|
8805
8852
|
try {
|
|
8806
|
-
|
|
8853
|
+
const returnComparator = () => {
|
|
8807
8854
|
return result.Status;
|
|
8808
8855
|
};
|
|
8809
8856
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -8830,10 +8877,10 @@ const waitUntilSignalMapCreated = async (params, input) => {
|
|
|
8830
8877
|
const checkState$2 = async (client, input) => {
|
|
8831
8878
|
let reason;
|
|
8832
8879
|
try {
|
|
8833
|
-
|
|
8880
|
+
let result = await client.send(new GetSignalMapCommand(input));
|
|
8834
8881
|
reason = result;
|
|
8835
8882
|
try {
|
|
8836
|
-
|
|
8883
|
+
const returnComparator = () => {
|
|
8837
8884
|
return result.MonitorDeployment.Status;
|
|
8838
8885
|
};
|
|
8839
8886
|
if (returnComparator() === "DELETE_COMPLETE") {
|
|
@@ -8842,7 +8889,7 @@ const checkState$2 = async (client, input) => {
|
|
|
8842
8889
|
}
|
|
8843
8890
|
catch (e) { }
|
|
8844
8891
|
try {
|
|
8845
|
-
|
|
8892
|
+
const returnComparator = () => {
|
|
8846
8893
|
return result.MonitorDeployment.Status;
|
|
8847
8894
|
};
|
|
8848
8895
|
if (returnComparator() === "DELETE_IN_PROGRESS") {
|
|
@@ -8851,7 +8898,7 @@ const checkState$2 = async (client, input) => {
|
|
|
8851
8898
|
}
|
|
8852
8899
|
catch (e) { }
|
|
8853
8900
|
try {
|
|
8854
|
-
|
|
8901
|
+
const returnComparator = () => {
|
|
8855
8902
|
return result.MonitorDeployment.Status;
|
|
8856
8903
|
};
|
|
8857
8904
|
if (returnComparator() === "DELETE_FAILED") {
|
|
@@ -8878,10 +8925,10 @@ const waitUntilSignalMapMonitorDeleted = async (params, input) => {
|
|
|
8878
8925
|
const checkState$1 = async (client, input) => {
|
|
8879
8926
|
let reason;
|
|
8880
8927
|
try {
|
|
8881
|
-
|
|
8928
|
+
let result = await client.send(new GetSignalMapCommand(input));
|
|
8882
8929
|
reason = result;
|
|
8883
8930
|
try {
|
|
8884
|
-
|
|
8931
|
+
const returnComparator = () => {
|
|
8885
8932
|
return result.MonitorDeployment.Status;
|
|
8886
8933
|
};
|
|
8887
8934
|
if (returnComparator() === "DRY_RUN_DEPLOYMENT_COMPLETE") {
|
|
@@ -8890,7 +8937,7 @@ const checkState$1 = async (client, input) => {
|
|
|
8890
8937
|
}
|
|
8891
8938
|
catch (e) { }
|
|
8892
8939
|
try {
|
|
8893
|
-
|
|
8940
|
+
const returnComparator = () => {
|
|
8894
8941
|
return result.MonitorDeployment.Status;
|
|
8895
8942
|
};
|
|
8896
8943
|
if (returnComparator() === "DEPLOYMENT_COMPLETE") {
|
|
@@ -8899,7 +8946,7 @@ const checkState$1 = async (client, input) => {
|
|
|
8899
8946
|
}
|
|
8900
8947
|
catch (e) { }
|
|
8901
8948
|
try {
|
|
8902
|
-
|
|
8949
|
+
const returnComparator = () => {
|
|
8903
8950
|
return result.MonitorDeployment.Status;
|
|
8904
8951
|
};
|
|
8905
8952
|
if (returnComparator() === "DRY_RUN_DEPLOYMENT_IN_PROGRESS") {
|
|
@@ -8908,7 +8955,7 @@ const checkState$1 = async (client, input) => {
|
|
|
8908
8955
|
}
|
|
8909
8956
|
catch (e) { }
|
|
8910
8957
|
try {
|
|
8911
|
-
|
|
8958
|
+
const returnComparator = () => {
|
|
8912
8959
|
return result.MonitorDeployment.Status;
|
|
8913
8960
|
};
|
|
8914
8961
|
if (returnComparator() === "DEPLOYMENT_IN_PROGRESS") {
|
|
@@ -8917,7 +8964,7 @@ const checkState$1 = async (client, input) => {
|
|
|
8917
8964
|
}
|
|
8918
8965
|
catch (e) { }
|
|
8919
8966
|
try {
|
|
8920
|
-
|
|
8967
|
+
const returnComparator = () => {
|
|
8921
8968
|
return result.MonitorDeployment.Status;
|
|
8922
8969
|
};
|
|
8923
8970
|
if (returnComparator() === "DRY_RUN_DEPLOYMENT_FAILED") {
|
|
@@ -8926,7 +8973,7 @@ const checkState$1 = async (client, input) => {
|
|
|
8926
8973
|
}
|
|
8927
8974
|
catch (e) { }
|
|
8928
8975
|
try {
|
|
8929
|
-
|
|
8976
|
+
const returnComparator = () => {
|
|
8930
8977
|
return result.MonitorDeployment.Status;
|
|
8931
8978
|
};
|
|
8932
8979
|
if (returnComparator() === "DEPLOYMENT_FAILED") {
|
|
@@ -8953,10 +9000,10 @@ const waitUntilSignalMapMonitorDeployed = async (params, input) => {
|
|
|
8953
9000
|
const checkState = async (client, input) => {
|
|
8954
9001
|
let reason;
|
|
8955
9002
|
try {
|
|
8956
|
-
|
|
9003
|
+
let result = await client.send(new GetSignalMapCommand(input));
|
|
8957
9004
|
reason = result;
|
|
8958
9005
|
try {
|
|
8959
|
-
|
|
9006
|
+
const returnComparator = () => {
|
|
8960
9007
|
return result.Status;
|
|
8961
9008
|
};
|
|
8962
9009
|
if (returnComparator() === "UPDATE_COMPLETE") {
|
|
@@ -8965,7 +9012,7 @@ const checkState = async (client, input) => {
|
|
|
8965
9012
|
}
|
|
8966
9013
|
catch (e) { }
|
|
8967
9014
|
try {
|
|
8968
|
-
|
|
9015
|
+
const returnComparator = () => {
|
|
8969
9016
|
return result.Status;
|
|
8970
9017
|
};
|
|
8971
9018
|
if (returnComparator() === "UPDATE_IN_PROGRESS") {
|
|
@@ -8974,7 +9021,7 @@ const checkState = async (client, input) => {
|
|
|
8974
9021
|
}
|
|
8975
9022
|
catch (e) { }
|
|
8976
9023
|
try {
|
|
8977
|
-
|
|
9024
|
+
const returnComparator = () => {
|
|
8978
9025
|
return result.Status;
|
|
8979
9026
|
};
|
|
8980
9027
|
if (returnComparator() === "UPDATE_FAILED") {
|
|
@@ -8983,7 +9030,7 @@ const checkState = async (client, input) => {
|
|
|
8983
9030
|
}
|
|
8984
9031
|
catch (e) { }
|
|
8985
9032
|
try {
|
|
8986
|
-
|
|
9033
|
+
const returnComparator = () => {
|
|
8987
9034
|
return result.Status;
|
|
8988
9035
|
};
|
|
8989
9036
|
if (returnComparator() === "UPDATE_REVERTED") {
|
|
@@ -9472,6 +9519,10 @@ const InputResolution = {
|
|
|
9472
9519
|
SD: "SD",
|
|
9473
9520
|
UHD: "UHD",
|
|
9474
9521
|
};
|
|
9522
|
+
const LinkedChannelType = {
|
|
9523
|
+
FOLLOWING_CHANNEL: "FOLLOWING_CHANNEL",
|
|
9524
|
+
PRIMARY_CHANNEL: "PRIMARY_CHANNEL",
|
|
9525
|
+
};
|
|
9475
9526
|
const LogLevel = {
|
|
9476
9527
|
DEBUG: "DEBUG",
|
|
9477
9528
|
DISABLED: "DISABLED",
|
|
@@ -10691,6 +10742,10 @@ const GlobalConfigurationOutputLockingMode = {
|
|
|
10691
10742
|
EPOCH_LOCKING: "EPOCH_LOCKING",
|
|
10692
10743
|
PIPELINE_LOCKING: "PIPELINE_LOCKING",
|
|
10693
10744
|
};
|
|
10745
|
+
const PipelineLockingMethod = {
|
|
10746
|
+
SOURCE_TIMECODE: "SOURCE_TIMECODE",
|
|
10747
|
+
VIDEO_ALIGNMENT: "VIDEO_ALIGNMENT",
|
|
10748
|
+
};
|
|
10694
10749
|
const GlobalConfigurationOutputTimingSource = {
|
|
10695
10750
|
INPUT_CLOCK: "INPUT_CLOCK",
|
|
10696
10751
|
SYSTEM_CLOCK: "SYSTEM_CLOCK",
|
|
@@ -11067,6 +11122,7 @@ exports.DescribeClusterCommand = DescribeClusterCommand;
|
|
|
11067
11122
|
exports.DescribeClusterRequest$ = DescribeClusterRequest$;
|
|
11068
11123
|
exports.DescribeClusterResponse$ = DescribeClusterResponse$;
|
|
11069
11124
|
exports.DescribeClusterSummary$ = DescribeClusterSummary$;
|
|
11125
|
+
exports.DescribeFollowerChannelSettings$ = DescribeFollowerChannelSettings$;
|
|
11070
11126
|
exports.DescribeInput$ = DescribeInput$;
|
|
11071
11127
|
exports.DescribeInputCommand = DescribeInputCommand;
|
|
11072
11128
|
exports.DescribeInputDevice$ = DescribeInputDevice$;
|
|
@@ -11083,6 +11139,7 @@ exports.DescribeInputSecurityGroup$ = DescribeInputSecurityGroup$;
|
|
|
11083
11139
|
exports.DescribeInputSecurityGroupCommand = DescribeInputSecurityGroupCommand;
|
|
11084
11140
|
exports.DescribeInputSecurityGroupRequest$ = DescribeInputSecurityGroupRequest$;
|
|
11085
11141
|
exports.DescribeInputSecurityGroupResponse$ = DescribeInputSecurityGroupResponse$;
|
|
11142
|
+
exports.DescribeLinkedChannelSettings$ = DescribeLinkedChannelSettings$;
|
|
11086
11143
|
exports.DescribeMultiplex$ = DescribeMultiplex$;
|
|
11087
11144
|
exports.DescribeMultiplexCommand = DescribeMultiplexCommand;
|
|
11088
11145
|
exports.DescribeMultiplexProgram$ = DescribeMultiplexProgram$;
|
|
@@ -11105,6 +11162,7 @@ exports.DescribeOffering$ = DescribeOffering$;
|
|
|
11105
11162
|
exports.DescribeOfferingCommand = DescribeOfferingCommand;
|
|
11106
11163
|
exports.DescribeOfferingRequest$ = DescribeOfferingRequest$;
|
|
11107
11164
|
exports.DescribeOfferingResponse$ = DescribeOfferingResponse$;
|
|
11165
|
+
exports.DescribePrimaryChannelSettings$ = DescribePrimaryChannelSettings$;
|
|
11108
11166
|
exports.DescribeReservation$ = DescribeReservation$;
|
|
11109
11167
|
exports.DescribeReservationCommand = DescribeReservationCommand;
|
|
11110
11168
|
exports.DescribeReservationRequest$ = DescribeReservationRequest$;
|
|
@@ -11188,6 +11246,7 @@ exports.Fmp4NielsenId3Behavior = Fmp4NielsenId3Behavior;
|
|
|
11188
11246
|
exports.Fmp4TimedMetadataBehavior = Fmp4TimedMetadataBehavior;
|
|
11189
11247
|
exports.FollowModeScheduleActionStartSettings$ = FollowModeScheduleActionStartSettings$;
|
|
11190
11248
|
exports.FollowPoint = FollowPoint;
|
|
11249
|
+
exports.FollowerChannelSettings$ = FollowerChannelSettings$;
|
|
11191
11250
|
exports.ForbiddenException = ForbiddenException;
|
|
11192
11251
|
exports.ForbiddenException$ = ForbiddenException$;
|
|
11193
11252
|
exports.FrameCaptureCdnSettings$ = FrameCaptureCdnSettings$;
|
|
@@ -11395,6 +11454,8 @@ exports.IpPoolCreateRequest$ = IpPoolCreateRequest$;
|
|
|
11395
11454
|
exports.IpPoolUpdateRequest$ = IpPoolUpdateRequest$;
|
|
11396
11455
|
exports.KeyProviderSettings$ = KeyProviderSettings$;
|
|
11397
11456
|
exports.LastFrameClippingBehavior = LastFrameClippingBehavior;
|
|
11457
|
+
exports.LinkedChannelSettings$ = LinkedChannelSettings$;
|
|
11458
|
+
exports.LinkedChannelType = LinkedChannelType;
|
|
11398
11459
|
exports.ListAlerts$ = ListAlerts$;
|
|
11399
11460
|
exports.ListAlertsCommand = ListAlertsCommand;
|
|
11400
11461
|
exports.ListAlertsRequest$ = ListAlertsRequest$;
|
|
@@ -11619,9 +11680,11 @@ exports.PassThroughSettings$ = PassThroughSettings$;
|
|
|
11619
11680
|
exports.PauseStateScheduleActionSettings$ = PauseStateScheduleActionSettings$;
|
|
11620
11681
|
exports.PipelineDetail$ = PipelineDetail$;
|
|
11621
11682
|
exports.PipelineId = PipelineId;
|
|
11683
|
+
exports.PipelineLockingMethod = PipelineLockingMethod;
|
|
11622
11684
|
exports.PipelineLockingSettings$ = PipelineLockingSettings$;
|
|
11623
11685
|
exports.PipelinePauseStateSettings$ = PipelinePauseStateSettings$;
|
|
11624
11686
|
exports.PreferredChannelPipeline = PreferredChannelPipeline;
|
|
11687
|
+
exports.PrimaryChannelSettings$ = PrimaryChannelSettings$;
|
|
11625
11688
|
exports.PurchaseOffering$ = PurchaseOffering$;
|
|
11626
11689
|
exports.PurchaseOfferingCommand = PurchaseOfferingCommand;
|
|
11627
11690
|
exports.PurchaseOfferingRequest$ = PurchaseOfferingRequest$;
|