Skip to content

Commit cbcd815

Browse files
committed
update generated code
1 parent f2a442b commit cbcd815

15 files changed

+341
-15
lines changed

manifest.json

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

src/Service/AppSync/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: TODO
8+
59
## 3.1.1
610

711
### Changed

src/Service/AppSync/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"extra": {
3030
"branch-alias": {
31-
"dev-master": "3.1-dev"
31+
"dev-master": "3.2-dev"
3232
}
3333
}
3434
}

src/Service/AppSync/src/AppSyncClient.php

+36-6
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
use AsyncAws\Core\AwsError\AwsErrorFactoryInterface;
4747
use AsyncAws\Core\AwsError\JsonRestAwsErrorFactory;
4848
use AsyncAws\Core\Configuration;
49+
use AsyncAws\Core\Exception\UnsupportedRegion;
4950
use AsyncAws\Core\RequestContext;
5051

5152
class AppSyncClient extends AbstractApi
@@ -395,6 +396,40 @@ protected function getEndpointMetadata(?string $region): array
395396
}
396397

397398
switch ($region) {
399+
case 'af-south-1':
400+
case 'ap-east-1':
401+
case 'ap-northeast-1':
402+
case 'ap-northeast-2':
403+
case 'ap-northeast-3':
404+
case 'ap-south-1':
405+
case 'ap-south-2':
406+
case 'ap-southeast-1':
407+
case 'ap-southeast-2':
408+
case 'ap-southeast-3':
409+
case 'ap-southeast-4':
410+
case 'ca-central-1':
411+
case 'eu-central-1':
412+
case 'eu-central-2':
413+
case 'eu-north-1':
414+
case 'eu-south-1':
415+
case 'eu-south-2':
416+
case 'eu-west-1':
417+
case 'eu-west-2':
418+
case 'eu-west-3':
419+
case 'il-central-1':
420+
case 'me-central-1':
421+
case 'me-south-1':
422+
case 'sa-east-1':
423+
case 'us-east-1':
424+
case 'us-east-2':
425+
case 'us-west-1':
426+
case 'us-west-2':
427+
return [
428+
'endpoint' => "https://appsync.$region.amazonaws.com",
429+
'signRegion' => $region,
430+
'signService' => 'appsync',
431+
'signVersions' => ['v4'],
432+
];
398433
case 'cn-north-1':
399434
case 'cn-northwest-1':
400435
return [
@@ -405,11 +440,6 @@ protected function getEndpointMetadata(?string $region): array
405440
];
406441
}
407442

408-
return [
409-
'endpoint' => "https://appsync.$region.amazonaws.com",
410-
'signRegion' => $region,
411-
'signService' => 'appsync',
412-
'signVersions' => ['v4'],
413-
];
443+
throw new UnsupportedRegion(\sprintf('The region "%s" is not supported by "AppSync".', $region));
414444
}
415445
}

src/Service/Route53/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: Added us-gov-east-1 and us-gov-west-1 as valid Latency Based Routing regions for change-resource-record-sets.
8+
59
## 2.8.0
610

711
### Added

src/Service/Route53/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"extra": {
3131
"branch-alias": {
32-
"dev-master": "2.8-dev"
32+
"dev-master": "2.9-dev"
3333
}
3434
}
3535
}

src/Service/Route53/src/Enum/ResourceRecordSetRegion.php

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ final class ResourceRecordSetRegion
3636
public const SA_EAST_1 = 'sa-east-1';
3737
public const US_EAST_1 = 'us-east-1';
3838
public const US_EAST_2 = 'us-east-2';
39+
public const US_GOV_EAST_1 = 'us-gov-east-1';
40+
public const US_GOV_WEST_1 = 'us-gov-west-1';
3941
public const US_WEST_1 = 'us-west-1';
4042
public const US_WEST_2 = 'us-west-2';
4143

@@ -74,6 +76,8 @@ public static function exists(string $value): bool
7476
self::SA_EAST_1 => true,
7577
self::US_EAST_1 => true,
7678
self::US_EAST_2 => true,
79+
self::US_GOV_EAST_1 => true,
80+
self::US_GOV_WEST_1 => true,
7781
self::US_WEST_1 => true,
7882
self::US_WEST_2 => true,
7983
][$value]);

src/Service/Ses/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: This release enables customers to provide attachments in the SESv2 SendEmail and SendBulkEmail APIs.
8+
59
## 1.11.0
610

