Skip to content

Commit 1f94f11

Browse files
Update generated code (#1557)
* update generated code * Update src/Service/Athena/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent e3d23da commit 1f94f11

20 files changed

+434
-8
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.279.2"
3+
"${LATEST}": "3.279.6"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/Athena/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- Allow passing explicit null values for optional fields of input objects
88

9+
### Added
10+
11+
- Added `il-central-1` region
12+
913
## 2.0.0
1014

1115
### BC-BREAK

src/Service/Athena/src/AthenaClient.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,7 @@ protected function getEndpointMetadata(?string $region): array
729729
case 'eu-west-1':
730730
case 'eu-west-2':
731731
case 'eu-west-3':
732+
case 'il-central-1':
732733
case 'me-central-1':
733734
case 'me-south-1':
734735
case 'sa-east-1':

src/Service/MediaConvert/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- Allow passing explicit null values for optional fields of input objects
88

9+
### Added
10+
11+
- AWS api-change: This release includes additional audio channel tags in Quicktime outputs, support for film grain synthesis for AV1 outputs, ability to create audio-only FLAC outputs, and ability to specify Amazon S3 destination storage class.
12+
913
## 0.1.1
1014

1115
### Added

src/Service/MediaConvert/src/Enum/AudioChannelTag.php

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,28 @@ final class AudioChannelTag
1010
{
1111
public const C = 'C';
1212
public const CS = 'CS';
13+
public const HI = 'HI';
1314
public const L = 'L';
1415
public const LC = 'LC';
1516
public const LFE = 'LFE';
17+
public const LFE2 = 'LFE2';
1618
public const LS = 'LS';
1719
public const LSD = 'LSD';
20+
public const LT = 'LT';
21+
public const LW = 'LW';
22+
public const M = 'M';
23+
public const NAR = 'NAR';
1824
public const R = 'R';
1925
public const RC = 'RC';
2026
public const RS = 'RS';
2127
public const RSD = 'RSD';
28+
public const RSL = 'RSL';
29+
public const RSR = 'RSR';
30+
public const RT = 'RT';
31+
public const RW = 'RW';
32+
public const TBC = 'TBC';
33+
public const TBL = 'TBL';
34+
public const TBR = 'TBR';
2235
public const TCS = 'TCS';
2336
public const VHC = 'VHC';
2437
public const VHL = 'VHL';
@@ -29,15 +42,28 @@ public static function exists(string $value): bool
2942
return isset([
3043
self::C => true,
3144
self::CS => true,
45+
self::HI => true,
3246
self::L => true,
3347
self::LC => true,
3448
self::LFE => true,
49+
self::LFE2 => true,
3550
self::LS => true,
3651
self::LSD => true,
52+
self::LT => true,
53+
self::LW => true,
54+
self::M => true,
55+
self::NAR => true,
3756
self::R => true,
3857
self::RC => true,
3958
self::RS => true,
4059
self::RSD => true,
60+
self::RSL => true,
61+
self::RSR => true,
62+
self::RT => true,
63+
self::RW => true,
64+
self::TBC => true,
65+
self::TBL => true,
66+
self::TBR => true,
4167
self::TCS => true,
4268
self::VHC => true,
4369
self::VHL => true,

src/Service/MediaConvert/src/Enum/AudioCodec.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ final class AudioCodec
1818
public const AIFF = 'AIFF';
1919
public const EAC3 = 'EAC3';
2020
public const EAC3_ATMOS = 'EAC3_ATMOS';
21+
public const FLAC = 'FLAC';
2122
public const MP2 = 'MP2';
2223
public const MP3 = 'MP3';
2324
public const OPUS = 'OPUS';
@@ -33,6 +34,7 @@ public static function exists(string $value): bool
3334
self::AIFF => true,
3435
self::EAC3 => true,
3536
self::EAC3_ATMOS => true,
37+
self::FLAC => true,
3638
self::MP2 => true,
3739
self::MP3 => true,
3840
self::OPUS => true,
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
namespace AsyncAws\MediaConvert\Enum;
4+
5+
/**
6+
* Film grain synthesis replaces film grain present in your content with similar quality synthesized AV1 film grain. We
7+
* recommend that you choose Enabled to reduce the bandwidth of your QVBR quality level 5, 6, 7, or 8 outputs. For QVBR
8+
* quality level 9 or 10 outputs we recommend that you keep the default value, Disabled. When you include Film grain
9+
* synthesis, you cannot include the Noise reducer preprocessor.
10+
*/
11+
final class Av1FilmGrainSynthesis
12+
{
13+
public const DISABLED = 'DISABLED';
14+
public const ENABLED = 'ENABLED';
15+
16+
public static function exists(string $value): bool
17+
{
18+
return isset([
19+
self::DISABLED => true,
20+
self::ENABLED => true,
21+
][$value]);
22+
}
23+
}
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
3+
namespace AsyncAws\MediaConvert\Enum;
4+
5+
/**
6+
* Specify the S3 storage class to use for this destination.
7+
*/
8+
final class S3StorageClass
9+
{
10+
public const DEEP_ARCHIVE = 'DEEP_ARCHIVE';
11+
public const GLACIER = 'GLACIER';
12+
public const INTELLIGENT_TIERING = 'INTELLIGENT_TIERING';
13+
public const ONEZONE_IA = 'ONEZONE_IA';
14+
public const REDUCED_REDUNDANCY = 'REDUCED_REDUNDANCY';
15+
public const STANDARD = 'STANDARD';
16+
public const STANDARD_IA = 'STANDARD_IA';
17+
18+
public static function exists(string $value): bool
19+
{
20+
return isset([
21+
self::DEEP_ARCHIVE => true,
22+
self::GLACIER => true,
23+
self::INTELLIGENT_TIERING => true,
24+
self::ONEZONE_IA => true,
25+
self::REDUCED_REDUNDANCY => true,
26+
self::STANDARD => true,
27+
self::STANDARD_IA => true,
28+
][$value]);
29+
}
30+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
3+
namespace AsyncAws\MediaConvert\Enum;
4+
5+
/**
6+
* Specify the initial presentation timestamp (PTS) offset for your transport stream output. To let MediaConvert
7+
* automatically determine the initial PTS offset: Keep the default value, Auto. We recommend that you choose Auto for
8+
* the widest player compatibility. The initial PTS will be at least two seconds and vary depending on your output's
9+
* bitrate, HRD buffer size and HRD buffer initial fill percentage. To manually specify an initial PTS offset: Choose
10+
* Seconds. Then specify the number of seconds with PTS offset.
11+
*/
12+
final class TsPtsOffset
13+
{
14+
public const AUTO = 'AUTO';
15+
public const SECONDS = 'SECONDS';
16+
17+
public static function exists(string $value): bool
18+
{
19+
return isset([
20+
self::AUTO => true,
21+
self::SECONDS => true,
22+
][$value]);
23+
}
24+
}

src/Service/MediaConvert/src/MediaConvertClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public function describeEndpoints($input = []): DescribeEndpointsResponse
150150
}
151151

152152
/**
153-
* Retrieve the JSON for a specific completed transcoding job.
153+
* Retrieve the JSON for a specific transcoding job.
154154
*
155155
* @see https://docs.aws.amazon.com/mediaconvert/latest/apireference/API_GetJob.html
156156
* @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-mediaconvert-2017-08-29.html#getjob

0 commit comments

Comments
 (0)