@aws-sdk/client-medialive 3.541.0 → 3.549.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 (27) hide show
  1. package/dist-cjs/index.js +116 -15
  2. package/dist-es/models/models_0.js +47 -15
  3. package/dist-es/models/models_1.js +15 -0
  4. package/dist-es/protocols/Aws_restJson1.js +42 -0
  5. package/dist-types/commands/CreateChannelCommand.d.ts +38 -0
  6. package/dist-types/commands/DeleteChannelCommand.d.ts +19 -0
  7. package/dist-types/commands/DescribeChannelCommand.d.ts +19 -0
  8. package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeOfferingCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeReservationCommand.d.ts +1 -1
  11. package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
  12. package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +19 -0
  13. package/dist-types/commands/StartChannelCommand.d.ts +19 -0
  14. package/dist-types/commands/StopChannelCommand.d.ts +19 -0
  15. package/dist-types/commands/UpdateChannelClassCommand.d.ts +19 -0
  16. package/dist-types/commands/UpdateChannelCommand.d.ts +38 -0
  17. package/dist-types/models/models_0.d.ts +167 -156
  18. package/dist-types/models/models_1.d.ts +162 -269
  19. package/dist-types/models/models_2.d.ts +270 -2
  20. package/dist-types/ts3.4/commands/DescribeMultiplexProgramCommand.d.ts +1 -1
  21. package/dist-types/ts3.4/commands/DescribeOfferingCommand.d.ts +1 -1
  22. package/dist-types/ts3.4/commands/DescribeReservationCommand.d.ts +1 -1
  23. package/dist-types/ts3.4/commands/DescribeScheduleCommand.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +73 -48
  25. package/dist-types/ts3.4/models/models_1.d.ts +51 -66
  26. package/dist-types/ts3.4/models/models_2.d.ts +67 -0
  27. package/package.json +6 -6
@@ -30,11 +30,15 @@ import {
30
30
  MaintenanceStatus,
31
31
  MediaConnectFlowRequest,
32
32
  MultiplexOutputDestination,
33
+ MultiplexProgramPipelineDetail,
33
34
  MultiplexProgramSummary,
34
35
  MultiplexState,
35
36
  MultiplexSummary,
36
37
  Offering,
38
+ OfferingDurationUnits,
39
+ OfferingType,
37
40
  OutputDestination,
41
+ ReservationResourceSpecification,
38
42
  VpcOutputSettingsDescription,
39
43
  } from "./models_0";
40
44
  import {
@@ -43,14 +47,77 @@ import {
43
47
  EncoderSettings,
44
48
  Multiplex,
45
49
  MultiplexProgram,
50
+ MultiplexProgramPacketIdentifiersMap,
46
51
  MultiplexProgramSettings,
47
52
  MultiplexSettings,
48
53
  PipelineDetail,
49
54
  RenewalSettings,
50
55
  Reservation,
56
+ ReservationState,
57
+ ScheduleAction,
51
58
  ThumbnailDetail,
52
59
  TransferringInputDeviceSummary,
53
60
  } from "./models_1";
61
+ export interface DescribeMultiplexProgramRequest {
62
+ MultiplexId: string | undefined;
63
+ ProgramName: string | undefined;
64
+ }
65
+ export interface DescribeMultiplexProgramResponse {
66
+ ChannelId?: string;
67
+ MultiplexProgramSettings?: MultiplexProgramSettings;
68
+ PacketIdentifiersMap?: MultiplexProgramPacketIdentifiersMap;
69
+ PipelineDetails?: MultiplexProgramPipelineDetail[];
70
+ ProgramName?: string;
71
+ }
72
+ export interface DescribeOfferingRequest {
73
+ OfferingId: string | undefined;
74
+ }
75
+ export interface DescribeOfferingResponse {
76
+ Arn?: string;
77
+ CurrencyCode?: string;
78
+ Duration?: number;
79
+ DurationUnits?: OfferingDurationUnits;
80
+ FixedPrice?: number;
81
+ OfferingDescription?: string;
82
+ OfferingId?: string;
83
+ OfferingType?: OfferingType;
84
+ Region?: string;
85
+ ResourceSpecification?: ReservationResourceSpecification;
86
+ UsagePrice?: number;
87
+ }
88
+ export interface DescribeReservationRequest {
89
+ ReservationId: string | undefined;
90
+ }
91
+ export interface DescribeReservationResponse {
92
+ Arn?: string;
93
+ Count?: number;
94
+ CurrencyCode?: string;
95
+ Duration?: number;
96
+ DurationUnits?: OfferingDurationUnits;
97
+ End?: string;
98
+ FixedPrice?: number;
99
+ Name?: string;
100
+ OfferingDescription?: string;
101
+ OfferingId?: string;
102
+ OfferingType?: OfferingType;
103
+ Region?: string;
104
+ RenewalSettings?: RenewalSettings;
105
+ ReservationId?: string;
106
+ ResourceSpecification?: ReservationResourceSpecification;
107
+ Start?: string;
108
+ State?: ReservationState;
109
+ Tags?: Record<string, string>;
110
+ UsagePrice?: number;
111
+ }
112
+ export interface DescribeScheduleRequest {
113
+ ChannelId: string | undefined;
114
+ MaxResults?: number;
115
+ NextToken?: string;
116
+ }
117
+ export interface DescribeScheduleResponse {
118
+ NextToken?: string;
119
+ ScheduleActions?: ScheduleAction[];
120
+ }
54
121
  export interface DescribeThumbnailsRequest {
55
122
  ChannelId: string | undefined;
56
123
  PipelineId: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-medialive",
3
3
  "description": "AWS SDK for JavaScript Medialive Client for Node.js, Browser and React Native",
4
- "version": "3.541.0",
4
+ "version": "3.549.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-medialive",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.540.0",
24
- "@aws-sdk/core": "3.535.0",
25
- "@aws-sdk/credential-provider-node": "3.540.0",
23
+ "@aws-sdk/client-sts": "3.549.0",
24
+ "@aws-sdk/core": "3.549.0",
25
+ "@aws-sdk/credential-provider-node": "3.549.0",
26
26
  "@aws-sdk/middleware-host-header": "3.535.0",
27
27
  "@aws-sdk/middleware-logger": "3.535.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.535.0",
@@ -33,13 +33,13 @@
33
33
  "@aws-sdk/util-user-agent-browser": "3.535.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.535.0",
35
35
  "@smithy/config-resolver": "^2.2.0",
36
- "@smithy/core": "^1.4.0",
36
+ "@smithy/core": "^1.4.1",
37
37
  "@smithy/fetch-http-handler": "^2.5.0",
38
38
  "@smithy/hash-node": "^2.2.0",
39
39
  "@smithy/invalid-dependency": "^2.2.0",
40
40
  "@smithy/middleware-content-length": "^2.2.0",
41
41
  "@smithy/middleware-endpoint": "^2.5.0",
42
- "@smithy/middleware-retry": "^2.2.0",
42
+ "@smithy/middleware-retry": "^2.3.0",
43
43
  "@smithy/middleware-serde": "^2.3.0",
44
44
  "@smithy/middleware-stack": "^2.2.0",
45
45
  "@smithy/node-config-provider": "^2.3.0",