Skip to content

Commit

Permalink
feat(client-medialive): Removing the ON_PREMISE enum from the input s…
Browse files Browse the repository at this point in the history
…ettings field.
  • Loading branch information
awstools committed Sep 16, 2024
1 parent 72bf4cb commit 52794ee
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 13 deletions.
4 changes: 2 additions & 2 deletions clients/client-medialive/src/commands/CreateInputCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export interface CreateInputCommandOutput extends CreateInputResponse, __Metadat
* },
* ],
* },
* InputNetworkLocation: "AWS" || "ON_PREMISE" || "ON_PREMISES",
* InputNetworkLocation: "AWS" || "ON_PREMISES",
* MulticastSettings: { // MulticastSettingsCreateRequest
* Sources: [ // __listOfMulticastSourceCreateRequest
* { // MulticastSourceCreateRequest
Expand Down Expand Up @@ -181,7 +181,7 @@ export interface CreateInputCommandOutput extends CreateInputResponse, __Metadat
* // },
* // ],
* // },
* // InputNetworkLocation: "AWS" || "ON_PREMISE" || "ON_PREMISES",
* // InputNetworkLocation: "AWS" || "ON_PREMISES",
* // MulticastSettings: { // MulticastSettings
* // Sources: [ // __listOfMulticastSource
* // { // MulticastSource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export interface CreatePartnerInputCommandOutput extends CreatePartnerInputRespo
* // },
* // ],
* // },
* // InputNetworkLocation: "AWS" || "ON_PREMISE" || "ON_PREMISES",
* // InputNetworkLocation: "AWS" || "ON_PREMISES",
* // MulticastSettings: { // MulticastSettings
* // Sources: [ // __listOfMulticastSource
* // { // MulticastSource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export interface DescribeInputCommandOutput extends DescribeInputResponse, __Met
* // },
* // ],
* // },
* // InputNetworkLocation: "AWS" || "ON_PREMISE" || "ON_PREMISES",
* // InputNetworkLocation: "AWS" || "ON_PREMISES",
* // MulticastSettings: { // MulticastSettings
* // Sources: [ // __listOfMulticastSource
* // { // MulticastSource
Expand Down
2 changes: 1 addition & 1 deletion clients/client-medialive/src/commands/ListInputsCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export interface ListInputsCommandOutput extends ListInputsResponse, __MetadataB
* // },
* // ],
* // },
* // InputNetworkLocation: "AWS" || "ON_PREMISE" || "ON_PREMISES",
* // InputNetworkLocation: "AWS" || "ON_PREMISES",
* // MulticastSettings: { // MulticastSettings
* // Sources: [ // __listOfMulticastSource
* // { // MulticastSource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export interface UpdateInputCommandOutput extends UpdateInputResponse, __Metadat
* // },
* // ],
* // },
* // InputNetworkLocation: "AWS" || "ON_PREMISE" || "ON_PREMISES",
* // InputNetworkLocation: "AWS" || "ON_PREMISES",
* // MulticastSettings: { // MulticastSettings
* // Sources: [ // __listOfMulticastSource
* // { // MulticastSource
Expand Down
1 change: 0 additions & 1 deletion clients/client-medialive/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4725,7 +4725,6 @@ export interface InputDeviceSettings {
*/
export const InputNetworkLocation = {
AWS: "AWS",
ON_PREMISE: "ON_PREMISE",
ON_PREMISES: "ON_PREMISES",
} as const;

Expand Down
6 changes: 0 additions & 6 deletions codegen/sdk-codegen/aws-models/medialive.json
Original file line number Diff line number Diff line change
Expand Up @@ -19967,12 +19967,6 @@
"smithy.api#enumValue": "AWS"
}
},
"ON_PREMISE": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "ON_PREMISE"
}
},
"ON_PREMISES": {
"target": "smithy.api#Unit",
"traits": {
Expand Down

0 comments on commit 52794ee

Please sign in to comment.