@aws-sdk/client-mediapackage 3.131.0 → 3.141.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/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/ConfigureLogsCommand.js +2 -2
- package/dist-cjs/commands/CreateChannelCommand.js +2 -2
- package/dist-cjs/commands/CreateHarvestJobCommand.js +2 -2
- package/dist-cjs/commands/CreateOriginEndpointCommand.js +2 -2
- package/dist-cjs/commands/DeleteChannelCommand.js +2 -2
- package/dist-cjs/commands/DeleteOriginEndpointCommand.js +2 -2
- package/dist-cjs/commands/DescribeChannelCommand.js +2 -2
- package/dist-cjs/commands/DescribeHarvestJobCommand.js +2 -2
- package/dist-cjs/commands/DescribeOriginEndpointCommand.js +2 -2
- package/dist-cjs/commands/ListChannelsCommand.js +2 -2
- package/dist-cjs/commands/ListHarvestJobsCommand.js +2 -2
- package/dist-cjs/commands/ListOriginEndpointsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/RotateChannelCredentialsCommand.js +2 -2
- package/dist-cjs/commands/RotateIngestEndpointCredentialsCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +1 -1
- package/dist-cjs/commands/UntagResourceCommand.js +1 -1
- package/dist-cjs/commands/UpdateChannelCommand.js +2 -2
- package/dist-cjs/commands/UpdateOriginEndpointCommand.js +2 -2
- package/dist-cjs/models/models_0.js +251 -356
- package/dist-cjs/protocols/Aws_restJson1.js +2 -0
- package/dist-es/commands/ConfigureLogsCommand.js +3 -3
- package/dist-es/commands/CreateChannelCommand.js +3 -3
- package/dist-es/commands/CreateHarvestJobCommand.js +3 -3
- package/dist-es/commands/CreateOriginEndpointCommand.js +3 -3
- package/dist-es/commands/DeleteChannelCommand.js +3 -3
- package/dist-es/commands/DeleteOriginEndpointCommand.js +3 -3
- package/dist-es/commands/DescribeChannelCommand.js +3 -3
- package/dist-es/commands/DescribeHarvestJobCommand.js +3 -3
- package/dist-es/commands/DescribeOriginEndpointCommand.js +3 -3
- package/dist-es/commands/ListChannelsCommand.js +3 -3
- package/dist-es/commands/ListHarvestJobsCommand.js +3 -3
- package/dist-es/commands/ListOriginEndpointsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/RotateChannelCredentialsCommand.js +3 -3
- package/dist-es/commands/RotateIngestEndpointCredentialsCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateChannelCommand.js +3 -3
- package/dist-es/commands/UpdateOriginEndpointCommand.js +3 -3
- package/dist-es/models/models_0.js +72 -236
- package/dist-es/protocols/Aws_restJson1.js +2 -1
- package/dist-types/models/models_0.d.ts +255 -356
- package/dist-types/ts3.4/models/models_0.d.ts +135 -238
- package/package.json +6 -6
|
@@ -2054,6 +2054,7 @@ const serializeAws_restJson1DashPackage = (input, context) => {
|
|
|
2054
2054
|
...(input.AdTriggers != null && { adTriggers: serializeAws_restJson1AdTriggers(input.AdTriggers, context) }),
|
|
2055
2055
|
...(input.AdsOnDeliveryRestrictions != null && { adsOnDeliveryRestrictions: input.AdsOnDeliveryRestrictions }),
|
|
2056
2056
|
...(input.Encryption != null && { encryption: serializeAws_restJson1DashEncryption(input.Encryption, context) }),
|
|
2057
|
+
...(input.IncludeIframeOnlyStream != null && { includeIframeOnlyStream: input.IncludeIframeOnlyStream }),
|
|
2057
2058
|
...(input.ManifestLayout != null && { manifestLayout: input.ManifestLayout }),
|
|
2058
2059
|
...(input.ManifestWindowSeconds != null && { manifestWindowSeconds: input.ManifestWindowSeconds }),
|
|
2059
2060
|
...(input.MinBufferTimeSeconds != null && { minBufferTimeSeconds: input.MinBufferTimeSeconds }),
|
|
@@ -2347,6 +2348,7 @@ const deserializeAws_restJson1DashPackage = (output, context) => {
|
|
|
2347
2348
|
AdTriggers: output.adTriggers != null ? deserializeAws_restJson1AdTriggers(output.adTriggers, context) : undefined,
|
|
2348
2349
|
AdsOnDeliveryRestrictions: (0, smithy_client_1.expectString)(output.adsOnDeliveryRestrictions),
|
|
2349
2350
|
Encryption: output.encryption != null ? deserializeAws_restJson1DashEncryption(output.encryption, context) : undefined,
|
|
2351
|
+
IncludeIframeOnlyStream: (0, smithy_client_1.expectBoolean)(output.includeIframeOnlyStream),
|
|
2350
2352
|
ManifestLayout: (0, smithy_client_1.expectString)(output.manifestLayout),
|
|
2351
2353
|
ManifestWindowSeconds: (0, smithy_client_1.expectInt32)(output.manifestWindowSeconds),
|
|
2352
2354
|
MinBufferTimeSeconds: (0, smithy_client_1.expectInt32)(output.minBufferTimeSeconds),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ConfigureLogsRequestFilterSensitiveLog, ConfigureLogsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ConfigureLogsCommand, serializeAws_restJson1ConfigureLogsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ConfigureLogsCommand = (function (_super) {
|
|
7
7
|
__extends(ConfigureLogsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ConfigureLogsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ConfigureLogsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ConfigureLogsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateChannelRequestFilterSensitiveLog, CreateChannelResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateChannelCommand, serializeAws_restJson1CreateChannelCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateChannelCommand = (function (_super) {
|
|
7
7
|
__extends(CreateChannelCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateChannelCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateChannelRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateChannelResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateHarvestJobRequestFilterSensitiveLog, CreateHarvestJobResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateHarvestJobCommand, serializeAws_restJson1CreateHarvestJobCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateHarvestJobCommand = (function (_super) {
|
|
7
7
|
__extends(CreateHarvestJobCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateHarvestJobCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateHarvestJobRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateHarvestJobResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateOriginEndpointRequestFilterSensitiveLog, CreateOriginEndpointResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateOriginEndpointCommand, serializeAws_restJson1CreateOriginEndpointCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateOriginEndpointCommand = (function (_super) {
|
|
7
7
|
__extends(CreateOriginEndpointCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateOriginEndpointCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateOriginEndpointRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateOriginEndpointResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteChannelRequestFilterSensitiveLog, DeleteChannelResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteChannelCommand, serializeAws_restJson1DeleteChannelCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteChannelCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteChannelCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteChannelCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteChannelRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteChannelResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteOriginEndpointRequestFilterSensitiveLog, DeleteOriginEndpointResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteOriginEndpointCommand, serializeAws_restJson1DeleteOriginEndpointCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteOriginEndpointCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteOriginEndpointCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteOriginEndpointCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteOriginEndpointRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteOriginEndpointResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeChannelRequestFilterSensitiveLog, DescribeChannelResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeChannelCommand, serializeAws_restJson1DescribeChannelCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeChannelCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeChannelCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeChannelCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeChannelRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeChannelResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeHarvestJobRequestFilterSensitiveLog, DescribeHarvestJobResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeHarvestJobCommand, serializeAws_restJson1DescribeHarvestJobCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeHarvestJobCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeHarvestJobCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeHarvestJobCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeHarvestJobRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeHarvestJobResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeOriginEndpointRequestFilterSensitiveLog, DescribeOriginEndpointResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeOriginEndpointCommand, serializeAws_restJson1DescribeOriginEndpointCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeOriginEndpointCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeOriginEndpointCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeOriginEndpointCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeOriginEndpointRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeOriginEndpointResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListChannelsRequestFilterSensitiveLog, ListChannelsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListChannelsCommand, serializeAws_restJson1ListChannelsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListChannelsCommand = (function (_super) {
|
|
7
7
|
__extends(ListChannelsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListChannelsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListChannelsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListChannelsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListHarvestJobsRequestFilterSensitiveLog, ListHarvestJobsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListHarvestJobsCommand, serializeAws_restJson1ListHarvestJobsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListHarvestJobsCommand = (function (_super) {
|
|
7
7
|
__extends(ListHarvestJobsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListHarvestJobsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListHarvestJobsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListHarvestJobsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListOriginEndpointsRequestFilterSensitiveLog, ListOriginEndpointsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListOriginEndpointsCommand, serializeAws_restJson1ListOriginEndpointsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListOriginEndpointsCommand = (function (_super) {
|
|
7
7
|
__extends(ListOriginEndpointsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListOriginEndpointsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListOriginEndpointsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListOriginEndpointsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListTagsForResourceCommand = (function (_super) {
|
|
7
7
|
__extends(ListTagsForResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListTagsForResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { RotateChannelCredentialsRequestFilterSensitiveLog, RotateChannelCredentialsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1RotateChannelCredentialsCommand, serializeAws_restJson1RotateChannelCredentialsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var RotateChannelCredentialsCommand = (function (_super) {
|
|
7
7
|
__extends(RotateChannelCredentialsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var RotateChannelCredentialsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: RotateChannelCredentialsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: RotateChannelCredentialsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { RotateIngestEndpointCredentialsRequestFilterSensitiveLog, RotateIngestEndpointCredentialsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1RotateIngestEndpointCredentialsCommand, serializeAws_restJson1RotateIngestEndpointCredentialsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var RotateIngestEndpointCredentialsCommand = (function (_super) {
|
|
7
7
|
__extends(RotateIngestEndpointCredentialsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var RotateIngestEndpointCredentialsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: RotateIngestEndpointCredentialsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: RotateIngestEndpointCredentialsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { TagResourceRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var TagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(TagResourceCommand, _super);
|
|
@@ -20,7 +20,7 @@ var TagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UntagResourceRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UntagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(UntagResourceCommand, _super);
|
|
@@ -20,7 +20,7 @@ var UntagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateChannelRequestFilterSensitiveLog, UpdateChannelResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateChannelCommand, serializeAws_restJson1UpdateChannelCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateChannelCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateChannelCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateChannelCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateChannelRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateChannelResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateOriginEndpointRequestFilterSensitiveLog, UpdateOriginEndpointResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateOriginEndpointCommand, serializeAws_restJson1UpdateOriginEndpointCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateOriginEndpointCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateOriginEndpointCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateOriginEndpointCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateOriginEndpointRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateOriginEndpointResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|