@aws-sdk/client-mediaconvert 3.948.0 → 3.953.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.
Files changed (54) hide show
  1. package/dist-cjs/index.js +1015 -725
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AssociateCertificateCommand.js +2 -2
  4. package/dist-es/commands/CancelJobCommand.js +2 -2
  5. package/dist-es/commands/CreateJobCommand.js +2 -2
  6. package/dist-es/commands/CreateJobTemplateCommand.js +2 -2
  7. package/dist-es/commands/CreatePresetCommand.js +2 -2
  8. package/dist-es/commands/CreateQueueCommand.js +2 -2
  9. package/dist-es/commands/CreateResourceShareCommand.js +2 -2
  10. package/dist-es/commands/DeleteJobTemplateCommand.js +2 -2
  11. package/dist-es/commands/DeletePolicyCommand.js +2 -2
  12. package/dist-es/commands/DeletePresetCommand.js +2 -2
  13. package/dist-es/commands/DeleteQueueCommand.js +2 -2
  14. package/dist-es/commands/DescribeEndpointsCommand.js +2 -2
  15. package/dist-es/commands/DisassociateCertificateCommand.js +2 -2
  16. package/dist-es/commands/GetJobCommand.js +2 -2
  17. package/dist-es/commands/GetJobTemplateCommand.js +2 -2
  18. package/dist-es/commands/GetJobsQueryResultsCommand.js +2 -2
  19. package/dist-es/commands/GetPolicyCommand.js +2 -2
  20. package/dist-es/commands/GetPresetCommand.js +2 -2
  21. package/dist-es/commands/GetQueueCommand.js +2 -2
  22. package/dist-es/commands/ListJobTemplatesCommand.js +2 -2
  23. package/dist-es/commands/ListJobsCommand.js +2 -2
  24. package/dist-es/commands/ListPresetsCommand.js +2 -2
  25. package/dist-es/commands/ListQueuesCommand.js +2 -2
  26. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  27. package/dist-es/commands/ListVersionsCommand.js +2 -2
  28. package/dist-es/commands/ProbeCommand.js +2 -2
  29. package/dist-es/commands/PutPolicyCommand.js +2 -2
  30. package/dist-es/commands/SearchJobsCommand.js +2 -2
  31. package/dist-es/commands/StartJobsQueryCommand.js +2 -2
  32. package/dist-es/commands/TagResourceCommand.js +2 -2
  33. package/dist-es/commands/UntagResourceCommand.js +2 -2
  34. package/dist-es/commands/UpdateJobTemplateCommand.js +2 -2
  35. package/dist-es/commands/UpdatePresetCommand.js +2 -2
  36. package/dist-es/commands/UpdateQueueCommand.js +2 -2
  37. package/dist-es/index.js +1 -0
  38. package/dist-es/runtimeConfig.shared.js +6 -1
  39. package/dist-es/schemas/schemas_0.js +662 -686
  40. package/dist-types/MediaConvertClient.d.ts +1 -10
  41. package/dist-types/index.d.ts +1 -0
  42. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  43. package/dist-types/runtimeConfig.d.ts +6 -2
  44. package/dist-types/runtimeConfig.native.d.ts +6 -2
  45. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  46. package/dist-types/schemas/schemas_0.d.ts +315 -375
  47. package/dist-types/ts3.4/MediaConvertClient.d.ts +0 -4
  48. package/dist-types/ts3.4/index.d.ts +1 -0
  49. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  53. package/dist-types/ts3.4/schemas/schemas_0.d.ts +314 -376
  54. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.mediaconvert" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.mediaconvert",
32
+ version: "2017-08-29",
33
+ serviceTarget: "MediaConvert",
34
+ },
30
35
  serviceId: config?.serviceId ?? "MediaConvert",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AssociateCertificate } from "../schemas/schemas_0";
4
+ import { AssociateCertificate$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateCertificateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateCertificateCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "AssociateCertificate", {})
13
13
  .n("MediaConvertClient", "AssociateCertificateCommand")
14
- .sc(AssociateCertificate)
14
+ .sc(AssociateCertificate$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CancelJob } from "../schemas/schemas_0";
4
+ import { CancelJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CancelJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CancelJobCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "CancelJob", {})
13
13
  .n("MediaConvertClient", "CancelJobCommand")
14
- .sc(CancelJob)
14
+ .sc(CancelJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateJob } from "../schemas/schemas_0";
4
+ import { CreateJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateJobCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "CreateJob", {})
13
13
  .n("MediaConvertClient", "CreateJobCommand")
