Skip to content

Commit

Permalink
Update models for release
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-php-automation committed May 19, 2023
1 parent 7ca74fd commit 69266e9
Show file tree
Hide file tree
Showing 44 changed files with 4,134 additions and 360 deletions.
22 changes: 22 additions & 0 deletions .changes/3.270.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "api-change",
"category": "ConnectCases",
"description": "This release adds the ability to create fields with type Url through the CreateField API. For more information see https:\/\/docs.aws.amazon.com\/cases\/latest\/APIReference\/Welcome.html"
},
{
"type": "api-change",
"category": "Backup",
"description": "Add ResourceArn, ResourceType, and BackupVaultName to ListRecoveryPointsByLegalHold API response."
},
{
"type": "api-change",
"category": "SESv2",
"description": "This release allows customers to update scaling mode property of dedicated IP pools with PutDedicatedIpPoolScalingAttributes call."
},
{
"type": "feature",
"category": "MediaPackageV2",
"description": "Adds support for the MediaPackage Live v2 API"
}
]
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGELOG

## next release

* `Aws\Backup` - Add ResourceArn, ResourceType, and BackupVaultName to ListRecoveryPointsByLegalHold API response.
* `Aws\ConnectCases` - This release adds the ability to create fields with type Url through the CreateField API. For more information see https://docs.aws.amazon.com/cases/latest/APIReference/Welcome.html
* `Aws\MediaPackageV2` - Adds support for the MediaPackage Live v2 API
* `Aws\SESv2` - This release allows customers to update scaling mode property of dedicated IP pools with PutDedicatedIpPoolScalingAttributes call.

## 3.269.14 - 2023-05-18

* `Aws\Athena` - Removing SparkProperties from EngineConfiguration object for StartSession API call
Expand Down
9 changes: 9 additions & 0 deletions src/MediaPackageV2/Exception/MediaPackageV2Exception.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php
namespace Aws\MediaPackageV2\Exception;

use Aws\Exception\AwsException;

/**
* Represents an error interacting with the **AWS Elemental MediaPackage v2** service.
*/
class MediaPackageV2Exception extends AwsException {}
57 changes: 57 additions & 0 deletions src/MediaPackageV2/MediaPackageV2Client.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<?php
namespace Aws\MediaPackageV2;

use Aws\AwsClient;

