Skip to content

Commit

Permalink
Release v1.43.27 (2022-03-28) (#4336)
Browse files Browse the repository at this point in the history
Release v1.43.27 (2022-03-28)
===

### Service Client Updates
* `service/acm-pca`: Updates service documentation
* `service/medialive`: Updates service API and documentation
  * This release adds support for selecting a maintenance window.
  • Loading branch information
aws-sdk-go-automation committed Mar 28, 2022
1 parent 7f50d86 commit 2093654
Show file tree
Hide file tree
Showing 11 changed files with 607 additions and 200 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Release v1.43.27 (2022-03-28)
===

### Service Client Updates
* `service/acm-pca`: Updates service documentation
* `service/medialive`: Updates service API and documentation
* This release adds support for selecting a maintenance window.

Release v1.43.26 (2022-03-25)
===

Expand Down
13 changes: 13 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.43.26"
const SDKVersion = "1.43.27"
70 changes: 35 additions & 35 deletions models/apis/acm-pca/2017-08-22/docs-2.json

Large diffs are not rendered by default.

107 changes: 107 additions & 0 deletions models/apis/medialive/2017-10-14/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3623,6 +3623,10 @@
"shape": "LogLevel",
"locationName": "logLevel"
},
"Maintenance": {
"shape": "MaintenanceStatus",
"locationName": "maintenance"
},
"Name": {
"shape": "__string",
"locationName": "name"
Expand Down Expand Up @@ -3737,6 +3741,10 @@
"shape": "LogLevel",
"locationName": "logLevel"
},
"Maintenance": {
"shape": "MaintenanceStatus",
"locationName": "maintenance"
},
"Name": {
"shape": "__string",
"locationName": "name"
Expand Down Expand Up @@ -3826,6 +3834,10 @@
"shape": "LogLevel",
"locationName": "logLevel"
},
"Maintenance": {
"shape": "MaintenanceCreateSettings",
"locationName": "maintenance"
},
"Name": {
"shape": "__string",
"locationName": "name"
Expand Down Expand Up @@ -3885,6 +3897,10 @@
"shape": "LogLevel",
"locationName": "logLevel"
},
"Maintenance": {
"shape": "MaintenanceCreateSettings",
"locationName": "maintenance"
},
"Name": {
"shape": "__string",
"locationName": "name"
Expand Down Expand Up @@ -4359,6 +4375,10 @@
"shape": "LogLevel",
"locationName": "logLevel"
},
"Maintenance": {
"shape": "MaintenanceStatus",
"locationName": "maintenance"
},
"Name": {
"shape": "__string",
"locationName": "name"
Expand Down Expand Up @@ -4710,6 +4730,10 @@
"shape": "LogLevel",
"locationName": "logLevel"
},
"Maintenance": {
"shape": "MaintenanceStatus",
"locationName": "maintenance"
},
"Name": {
"shape": "__string",
"locationName": "name"
Expand Down Expand Up @@ -9305,6 +9329,69 @@
"PASSTHROUGH"
]
},
"MaintenanceCreateSettings": {
"type": "structure",
"members": {
"MaintenanceDay": {
"shape": "MaintenanceDay",
"locationName": "maintenanceDay"
},
"MaintenanceStartTime": {
"shape": "__stringPattern010920300",
"locationName": "maintenanceStartTime"
}
}
},
"MaintenanceDay": {
"type": "string",
"enum": [
"MONDAY",
"TUESDAY",
"WEDNESDAY",
"THURSDAY",
"FRIDAY",
"SATURDAY",
"SUNDAY"
]
},
"MaintenanceStatus": {
"type": "structure",
"members": {
"MaintenanceDay": {
"shape": "MaintenanceDay",
"locationName": "maintenanceDay"
},
"MaintenanceDeadline": {
"shape": "__string",
"locationName": "maintenanceDeadline"
},
"MaintenanceScheduledDate": {
"shape": "__string",
"locationName": "maintenanceScheduledDate"
},
"MaintenanceStartTime": {
"shape": "__string",
"locationName": "maintenanceStartTime"
}
}
},
"MaintenanceUpdateSettings": {
"type": "structure",
"members": {
"MaintenanceDay": {
"shape": "MaintenanceDay",
"locationName": "maintenanceDay"
},
"MaintenanceScheduledDate": {
"shape": "__string",
"locationName": "maintenanceScheduledDate"
},
"MaintenanceStartTime": {
"shape": "__stringPattern010920300",
"locationName": "maintenanceStartTime"
}
}
},
"MaxResults": {
"type": "integer",
"min": 1,
Expand Down Expand Up @@ -11466,6 +11553,10 @@
"shape": "LogLevel",
"locationName": "logLevel"
},
"Maintenance": {
"shape": "MaintenanceStatus",
"locationName": "maintenance"
},
"Name": {
"shape": "__string",
"locationName": "name"
Expand Down Expand Up @@ -11696,6 +11787,10 @@
"shape": "LogLevel",
"locationName": "logLevel"
},
"Maintenance": {
"shape": "MaintenanceStatus",
"locationName": "maintenance"
},
"Name": {
"shape": "__string",
"locationName": "name"
Expand Down Expand Up @@ -12109,6 +12204,10 @@
"shape": "LogLevel",
"locationName": "logLevel"
},
"Maintenance": {
"shape": "MaintenanceUpdateSettings",
"locationName": "maintenance"
},
"Name": {
"shape": "__string",
"locationName": "name"
Expand Down Expand Up @@ -12198,6 +12297,10 @@
"shape": "LogLevel",
"locationName": "logLevel"
},
"Maintenance": {
"shape": "MaintenanceUpdateSettings",
"locationName": "maintenance"
},
"Name": {
"shape": "__string",
"locationName": "name"
Expand Down Expand Up @@ -13517,6 +13620,10 @@
"min": 6,
"max": 6
},
"__stringPattern010920300": {
"type": "string",
"pattern": "^([0,1]?[0-9]|2[0-3]):00$"
},
"__timestampIso8601": {
"type": "timestamp",
"timestampFormat": "iso8601"
Expand Down
48 changes: 44 additions & 4 deletions models/apis/medialive/2017-10-14/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2211,6 +2211,33 @@
"M3u8Settings$TimedMetadataBehavior": "When set to passthrough, timed metadata is passed through from input to output."
}
},
"MaintenanceCreateSettings": {
"base": null,
"refs": {
"CreateChannel$Maintenance": "Maintenance settings for this channel."
}
},
"MaintenanceDay": {
"base": "The currently selected maintenance day.",
"refs": {
"MaintenanceCreateSettings$MaintenanceDay": "Choose one day of the week for maintenance. The chosen day is used for all future maintenance windows.",
"MaintenanceStatus$MaintenanceDay": "The currently selected maintenance day.",
"MaintenanceUpdateSettings$MaintenanceDay": "Choose one day of the week for maintenance. The chosen day is used for all future maintenance windows."
}
},
"MaintenanceStatus": {
"base": null,
"refs": {
"Channel$Maintenance": "Maintenance settings for this channel.",
"ChannelSummary$Maintenance": "Maintenance settings for this channel."
}
},
"MaintenanceUpdateSettings": {
"base": null,
"refs": {
"UpdateChannel$Maintenance": "Maintenance settings for this channel."
}
},
"MediaConnectFlow": {
"base": "The settings for a MediaConnect Flow.",
"refs": {
Expand Down Expand Up @@ -3170,7 +3197,7 @@
"TtmlDestinationStyleControl": {
"base": "Ttml Destination Style Control",
"refs": {
"TtmlDestinationSettings$StyleControl": "When set to passthrough, passes through style and position information from a TTML-like input source (TTML, SMPTE-TT, CFF-TT) to the CFF-TT output or TTML output."
"TtmlDestinationSettings$StyleControl": "This field is not currently supported and will not affect the output styling. Leave the default value."
}
},
"UdpContainerSettings": {
Expand Down Expand Up @@ -4294,7 +4321,6 @@
"ArchiveOutputSettings$Extension": "Output file extension. If excluded, this will be auto-selected from the container type.",
"ArchiveOutputSettings$NameModifier": "String concatenated to the end of the destination filename. Required for multiple outputs of the same type.",
"AudioDescription$AudioSelectorName": "The name of the AudioSelector used as the source for this AudioDescription.",
"AudioDescription$Name": "The name of this AudioDescription. Outputs will use this name to uniquely identify this AudioDescription. Description names should be unique within this Live Event.",
"AudioDescription$StreamName": "Used for MS Smooth and Apple HLS outputs. Indicates the name displayed by the player (eg. English, or Director Commentary).",
"AudioLanguageSelection$LanguageCode": "Selects a specific three-letter language code from within an audio source.",
"AudioOnlyHlsSettings$AudioGroupId": "Specifies the group to which the audio Rendition belongs.",
Expand All @@ -4316,12 +4342,14 @@
"CaptionSelector$LanguageCode": "When specified this field indicates the three letter language code of the caption track to extract from the source.",
"Channel$Arn": "The unique arn of the channel.",
"Channel$Id": "The unique id of the channel.",
"Channel$MaintenanceStatus": "The time in milliseconds by when the PVRE restart must occur.",
"Channel$Name": "The name of the channel. (user-mutable)",
"Channel$RoleArn": "The Amazon Resource Name (ARN) of the role assumed when running the Channel.",
"ChannelConfigurationValidationError$Message": null,
"ChannelEgressEndpoint$SourceIp": "Public IP of where a channel's output comes from",
"ChannelSummary$Arn": "The unique arn of the channel.",
"ChannelSummary$Id": "The unique id of the channel.",
"ChannelSummary$MaintenanceStatus": "The time in milliseconds when the PVRE maintenance must occur by.",
"ChannelSummary$Name": "The name of the channel. (user-mutable)",
"ChannelSummary$RoleArn": "The Amazon Resource Name (ARN) of the role assumed when running the Channel.",
"ClaimDeviceRequest$Id": "The id of the device you want to claim.",
Expand All @@ -4337,6 +4365,7 @@
"CreateMultiplexProgram$ProgramName": "Name of multiplex program.",
"CreateMultiplexProgram$RequestId": "Unique request ID. This prevents retries from creating multiple\nresources.\n",
"CreatePartnerInput$RequestId": "Unique identifier of the request to ensure the request is handled\nexactly once in case of retries.\n",
"DescribeAnywhereSettings$ClusterName": "The name of the cluster that is the instance provider for the channel",
"DvbSubDestinationSettings$FontSize": "When set to auto fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.",
"EbuTtDDestinationSettings$FontFamily": "Specifies the font family to include in the font data attached to the EBU-TT captions. Valid only if styleControl is set to include. If you leave this field empty, the font family is set to \"monospaced\". (If styleControl is set to exclude, the font family is always set to \"monospaced\".)\n\nYou specify only the font family. All other style information (color, bold, position and so on) is copied from the input captions. The size is always set to 100% to allow the downstream player to choose the size.\n\n- Enter a list of font families, as a comma-separated list of font names, in order of preference. The name can be a font family (such as \u201cArial\u201d), or a generic font family (such as \u201cserif\u201d), or \u201cdefault\u201d (to let the downstream player choose the font).\n- Leave blank to set the family to \u201cmonospace\u201d.",
"FixedModeScheduleActionStartSettings$Time": "Start time for the action to start in the channel. (Not the time for the action to be added to the schedule: actions are always added to the schedule immediately.) UTC format: yyyy-mm-ddThh:mm:ss.nnnZ. All the letters are digits (for example, mm might be 01) except for the two constants \"T\" for time and \"Z\" for \"UTC format\".",
Expand Down Expand Up @@ -4431,6 +4460,10 @@
"M3u8Settings$Scte35Pid": "Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can be entered as a decimal or hexadecimal value.",
"M3u8Settings$TimedMetadataPid": "Packet Identifier (PID) of the timed metadata stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).",
"M3u8Settings$VideoPid": "Packet Identifier (PID) of the elementary video stream in the transport stream. Can be entered as a decimal or hexadecimal value.",
"MaintenanceStatus$MaintenanceDeadline": "Maintenance is required by the displayed date and time. Date and time is in ISO.",
"MaintenanceStatus$MaintenanceScheduledDate": "The currently scheduled maintenance date and time. Date and time is in ISO.",
"MaintenanceStatus$MaintenanceStartTime": "The currently selected maintenance start time. Time is in UTC.",
"MaintenanceUpdateSettings$MaintenanceScheduledDate": "Choose a specific date for maintenance to occur. The chosen date is used for the next maintenance window only.",
"MediaConnectFlow$FlowArn": "The unique ARN of the MediaConnect Flow being used as a source.",
"MediaConnectFlowRequest$FlowArn": "The ARN of the MediaConnect Flow that you want to use as a source.",
"MotionGraphicsActivateScheduleActionSettings$PasswordParam": "Key used to extract the password from EC2 Parameter store",
Expand Down Expand Up @@ -4516,7 +4549,7 @@
"__stringMax1000": {
"base": null,
"refs": {
"EbuTtDDestinationSettings$CopyrightHolder": "Applies only if you plan to convert these source captions to EBU-TT-D or TTML in an output. Complete this field if you want to include the name of the copyright holder in the copyright metadata tag in the TTML"
"EbuTtDDestinationSettings$CopyrightHolder": "Complete this field if you want to include the name of the copyright holder in the copyright tag in the captions metadata."
}
},
"__stringMax256": {
Expand All @@ -4529,7 +4562,7 @@
"__stringMax32": {
"base": null,
"refs": {
"OutputGroup$Name": "Custom output group name optionally defined by the user. Only letters, numbers, and the underscore character allowed; only 32 characters allowed."
"OutputGroup$Name": "Custom output group name optionally defined by the user."
}
},
"__stringMin1": {
Expand Down Expand Up @@ -4604,6 +4637,13 @@
"refs": {
"InputLossBehavior$InputLossImageColor": "When input loss image type is \"color\" this field specifies the color to use. Value: 6 hex characters representing the values of RGB."
}
},
"__stringPattern010920300": {
"base": null,
"refs": {
"MaintenanceCreateSettings$MaintenanceStartTime": "Choose the hour that maintenance will start. The chosen time is used for all future maintenance windows.",
"MaintenanceUpdateSettings$MaintenanceStartTime": "Choose the hour that maintenance will start. The chosen time is used for all future maintenance windows."
}
}
}
}
7 changes: 7 additions & 0 deletions models/endpoints/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -8851,7 +8851,9 @@
},
"profile" : {
"endpoints" : {
"af-south-1" : { },
"ap-northeast-1" : { },
"ap-northeast-2" : { },
"ap-southeast-1" : { },
"ap-southeast-2" : { },
"ca-central-1" : { },
Expand Down Expand Up @@ -17962,6 +17964,11 @@
"us-iso-east-1" : { }
}
},
"tagging" : {
"endpoints" : {
"us-iso-east-1" : { }
}
},
"transcribe" : {
"defaults" : {
"protocols" : [ "https" ]
Expand Down
Loading

0 comments on commit 2093654

Please sign in to comment.