Skip to content

Commit 2b20c3a

Browse files
5.0.90
1 parent b57286d commit 2b20c3a

File tree

47 files changed

+337
-115
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+337
-115
lines changed

Include/sdk/_sdk-versions.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{
33
"NewServiceVersion" : "4.0.0.0",
4-
"ProductVersion" : "4.0.125.0",
4+
"ProductVersion" : "4.0.126.0",
55
"CoreVersion" : "4.0.1.3",
66
"OverrideCoreVersion" : "4.0",
77
"DefaultToPreview" : false,
@@ -2276,7 +2276,7 @@
22762276
"InPreview" : false
22772277
},
22782278
"PinpointSMSVoiceV2" : {
2279-
"Version" : "4.0.4.2",
2279+
"Version" : "4.0.5.0",
22802280
"AssemblyVersionOverride" : "4.0",
22812281
"Dependencies" : {
22822282
"Core" : "4.0.1.3"

changelogs/CHANGELOG.2025.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
### 5.0.89 (2025-11-03 21:00Z)
1+
### 5.0.90 (2025-11-04 21:02Z)
2+
* AWS Tools for PowerShell now use AWS .NET SDK 4.0.126.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 Pinpoint SMS Voice V2
4+
* Added cmdlet Use-SMSVCarrierLookup leveraging the CarrierLookup service API.
5+
6+
### 5.0.89 (2025-11-03 21:00Z)
27
* AWS Tools for PowerShell now use AWS .NET SDK 4.0.125.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
* Amazon Bedrock Agent Core Control Plane Fronting Layer
49
* Modified cmdlet New-BACCAgentRuntime: added parameters CodeConfiguration_EntryPoint, CodeConfiguration_Runtime, S3_Bucket, S3_Prefix and S3_VersionId.

changelogs/CHANGELOG.ALL.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
### 5.0.89 (2025-11-03 21:00Z)
1+
### 5.0.90 (2025-11-04 21:02Z)
2+
* AWS Tools for PowerShell now use AWS .NET SDK 4.0.126.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 Pinpoint SMS Voice V2
4+
* Added cmdlet Use-SMSVCarrierLookup leveraging the CarrierLookup service API.
5+
6+
### 5.0.89 (2025-11-03 21:00Z)
27
* AWS Tools for PowerShell now use AWS .NET SDK 4.0.125.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
* Amazon Bedrock Agent Core Control Plane Fronting Layer
49
* Modified cmdlet New-BACCAgentRuntime: added parameters CodeConfiguration_EntryPoint, CodeConfiguration_Runtime, S3_Bucket, S3_Prefix and S3_VersionId.

generator/AWSPSGeneratorLib/Config/ServiceConfig/pinpoint-sms-voice-v2.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
<Params />
2828
<TypesNotToFlatten />
2929
</ServiceOperation>
30+
<ServiceOperation MethodName="CarrierLookup" OutputProperty="*" Verb="Use" Noun="CarrierLookup" PipelineParameter="PhoneNumber" NoPipelineParameter="false">
31+
<Params />
32+
<TypesNotToFlatten />
33+
</ServiceOperation>
3034
<ServiceOperation MethodName="CreateConfigurationSet" OutputProperty="*" Verb="New" Noun="ConfigurationSet" ShouldProcessTarget="ConfigurationSetName" PipelineParameter="ConfigurationSetName" NoPipelineParameter="false" LegacyV4Pagination="true">
3135
<Params />
3236
<TypesNotToFlatten />

modules/AWSPowerShell/AWSAliases.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23775,6 +23775,9 @@ Set-Alias -Name Associate-SMSVOriginationIdentity -Value Register-SMSVOriginatio
2377523775
Set-Alias -Name SMSV-AssociateOriginationIdentity -Value Register-SMSVOriginationIdentity
2377623776
Set-Alias -Name Associate-SMSVProtectConfiguration -Value Register-SMSVProtectConfiguration
2377723777
Set-Alias -Name SMSV-AssociateProtectConfiguration -Value Register-SMSVProtectConfiguration
23778+
Set-Alias -Name Carrier-SMSVLookup -Value Use-SMSVCarrierLookup
23779+
Set-Alias -Name Carrier-SMSVCarrierLookup -Value Use-SMSVCarrierLookup
23780+
Set-Alias -Name SMSV-CarrierLookup -Value Use-SMSVCarrierLookup
2377823781
Set-Alias -Name Create-SMSVConfigurationSet -Value New-SMSVConfigurationSet
2377923782
Set-Alias -Name SMSV-CreateConfigurationSet -Value New-SMSVConfigurationSet
2378023783
Set-Alias -Name Create-SMSVEventDestination -Value New-SMSVEventDestination

modules/AWSPowerShell/AWSPowerShellCompleters.psm1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60037,6 +60037,7 @@ $SMSV_SelectCompleters = {
6003760037
$SMSV_SelectMap = @{
6003860038
"Select"=@("Register-SMSVOriginationIdentity",
6003960039
"Register-SMSVProtectConfiguration",
60040+
"Use-SMSVCarrierLookup",
6004060041
"New-SMSVConfigurationSet",
6004160042
"New-SMSVEventDestination",
6004260043
"New-SMSVOptOutList",

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ $SMSV_SelectCompleters = {
244244
$SMSV_SelectMap = @{
245245
"Select"=@("Register-SMSVOriginationIdentity",
246246
"Register-SMSVProtectConfiguration",
247+
"Use-SMSVCarrierLookup",
247248
"New-SMSVConfigurationSet",
248249
"New-SMSVEventDestination",
249250
"New-SMSVOptOutList",

modules/AWSPowerShell/Cmdlets/PinpointSMSVoiceV2/AWS.Tools.PinpointSMSVoiceV2.psd1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ This version of AWS Tools for PowerShell is compatible with Windows PowerShell 5
174174
'Update-SMSVProtectConfiguration',
175175
'Update-SMSVProtectConfigurationCountryRuleSet',
176176
'Update-SMSVSenderId',
177+
'Use-SMSVCarrierLookup',
177178
'Write-SMSVMessageFeedback',
178179
'Write-SMSVProtectConfigurationRuleSetNumberOverride',
179180
'Write-SMSVResourcePolicy')

modules/AWSPowerShell/Cmdlets/PinpointSMSVoiceV2/Basic/Add-SMSVResourceTag-Cmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace Amazon.PowerShell.Cmdlets.SMSV
3434
/// an existing tag key, the value is overwritten with the new value. Each tag consists
3535
/// of a key and an optional value. Tag keys must be unique per resource. For more information
3636
/// about tags, see <a href="https://docs.aws.amazon.com/sms-voice/latest/userguide/phone-numbers-tags.html">Tags
37-
/// </a> in the <i>AWS End User Messaging SMS User Guide</i>.
37+
/// </a> in the <i>End User MessagingSMS User Guide</i>.
3838
/// </summary>
3939
[Cmdlet("Add", "SMSVResourceTag", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)]
4040
[OutputType("None")]

modules/AWSPowerShell/Cmdlets/PinpointSMSVoiceV2/Basic/Get-SMSVAccountLimit-Cmdlet.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@
3030
namespace Amazon.PowerShell.Cmdlets.SMSV
3131
{
3232
/// <summary>
33-
/// Describes the current AWS End User Messaging SMS and Voice SMS Voice V2 resource quotas
34-
/// for your account. The description for a quota includes the quota name, current usage
35-
/// toward that quota, and the quota's maximum value.
33+
/// Describes the current End User MessagingSMS SMS Voice V2 resource quotas for your
34+
/// account. The description for a quota includes the quota name, current usage toward
35+
/// that quota, and the quota's maximum value.
3636
///
3737
///
3838
/// <para>
3939
/// When you establish an Amazon Web Services account, the account has initial quotas
4040
/// on the maximum number of configuration sets, opt-out lists, phone numbers, and pools
4141
/// that you can create in a given Region. For more information see <a href="https://docs.aws.amazon.com/sms-voice/latest/userguide/quotas.html">Quotas
42-
/// </a> in the <i>AWS End User Messaging SMS User Guide</i>.
42+
/// </a> in the <i>End User MessagingSMS User Guide</i>.
4343
/// </para><br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
4444
/// </summary>
4545
[Cmdlet("Get", "SMSVAccountLimit")]

0 commit comments

Comments
 (0)