14
- .sc(CreateJob)
14
+ .sc(CreateJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateJobTemplate } from "../schemas/schemas_0";
4
+ import { CreateJobTemplate$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateJobTemplateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateJobTemplateCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "CreateJobTemplate", {})
13
13
  .n("MediaConvertClient", "CreateJobTemplateCommand")
14
- .sc(CreateJobTemplate)
14
+ .sc(CreateJobTemplate$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreatePreset } from "../schemas/schemas_0";
4
+ import { CreatePreset$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreatePresetCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreatePresetCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "CreatePreset", {})
13
13
  .n("MediaConvertClient", "CreatePresetCommand")
14
- .sc(CreatePreset)
14
+ .sc(CreatePreset$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateQueue } from "../schemas/schemas_0";
4
+ import { CreateQueue$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateQueueCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateQueueCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "CreateQueue", {})
13
13
  .n("MediaConvertClient", "CreateQueueCommand")
14
- .sc(CreateQueue)
14
+ .sc(CreateQueue$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateResourceShare } from "../schemas/schemas_0";
4
+ import { CreateResourceShare$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateResourceShareCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateResourceShareCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "CreateResourceShare", {})
13
13
  .n("MediaConvertClient", "CreateResourceShareCommand")
14
- .sc(CreateResourceShare)
14
+ .sc(CreateResourceShare$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteJobTemplate } from "../schemas/schemas_0";
4
+ import { DeleteJobTemplate$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteJobTemplateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteJobTemplateCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "DeleteJobTemplate", {})
13
13
  .n("MediaConvertClient", "DeleteJobTemplateCommand")
14
- .sc(DeleteJobTemplate)
14
+ .sc(DeleteJobTemplate$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeletePolicy } from "../schemas/schemas_0";
4
+ import { DeletePolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeletePolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeletePolicyCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "DeletePolicy", {})
13
13
  .n("MediaConvertClient", "DeletePolicyCommand")
14
- .sc(DeletePolicy)
14
+ .sc(DeletePolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeletePreset } from "../schemas/schemas_0";
4
+ import { DeletePreset$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeletePresetCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeletePresetCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "DeletePreset", {})
13
13
  .n("MediaConvertClient", "DeletePresetCommand")
14
- .sc(DeletePreset)
14
+ .sc(DeletePreset$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteQueue } from "../schemas/schemas_0";
4
+ import { DeleteQueue$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteQueueCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteQueueCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "DeleteQueue", {})
13
13
  .n("MediaConvertClient", "DeleteQueueCommand")
14
- .sc(DeleteQueue)
14
+ .sc(DeleteQueue$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeEndpoints } from "../schemas/schemas_0";
4
+ import { DescribeEndpoints$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeEndpointsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeEndpointsCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "DescribeEndpoints", {})
13
13
  .n("MediaConvertClient", "DescribeEndpointsCommand")
14
- .sc(DescribeEndpoints)
14
+ .sc(DescribeEndpoints$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisassociateCertificate } from "../schemas/schemas_0";
4
+ import { DisassociateCertificate$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateCertificateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateCertificateCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "DisassociateCertificate", {})
13
13
  .n("MediaConvertClient", "DisassociateCertificateCommand")
14
- .sc(DisassociateCertificate)
14
+ .sc(DisassociateCertificate$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetJob } from "../schemas/schemas_0";
4
+ import { GetJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetJobCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "GetJob", {})
13
13
  .n("MediaConvertClient", "GetJobCommand")
14
- .sc(GetJob)
14
+ .sc(GetJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetJobTemplate } from "../schemas/schemas_0";
4
+ import { GetJobTemplate$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetJobTemplateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetJobTemplateCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "GetJobTemplate", {})
13
13
  .n("MediaConvertClient", "GetJobTemplateCommand")
14
- .sc(GetJobTemplate)
14
+ .sc(GetJobTemplate$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetJobsQueryResults } from "../schemas/schemas_0";
4
+ import { GetJobsQueryResults$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetJobsQueryResultsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetJobsQueryResultsCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "GetJobsQueryResults", {})
13
13
  .n("MediaConvertClient", "GetJobsQueryResultsCommand")
14
- .sc(GetJobsQueryResults)
14
+ .sc(GetJobsQueryResults$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetPolicy } from "../schemas/schemas_0";
4
+ import { GetPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetPolicyCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "GetPolicy", {})
13
13
  .n("MediaConvertClient", "GetPolicyCommand")
14
- .sc(GetPolicy)
14
+ .sc(GetPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetPreset } from "../schemas/schemas_0";
4
+ import { GetPreset$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetPresetCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetPresetCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "GetPreset", {})
13
13
  .n("MediaConvertClient", "GetPresetCommand")
