Skip to content

Commit ed33b00

Browse files
Update generated code (#1787)
update generated code
1 parent 74b61ed commit ed33b00

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
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.324.11"
3+
"${LATEST}": "3.325.0"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/Route53/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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 adds support for TLSA, SSHFP, SVCB, and HTTPS record types.
8+
59
## 2.4.0
610

711
### Added

src/Service/Route53/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"extra": {
3131
"branch-alias": {
32-
"dev-master": "2.4-dev"
32+
"dev-master": "2.5-dev"
3333
}
3434
}
3535
}

src/Service/Route53/src/Enum/RRType.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,17 @@ final class RRType
99
public const CAA = 'CAA';
1010
public const CNAME = 'CNAME';
1111
public const DS = 'DS';
12+
public const HTTPS = 'HTTPS';
1213
public const MX = 'MX';
1314
public const NAPTR = 'NAPTR';
1415
public const NS = 'NS';
1516
public const PTR = 'PTR';
1617
public const SOA = 'SOA';
1718
public const SPF = 'SPF';
1819
public const SRV = 'SRV';
20+
public const SSHFP = 'SSHFP';
21+
public const SVCB = 'SVCB';
22+
public const TLSA = 'TLSA';
1923
public const TXT = 'TXT';
2024

2125
public static function exists(string $value): bool
@@ -26,13 +30,17 @@ public static function exists(string $value): bool
2630
self::CAA => true,
2731
self::CNAME => true,
2832
self::DS => true,
33+
self::HTTPS => true,
2934
self::MX => true,
3035
self::NAPTR => true,
3136
self::NS => true,
3237
self::PTR => true,
3338
self::SOA => true,
3439
self::SPF => true,
3540
self::SRV => true,
41+
self::SSHFP => true,
42+
self::SVCB => true,
43+
self::TLSA => true,
3644
self::TXT => true,
3745
][$value]);
3846
}

src/Service/Route53/src/Enum/VPCRegion.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ final class VPCRegion
1818
public const AP_SOUTH_2 = 'ap-south-2';
1919
public const CA_CENTRAL_1 = 'ca-central-1';
2020
public const CA_WEST_1 = 'ca-west-1';
21+
public const CN_NORTHWEST_1 = 'cn-northwest-1';
2122
public const CN_NORTH_1 = 'cn-north-1';
2223
public const EU_CENTRAL_1 = 'eu-central-1';
2324
public const EU_CENTRAL_2 = 'eu-central-2';
@@ -58,6 +59,7 @@ public static function exists(string $value): bool
5859
self::AP_SOUTH_2 => true,
5960
self::CA_CENTRAL_1 => true,
6061
self::CA_WEST_1 => true,
62+
self::CN_NORTHWEST_1 => true,
6163
self::CN_NORTH_1 => true,
6264
self::EU_CENTRAL_1 => true,
6365
self::EU_CENTRAL_2 => true,

src/Service/Route53/src/ValueObject/ResourceRecordSet.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,15 @@ final class ResourceRecordSet
4747
* Resource Record Types [^1] in the *Amazon Route 53 Developer Guide*.
4848
*
4949
* Valid values for basic resource record sets: `A` | `AAAA` | `CAA` | `CNAME` | `DS` |`MX` | `NAPTR` | `NS` | `PTR` |
50-
* `SOA` | `SPF` | `SRV` | `TXT`
50+
* `SOA` | `SPF` | `SRV` | `TXT`| `TLSA`| `SSHFP`| `SVCB`| `HTTPS`
5151
*
5252
* Values for weighted, latency, geolocation, and failover resource record sets: `A` | `AAAA` | `CAA` | `CNAME` | `MX` |
53-
* `NAPTR` | `PTR` | `SPF` | `SRV` | `TXT`. When creating a group of weighted, latency, geolocation, or failover
54-
* resource record sets, specify the same value for all of the resource record sets in the group.
53+
* `NAPTR` | `PTR` | `SPF` | `SRV` | `TXT`| `TLSA`| `SSHFP`| `SVCB`| `HTTPS`. When creating a group of weighted,
54+
* latency, geolocation, or failover resource record sets, specify the same value for all of the resource record sets in
55+
* the group.
5556
*
5657
* Valid values for multivalue answer resource record sets: `A` | `AAAA` | `MX` | `NAPTR` | `PTR` | `SPF` | `SRV` |
57-
* `TXT`
58+
* `TXT`| `CAA`| `TLSA`| `SSHFP`| `SVCB`| `HTTPS`
5859
*
5960
* > SPF records were formerly used to verify the identity of the sender of email messages. However, we no longer
6061
* > recommend that you create resource record sets for which the value of `Type` is `SPF`. RFC 7208, *Sender Policy

0 commit comments

Comments
 (0)