Skip to content

Commit b50138c

Browse files
Deepika0530dolauli
andauthored
Added support for SMTP Username CRUD operations (Azure#27323)
Co-authored-by: Xiaogang <[email protected]>
1 parent d3161b5 commit b50138c

File tree

48 files changed

+3968
-16
lines changed

Some content is hidden

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

48 files changed

+3968
-16
lines changed

src/Communication/Communication.sln

+105-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.0.31903.59
@@ -25,55 +25,155 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.EmailService", "..\..\ge
2525
EndProject
2626
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.EmailServicedata", "..\..\generated\Communication\EmailServicedata.Autorest\Az.EmailServicedata.csproj", "{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}"
2727
EndProject
28+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CommunicationServiceSmtpUsername.Autorest", "CommunicationServiceSmtpUsername.Autorest", "{363A57FD-EAEB-6866-1998-C16C508A4822}"
29+
EndProject
30+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.CommunicationServiceSmtpUsername", "..\..\generated\Communication\CommunicationServiceSmtpUsername.Autorest\Az.CommunicationServiceSmtpUsername.csproj", "{E7F84369-DAC3-4224-A420-8F35DCFFD850}"
31+
EndProject
2832
Global
2933
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3034
Debug|Any CPU = Debug|Any CPU
35+
Debug|x64 = Debug|x64
36+
Debug|x86 = Debug|x86
3137
Release|Any CPU = Release|Any CPU
32-
EndGlobalSection
33-
GlobalSection(SolutionProperties) = preSolution
34-
HideSolutionNode = FALSE
38+
Release|x64 = Release|x64
39+
Release|x86 = Release|x86
3540
EndGlobalSection
3641
GlobalSection(ProjectConfigurationPlatforms) = postSolution
3742
{BDECA744-485E-4FBF-BDBC-D58635179F45}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3843
{BDECA744-485E-4FBF-BDBC-D58635179F45}.Debug|Any CPU.Build.0 = Debug|Any CPU
44+
{BDECA744-485E-4FBF-BDBC-D58635179F45}.Debug|x64.ActiveCfg = Debug|Any CPU
45+
{BDECA744-485E-4FBF-BDBC-D58635179F45}.Debug|x64.Build.0 = Debug|Any CPU
46+
{BDECA744-485E-4FBF-BDBC-D58635179F45}.Debug|x86.ActiveCfg = Debug|Any CPU
47+
{BDECA744-485E-4FBF-BDBC-D58635179F45}.Debug|x86.Build.0 = Debug|Any CPU
3948
{BDECA744-485E-4FBF-BDBC-D58635179F45}.Release|Any CPU.ActiveCfg = Release|Any CPU
4049
{BDECA744-485E-4FBF-BDBC-D58635179F45}.Release|Any CPU.Build.0 = Release|Any CPU
50+
{BDECA744-485E-4FBF-BDBC-D58635179F45}.Release|x64.ActiveCfg = Release|Any CPU
51+
{BDECA744-485E-4FBF-BDBC-D58635179F45}.Release|x64.Build.0 = Release|Any CPU
52+
{BDECA744-485E-4FBF-BDBC-D58635179F45}.Release|x86.ActiveCfg = Release|Any CPU
53+
{BDECA744-485E-4FBF-BDBC-D58635179F45}.Release|x86.Build.0 = Release|Any CPU
4154
{0DDA3FA4-6C03-4E6B-B3A4-A1CA40619F4F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4255
{0DDA3FA4-6C03-4E6B-B3A4-A1CA40619F4F}.Debug|Any CPU.Build.0 = Debug|Any CPU
56+
{0DDA3FA4-6C03-4E6B-B3A4-A1CA40619F4F}.Debug|x64.ActiveCfg = Debug|Any CPU
57+
{0DDA3FA4-6C03-4E6B-B3A4-A1CA40619F4F}.Debug|x64.Build.0 = Debug|Any CPU
58+
{0DDA3FA4-6C03-4E6B-B3A4-A1CA40619F4F}.Debug|x86.ActiveCfg = Debug|Any CPU
59+
{0DDA3FA4-6C03-4E6B-B3A4-A1CA40619F4F}.Debug|x86.Build.0 = Debug|Any CPU
4360
{0DDA3FA4-6C03-4E6B-B3A4-A1CA40619F4F}.Release|Any CPU.ActiveCfg = Release|Any CPU
4461
{0DDA3FA4-6C03-4E6B-B3A4-A1CA40619F4F}.Release|Any CPU.Build.0 = Release|Any CPU
62+
{0DDA3FA4-6C03-4E6B-B3A4-A1CA40619F4F}.Release|x64.ActiveCfg = Release|Any CPU
63+
{0DDA3FA4-6C03-4E6B-B3A4-A1CA40619F4F}.Release|x64.Build.0 = Release|Any CPU
64+
{0DDA3FA4-6C03-4E6B-B3A4-A1CA40619F4F}.Release|x86.ActiveCfg = Release|Any CPU
65+
{0DDA3FA4-6C03-4E6B-B3A4-A1CA40619F4F}.Release|x86.Build.0 = Release|Any CPU
4566
{979A9421-C35A-4D7C-8B54-5B762AA7EC69}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4667
{979A9421-C35A-4D7C-8B54-5B762AA7EC69}.Debug|Any CPU.Build.0 = Debug|Any CPU
68+
{979A9421-C35A-4D7C-8B54-5B762AA7EC69}.Debug|x64.ActiveCfg = Debug|Any CPU
69+
{979A9421-C35A-4D7C-8B54-5B762AA7EC69}.Debug|x64.Build.0 = Debug|Any CPU
70+
{979A9421-C35A-4D7C-8B54-5B762AA7EC69}.Debug|x86.ActiveCfg = Debug|Any CPU
71+
{979A9421-C35A-4D7C-8B54-5B762AA7EC69}.Debug|x86.Build.0 = Debug|Any CPU
4772
{979A9421-C35A-4D7C-8B54-5B762AA7EC69}.Release|Any CPU.ActiveCfg = Release|Any CPU
4873
{979A9421-C35A-4D7C-8B54-5B762AA7EC69}.Release|Any CPU.Build.0 = Release|Any CPU
74+
{979A9421-C35A-4D7C-8B54-5B762AA7EC69}.Release|x64.ActiveCfg = Release|Any CPU
75+
{979A9421-C35A-4D7C-8B54-5B762AA7EC69}.Release|x64.Build.0 = Release|Any CPU
76+
{979A9421-C35A-4D7C-8B54-5B762AA7EC69}.Release|x86.ActiveCfg = Release|Any CPU
77+
{979A9421-C35A-4D7C-8B54-5B762AA7EC69}.Release|x86.Build.0 = Release|Any CPU
4978
{043B1232-A14E-48D6-AD4A-62DBDED03D59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5079
{043B1232-A14E-48D6-AD4A-62DBDED03D59}.Debug|Any CPU.Build.0 = Debug|Any CPU
80+
{043B1232-A14E-48D6-AD4A-62DBDED03D59}.Debug|x64.ActiveCfg = Debug|Any CPU
81+
{043B1232-A14E-48D6-AD4A-62DBDED03D59}.Debug|x64.Build.0 = Debug|Any CPU
82+
{043B1232-A14E-48D6-AD4A-62DBDED03D59}.Debug|x86.ActiveCfg = Debug|Any CPU
83+
{043B1232-A14E-48D6-AD4A-62DBDED03D59}.Debug|x86.Build.0 = Debug|Any CPU
5184
{043B1232-A14E-48D6-AD4A-62DBDED03D59}.Release|Any CPU.ActiveCfg = Release|Any CPU
5285
{043B1232-A14E-48D6-AD4A-62DBDED03D59}.Release|Any CPU.Build.0 = Release|Any CPU
86+
{043B1232-A14E-48D6-AD4A-62DBDED03D59}.Release|x64.ActiveCfg = Release|Any CPU
87+
{043B1232-A14E-48D6-AD4A-62DBDED03D59}.Release|x64.Build.0 = Release|Any CPU
88+
{043B1232-A14E-48D6-AD4A-62DBDED03D59}.Release|x86.ActiveCfg = Release|Any CPU
89+
{043B1232-A14E-48D6-AD4A-62DBDED03D59}.Release|x86.Build.0 = Release|Any CPU
5390
{63065A51-3037-4C14-B1B8-B626B5F3B2B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5491
{63065A51-3037-4C14-B1B8-B626B5F3B2B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
92+
{63065A51-3037-4C14-B1B8-B626B5F3B2B5}.Debug|x64.ActiveCfg = Debug|Any CPU
93+
{63065A51-3037-4C14-B1B8-B626B5F3B2B5}.Debug|x64.Build.0 = Debug|Any CPU
94+
{63065A51-3037-4C14-B1B8-B626B5F3B2B5}.Debug|x86.ActiveCfg = Debug|Any CPU
95+
{63065A51-3037-4C14-B1B8-B626B5F3B2B5}.Debug|x86.Build.0 = Debug|Any CPU
5596
{63065A51-3037-4C14-B1B8-B626B5F3B2B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
5697
{63065A51-3037-4C14-B1B8-B626B5F3B2B5}.Release|Any CPU.Build.0 = Release|Any CPU
98+
{63065A51-3037-4C14-B1B8-B626B5F3B2B5}.Release|x64.ActiveCfg = Release|Any CPU
99+
{63065A51-3037-4C14-B1B8-B626B5F3B2B5}.Release|x64.Build.0 = Release|Any CPU
100+
{63065A51-3037-4C14-B1B8-B626B5F3B2B5}.Release|x86.ActiveCfg = Release|Any CPU
101+
{63065A51-3037-4C14-B1B8-B626B5F3B2B5}.Release|x86.Build.0 = Release|Any CPU
57102
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
58103
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80}.Debug|Any CPU.Build.0 = Debug|Any CPU
104+
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80}.Debug|x64.ActiveCfg = Debug|Any CPU
105+
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80}.Debug|x64.Build.0 = Debug|Any CPU
106+
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80}.Debug|x86.ActiveCfg = Debug|Any CPU
107+
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80}.Debug|x86.Build.0 = Debug|Any CPU
59108
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80}.Release|Any CPU.ActiveCfg = Release|Any CPU
60109
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80}.Release|Any CPU.Build.0 = Release|Any CPU
110+
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80}.Release|x64.ActiveCfg = Release|Any CPU
111+
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80}.Release|x64.Build.0 = Release|Any CPU
112+
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80}.Release|x86.ActiveCfg = Release|Any CPU
113+
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80}.Release|x86.Build.0 = Release|Any CPU
61114
{BC377B3E-760F-4C72-8E2B-64F295F35AC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
62115
{BC377B3E-760F-4C72-8E2B-64F295F35AC6}.Debug|Any CPU.Build.0 = Debug|Any CPU
116+
{BC377B3E-760F-4C72-8E2B-64F295F35AC6}.Debug|x64.ActiveCfg = Debug|Any CPU
117+
{BC377B3E-760F-4C72-8E2B-64F295F35AC6}.Debug|x64.Build.0 = Debug|Any CPU
118+
{BC377B3E-760F-4C72-8E2B-64F295F35AC6}.Debug|x86.ActiveCfg = Debug|Any CPU
119+
{BC377B3E-760F-4C72-8E2B-64F295F35AC6}.Debug|x86.Build.0 = Debug|Any CPU
63120
{BC377B3E-760F-4C72-8E2B-64F295F35AC6}.Release|Any CPU.ActiveCfg = Release|Any CPU
64121
{BC377B3E-760F-4C72-8E2B-64F295F35AC6}.Release|Any CPU.Build.0 = Release|Any CPU
122+
{BC377B3E-760F-4C72-8E2B-64F295F35AC6}.Release|x64.ActiveCfg = Release|Any CPU
123+
{BC377B3E-760F-4C72-8E2B-64F295F35AC6}.Release|x64.Build.0 = Release|Any CPU
124+
{BC377B3E-760F-4C72-8E2B-64F295F35AC6}.Release|x86.ActiveCfg = Release|Any CPU
125+
{BC377B3E-760F-4C72-8E2B-64F295F35AC6}.Release|x86.Build.0 = Release|Any CPU
65126
{E18D84BA-5062-4501-BA00-C338AF217BEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
66127
{E18D84BA-5062-4501-BA00-C338AF217BEB}.Debug|Any CPU.Build.0 = Debug|Any CPU
128+
{E18D84BA-5062-4501-BA00-C338AF217BEB}.Debug|x64.ActiveCfg = Debug|Any CPU
129+
{E18D84BA-5062-4501-BA00-C338AF217BEB}.Debug|x64.Build.0 = Debug|Any CPU
130+
{E18D84BA-5062-4501-BA00-C338AF217BEB}.Debug|x86.ActiveCfg = Debug|Any CPU
131+
{E18D84BA-5062-4501-BA00-C338AF217BEB}.Debug|x86.Build.0 = Debug|Any CPU
67132
{E18D84BA-5062-4501-BA00-C338AF217BEB}.Release|Any CPU.ActiveCfg = Release|Any CPU
68133
{E18D84BA-5062-4501-BA00-C338AF217BEB}.Release|Any CPU.Build.0 = Release|Any CPU
134+
{E18D84BA-5062-4501-BA00-C338AF217BEB}.Release|x64.ActiveCfg = Release|Any CPU
135+
{E18D84BA-5062-4501-BA00-C338AF217BEB}.Release|x64.Build.0 = Release|Any CPU
136+
{E18D84BA-5062-4501-BA00-C338AF217BEB}.Release|x86.ActiveCfg = Release|Any CPU
137+
{E18D84BA-5062-4501-BA00-C338AF217BEB}.Release|x86.Build.0 = Release|Any CPU
69138
{5BCC6E35-8357-444D-B68A-6C166C5D4D0B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
70139
{5BCC6E35-8357-444D-B68A-6C166C5D4D0B}.Debug|Any CPU.Build.0 = Debug|Any CPU
140+
{5BCC6E35-8357-444D-B68A-6C166C5D4D0B}.Debug|x64.ActiveCfg = Debug|Any CPU
141+
{5BCC6E35-8357-444D-B68A-6C166C5D4D0B}.Debug|x64.Build.0 = Debug|Any CPU
142+
{5BCC6E35-8357-444D-B68A-6C166C5D4D0B}.Debug|x86.ActiveCfg = Debug|Any CPU
143+
{5BCC6E35-8357-444D-B68A-6C166C5D4D0B}.Debug|x86.Build.0 = Debug|Any CPU
71144
{5BCC6E35-8357-444D-B68A-6C166C5D4D0B}.Release|Any CPU.ActiveCfg = Release|Any CPU
72145
{5BCC6E35-8357-444D-B68A-6C166C5D4D0B}.Release|Any CPU.Build.0 = Release|Any CPU
146+
{5BCC6E35-8357-444D-B68A-6C166C5D4D0B}.Release|x64.ActiveCfg = Release|Any CPU
147+
{5BCC6E35-8357-444D-B68A-6C166C5D4D0B}.Release|x64.Build.0 = Release|Any CPU
148+
{5BCC6E35-8357-444D-B68A-6C166C5D4D0B}.Release|x86.ActiveCfg = Release|Any CPU
149+
{5BCC6E35-8357-444D-B68A-6C166C5D4D0B}.Release|x86.Build.0 = Release|Any CPU
73150
{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
74151
{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}.Debug|Any CPU.Build.0 = Debug|Any CPU
152+
{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}.Debug|x64.ActiveCfg = Debug|Any CPU
153+
{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}.Debug|x64.Build.0 = Debug|Any CPU
154+
{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}.Debug|x86.ActiveCfg = Debug|Any CPU
155+
{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}.Debug|x86.Build.0 = Debug|Any CPU
75156
{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}.Release|Any CPU.ActiveCfg = Release|Any CPU
76157
{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}.Release|Any CPU.Build.0 = Release|Any CPU
158+
{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}.Release|x64.ActiveCfg = Release|Any CPU
159+
{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}.Release|x64.Build.0 = Release|Any CPU
160+
{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}.Release|x86.ActiveCfg = Release|Any CPU
161+
{4668F25E-ECA4-477A-B6C5-B77538DD5A3B}.Release|x86.Build.0 = Release|Any CPU
162+
{E7F84369-DAC3-4224-A420-8F35DCFFD850}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
163+
{E7F84369-DAC3-4224-A420-8F35DCFFD850}.Debug|Any CPU.Build.0 = Debug|Any CPU
164+
{E7F84369-DAC3-4224-A420-8F35DCFFD850}.Debug|x64.ActiveCfg = Debug|Any CPU
165+
{E7F84369-DAC3-4224-A420-8F35DCFFD850}.Debug|x64.Build.0 = Debug|Any CPU
166+
{E7F84369-DAC3-4224-A420-8F35DCFFD850}.Debug|x86.ActiveCfg = Debug|Any CPU
167+
{E7F84369-DAC3-4224-A420-8F35DCFFD850}.Debug|x86.Build.0 = Debug|Any CPU
168+
{E7F84369-DAC3-4224-A420-8F35DCFFD850}.Release|Any CPU.ActiveCfg = Release|Any CPU
169+
{E7F84369-DAC3-4224-A420-8F35DCFFD850}.Release|Any CPU.Build.0 = Release|Any CPU
170+
{E7F84369-DAC3-4224-A420-8F35DCFFD850}.Release|x64.ActiveCfg = Release|Any CPU
171+
{E7F84369-DAC3-4224-A420-8F35DCFFD850}.Release|x64.Build.0 = Release|Any CPU
172+
{E7F84369-DAC3-4224-A420-8F35DCFFD850}.Release|x86.ActiveCfg = Release|Any CPU
173+
{E7F84369-DAC3-4224-A420-8F35DCFFD850}.Release|x86.Build.0 = Release|Any CPU
174+
EndGlobalSection
175+
GlobalSection(SolutionProperties) = preSolution
176+
HideSolutionNode = FALSE
77177
EndGlobalSection
78178
GlobalSection(NestedProjects) = preSolution
79179
{BDECA744-485E-4FBF-BDBC-D58635179F45} = {8C6025CF-0F63-49CE-8FBE-8275AFC0AD14}
@@ -82,5 +182,6 @@ Global
82182
{043B1232-A14E-48D6-AD4A-62DBDED03D59} = {8C6025CF-0F63-49CE-8FBE-8275AFC0AD14}
83183
{63065A51-3037-4C14-B1B8-B626B5F3B2B5} = {8C6025CF-0F63-49CE-8FBE-8275AFC0AD14}
84184
{273AA0BD-A4B9-45CF-86E6-898B6F7F4B80} = {8C6025CF-0F63-49CE-8FBE-8275AFC0AD14}
185+
{E7F84369-DAC3-4224-A420-8F35DCFFD850} = {363A57FD-EAEB-6866-1998-C16C508A4822}
85186
EndGlobalSection
86187
EndGlobal

src/Communication/Communication/Az.Communication.psd1

+19-12
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 1/9/2025
6+
# Generated on: 3/31/2025
77
#
88

99
@{
@@ -51,45 +51,52 @@ DotNetFrameworkVersion = '4.7.2'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.0.1'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.1.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = 'Communication.Autorest/bin/Az.Communication.private.dll',
58+
'CommunicationServiceSmtpUsername.Autorest/bin/Az.CommunicationServiceSmtpUsername.private.dll',
5859
'EmailService.Autorest/bin/Az.EmailService.private.dll',
5960
'EmailServicedata.Autorest/bin/Az.EmailServicedata.private.dll'
6061

6162
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
62-
# ScriptsToProcess = @()
63+
ScriptsToProcess = @()
6364

6465
# Type files (.ps1xml) to be loaded when importing this module
65-
# TypesToProcess = @()
66+
TypesToProcess = @()
6667

6768
# Format files (.ps1xml) to be loaded when importing this module
6869
FormatsToProcess = 'Communication.Autorest/Az.Communication.format.ps1xml',
70+
'CommunicationServiceSmtpUsername.Autorest/Az.CommunicationServiceSmtpUsername.format.ps1xml',
6971
'EmailService.Autorest/Az.EmailService.format.ps1xml',
7072
'EmailServicedata.Autorest/Az.EmailServicedata.format.ps1xml'
7173

7274
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
7375
NestedModules = @('Communication.Autorest/Az.Communication.psm1',
76+
'CommunicationServiceSmtpUsername.Autorest/Az.CommunicationServiceSmtpUsername.psm1',
7477
'EmailService.Autorest/Az.EmailService.psm1',
7578
'EmailServicedata.Autorest/Az.EmailServicedata.psm1')
7679

7780
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
7881
FunctionsToExport = 'Get-AzCommunicationService', 'Get-AzCommunicationServiceKey',
79-
'Get-AzEmailService', 'Get-AzEmailServicedataEmailSendResult',
80-
'Get-AzEmailServiceDomain', 'Get-AzEmailServiceSenderUsername',
82+
'Get-AzCommunicationServiceSmtpUsername', 'Get-AzEmailService',
83+
'Get-AzEmailServicedataEmailSendResult', 'Get-AzEmailServiceDomain',
84+
'Get-AzEmailServiceSenderUsername',
8185
'Invoke-AzEmailServiceInitiateDomainVerification',
8286
'New-AzCommunicationService', 'New-AzCommunicationServiceKey',
83-
'New-AzEmailService', 'New-AzEmailServiceDomain',
84-
'New-AzEmailServiceSenderUsername', 'Remove-AzCommunicationService',
87+
'New-AzCommunicationServiceSmtpUsername', 'New-AzEmailService',
88+
'New-AzEmailServiceDomain', 'New-AzEmailServiceSenderUsername',
89+
'Remove-AzCommunicationService',
90+
'Remove-AzCommunicationServiceSmtpUsername',
8591
'Remove-AzEmailService', 'Remove-AzEmailServiceDomain',
8692
'Remove-AzEmailServiceSenderUsername',
8793
'Send-AzEmailServicedataEmail',
8894
'Set-AzCommunicationServiceNotificationHub',
8995
'Stop-AzEmailServiceDomainVerification',
9096
'Test-AzCommunicationServiceNameAvailability',
91-
'Update-AzCommunicationService', 'Update-AzEmailService',
92-
'Update-AzEmailServiceDomain',
97+
'Update-AzCommunicationService',
98+
'Update-AzCommunicationServiceSmtpUsername',
99+
'Update-AzEmailService', 'Update-AzEmailServiceDomain',
93100
'Update-AzEmailServiceSenderUsername'
94101

95102
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
@@ -116,7 +123,7 @@ PrivateData = @{
116123
PSData = @{
117124

118125
# Tags applied to this module. These help with module discovery in online galleries.
119-
Tags = 'Azure','ResourceManager','ARM','PSModule','Communication'
126+
Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'Communication'
120127

121128
# A URL to the license for this module.
122129
LicenseUri = 'https://aka.ms/azps-license'
@@ -141,7 +148,7 @@ PrivateData = @{
141148

142149
} # End of PSData hashtable
143150

144-
} # End of PrivateData hashtable
151+
} # End of PrivateData hashtable
145152

146153
# HelpInfo URI of this module
147154
# HelpInfoURI = ''

src/Communication/Communication/ChangeLog.md

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* First preview release for module Az.CommunicationServiceSmtpUsername
2122

2223
## Version 0.4.2
2324
* Upgraded nuget package to signed package.

src/Communication/Communication/help/Az.Communication.md

+12
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ Get the CommunicationService and its properties.
1717
### [Get-AzCommunicationServiceKey](Get-AzCommunicationServiceKey.md)
1818
Get the access keys of the CommunicationService resource.
1919

20+
### [Get-AzCommunicationServiceSmtpUsername](Get-AzCommunicationServiceSmtpUsername.md)
21+
Get a SmtpUsernameResource.
22+
2023
### [Get-AzEmailService](Get-AzEmailService.md)
2124
Get the EmailService and its properties.
2225

@@ -39,6 +42,9 @@ Create a new CommunicationService or update an existing CommunicationService.
3942
Regenerate CommunicationService access key.
4043
PrimaryKey and SecondaryKey cannot be regenerated at the same time.
4144

45+
### [New-AzCommunicationServiceSmtpUsername](New-AzCommunicationServiceSmtpUsername.md)
46+
create an SmtpUsernameResource.
47+
4248
### [New-AzEmailService](New-AzEmailService.md)
4349
create a new EmailService or create an existing EmailService.
4450

@@ -51,6 +57,9 @@ Add a new SenderUsername resource under the parent Domains resource or create an
5157
### [Remove-AzCommunicationService](Remove-AzCommunicationService.md)
5258
Operation to delete a CommunicationService.
5359

60+
### [Remove-AzCommunicationServiceSmtpUsername](Remove-AzCommunicationServiceSmtpUsername.md)
61+
Operation to delete a single SmtpUsername resource.
62+
5463
### [Remove-AzEmailService](Remove-AzEmailService.md)
5564
Operation to delete a EmailService.
5665

@@ -75,6 +84,9 @@ Checks that the CommunicationService name is valid and is not already in use.
7584
### [Update-AzCommunicationService](Update-AzCommunicationService.md)
7685
Operation to update an existing CommunicationService.
7786

87+
### [Update-AzCommunicationServiceSmtpUsername](Update-AzCommunicationServiceSmtpUsername.md)
88+
update an SmtpUsernameResource.
89+
7890
### [Update-AzEmailService](Update-AzEmailService.md)
7991
Operation to update an existing EmailService.
8092

0 commit comments

Comments
 (0)