/**
* This client is used to interact with the **AWS Elemental MediaPackage v2** service.
* @method \Aws\Result createChannel(array $args = [])
* @method \GuzzleHttp\Promise\Promise createChannelAsync(array $args = [])
* @method \Aws\Result createChannelGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise createChannelGroupAsync(array $args = [])
* @method \Aws\Result createOriginEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise createOriginEndpointAsync(array $args = [])
* @method \Aws\Result deleteChannel(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteChannelAsync(array $args = [])
* @method \Aws\Result deleteChannelGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteChannelGroupAsync(array $args = [])
* @method \Aws\Result deleteChannelPolicy(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteChannelPolicyAsync(array $args = [])
* @method \Aws\Result deleteOriginEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteOriginEndpointAsync(array $args = [])
* @method \Aws\Result deleteOriginEndpointPolicy(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteOriginEndpointPolicyAsync(array $args = [])
* @method \Aws\Result getChannel(array $args = [])
* @method \GuzzleHttp\Promise\Promise getChannelAsync(array $args = [])
* @method \Aws\Result getChannelGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise getChannelGroupAsync(array $args = [])
* @method \Aws\Result getChannelPolicy(array $args = [])
* @method \GuzzleHttp\Promise\Promise getChannelPolicyAsync(array $args = [])
* @method \Aws\Result getOriginEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise getOriginEndpointAsync(array $args = [])
* @method \Aws\Result getOriginEndpointPolicy(array $args = [])
* @method \GuzzleHttp\Promise\Promise getOriginEndpointPolicyAsync(array $args = [])
* @method \Aws\Result listChannelGroups(array $args = [])
* @method \GuzzleHttp\Promise\Promise listChannelGroupsAsync(array $args = [])
* @method \Aws\Result listChannels(array $args = [])
* @method \GuzzleHttp\Promise\Promise listChannelsAsync(array $args = [])
* @method \Aws\Result listOriginEndpoints(array $args = [])
* @method \GuzzleHttp\Promise\Promise listOriginEndpointsAsync(array $args = [])
* @method \Aws\Result listTagsForResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
* @method \Aws\Result putChannelPolicy(array $args = [])
* @method \GuzzleHttp\Promise\Promise putChannelPolicyAsync(array $args = [])
* @method \Aws\Result putOriginEndpointPolicy(array $args = [])
* @method \GuzzleHttp\Promise\Promise putOriginEndpointPolicyAsync(array $args = [])
* @method \Aws\Result tagResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
* @method \Aws\Result untagResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
* @method \Aws\Result updateChannel(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateChannelAsync(array $args = [])
* @method \Aws\Result updateChannelGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateChannelGroupAsync(array $args = [])
* @method \Aws\Result updateOriginEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateOriginEndpointAsync(array $args = [])
*/
class MediaPackageV2Client extends AwsClient {}
2 changes: 2 additions & 0 deletions src/Sdk.php
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,8 @@
* @method \Aws\MultiRegionClient createMultiRegionMediaLive(array $args = [])
* @method \Aws\MediaPackage\MediaPackageClient createMediaPackage(array $args = [])
* @method \Aws\MultiRegionClient createMultiRegionMediaPackage(array $args = [])
* @method \Aws\MediaPackageV2\MediaPackageV2Client createMediaPackageV2(array $args = [])
* @method \Aws\MultiRegionClient createMultiRegionMediaPackageV2(array $args = [])
* @method \Aws\MediaPackageVod\MediaPackageVodClient createMediaPackageVod(array $args = [])
* @method \Aws\MultiRegionClient createMultiRegionMediaPackageVod(array $args = [])
* @method \Aws\MediaStore\MediaStoreClient createMediaStore(array $args = [])
Expand Down
2 changes: 2 additions & 0 deletions src/SesV2/SesV2Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@
* @method \GuzzleHttp\Promise\Promise putConfigurationSetVdmOptionsAsync(array $args = [])
* @method \Aws\Result putDedicatedIpInPool(array $args = [])
* @method \GuzzleHttp\Promise\Promise putDedicatedIpInPoolAsync(array $args = [])
* @method \Aws\Result putDedicatedIpPoolScalingAttributes(array $args = [])
* @method \GuzzleHttp\Promise\Promise putDedicatedIpPoolScalingAttributesAsync(array $args = [])
* @method \Aws\Result putDedicatedIpWarmupAttributes(array $args = [])
* @method \GuzzleHttp\Promise\Promise putDedicatedIpWarmupAttributesAsync(array $args = [])
* @method \Aws\Result putDeliverabilityDashboardOption(array $args = [])
Expand Down
5 changes: 4 additions & 1 deletion src/data/backup/2018-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3250,7 +3250,10 @@
"RecoveryPointMember":{
"type":"structure",
"members":{
"RecoveryPointArn":{"shape":"ARN"}
"RecoveryPointArn":{"shape":"ARN"},
"ResourceArn":{"shape":"ARN"},
"ResourceType":{"shape":"ResourceType"},
"BackupVaultName":{"shape":"BackupVaultName"}
}
},
"RecoveryPointSelection":{
Expand Down
2 changes: 1 addition & 1 deletion src/data/backup/2018-11-15/api-2.json.php

Large diffs are not rendered by default.

11 changes: 7 additions & 4 deletions src/data/backup/2018-11-15/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@
"RecoveryPointByResource$ParentRecoveryPointArn": "<p>This is the Amazon Resource Name (ARN) of the parent (composite) recovery point.</p>",
"RecoveryPointCreator$BackupPlanArn": "<p>An Amazon Resource Name (ARN) that uniquely identifies a backup plan; for example, <code>arn:aws:backup:us-east-1:123456789012:plan:8F81F553-3A74-4A3F-B93D-B3360DC80C50</code>.</p>",
"RecoveryPointMember$RecoveryPointArn": "<p>This is the Amazon Resource Name (ARN) of the parent (composite) recovery point.</p>",
"RecoveryPointMember$ResourceArn": "<p>This is the Amazon Resource Name (ARN) that uniquely identifies a saved resource.</p>",
"ReportJob$ReportPlanArn": "<p>An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.</p>",
"ReportPlan$ReportPlanArn": "<p>An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.</p>",
"ResourceArns$member": null,
Expand Down Expand Up @@ -417,6 +418,7 @@
"PutBackupVaultNotificationsInput$BackupVaultName": "<p>The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.</p>",
"RecoveryPointByBackupVault$BackupVaultName": "<p>The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.</p>",
"RecoveryPointByResource$BackupVaultName": "<p>The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.</p>",
"RecoveryPointMember$BackupVaultName": "<p>This is the name of the backup vault (the logical container in which backups are stored).</p>",
"StartBackupJobInput$BackupVaultName": "<p>The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.</p>",
"StartCopyJobInput$SourceBackupVaultName": "<p>The name of a logical source container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.</p>",
"UpdateRecoveryPointLifecycleInput$BackupVaultName": "<p>The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.</p>"
Expand Down Expand Up @@ -1543,11 +1545,12 @@
"ListRecoveryPointsByBackupVaultInput$ByResourceType": "<p>Returns only recovery points that match the specified resource type.</p>",
"ProtectedResource$ResourceType": "<p>The type of Amazon Web Services resource; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database. For Windows Volume Shadow Copy Service (VSS) backups, the only supported resource type is Amazon EC2.</p>",
"RecoveryPointByBackupVault$ResourceType": "<p>The type of Amazon Web Services resource saved as a recovery point; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database. For Windows Volume Shadow Copy Service (VSS) backups, the only supported resource type is Amazon EC2.</p>",
"RecoveryPointMember$ResourceType": "<p>This is the Amazon Web Services resource type that is saved as a recovery point.</p>",
"ResourceTypeManagementPreference$key": null,
"ResourceTypeOptInPreference$key": null,
"ResourceTypes$member": null,
"RestoreJobsListMember$ResourceType": "<p>The resource type of the listed restore jobs; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database. For Windows Volume Shadow Copy Service (VSS) backups, the only supported resource type is Amazon EC2.</p>",
"StartRestoreJobInput$ResourceType": "<p>Starts a job to restore a recovery point for one of the following resources:</p> <ul> <li> <p> <code>Aurora</code> for Amazon Aurora</p> </li> <li> <p> <code>DocumentDB</code> for Amazon DocumentDB (with MongoDB compatibility)</p> </li> <li> <p> <code>DynamoDB</code> for Amazon DynamoDB</p> </li> <li> <p> <code>EBS</code> for Amazon Elastic Block Store</p> </li> <li> <p> <code>EC2</code> for Amazon Elastic Compute Cloud</p> </li> <li> <p> <code>EFS</code> for Amazon Elastic File System</p> </li> <li> <p> <code>FSx</code> for Amazon FSx</p> </li> <li> <p> <code>Neptune</code> for Amazon Neptune</p> </li> <li> <p> <code>RDS</code> for Amazon Relational Database Service</p> </li> <li> <p> <code>Storage Gateway</code> for Storage Gateway</p> </li> <li> <p> <code>S3</code> for Amazon S3</p> </li> <li> <p> <code>VirtualMachine</code> for virtual machines</p> </li> </ul>"
"StartRestoreJobInput$ResourceType": "<p>Starts a job to restore a recovery point for one of the following resources:</p> <ul> <li> <p> <code>Aurora</code> for Amazon Aurora</p> </li> <li> <p> <code>DocumentDB</code> for Amazon DocumentDB (with MongoDB compatibility)</p> </li> <li> <p> <code>CloudFormation</code> for CloudFormation</p> </li> <li> <p> <code>DynamoDB</code> for Amazon DynamoDB</p> </li> <li> <p> <code>EBS</code> for Amazon Elastic Block Store</p> </li> <li> <p> <code>EC2</code> for Amazon Elastic Compute Cloud</p> </li> <li> <p> <code>EFS</code> for Amazon Elastic File System</p> </li> <li> <p> <code>FSx</code> for Amazon FSx</p> </li> <li> <p> <code>Neptune</code> for Amazon Neptune</p> </li> <li> <p> <code>RDS</code> for Amazon Relational Database Service</p> </li> <li> <p> <code>Redshift</code> for Amazon Redshift</p> </li> <li> <p> <code>Storage Gateway</code> for Storage Gateway</p> </li> <li> <p> <code>S3</code> for Amazon S3</p> </li> <li> <p> <code>Timestream</code> for Amazon Timestream</p> </li> <li> <p> <code>VirtualMachine</code> for virtual machines</p> </li> </ul>"
}
},
"ResourceTypeList": {
Expand Down Expand Up @@ -1759,11 +1762,11 @@
"WindowMinutes": {
"base": null,
"refs": {
"BackupRule$StartWindowMinutes": "<p>A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, it must be at least 60 minutes to avoid errors.</p>",
"BackupRule$StartWindowMinutes": "<p>A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, it must be at least 60 minutes to avoid errors.</p> <p>During the start window, the backup job status remains in <code>CREATED</code> status until it has successfully begun or until the start window time has run out. If within the start window time Backup receives an error that allows the job to be retried, Backup will automatically retry to begin the job at least every 10 minutes until the backup successfully begins (the job status changes to <code>RUNNING</code>) or until the job status changes to <code>EXPIRED</code> (which is expected to occur when the start window time is over).</p>",
"BackupRule$CompletionWindowMinutes": "<p>A value in minutes after a backup job is successfully started before it must be completed or it will be canceled by Backup. This value is optional.</p>",
"BackupRuleInput$StartWindowMinutes": "<p>A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, it must be at least 60 minutes to avoid errors.</p>",
"BackupRuleInput$StartWindowMinutes": "<p>A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, it must be at least 60 minutes to avoid errors.</p> <p>During the start window, the backup job status remains in <code>CREATED</code> status until it has successfully begun or until the start window time has run out. If within the start window time Backup receives an error that allows the job to be retried, Backup will automatically retry to begin the job at least every 10 minutes until the backup successfully begins (the job status changes to <code>RUNNING</code>) or until the job status changes to <code>EXPIRED</code> (which is expected to occur when the start window time is over).</p>",
"BackupRuleInput$CompletionWindowMinutes": "<p>A value in minutes after a backup job is successfully started before it must be completed or it will be canceled by Backup. This value is optional.</p>",
"StartBackupJobInput$StartWindowMinutes": "<p>A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional, and the default is 8 hours. If this value is included, it must be at least 60 minutes to avoid errors.</p>",
"StartBackupJobInput$StartWindowMinutes": "<p>A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional, and the default is 8 hours. If this value is included, it must be at least 60 minutes to avoid errors.</p> <p>During the start window, the backup job status remains in <code>CREATED</code> status until it has successfully begun or until the start window time has run out. If within the start window time Backup receives an error that allows the job to be retried, Backup will automatically retry to begin the job at least every 10 minutes until the backup successfully begins (the job status changes to <code>RUNNING</code>) or until the job status changes to <code>EXPIRED</code> (which is expected to occur when the start window time is over).</p>",
"StartBackupJobInput$CompleteWindowMinutes": "<p>A value in minutes during which a successfully started backup must complete, or else Backup will cancel the job. This value is optional. This value begins counting down from when the backup was scheduled. It does not add additional time for <code>StartWindowMinutes</code>, or if the backup started later than scheduled.</p>"
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/data/backup/2018-11-15/docs-2.json.php

Large diffs are not rendered by default.

Loading

0 comments on commit 69266e9

Please sign in to comment.