Skip to content

Commit 6b60e74

Browse files
4.1.753
1 parent 345e5b3 commit 6b60e74

22 files changed

+988
-853
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: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
### 4.1.752 (2025-02-06 21:23Z)
1+
### 4.1.753 (2025-02-07 22:00Z)
2+
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.978.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 Elastic Container Service for Kubernetes
4+
* Modified cmdlet Get-EKSClusterVersion: added parameter VersionStatus.
5+
* Amazon Transcribe Service
6+
* Modified cmdlet Start-TRSMedicalScribeJob: added parameter ClinicalNoteGenerationSettings_NoteTemplate.
7+
8+
### 4.1.752 (2025-02-06 21:23Z)
29
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.977.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.
310
* Amazon CloudFormation
411
* Added cmdlet Get-CFNCFNStackRefactor leveraging the DescribeStackRefactor service API.

changelogs/CHANGELOG.ALL.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
### 4.1.752 (2025-02-06 21:23Z)
1+
### 4.1.753 (2025-02-07 22:00Z)
2+
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.978.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 Elastic Container Service for Kubernetes
4+
* Modified cmdlet Get-EKSClusterVersion: added parameter VersionStatus.
5+
* Amazon Transcribe Service
6+
* Modified cmdlet Start-TRSMedicalScribeJob: added parameter ClinicalNoteGenerationSettings_NoteTemplate.
7+
8+
### 4.1.752 (2025-02-06 21:23Z)
29
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.977.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.
310
* Amazon CloudFormation
411
* Added cmdlet Get-CFNCFNStackRefactor leveraging the DescribeStackRefactor service API.

modules/AWSPowerShell/AWSPowerShellCompleters.psm1

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27924,6 +27924,13 @@ $EKS_Completers = {
2792427924
break
2792527925
}
2792627926

27927+
# Amazon.EKS.VersionStatus
27928+
"Get-EKSClusterVersion/VersionStatus"
27929+
{
27930+
$v = "EXTENDED_SUPPORT","STANDARD_SUPPORT","UNSUPPORTED"
27931+
break
27932+
}
27933+
2792727934

2792827935
}
2792927936

@@ -27945,6 +27952,7 @@ $EKS_map = @{
2794527952
"Term_Unit"=@("New-EKSEksAnywhereSubscription")
2794627953
"UpdateConfig_UpdateStrategy"=@("New-EKSNodegroup","Update-EKSNodegroupConfig")
2794727954
"UpgradePolicy_SupportType"=@("New-EKSCluster","Update-EKSClusterConfig")
27955+
"VersionStatus"=@("Get-EKSClusterVersion")
2794827956
}
2794927957

2795027958
_awsArgumentCompleterRegistration $EKS_Completers $EKS_map
@@ -74297,6 +74305,13 @@ $TRS_Completers = {
7429774305
break
7429874306
}
7429974307

