Skip to content

Commit 6224e73

Browse files
4.1.755
1 parent db23e57 commit 6224e73

28 files changed

+894
-869
lines changed

Include/sdk/_sdk-versions.json

Lines changed: 812 additions & 812 deletions
Large diffs are not rendered by default.

changelogs/CHANGELOG.2025.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
### 4.1.754 (2025-02-10 21:58Z)
1+
### 4.1.755 (2025-02-11 22:18Z)
2+
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.980.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/main/changelogs/SDK.CHANGELOG.ALL.md.
3+
* Amazon Simple Storage Service (S3)
4+
* Modified cmdlet Copy-S3Object: added parameter ExpectedBucketOwner.
5+
* Modified cmdlet Write-S3Object: added parameter ExpectedBucketOwner.
6+
7+
### 4.1.754 (2025-02-10 21:58Z)
28
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.979.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/main/changelogs/SDK.CHANGELOG.ALL.md.
39
* Amazon Database Migration Service
410
* Modified cmdlet Edit-DMSDataProvider: added parameters IbmDb2LuwSettings_CertificateArn, IbmDb2LuwSettings_DatabaseName, IbmDb2LuwSettings_Port, IbmDb2LuwSettings_ServerName, IbmDb2LuwSettings_SslMode, IbmDb2zOsSettings_CertificateArn, IbmDb2zOsSettings_DatabaseName, IbmDb2zOsSettings_Port, IbmDb2zOsSettings_ServerName and IbmDb2zOsSettings_SslMode.

changelogs/CHANGELOG.ALL.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
### 4.1.754 (2025-02-10 21:58Z)
1+
### 4.1.755 (2025-02-11 22:18Z)
2+
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.980.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/main/changelogs/SDK.CHANGELOG.ALL.md.
3+
* Amazon Simple Storage Service (S3)
4+
* Modified cmdlet Copy-S3Object: added parameter ExpectedBucketOwner.
5+
* Modified cmdlet Write-S3Object: added parameter ExpectedBucketOwner.
6+
7+
### 4.1.754 (2025-02-10 21:58Z)
28
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.979.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/main/changelogs/SDK.CHANGELOG.ALL.md.
39
* Amazon Database Migration Service
410
* Modified cmdlet Edit-DMSDataProvider: added parameters IbmDb2LuwSettings_CertificateArn, IbmDb2LuwSettings_DatabaseName, IbmDb2LuwSettings_Port, IbmDb2LuwSettings_ServerName, IbmDb2LuwSettings_SslMode, IbmDb2zOsSettings_CertificateArn, IbmDb2zOsSettings_DatabaseName, IbmDb2zOsSettings_Port, IbmDb2zOsSettings_ServerName and IbmDb2zOsSettings_SslMode.

modules/AWSPowerShell/AWSPowerShellCompleters.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3815,7 +3815,7 @@ $ASYN_Completers = {
38153815
($_ -eq "Update-ASYNApiCache/ApiCachingBehavior")
38163816
}
38173817
{
3818-
$v = "FULL_REQUEST_CACHING","PER_RESOLVER_CACHING"
3818+
$v = "FULL_REQUEST_CACHING","OPERATION_LEVEL_CACHING","PER_RESOLVER_CACHING"
38193819
break
38203820
}
38213821

modules/AWSPowerShell/Cmdlets/AppSync/AWS.Tools.AppSync.Completers.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ $ASYN_Completers = {
9696
($_ -eq "Update-ASYNApiCache/ApiCachingBehavior")
9797
}
9898
{
99-
$v = "FULL_REQUEST_CACHING","PER_RESOLVER_CACHING"
99+
$v = "FULL_REQUEST_CACHING","OPERATION_LEVEL_CACHING","PER_RESOLVER_CACHING"
100100
break
101101
}
102102

modules/AWSPowerShell/Cmdlets/AppSync/Basic/New-ASYNApiCache-Cmdlet.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ public partial class NewASYNApiCacheCmdlet : AmazonAppSyncClientCmdlet, IExecuto
4545
#region Parameter ApiCachingBehavior
4646
/// <summary>
4747
/// <para>
48-
/// <para>Caching behavior.</para><ul><li><para><b>FULL_REQUEST_CACHING</b>: All requests are fully cached.</para></li><li><para><b>PER_RESOLVER_CACHING</b>: Individual resolvers that you specify are cached.</para></li></ul>
48+
/// <para>Caching behavior.</para><ul><li><para><b>FULL_REQUEST_CACHING</b>: All requests from the same user are cached. Individual
49+
/// resolvers are automatically cached. All API calls will try to return responses from
50+
/// the cache.</para></li><li><para><b>PER_RESOLVER_CACHING</b>: Individual resolvers that you specify are cached.</para></li><li><para><b>OPERATION_LEVEL_CACHING</b>: Full requests are cached together and returned without
51+
/// executing resolvers.</para></li></ul>
4952
/// </para>
5053
/// </summary>
5154
#if !MODULAR

