Skip to content

Commit 52794ee

Browse files
author
awstools
committed
feat(client-medialive): Removing the ON_PREMISE enum from the input settings field.
1 parent 72bf4cb commit 52794ee

File tree

7 files changed

+6
-13
lines changed

7 files changed

+6
-13
lines changed

clients/client-medialive/src/commands/CreateInputCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export interface CreateInputCommandOutput extends CreateInputResponse, __Metadat
9898
* },
9999
* ],
100100
* },
101-
* InputNetworkLocation: "AWS" || "ON_PREMISE" || "ON_PREMISES",
101+
* InputNetworkLocation: "AWS" || "ON_PREMISES",
102102
* MulticastSettings: { // MulticastSettingsCreateRequest
103103
* Sources: [ // __listOfMulticastSourceCreateRequest
104104
* { // MulticastSourceCreateRequest
@@ -181,7 +181,7 @@ export interface CreateInputCommandOutput extends CreateInputResponse, __Metadat
181181
* // },
182182
* // ],
183183
* // },
184-
* // InputNetworkLocation: "AWS" || "ON_PREMISE" || "ON_PREMISES",
184+
* // InputNetworkLocation: "AWS" || "ON_PREMISES",
185185
* // MulticastSettings: { // MulticastSettings
186186
* // Sources: [ // __listOfMulticastSource
187187
* // { // MulticastSource

clients/client-medialive/src/commands/CreatePartnerInputCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export interface CreatePartnerInputCommandOutput extends CreatePartnerInputRespo
115115
* // },
116116
* // ],
117117
* // },
118-
* // InputNetworkLocation: "AWS" || "ON_PREMISE" || "ON_PREMISES",
118+
* // InputNetworkLocation: "AWS" || "ON_PREMISES",
119119
* // MulticastSettings: { // MulticastSettings
120120
* // Sources: [ // __listOfMulticastSource
121121
* // { // MulticastSource

clients/client-medialive/src/commands/DescribeInputCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export interface DescribeInputCommandOutput extends DescribeInputResponse, __Met
110110
* // },
111111
* // ],
112112
* // },
113-
* // InputNetworkLocation: "AWS" || "ON_PREMISE" || "ON_PREMISES",
113+
* // InputNetworkLocation: "AWS" || "ON_PREMISES",
114114
* // MulticastSettings: { // MulticastSettings
115115
* // Sources: [ // __listOfMulticastSource
116116
* // { // MulticastSource

clients/client-medialive/src/commands/ListInputsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export interface ListInputsCommandOutput extends ListInputsResponse, __MetadataB
113113
* // },
114114
* // ],
115115
* // },
116-
* // InputNetworkLocation: "AWS" || "ON_PREMISE" || "ON_PREMISES",
116+
* // InputNetworkLocation: "AWS" || "ON_PREMISES",
117117
* // MulticastSettings: { // MulticastSettings
118118
* // Sources: [ // __listOfMulticastSource
119119
* // { // MulticastSource

clients/client-medialive/src/commands/UpdateInputCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export interface UpdateInputCommandOutput extends UpdateInputResponse, __Metadat
168168
* // },
169169
* // ],
170170
* // },
171-
* // InputNetworkLocation: "AWS" || "ON_PREMISE" || "ON_PREMISES",
171+
* // InputNetworkLocation: "AWS" || "ON_PREMISES",
172172
* // MulticastSettings: { // MulticastSettings
173173
* // Sources: [ // __listOfMulticastSource
174174
* // { // MulticastSource

clients/client-medialive/src/models/models_0.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4725,7 +4725,6 @@ export interface InputDeviceSettings {
47254725
*/
47264726
export const InputNetworkLocation = {
47274727
AWS: "AWS",
4728-
ON_PREMISE: "ON_PREMISE",
47294728
ON_PREMISES: "ON_PREMISES",
47304729
} as const;
47314730

codegen/sdk-codegen/aws-models/medialive.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19967,12 +19967,6 @@
1996719967
"smithy.api#enumValue": "AWS"
1996819968
}
1996919969
},
19970-
"ON_PREMISE": {
19971-
"target": "smithy.api#Unit",
19972-
"traits": {
19973-
"smithy.api#enumValue": "ON_PREMISE"
19974-
}
19975-
},
1997619970
"ON_PREMISES": {
1997719971
"target": "smithy.api#Unit",
1997819972
"traits": {

0 commit comments

Comments
 (0)