14
- .sc(GetPreset)
14
+ .sc(GetPreset$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetQueue } from "../schemas/schemas_0";
4
+ import { GetQueue$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetQueueCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetQueueCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "GetQueue", {})
13
13
  .n("MediaConvertClient", "GetQueueCommand")
14
- .sc(GetQueue)
14
+ .sc(GetQueue$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListJobTemplates } from "../schemas/schemas_0";
4
+ import { ListJobTemplates$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListJobTemplatesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListJobTemplatesCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "ListJobTemplates", {})
13
13
  .n("MediaConvertClient", "ListJobTemplatesCommand")
14
- .sc(ListJobTemplates)
14
+ .sc(ListJobTemplates$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListJobs } from "../schemas/schemas_0";
4
+ import { ListJobs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListJobsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListJobsCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "ListJobs", {})
13
13
  .n("MediaConvertClient", "ListJobsCommand")
14
- .sc(ListJobs)
14
+ .sc(ListJobs$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListPresets } from "../schemas/schemas_0";
4
+ import { ListPresets$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListPresetsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListPresetsCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "ListPresets", {})
13
13
  .n("MediaConvertClient", "ListPresetsCommand")
14
- .sc(ListPresets)
14
+ .sc(ListPresets$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListQueues } from "../schemas/schemas_0";
4
+ import { ListQueues$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListQueuesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListQueuesCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "ListQueues", {})
13
13
  .n("MediaConvertClient", "ListQueuesCommand")
14
- .sc(ListQueues)
14
+ .sc(ListQueues$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "ListTagsForResource", {})
13
13
  .n("MediaConvertClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListVersions } from "../schemas/schemas_0";
4
+ import { ListVersions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListVersionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListVersionsCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "ListVersions", {})
13
13
  .n("MediaConvertClient", "ListVersionsCommand")
14
- .sc(ListVersions)
14
+ .sc(ListVersions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { Probe } from "../schemas/schemas_0";
4
+ import { Probe$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ProbeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ProbeCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "Probe", {})
13
13
  .n("MediaConvertClient", "ProbeCommand")
14
- .sc(Probe)
14
+ .sc(Probe$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutPolicy } from "../schemas/schemas_0";
4
+ import { PutPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutPolicyCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "PutPolicy", {})
13
13
  .n("MediaConvertClient", "PutPolicyCommand")
14
- .sc(PutPolicy)
14
+ .sc(PutPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SearchJobs } from "../schemas/schemas_0";
4
+ import { SearchJobs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SearchJobsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SearchJobsCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "SearchJobs", {})
13
13
  .n("MediaConvertClient", "SearchJobsCommand")
14
- .sc(SearchJobs)
14
+ .sc(SearchJobs$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartJobsQuery } from "../schemas/schemas_0";
4
+ import { StartJobsQuery$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartJobsQueryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartJobsQueryCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "StartJobsQuery", {})
13
13
  .n("MediaConvertClient", "StartJobsQueryCommand")
14
- .sc(StartJobsQuery)
14
+ .sc(StartJobsQuery$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "TagResource", {})
13
13
  .n("MediaConvertClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "UntagResource", {})
13
13
  .n("MediaConvertClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateJobTemplate } from "../schemas/schemas_0";
4
+ import { UpdateJobTemplate$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateJobTemplateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateJobTemplateCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "UpdateJobTemplate", {})
13
13
  .n("MediaConvertClient", "UpdateJobTemplateCommand")
14
- .sc(UpdateJobTemplate)
14
+ .sc(UpdateJobTemplate$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdatePreset } from "../schemas/schemas_0";
4
+ import { UpdatePreset$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdatePresetCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdatePresetCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "UpdatePreset", {})
13
13
  .n("MediaConvertClient", "UpdatePresetCommand")
14
- .sc(UpdatePreset)
14
+ .sc(UpdatePreset$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateQueue } from "../schemas/schemas_0";
4
+ import { UpdateQueue$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateQueueCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateQueueCommand extends $Command
11
11
  })
12
12
  .s("MediaConvert", "UpdateQueue", {})
13
13
  .n("MediaConvertClient", "UpdateQueueCommand")
14
- .sc(UpdateQueue)
14
+ .sc(UpdateQueue$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./MediaConvertClient";
2
2
  export * from "./MediaConvert";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.mediaconvert" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.mediaconvert",
29
+ version: "2017-08-29",
30
+ serviceTarget: "MediaConvert",
31
+ },
27
32
  serviceId: config?.serviceId ?? "MediaConvert",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,