711
### Added

src/Service/Ses/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"extra": {
2929
"branch-alias": {
30-
"dev-master": "1.11-dev"
30+
"dev-master": "1.12-dev"
3131
}
3232
}
3333
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace AsyncAws\Ses\Enum;
4+
5+
final class AttachmentContentDisposition
6+
{
7+
public const ATTACHMENT = 'ATTACHMENT';
8+
public const INLINE = 'INLINE';
9+
10+
public static function exists(string $value): bool
11+
{
12+
return isset([
13+
self::ATTACHMENT => true,
14+
self::INLINE => true,
15+
][$value]);
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
namespace AsyncAws\Ses\Enum;
4+
5+
final class AttachmentContentTransferEncoding
6+
{
7+
public const BASE64 = 'BASE64';
8+
public const QUOTED_PRINTABLE = 'QUOTED_PRINTABLE';
9+
public const SEVEN_BIT = 'SEVEN_BIT';
10+
11+
public static function exists(string $value): bool
12+
{
13+
return isset([
14+
self::BASE64 => true,
15+
self::QUOTED_PRINTABLE => true,
16+
self::SEVEN_BIT => true,
17+
][$value]);
18+
}
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
<?php
2+
3+
namespace AsyncAws\Ses\ValueObject;
4+
5+
use AsyncAws\Core\Exception\InvalidArgument;
6+
use AsyncAws\Ses\Enum\AttachmentContentDisposition;
7+
use AsyncAws\Ses\Enum\AttachmentContentTransferEncoding;
8+
9+
/**
10+
* Contains metadata and attachment raw content.
11+
*/
12+
final class Attachment
13+
{
14+
/**
15+
* The raw data of the attachment. It needs to be base64-encoded if you are accessing Amazon SES directly through the
16+
* HTTPS interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base
17+
* 64-encoding for you.
18+
*
19+
* @var string
20+
*/
21+
private $rawContent;
22+
23+
/**
24+
* A standard descriptor indicating how the attachment should be rendered in the email. Supported values: `ATTACHMENT`
25+
* or `INLINE`.
26+
*
27+
* @var AttachmentContentDisposition::*|null
28+
*/
29+
private $contentDisposition;
30+
31+
/**
32+
* The file name for the attachment as it will appear in the email. Amazon SES restricts certain file extensions. To
33+
* ensure attachments are accepted, check the Unsupported attachment types [^1] in the Amazon SES Developer Guide.
34+
*
35+
* [^1]: https://docs.aws.amazon.com/ses/latest/dg/mime-types.html
36+
*
37+
* @var string
38+
*/
39+
private $fileName;
40+
41+
/**
42+
* A brief description of the attachment content.
43+
*
44+
* @var string|null
45+
*/
46+
private $contentDescription;
47+
48+
/**
49+
* Unique identifier for the attachment, used for referencing attachments with INLINE disposition in HTML content.
50+
*
51+
* @var string|null
52+
*/
53+
private $contentId;
54+
55+
/**
56+
* Specifies how the attachment is encoded. Supported values: `BASE64`, `QUOTED_PRINTABLE`, `SEVEN_BIT`.
57+
*
58+
* @var AttachmentContentTransferEncoding::*|null
59+
*/
60+
private $contentTransferEncoding;
61+
62+
/**
63+
* The MIME type of the attachment.
64+
*
65+
* > Example: `application/pdf`, `image/jpeg`
66+
*
67+
* @var string|null
68+
*/
69+
private $contentType;
70+
71+
/**
72+
* @param array{
73+
* RawContent: string,
74+
* ContentDisposition?: null|AttachmentContentDisposition::*,
75+
* FileName: string,
76+
* ContentDescription?: null|string,
77+
* ContentId?: null|string,
78+
* ContentTransferEncoding?: null|AttachmentContentTransferEncoding::*,
79+
* ContentType?: null|string,
80+
* } $input
81+
*/
82+
public function __construct(array $input)
83+
{
84+
$this->rawContent = $input['RawContent'] ?? $this->throwException(new InvalidArgument('Missing required field "RawContent".'));
85+
$this->contentDisposition = $input['ContentDisposition'] ?? null;
86+
$this->fileName = $input['FileName'] ?? $this->throwException(new InvalidArgument('Missing required field "FileName".'));
87+
$this->contentDescription = $input['ContentDescription'] ?? null;
88+
$this->contentId = $input['ContentId'] ?? null;
89+
$this->contentTransferEncoding = $input['ContentTransferEncoding'] ?? null;
90+
$this->contentType = $input['ContentType'] ?? null;
91+
}
92+
93+
/**
94+
* @param array{
95+
* RawContent: string,
96+
* ContentDisposition?: null|AttachmentContentDisposition::*,
97+
* FileName: string,
98+
* ContentDescription?: null|string,
99+
* ContentId?: null|string,
100+
* ContentTransferEncoding?: null|AttachmentContentTransferEncoding::*,
101+
* ContentType?: null|string,
102+
* }|Attachment $input
103+
*/
104+
public static function create($input): self
105+
{
106+
return $input instanceof self ? $input : new self($input);
107+
}
108+
109+
public function getContentDescription(): ?string
110+
{
111+
return $this->contentDescription;
112+
}
113+
114+
/**
115+
* @return AttachmentContentDisposition::*|null
116+
*/
117+
public function getContentDisposition(): ?string
118+
{
119+
return $this->contentDisposition;
120+
}
121+
122+
public function getContentId(): ?string
123+
{
124+
return $this->contentId;
125+
}
126+
127+
/**
128+
* @return AttachmentContentTransferEncoding::*|null
129+
*/
130+
public function getContentTransferEncoding(): ?string
131+
{
132+
return $this->contentTransferEncoding;
133+
}
134+
135+
public function getContentType(): ?string
136+
{
137+
return $this->contentType;
138+
}
139+
140+
public function getFileName(): string
141+
{
142+
return $this->fileName;
143+
}
144+
145+
public function getRawContent(): string
146+
{
147+
return $this->rawContent;
148+
}
149+
150+
/**
151+
* @internal
152+
*/
153+
public function requestBody(): array
154+
{
155+
$payload = [];
156+
$v = $this->rawContent;
157+
$payload['RawContent'] = base64_encode($v);
158+
if (null !== $v = $this->contentDisposition) {
159+
if (!AttachmentContentDisposition::exists($v)) {
160+
throw new InvalidArgument(\sprintf('Invalid parameter "ContentDisposition" for "%s". The value "%s" is not a valid "AttachmentContentDisposition".', __CLASS__, $v));
161+
}
162+
$payload['ContentDisposition'] = $v;
163+
}
164+
$v = $this->fileName;
165+
$payload['FileName'] = $v;
166+
if (null !== $v = $this->contentDescription) {
167+
$payload['ContentDescription'] = $v;
168+
}
169+
if (null !== $v = $this->contentId) {
170+
$payload['ContentId'] = $v;
171+
}
172+
if (null !== $v = $this->contentTransferEncoding) {
173+
if (!AttachmentContentTransferEncoding::exists($v)) {
174+
throw new InvalidArgument(\sprintf('Invalid parameter "ContentTransferEncoding" for "%s". The value "%s" is not a valid "AttachmentContentTransferEncoding".', __CLASS__, $v));
175+
}
176+
$payload['ContentTransferEncoding'] = $v;
177+
}
178+
if (null !== $v = $this->contentType) {
179+
$payload['ContentType'] = $v;
180+
}
181+
182+
return $payload;
183+
}
184+
185+
/**
186+
* @return never
187+
*/
188+
private function throwException(\Throwable $exception)
189+
{
190+
throw $exception;
191+
}
192+
}

src/Service/Ses/src/ValueObject/EmailContent.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
namespace AsyncAws\Ses\ValueObject;
44

55
/**
6-
* An object that defines the entire content of the email, including the message headers and the body content. You can
7-
* create a simple email message, in which you specify the subject and the text and HTML versions of the message body.
8-
* You can also create raw messages, in which you specify a complete MIME-formatted message. Raw messages can include
9-
* attachments and custom headers.
6+
* An object that defines the entire content of the email, including the message headers, body content, and attachments.
7+
* For a simple email message, you specify the subject and provide both text and HTML versions of the message body. You
8+
* can also add attachments to simple and templated messages. For a raw message, you provide a complete MIME-formatted
9+
* message, which can include custom headers and attachments.
1010
*/
1111
final class EmailContent
1212
{
1313
/**
14-
* The simple email message. The message consists of a subject and a message body.
14+
* The simple email message. The message consists of a subject, message body and attachments list.
1515
*
1616
* @var Message|null
1717
*/

0 commit comments

Comments
 (0)