@aws-sdk/client-medialive 3.957.0 → 3.959.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 +1 -128
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +2874 -7243
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/models/enums.js +8 -0
- package/dist-es/pagination/index.js +4 -4
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +2571 -6956
- package/dist-es/waiters/index.js +2 -2
- package/dist-es/waiters/waitForChannelCreated.js +3 -3
- package/dist-es/waiters/waitForChannelDeleted.js +2 -2
- package/dist-es/waiters/waitForChannelPlacementGroupAssigned.js +2 -2
- package/dist-es/waiters/waitForChannelPlacementGroupDeleted.js +2 -2
- package/dist-es/waiters/waitForChannelPlacementGroupUnassigned.js +2 -2
- package/dist-es/waiters/waitForChannelRunning.js +2 -2
- package/dist-es/waiters/waitForChannelStopped.js +2 -2
- package/dist-es/waiters/waitForClusterCreated.js +3 -3
- package/dist-es/waiters/waitForClusterDeleted.js +2 -2
- package/dist-es/waiters/waitForInputAttached.js +2 -2
- package/dist-es/waiters/waitForInputDeleted.js +2 -2
- package/dist-es/waiters/waitForInputDetached.js +3 -3
- package/dist-es/waiters/waitForMultiplexCreated.js +3 -3
- package/dist-es/waiters/waitForMultiplexDeleted.js +2 -2
- package/dist-es/waiters/waitForMultiplexRunning.js +2 -2
- package/dist-es/waiters/waitForMultiplexStopped.js +2 -2
- package/dist-es/waiters/waitForNodeDeregistered.js +3 -3
- package/dist-es/waiters/waitForNodeRegistered.js +3 -3
- package/dist-es/waiters/waitForSignalMapCreated.js +3 -3
- package/dist-es/waiters/waitForSignalMapMonitorDeleted.js +3 -3
- package/dist-es/waiters/waitForSignalMapMonitorDeployed.js +6 -6
- package/dist-es/waiters/waitForSignalMapUpdated.js +4 -4
- 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/pagination/index.d.ts +4 -4
- 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/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/dist-types/waiters/index.d.ts +2 -2
- package/package.json +2 -2
package/dist-es/waiters/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export * from "./waitForChannelCreated";
|
|
2
2
|
export * from "./waitForChannelDeleted";
|
|
3
|
+
export * from "./waitForChannelRunning";
|
|
4
|
+
export * from "./waitForChannelStopped";
|
|
3
5
|
export * from "./waitForChannelPlacementGroupAssigned";
|
|
4
6
|
export * from "./waitForChannelPlacementGroupDeleted";
|
|
5
7
|
export * from "./waitForChannelPlacementGroupUnassigned";
|
|
6
|
-
export * from "./waitForChannelRunning";
|
|
7
|
-
export * from "./waitForChannelStopped";
|
|
8
8
|
export * from "./waitForClusterCreated";
|
|
9
9
|
export * from "./waitForClusterDeleted";
|
|
10
10
|
export * from "./waitForInputAttached";
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeChannelCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "IDLE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "CREATING") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.State;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeChannelCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DELETED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DELETING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeChannelPlacementGroupCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "ASSIGNED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "ASSIGNING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeChannelPlacementGroupCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DELETED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DELETING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeChannelPlacementGroupCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "UNASSIGNED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "UNASSIGNING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeChannelCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "RUNNING") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "STARTING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeChannelCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "IDLE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "STOPPING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeClusterCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "ACTIVE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "CREATING") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.State;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeClusterCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DELETED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DELETING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeInputCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "ATTACHED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DETACHED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeInputCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DELETED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DELETING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeInputCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DETACHED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "CREATING") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.State;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "ATTACHED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeMultiplexCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "IDLE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "CREATING") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.State;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeMultiplexCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DELETED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DELETING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeMultiplexCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "RUNNING") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "STARTING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeMultiplexCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "IDLE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "STOPPING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeNodeCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DEREGISTERED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DEREGISTERING") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.State;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "DRAINING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeNodeCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.State;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "ACTIVE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.State;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "REGISTERING") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.State;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "REGISTRATION_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetSignalMapCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.Status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "CREATE_COMPLETE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.Status;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "CREATE_IN_PROGRESS") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.Status;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetSignalMapCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.MonitorDeployment.Status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DELETE_COMPLETE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.MonitorDeployment.Status;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DELETE_IN_PROGRESS") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.MonitorDeployment.Status;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "DELETE_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetSignalMapCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.MonitorDeployment.Status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DRY_RUN_DEPLOYMENT_COMPLETE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.MonitorDeployment.Status;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "DEPLOYMENT_COMPLETE") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.MonitorDeployment.Status;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "DRY_RUN_DEPLOYMENT_IN_PROGRESS") {
|
|
@@ -33,7 +33,7 @@ const checkState = async (client, input) => {
|
|
|
33
33
|
}
|
|
34
34
|
catch (e) { }
|
|
35
35
|
try {
|
|
36
|
-
|
|
36
|
+
let returnComparator = () => {
|
|
37
37
|
return result.MonitorDeployment.Status;
|
|
38
38
|
};
|
|
39
39
|
if (returnComparator() === "DEPLOYMENT_IN_PROGRESS") {
|
|
@@ -42,7 +42,7 @@ const checkState = async (client, input) => {
|
|
|
42
42
|
}
|
|
43
43
|
catch (e) { }
|
|
44
44
|
try {
|
|
45
|
-
|
|
45
|
+
let returnComparator = () => {
|
|
46
46
|
return result.MonitorDeployment.Status;
|
|
47
47
|
};
|
|
48
48
|
if (returnComparator() === "DRY_RUN_DEPLOYMENT_FAILED") {
|
|
@@ -51,7 +51,7 @@ const checkState = async (client, input) => {
|
|
|
51
51
|
}
|
|
52
52
|
catch (e) { }
|
|
53
53
|
try {
|
|
54
|
-
|
|
54
|
+
let returnComparator = () => {
|
|
55
55
|
return result.MonitorDeployment.Status;
|
|
56
56
|
};
|
|
57
57
|
if (returnComparator() === "DEPLOYMENT_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetSignalMapCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.Status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "UPDATE_COMPLETE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.Status;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "UPDATE_IN_PROGRESS") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.Status;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "UPDATE_FAILED") {
|
|
@@ -33,7 +33,7 @@ const checkState = async (client, input) => {
|
|
|
33
33
|
}
|
|
34
34
|
catch (e) { }
|
|
35
35
|
try {
|
|
36
|
-
|
|
36
|
+
let returnComparator = () => {
|
|
37
37
|
return result.Status;
|
|
38
38
|
};
|
|
39
39
|
if (returnComparator() === "UPDATE_REVERTED") {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
|
|
4
|
-
import type { CancelInputDeviceTransferRequest, CancelInputDeviceTransferResponse } from "../models/
|
|
4
|
+
import type { CancelInputDeviceTransferRequest, CancelInputDeviceTransferResponse } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -344,7 +344,9 @@ declare const CreateChannelCommand_base: {
|
|
|
344
344
|
* CustomEpoch: "STRING_VALUE",
|
|
345
345
|
* JamSyncTime: "STRING_VALUE",
|
|
346
346
|
* },
|
|
347
|
-
* PipelineLockingSettings: {
|
|
347
|
+
* PipelineLockingSettings: { // PipelineLockingSettings
|
|
348
|
+
* PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
349
|
+
* },
|
|
348
350
|
* },
|
|
349
351
|
* },
|
|
350
352
|
* MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -1284,6 +1286,15 @@ declare const CreateChannelCommand_base: {
|
|
|
1284
1286
|
* Version: "STRING_VALUE",
|
|
1285
1287
|
* },
|
|
1286
1288
|
* DryRun: true || false,
|
|
1289
|
+
* LinkedChannelSettings: { // LinkedChannelSettings
|
|
1290
|
+
* FollowerChannelSettings: { // FollowerChannelSettings
|
|
1291
|
+
* LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1292
|
+
* PrimaryChannelArn: "STRING_VALUE",
|
|
1293
|
+
* },
|
|
1294
|
+
* PrimaryChannelSettings: { // PrimaryChannelSettings
|
|
1295
|
+
* LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1296
|
+
* },
|
|
1297
|
+
* },
|
|
1287
1298
|
* };
|
|
1288
1299
|
* const command = new CreateChannelCommand(input);
|
|
1289
1300
|
* const response = await client.send(command);
|
|
@@ -1602,7 +1613,9 @@ declare const CreateChannelCommand_base: {
|
|
|
1602
1613
|
* // CustomEpoch: "STRING_VALUE",
|
|
1603
1614
|
* // JamSyncTime: "STRING_VALUE",
|
|
1604
1615
|
* // },
|
|
1605
|
-
* // PipelineLockingSettings: {
|
|
1616
|
+
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
1617
|
+
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
1618
|
+
* // },
|
|
1606
1619
|
* // },
|
|
1607
1620
|
* // },
|
|
1608
1621
|
* // MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -2559,6 +2572,16 @@ declare const CreateChannelCommand_base: {
|
|
|
2559
2572
|
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
2560
2573
|
* // Version: "STRING_VALUE",
|
|
2561
2574
|
* // },
|
|
2575
|
+
* // LinkedChannelSettings: { // DescribeLinkedChannelSettings
|
|
2576
|
+
* // FollowerChannelSettings: { // DescribeFollowerChannelSettings
|
|
2577
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
2578
|
+
* // PrimaryChannelArn: "STRING_VALUE",
|
|
2579
|
+
* // },
|
|
2580
|
+
* // PrimaryChannelSettings: { // DescribePrimaryChannelSettings
|
|
2581
|
+
* // FollowingChannelArns: "<__listOf__string>",
|
|
2582
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
2583
|
+
* // },
|
|
2584
|
+
* // },
|
|
2562
2585
|
* // },
|
|
2563
2586
|
* // };
|
|
2564
2587
|
*
|
|
@@ -355,7 +355,9 @@ declare const DeleteChannelCommand_base: {
|
|
|
355
355
|
* // CustomEpoch: "STRING_VALUE",
|
|
356
356
|
* // JamSyncTime: "STRING_VALUE",
|
|
357
357
|
* // },
|
|
358
|
-
* // PipelineLockingSettings: {
|
|
358
|
+
* // PipelineLockingSettings: { // PipelineLockingSettings
|
|
359
|
+
* // PipelineLockingMethod: "SOURCE_TIMECODE" || "VIDEO_ALIGNMENT",
|
|
360
|
+
* // },
|
|
359
361
|
* // },
|
|
360
362
|
* // },
|
|
361
363
|
* // MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
@@ -1312,6 +1314,16 @@ declare const DeleteChannelCommand_base: {
|
|
|
1312
1314
|
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1313
1315
|
* // Version: "STRING_VALUE",
|
|
1314
1316
|
* // },
|
|
1317
|
+
* // LinkedChannelSettings: { // DescribeLinkedChannelSettings
|
|
1318
|
+
* // FollowerChannelSettings: { // DescribeFollowerChannelSettings
|
|
1319
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1320
|
+
* // PrimaryChannelArn: "STRING_VALUE",
|
|
1321
|
+
* // },
|
|
1322
|
+
* // PrimaryChannelSettings: { // DescribePrimaryChannelSettings
|
|
1323
|
+
* // FollowingChannelArns: "<__listOf__string>",
|
|
1324
|
+
* // LinkedChannelType: "FOLLOWING_CHANNEL" || "PRIMARY_CHANNEL",
|
|
1325
|
+
* // },
|
|
1326
|
+
* // },
|
|
1315
1327
|
* // };
|
|
1316
1328
|
*
|
|
1317
1329
|
* ```
|