Skip to content

Commit 2fd7ce4

Browse files
4.1.730
1 parent db6fe7a commit 2fd7ce4

File tree

9 files changed

+853
-826
lines changed

9 files changed

+853
-826
lines changed

Include/sdk/_sdk-versions.json

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

changelogs/CHANGELOG.2025.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
### 4.1.729 (2025-01-03 21:36Z)
1+
### 4.1.730 (2025-01-06 21:32Z)
2+
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.957.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 Supply Chain
4+
* Modified cmdlet New-SUPCHInstance: added parameter WebAppDnsDomain.
5+
6+
### 4.1.729 (2025-01-03 21:36Z)
27
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.956.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.
38

49
### 4.1.728 (2025-01-02 21:35Z)

changelogs/CHANGELOG.ALL.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
### 4.1.729 (2025-01-03 21:36Z)
1+
### 4.1.730 (2025-01-06 21:32Z)
2+
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.957.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 Supply Chain
4+
* Modified cmdlet New-SUPCHInstance: added parameter WebAppDnsDomain.
5+
6+
### 4.1.729 (2025-01-03 21:36Z)
27
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.956.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.
38

49
### 4.1.728 (2025-01-02 21:35Z)

modules/AWSPowerShell/Cmdlets/SupplyChain/Basic/Get-SUPCHDataLakeDatasetList-Cmdlet.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ public partial class GetSUPCHDataLakeDatasetListCmdlet : AmazonSupplyChainClient
6464
#region Parameter Namespace
6565
/// <summary>
6666
/// <para>
67-
/// <para>The namespace of the dataset. The available values are:</para><ul><li><para>asc: for <a href="https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html">
68-
/// AWS Supply Chain supported datasets </a>.</para></li><li><para>default: for datasets with custom user-defined schemas.</para></li></ul>
67+
/// <para>The name space of the dataset. The available values are:</para><ul><li><para><b>asc</b> - For information on the Amazon Web Services Supply Chain supported datasets
68+
/// see <a href="https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html">https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html</a>.</para></li><li><para><b>default</b> - For datasets with custom user-defined schemas.</para></li></ul>
6969
/// </para>
7070
/// </summary>
7171
#if !MODULAR

modules/AWSPowerShell/Cmdlets/SupplyChain/Basic/New-SUPCHInstance-Cmdlet.cs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,18 @@ public partial class NewSUPCHInstanceCmdlet : AmazonSupplyChainClientCmdlet, IEx
9999
public System.Collections.Hashtable Tag { get; set; }
100100
#endregion
101101

102+
#region Parameter WebAppDnsDomain
103+
/// <summary>
104+
/// <para>
105+
/// <para>The DNS subdomain of the web app. This would be "example" in the URL "example.scn.global.on.aws".
106+
/// You can set this to a custom value, as long as the domain isn't already being used
107+
/// by someone else. The name may only include alphanumeric characters and hyphens.</para>
108+
/// </para>
109+
/// </summary>
110+
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
111+
public System.String WebAppDnsDomain { get; set; }
112+
#endregion
113+
102114
#region Parameter ClientToken
103115
/// <summary>
104116
/// <para>
@@ -163,6 +175,7 @@ protected override void ProcessRecord()
163175
context.Tag.Add((String)hashKey, (System.String)(this.Tag[hashKey]));
164176
}
165177
}
178+
context.WebAppDnsDomain = this.WebAppDnsDomain;
166179

167180
// allow further manipulation of loaded context prior to processing
168181
PostExecutionContextLoad(context);
@@ -199,6 +212,10 @@ public object Execute(ExecutorContext context)
199212
{
200213
request.Tags = cmdletContext.Tag;
201214
}
215+
if (cmdletContext.WebAppDnsDomain != null)
216+
{
217+
request.WebAppDnsDomain = cmdletContext.WebAppDnsDomain;
218+
}
202219

203220
CmdletOutput output;
204221

@@ -265,6 +282,7 @@ internal partial class CmdletContext : ExecutorContext
265282
public System.String InstanceName { get; set; }
266283
public System.String KmsKeyArn { get; set; }
267284
public Dictionary<System.String, System.String> Tag { get; set; }
285+
public System.String WebAppDnsDomain { get; set; }
268286
public System.Func<Amazon.SupplyChain.Model.CreateInstanceResponse, NewSUPCHInstanceCmdlet, object> Select { get; set; } =
269287
(response, cmdlet) => response.Instance;
270288
}

modules/AWSPowerShell/Cmdlets/SupplyChain/Basic/Remove-SUPCHDataLakeDataset-Cmdlet.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,8 @@ public partial class RemoveSUPCHDataLakeDatasetCmdlet : AmazonSupplyChainClientC
6363
#region Parameter Name
6464
/// <summary>
6565
/// <para>
66-
/// <para>The name of the dataset. If the namespace is <i>asc</i>, the name must be one of the
67-
/// supported <a href="https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html">data
68-
/// entities </a>.</para>
66+
/// <para>The name of the dataset. For <b>asc</b> name space, the name must be one of the supported
67+
/// data entities under <a href="https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html">https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html</a>.</para>
6968
/// </para>
7069
/// </summary>
7170
#if !MODULAR
@@ -82,8 +81,8 @@ public partial class RemoveSUPCHDataLakeDatasetCmdlet : AmazonSupplyChainClientC
8281
#region Parameter Namespace
8382
/// <summary>
8483
/// <para>
85-
/// <para>The namespace of the dataset. The available values are:</para><ul><li><para>asc: for <a href="https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html">
86-
/// AWS Supply Chain supported datasets </a>.</para></li><li><para>default: for datasets with custom user-defined schemas.</para></li></ul>
84+
/// <para>The name space of the dataset. The available values are:</para><ul><li><para><b>asc</b> - For information on the Amazon Web Services Supply Chain supported datasets
85+
/// see <a href="https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html">https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html</a>.</para></li><li><para><b>default</b> - For datasets with custom user-defined schemas.</para></li></ul>
8786
/// </para>
8887
/// </summary>
8988
#if !MODULAR

modules/AWSPowerShell/Cmdlets/SupplyChain/Basic/Send-SUPCHDataIntegrationEvent-Cmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public partial class SendSUPCHDataIntegrationEventCmdlet : AmazonSupplyChainClie
5353
/// <para>
5454
/// <para>The data payload of the event. For more information on the data schema to use, see
5555
/// <a href="https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html">Data
56-
/// entities supported in AWS Supply Chain </a>.</para>
56+
/// entities supported in AWS Supply Chain</a>.</para>
5757
/// </para>
5858
/// </summary>
5959
#if !MODULAR
-3 Bytes
Binary file not shown.
8 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)