Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.324.11"
"${LATEST}": "3.325.0"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/Route53/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: This release adds support for TLSA, SSHFP, SVCB, and HTTPS record types.

## 2.4.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Route53/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.4-dev"
"dev-master": "2.5-dev"
}
}
}
8 changes: 8 additions & 0 deletions src/Service/Route53/src/Enum/RRType.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@ final class RRType
public const CAA = 'CAA';
public const CNAME = 'CNAME';
public const DS = 'DS';
public const HTTPS = 'HTTPS';
public const MX = 'MX';
public const NAPTR = 'NAPTR';
public const NS = 'NS';
public const PTR = 'PTR';
public const SOA = 'SOA';
public const SPF = 'SPF';
public const SRV = 'SRV';
public const SSHFP = 'SSHFP';
public const SVCB = 'SVCB';
public const TLSA = 'TLSA';
public const TXT = 'TXT';

public static function exists(string $value): bool
Expand All @@ -26,13 +30,17 @@ public static function exists(string $value): bool
self::CAA => true,
self::CNAME => true,
self::DS => true,
self::HTTPS => true,
self::MX => true,
self::NAPTR => true,
self::NS => true,
self::PTR => true,
self::SOA => true,
self::SPF => true,
self::SRV => true,
self::SSHFP => true,
self::SVCB => true,
self::TLSA => true,
self::TXT => true,
][$value]);
}
Expand Down
2 changes: 2 additions & 0 deletions src/Service/Route53/src/Enum/VPCRegion.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ final class VPCRegion
public const AP_SOUTH_2 = 'ap-south-2';
public const CA_CENTRAL_1 = 'ca-central-1';
public const CA_WEST_1 = 'ca-west-1';
public const CN_NORTHWEST_1 = 'cn-northwest-1';
public const CN_NORTH_1 = 'cn-north-1';
public const EU_CENTRAL_1 = 'eu-central-1';
public const EU_CENTRAL_2 = 'eu-central-2';
Expand Down Expand Up @@ -58,6 +59,7 @@ public static function exists(string $value): bool
self::AP_SOUTH_2 => true,
self::CA_CENTRAL_1 => true,
self::CA_WEST_1 => true,
self::CN_NORTHWEST_1 => true,
self::CN_NORTH_1 => true,
self::EU_CENTRAL_1 => true,
self::EU_CENTRAL_2 => true,
Expand Down
9 changes: 5 additions & 4 deletions src/Service/Route53/src/ValueObject/ResourceRecordSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,15 @@ final class ResourceRecordSet
* Resource Record Types [^1] in the *Amazon Route 53 Developer Guide*.
*
* Valid values for basic resource record sets: `A` | `AAAA` | `CAA` | `CNAME` | `DS` |`MX` | `NAPTR` | `NS` | `PTR` |
* `SOA` | `SPF` | `SRV` | `TXT`
* `SOA` | `SPF` | `SRV` | `TXT`| `TLSA`| `SSHFP`| `SVCB`| `HTTPS`
*
* Values for weighted, latency, geolocation, and failover resource record sets: `A` | `AAAA` | `CAA` | `CNAME` | `MX` |
* `NAPTR` | `PTR` | `SPF` | `SRV` | `TXT`. When creating a group of weighted, latency, geolocation, or failover
* resource record sets, specify the same value for all of the resource record sets in the group.
* `NAPTR` | `PTR` | `SPF` | `SRV` | `TXT`| `TLSA`| `SSHFP`| `SVCB`| `HTTPS`. When creating a group of weighted,
* latency, geolocation, or failover resource record sets, specify the same value for all of the resource record sets in
* the group.
*
* Valid values for multivalue answer resource record sets: `A` | `AAAA` | `MX` | `NAPTR` | `PTR` | `SPF` | `SRV` |
* `TXT`
* `TXT`| `CAA`| `TLSA`| `SSHFP`| `SVCB`| `HTTPS`
*
* > SPF records were formerly used to verify the identity of the sender of email messages. However, we no longer
* > recommend that you create resource record sets for which the value of `Type` is `SPF`. RFC 7208, *Sender Policy
Expand Down
Loading