modules/AWSPowerShell/Cmdlets/AppSync/Basic/Update-ASYNApiCache-Cmdlet.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ public partial class UpdateASYNApiCacheCmdlet : AmazonAppSyncClientCmdlet, IExec
4545
#region Parameter ApiCachingBehavior
4646
/// <summary>
4747
/// <para>
48-
/// <para>Caching behavior.</para><ul><li><para><b>FULL_REQUEST_CACHING</b>: All requests are fully cached.</para></li><li><para><b>PER_RESOLVER_CACHING</b>: Individual resolvers that you specify are cached.</para></li></ul>
48+
/// <para>Caching behavior.</para><ul><li><para><b>FULL_REQUEST_CACHING</b>: All requests from the same user are cached. Individual
49+
/// resolvers are automatically cached. All API calls will try to return responses from
50+
/// the cache.</para></li><li><para><b>PER_RESOLVER_CACHING</b>: Individual resolvers that you specify are cached.</para></li><li><para><b>OPERATION_LEVEL_CACHING</b>: Full requests are cached together and returned without
51+
/// executing resolvers.</para></li></ul>
4952
/// </para>
5053
/// </summary>
5154
#if !MODULAR

modules/AWSPowerShell/Cmdlets/EC2/Basic/Add-EC2CapacityReservation-Cmdlet.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,9 @@ public partial class AddEC2CapacityReservationCmdlet : AmazonEC2ClientCmdlet, IE
174174
/// <summary>
175175
/// <para>
176176
/// <para>The number of instances for which to reserve capacity.</para><note><para>You can request future-dated Capacity Reservations for an instance count with a minimum
177-
/// of 100 VPUs. For example, if you request a future-dated Capacity Reservation for <c>m5.xlarge</c>
178-
/// instances, you must request at least 25 instances (<i>25 * m5.xlarge = 100 vCPUs</i>).</para></note><para>Valid range: 1 - 1000</para>
177+
/// of 100 vCPUs. For example, if you request a future-dated Capacity Reservation for
178+
/// <c>m5.xlarge</c> instances, you must request at least 25 instances (<i>25 * m5.xlarge
179+
/// = 100 vCPUs</i>).</para></note><para>Valid range: 1 - 1000</para>
179180
/// </para>
180181
/// </summary>
181182
#if !MODULAR

modules/AWSPowerShell/Cmdlets/EC2/Basic/Copy-EC2Snapshot-Cmdlet.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ namespace Amazon.PowerShell.Cmdlets.EC2
4646
/// </para><para>
4747
/// Snapshots copied to an Outpost are encrypted by default using the default encryption
4848
/// key for the Region, or a different key that you specify in the request using <b>KmsKeyId</b>.
49-
/// Outposts do not support unencrypted snapshots. For more information, <a href="https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#ami">
50-
/// Amazon EBS local snapshots on Outposts</a> in the <i>Amazon EBS User Guide</i>.
49+
/// Outposts do not support unencrypted snapshots. For more information, see <a href="https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#ami">Amazon
50+
/// EBS local snapshots on Outposts</a> in the <i>Amazon EBS User Guide</i>.
5151
/// </para><para>
5252
/// Snapshots created by copying another snapshot have an arbitrary volume ID that should
5353
/// not be used for any purpose.

modules/AWSPowerShell/Cmdlets/EC2/Basic/Edit-EC2InstanceAttribute-Cmdlet.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ public partial class EditEC2InstanceAttributeCmdlet : AmazonEC2ClientCmdlet, IEx
103103
#region Parameter DisableApiTermination
104104
/// <summary>
105105
/// <para>
106-
/// <para>If the value is <c>true</c>, you can't terminate the instance using the Amazon EC2
107-
/// console, CLI, or API; otherwise, you can. You cannot use this parameter for Spot Instances.</para>
106+
/// <para>Enable or disable termination protection for the instance. If the value is <c>true</c>,
107+
/// you can't terminate the instance using the Amazon EC2 console, command line interface,
108+
/// or API. You can't enable termination protection for Spot Instances.</para>
108109
/// </para>
109110
/// </summary>
110111
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]

0 commit comments

Comments
 (0)