Skip to content

Commit

Permalink
Merge branch 'release-1.34.62'
Browse files Browse the repository at this point in the history
* release-1.34.62:
  Bumping version to 1.34.62
  Update to latest models
  Merge customizations for S3
  • Loading branch information
aws-sdk-python-automation committed Mar 13, 2024
2 parents be8b962 + 5d035e1 commit a57a928
Show file tree
Hide file tree
Showing 10 changed files with 457 additions and 145 deletions.
17 changes: 17 additions & 0 deletions .changes/1.34.62.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"category": "``ivs-realtime``",
"description": "adds support for multiple new composition layout configuration options (grid, pip)",
"type": "api-change"
},
{
"category": "``kinesisanalyticsv2``",
"description": "Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs.",
"type": "api-change"
},
{
"category": "``s3``",
"description": "This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT).",
"type": "api-change"
}
]
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
CHANGELOG
=========

1.34.62
=======

* api-change:``ivs-realtime``: adds support for multiple new composition layout configuration options (grid, pip)
* api-change:``kinesisanalyticsv2``: Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs.
* api-change:``s3``: This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT).


1.34.61
=======

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.34.61'
__version__ = '1.34.62'


class NullHandler(logging.Handler):
Expand Down
118 changes: 118 additions & 0 deletions botocore/data/ivs-realtime/2020-07-14/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1242,10 +1242,30 @@
"featuredParticipantAttribute":{
"shape":"AttributeKey",
"documentation":"<p>This attribute name identifies the featured slot. A participant with this attribute set to <code>\"true\"</code> (as a string value) in <a>ParticipantTokenConfiguration</a> is placed in the featured slot.</p>"
},
"gridGap":{
"shape":"GridGap",
"documentation":"<p>Specifies the spacing between participant tiles in pixels. Default: <code>2</code>.</p>"
},
"omitStoppedVideo":{
"shape":"OmitStoppedVideo",
"documentation":"<p>Determines whether to omit participants with stopped video in the composition. Default: <code>false</code>.</p>"
},
"videoAspectRatio":{
"shape":"VideoAspectRatio",
"documentation":"<p>Sets the non-featured participant display mode. Default: <code>VIDEO</code>.</p>"
},
"videoFillMode":{
"shape":"VideoFillMode",
"documentation":"<p>Defines how video fits within the participant tile. When not set, <code>videoFillMode</code> defaults to <code>COVER</code> fill mode for participants in the grid and to <code>CONTAIN</code> fill mode for featured participants.</p>"
}
},
"documentation":"<p>Configuration information specific to Grid layout, for server-side composition. See \"Layouts\" in <a href=\"https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/server-side-composition.html\">Server-Side Composition</a>.</p>"
},
"GridGap":{
"type":"integer",
"min":0
},
"Height":{
"type":"integer",
"box":true,
Expand All @@ -1271,6 +1291,10 @@
"grid":{
"shape":"GridConfiguration",
"documentation":"<p>Configuration related to grid layout. Default: Grid layout.</p>"
},
"pip":{
"shape":"PipConfiguration",
"documentation":"<p>Configuration related to PiP layout.</p>"
}
},
"documentation":"<p>Configuration information of supported layouts for server-side composition.</p>"
Expand Down Expand Up @@ -1582,6 +1606,7 @@
"max":100,
"min":1
},
"OmitStoppedVideo":{"type":"boolean"},
"PaginationToken":{
"type":"string",
"max":1024,
Expand Down Expand Up @@ -1815,6 +1840,82 @@
},
"exception":true
},
"PipBehavior":{
"type":"string",
"enum":[
"STATIC",
"DYNAMIC"
]
},
"PipConfiguration":{
"type":"structure",
"members":{
"featuredParticipantAttribute":{
"shape":"AttributeKey",
"documentation":"<p>This attribute name identifies the featured slot. A participant with this attribute set to <code>\"true\"</code> (as a string value) in <a>ParticipantTokenConfiguration</a> is placed in the featured slot.</p>"
},
"gridGap":{
"shape":"GridGap",
"documentation":"<p>Specifies the spacing between participant tiles in pixels. Default: <code>0</code>.</p>"
},
"omitStoppedVideo":{
"shape":"OmitStoppedVideo",
"documentation":"<p>Determines whether to omit participants with stopped video in the composition. Default: <code>false</code>.</p>"
},
"pipBehavior":{
"shape":"PipBehavior",
"documentation":"<p>Defines PiP behavior when all participants have left. Default: <code>STATIC</code>.</p>"
},
"pipHeight":{
"shape":"PipHeight",
"documentation":"<p>Specifies the height of the PiP window in pixels. When this is not set explicitly, <code>pipHeight</code>’s value will be based on the size of the composition and the aspect ratio of the participant’s video.</p>"
},
"pipOffset":{
"shape":"PipOffset",
"documentation":"<p>Sets the PiP window’s offset position in pixels from the closest edges determined by <code>PipPosition</code>. Default: <code>0</code>.</p>"
},
"pipParticipantAttribute":{
"shape":"AttributeKey",
"documentation":"<p>Identifies the PiP slot. A participant with this attribute set to <code>\"true\"</code> (as a string value) in <a>ParticipantTokenConfiguration</a> is placed in the PiP slot.</p>"
},
"pipPosition":{
"shape":"PipPosition",
"documentation":"<p>Determines the corner position of the PiP window. Default: <code>BOTTOM_RIGHT</code>.</p>"
},
"pipWidth":{
"shape":"PipWidth",
"documentation":"<p>Specifies the width of the PiP window in pixels. When this is not set explicitly, <code>pipWidth</code>’s value will be based on the size of the composition and the aspect ratio of the participant’s video.</p>"
},
"videoFillMode":{
"shape":"VideoFillMode",
"documentation":"<p>Defines how video fits within the participant tile. Default: <code>COVER</code>. </p>"
}
},
"documentation":"<p>Configuration information specific to Picture-in-Picture (PiP) layout, for <a href=\"https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/server-side-composition.html\">server-side composition</a>. </p>"
},
"PipHeight":{
"type":"integer",
"box":true,
"min":1
},
"PipOffset":{
"type":"integer",
"min":0
},
"PipPosition":{
"type":"string",
"enum":[
"TOP_LEFT",
"TOP_RIGHT",
"BOTTOM_LEFT",
"BOTTOM_RIGHT"
]
},
"PipWidth":{
"type":"integer",
"box":true,
"min":1
},
"Published":{"type":"boolean"},
"RecordingConfiguration":{
"type":"structure",
Expand Down Expand Up @@ -2283,6 +2384,23 @@
},
"documentation":"<p>Settings for video.</p>"
},
"VideoAspectRatio":{
"type":"string",
"enum":[
"AUTO",
"VIDEO",
"SQUARE",
"PORTRAIT"
]
},
"VideoFillMode":{
"type":"string",
"enum":[
"FILL",
"COVER",
"CONTAIN"
]
},
"Width":{
"type":"integer",
"box":true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
]
}
],
"type": "tree",
"rules": [
{
"conditions": [
Expand Down Expand Up @@ -83,7 +82,8 @@
},
"type": "endpoint"
}
]
],
"type": "tree"
},
{
"conditions": [
Expand All @@ -96,7 +96,6 @@
]
}
],
"type": "tree",
"rules": [
{
"conditions": [
Expand All @@ -110,7 +109,6 @@
"assign": "PartitionResult"
}
],
"type": "tree",
"rules": [
{
"conditions": [
Expand All @@ -133,7 +131,6 @@
]
}
],
"type": "tree",
"rules": [
{
"conditions": [
Expand Down Expand Up @@ -168,7 +165,6 @@
]
}
],
"type": "tree",
"rules": [
{
"conditions": [],
Expand All @@ -179,14 +175,16 @@
},
"type": "endpoint"
}
]
],
"type": "tree"
},
{
"conditions": [],
"error": "FIPS and DualStack are enabled, but this partition does not support one or both",
"type": "error"
}
]
],
"type": "tree"
},
{
"conditions": [
Expand All @@ -200,14 +198,12 @@
]
}
],
"type": "tree",
"rules": [
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
true,
{
"fn": "getAttr",
"argv": [
Expand All @@ -216,11 +212,11 @@
},
"supportsFIPS"
]
}
},
true
]
}
],
"type": "tree",
"rules": [
{
"conditions": [],
Expand All @@ -231,14 +227,16 @@
},
"type": "endpoint"
}
]
],
"type": "tree"
},
{
"conditions": [],
"error": "FIPS is enabled but this partition does not support FIPS",
"type": "error"
}
]
],
"type": "tree"
},
{
"conditions": [
Expand All @@ -252,7 +250,6 @@
]
}
],
"type": "tree",
"rules": [
{
"conditions": [
Expand All @@ -272,7 +269,6 @@
]
}
],
"type": "tree",
"rules": [
{
"conditions": [],
Expand All @@ -283,14 +279,16 @@
},
"type": "endpoint"
}
]
],
"type": "tree"
},
{
"conditions": [],
"error": "DualStack is enabled but this partition does not support DualStack",
"type": "error"
}
]
],
"type": "tree"
},
{
"conditions": [],
Expand All @@ -301,9 +299,11 @@
},
"type": "endpoint"
}
]
],
"type": "tree"
}
]
],
"type": "tree"
},
{
"conditions": [],
Expand Down
Loading

0 comments on commit a57a928

Please sign in to comment.