74308+
# Amazon.TranscribeService.MedicalScribeNoteTemplate
74309+
"Start-TRSMedicalScribeJob/ClinicalNoteGenerationSettings_NoteTemplate"
74310+
{
74311+
$v = "GIRPP","HISTORY_AND_PHYSICAL"
74312+
break
74313+
}
74314+
7430074315
# Amazon.TranscribeService.ModelStatus
7430174316
"Get-TRSLanguageModelList/StatusEqual"
7430274317
{
@@ -74379,6 +74394,7 @@ $TRS_Completers = {
7437974394

7438074395
$TRS_map = @{
7438174396
"BaseModelName"=@("New-TRSLanguageModel")
74397+
"ClinicalNoteGenerationSettings_NoteTemplate"=@("Start-TRSMedicalScribeJob")
7438274398
"ContentIdentificationType"=@("Start-TRSMedicalTranscriptionJob")
7438374399
"ContentRedaction_RedactionOutput"=@("Start-TRSCallAnalyticsJob","Start-TRSTranscriptionJob")
7438474400
"ContentRedaction_RedactionType"=@("Start-TRSCallAnalyticsJob","Start-TRSTranscriptionJob")

modules/AWSPowerShell/Cmdlets/ECR/Basic/Start-ECRImageScan-Cmdlet.cs

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,16 @@
2828
namespace Amazon.PowerShell.Cmdlets.ECR
2929
{
3030
/// <summary>
31-
/// Starts an image vulnerability scan. An image scan can only be started once per 24
32-
/// hours on an individual image. This limit includes if an image was scanned on initial
33-
/// push. For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html">Image
31+
/// Starts a basic image vulnerability scan.
32+
///
33+
///
34+
/// <para>
35+
/// A basic image scan can only be started once per 24 hours on an individual image.
36+
/// This limit includes if an image was scanned on initial push. You can start up to 100,000
37+
/// basic scans per 24 hours. This limit includes both scans on initial push and scans
38+
/// initiated by the StartImageScan API. For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning-basic.html">Basic
3439
/// scanning</a> in the <i>Amazon Elastic Container Registry User Guide</i>.
40+
/// </para>
3541
/// </summary>
3642
[Cmdlet("Start", "ECRImageScan", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)]
3743
[OutputType("Amazon.ECR.Model.StartImageScanResponse")]

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,13 @@ $EKS_Completers = {
179179
break
180180
}
181181

182+
# Amazon.EKS.VersionStatus
183+
"Get-EKSClusterVersion/VersionStatus"
184+
{
185+
$v = "EXTENDED_SUPPORT","STANDARD_SUPPORT","UNSUPPORTED"
186+
break
187+
}
188+
182189

183190
}
184191

@@ -200,6 +207,7 @@ $EKS_map = @{
200207
"Term_Unit"=@("New-EKSEksAnywhereSubscription")
201208
"UpdateConfig_UpdateStrategy"=@("New-EKSNodegroup","Update-EKSNodegroupConfig")
202209
"UpgradePolicy_SupportType"=@("New-EKSCluster","Update-EKSClusterConfig")
210+
"VersionStatus"=@("Get-EKSClusterVersion")
203211
}
204212

205213
_awsArgumentCompleterRegistration $EKS_Completers $EKS_map

modules/AWSPowerShell/Cmdlets/EKS/Basic/Get-EKSClusterVersion-Cmdlet.cs

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,15 @@ public partial class GetEKSClusterVersionCmdlet : AmazonEKSClientCmdlet, IExecut
8383
public System.Boolean? IncludeAll { get; set; }
8484
#endregion
8585

86-
#region Parameter Status
86+
#region Parameter VersionStatus
8787
/// <summary>
8888
/// <para>
8989
/// <para>Filter versions by their current status.</para>
9090
/// </para>
9191
/// </summary>
9292
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
93-
[AWSConstantClassSource("Amazon.EKS.ClusterVersionStatus")]
94-
public Amazon.EKS.ClusterVersionStatus Status { get; set; }
93+
[AWSConstantClassSource("Amazon.EKS.VersionStatus")]
94+
public Amazon.EKS.VersionStatus VersionStatus { get; set; }
9595
#endregion
9696

9797
#region Parameter MaxResult
@@ -119,6 +119,20 @@ public partial class GetEKSClusterVersionCmdlet : AmazonEKSClientCmdlet, IExecut
119119
public System.String NextToken { get; set; }
120120
#endregion
121121

122+
#region Parameter Status
123+
/// <summary>
124+
/// <para>
125+
/// <important><para>This field is deprecated. Use <c>versionStatus</c> instead, as that field matches
126+
/// for input and output of this action.</para></important><para>Filter versions by their current status.</para>
127+
/// </para>
128+
/// <para>This parameter is deprecated.</para>
129+
/// </summary>
130+
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
131+
[System.ObsoleteAttribute("status has been replaced by versionStatus")]
132+
[AWSConstantClassSource("Amazon.EKS.ClusterVersionStatus")]
133+
public Amazon.EKS.ClusterVersionStatus Status { get; set; }
134+
#endregion
135+
122136
#region Parameter Select
123137
/// <summary>
124138
/// Use the -Select parameter to control the cmdlet output. The default value is 'ClusterVersions'.
@@ -164,7 +178,10 @@ protected override void ProcessRecord()
164178
context.IncludeAll = this.IncludeAll;
165179
context.MaxResult = this.MaxResult;
166180
context.NextToken = this.NextToken;
181+
#pragma warning disable CS0618, CS0612 //A class member was marked with the Obsolete attribute
167182
context.Status = this.Status;
183+
#pragma warning restore CS0618, CS0612 //A class member was marked with the Obsolete attribute
184+
context.VersionStatus = this.VersionStatus;
168185

169186
// allow further manipulation of loaded context prior to processing
170187
PostExecutionContextLoad(context);
@@ -203,10 +220,16 @@ public object Execute(ExecutorContext context)
203220
{
204221
request.MaxResults = cmdletContext.MaxResult.Value;
205222
}
223+
#pragma warning disable CS0618, CS0612 //A class member was marked with the Obsolete attribute
206224
if (cmdletContext.Status != null)
207225
{
208226
request.Status = cmdletContext.Status;
209227
}
228+
#pragma warning restore CS0618, CS0612 //A class member was marked with the Obsolete attribute
229+
if (cmdletContext.VersionStatus != null)
230+
{
231+
request.VersionStatus = cmdletContext.VersionStatus;
232+
}
210233

211234
// Initialize loop variant and commence piping
212235
var _nextToken = cmdletContext.NextToken;
@@ -298,7 +321,9 @@ internal partial class CmdletContext : ExecutorContext
298321
public System.Boolean? IncludeAll { get; set; }
299322
public System.Int32? MaxResult { get; set; }
300323
public System.String NextToken { get; set; }
324+
[System.ObsoleteAttribute]
301325
public Amazon.EKS.ClusterVersionStatus Status { get; set; }
326+
public Amazon.EKS.VersionStatus VersionStatus { get; set; }
302327
public System.Func<Amazon.EKS.Model.DescribeClusterVersionsResponse, GetEKSClusterVersionCmdlet, object> Select { get; set; } =
303328
(response, cmdlet) => response.ClusterVersions;
304329
}

modules/AWSPowerShell/Cmdlets/EKS/Basic/Get-EKSUpdate-Cmdlet.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ namespace Amazon.PowerShell.Cmdlets.EKS
3232
///
3333
///
3434
/// <para>
35-
/// When the status of the update is <c>Succeeded</c>, the update is complete. If an update
36-
/// fails, the status is <c>Failed</c>, and an error detail explains the reason for the
37-
/// failure.
35+
/// When the status of the update is <c>Successful</c>, the update is complete. If an
36+
/// update fails, the status is <c>Failed</c>, and an error detail explains the reason
37+
/// for the failure.
3838
/// </para>
3939
/// </summary>
4040
[Cmdlet("Get", "EKSUpdate")]

modules/AWSPowerShell/Cmdlets/EKS/Basic/New-EKSAddon-Cmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public partial class NewEKSAddonCmdlet : AmazonEKSClientCmdlet, IExecutor
141141
/// EKS changes the value to the Amazon EKS default value.</para></li><li><para><b>Preserve</b> – This is similar to the NONE option. If the self-managed version
142142
/// of the add-on is installed on your cluster Amazon EKS doesn't change the add-on resource
143143
/// properties. Creation of the add-on might fail if conflicts are detected. This option
144-
/// works differently during the update operation. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html">UpdateAddon</a>.</para></li></ul><para>If you don't currently have the self-managed version of the add-on installed on your
144+
/// works differently during the update operation. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html"><c>UpdateAddon</c></a>.</para></li></ul><para>If you don't currently have the self-managed version of the add-on installed on your
145145
/// cluster, the Amazon EKS add-on is installed. Amazon EKS sets all values to default
146146
/// values, regardless of the option that you specify.</para>
147147
/// </para>

modules/AWSPowerShell/Cmdlets/EKS/Basic/New-EKSNodegroup-Cmdlet.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,8 +409,7 @@ public partial class NewEKSNodegroupCmdlet : AmazonEKSClientCmdlet, IExecutor
409409
/// <para>
410410
/// <para>The configuration for the behavior to follow during a node group version update of
411411
/// this managed node group. You choose between two possible strategies for replacing
412-
/// nodes during an <a href="https://docs.aws.amazon.com/latest/APIReference/API_UpdateNodegroupVersion.html">UpdateNodegroupVersion</a>
413-
/// action.</para><para>An Amazon EKS managed node group updates by replacing nodes with new nodes of newer
412+
/// nodes during an <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateNodegroupVersion.html"><c>UpdateNodegroupVersion</c></a> action.</para><para>An Amazon EKS managed node group updates by replacing nodes with new nodes of newer
414413
/// AMI versions in parallel. The <i>update strategy</i> changes the managed node update
415414
/// behavior of the managed node group for each quantity. The <i>default</i> strategy
416415
/// has guardrails to protect you from misconfiguration and launches the new instances

0 commit comments

Comments
 (0)