Skip to content

Commit f979c5d

Browse files
azure-pipelines[bot]azure-powershell-botNickcandy
authored
Migrate Communication from generation to main (#26245)
* Move Communication to main * Update ChangeLog.md * Update ChangeLog.md --------- Co-authored-by: azure-powershell-bot <[email protected]> Co-authored-by: NanxiangLiu <[email protected]>
1 parent 0650c28 commit f979c5d

File tree

76 files changed

+903
-430
lines changed

Some content is hidden

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

76 files changed

+903
-430
lines changed

src/Communication/Communication/Az.Communication.psd1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 7/31/2024
6+
# Generated on: 10/9/2024
77
#
88

99
@{
@@ -51,18 +51,18 @@ 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 = '3.0.3'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '3.0.4'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = 'Communication.Autorest/bin/Az.Communication.private.dll',
5858
'EmailService.Autorest/bin/Az.EmailService.private.dll',
5959
'EmailServicedata.Autorest/bin/Az.EmailServicedata.private.dll'
6060

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

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

6767
# Format files (.ps1xml) to be loaded when importing this module
6868
FormatsToProcess = 'Communication.Autorest/Az.Communication.format.ps1xml',
@@ -116,7 +116,7 @@ PrivateData = @{
116116
PSData = @{
117117

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

121121
# A URL to the license for this module.
122122
LicenseUri = 'https://aka.ms/azps-license'
@@ -144,7 +144,7 @@ PrivateData = @{
144144

145145
} # End of PSData hashtable
146146

147-
} # End of PrivateData hashtable
147+
} # End of PrivateData hashtable
148148

149149
# HelpInfo URI of this module
150150
# HelpInfoURI = ''

src/Communication/Communication/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Added support for inline attachments in the send mail operation.
22+
- This update introduced a new property in the EmailAttachment object called contentId, which serves as a unique identifier in the HTML content.
23+
- The contentId property should be referenced in the HTML body of the email for inline rendering.
2124

2225
## Version 0.4.0
2326
* Added dataplane cmdlets:

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ Regenerate CommunicationService access key.
4040
PrimaryKey and SecondaryKey cannot be regenerated at the same time.
4141

4242
### [New-AzEmailService](New-AzEmailService.md)
43-
Create a new EmailService or update an existing EmailService.
43+
create a new EmailService or create an existing EmailService.
4444

4545
### [New-AzEmailServiceDomain](New-AzEmailServiceDomain.md)
46-
Add a new Domains resource under the parent EmailService resource or update an existing Domains resource.
46+
Add a new Domains resource under the parent EmailService resource or create an existing Domains resource.
4747

4848
### [New-AzEmailServiceSenderUsername](New-AzEmailServiceSenderUsername.md)
49-
Add a new SenderUsername resource under the parent Domains resource or update an existing SenderUsername resource.
49+
Add a new SenderUsername resource under the parent Domains resource or create an existing SenderUsername resource.
5050

5151
### [Remove-AzCommunicationService](Remove-AzCommunicationService.md)
5252
Operation to delete a CommunicationService.

src/Communication/Communication/help/Get-AzCommunicationService.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@ Get the CommunicationService and its properties.
1515
### List (Default)
1616
```
1717
Get-AzCommunicationService [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
18-
[<CommonParameters>]
18+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
1919
```
2020

2121
### Get
2222
```
2323
Get-AzCommunicationService -Name <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]
24-
[-DefaultProfile <PSObject>] [<CommonParameters>]
24+
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
2525
```
2626

2727
### List1
2828
```
2929
Get-AzCommunicationService -ResourceGroupName <String> [-SubscriptionId <String[]>]
30-
[-DefaultProfile <PSObject>] [<CommonParameters>]
30+
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
3131
```
3232

3333
### GetViaIdentity
3434
```
3535
Get-AzCommunicationService -InputObject <ICommunicationIdentity> [-DefaultProfile <PSObject>]
36-
[<CommonParameters>]
36+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
3737
```
3838

3939
## DESCRIPTION
@@ -120,6 +120,21 @@ Accept pipeline input: False
120120
Accept wildcard characters: False
121121
```
122122
123+
### -ProgressAction
124+
{{ Fill ProgressAction Description }}
125+
126+
```yaml
127+
Type: System.Management.Automation.ActionPreference
128+
Parameter Sets: (All)
129+
Aliases: proga
130+
131+
Required: False
132+
Position: Named
133+
Default value: None
134+
Accept pipeline input: False
135+
Accept wildcard characters: False
136+
```
137+
123138
### -ResourceGroupName
124139
The name of the resource group.
125140
The name is case insensitive.

src/Communication/Communication/help/Get-AzCommunicationServiceKey.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Get the access keys of the CommunicationService resource.
1414

1515
```
1616
Get-AzCommunicationServiceKey -CommunicationServiceName <String> -ResourceGroupName <String>
17-
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [-WhatIf]
17+
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [-WhatIf]
1818
[-Confirm] [<CommonParameters>]
1919
```
2020

@@ -69,6 +69,21 @@ Accept pipeline input: False
6969
Accept wildcard characters: False
7070
```
7171
72+
### -ProgressAction
73+
{{ Fill ProgressAction Description }}
74+
75+
```yaml
76+
Type: System.Management.Automation.ActionPreference
77+
Parameter Sets: (All)
78+
Aliases: proga
79+
80+
Required: False
81+
Position: Named
82+
Default value: None
83+
Accept pipeline input: False
84+
Accept wildcard characters: False
85+
```
86+
7287
### -ResourceGroupName
7388
The name of the resource group.
7489
The name is case insensitive.

src/Communication/Communication/help/Get-AzEmailService.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@ Get the EmailService and its properties.
1515
### List (Default)
1616
```
1717
Get-AzEmailService [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
18-
[<CommonParameters>]
18+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
1919
```
2020

2121
### Get
2222
```
2323
Get-AzEmailService -Name <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]
24-
[-DefaultProfile <PSObject>] [<CommonParameters>]
24+
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
2525
```
2626

2727
### List1
2828
```
2929
Get-AzEmailService -ResourceGroupName <String> [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
30-
[<CommonParameters>]
30+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
3131
```
3232

3333
### GetViaIdentity
3434
```
3535
Get-AzEmailService -InputObject <IEmailServiceIdentity> [-DefaultProfile <PSObject>]
36-
[<CommonParameters>]
36+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
3737
```
3838

3939
## DESCRIPTION
@@ -131,6 +131,21 @@ Accept pipeline input: False
131131
Accept wildcard characters: False
132132
```
133133
134+
### -ProgressAction
135+
{{ Fill ProgressAction Description }}
136+
137+
```yaml
138+
Type: System.Management.Automation.ActionPreference
139+
Parameter Sets: (All)
140+
Aliases: proga
141+
142+
Required: False
143+
Position: Named
144+
Default value: None
145+
Accept pipeline input: False
146+
Accept wildcard characters: False
147+
```
148+
134149
### -ResourceGroupName
135150
The name of the resource group.
136151
The name is case insensitive.

src/Communication/Communication/help/Get-AzEmailServiceDomain.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,26 @@ Get the Domains resource and its properties.
1515
### List (Default)
1616
```
1717
Get-AzEmailServiceDomain -EmailServiceName <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]
18-
[-DefaultProfile <PSObject>] [<CommonParameters>]
18+
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
1919
```
2020

2121
### Get
2222
```
2323
Get-AzEmailServiceDomain -EmailServiceName <String> -Name <String> -ResourceGroupName <String>
24-
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
24+
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>]
2525
[<CommonParameters>]
2626
```
2727

2828
### GetViaIdentityEmailService
2929
```
3030
Get-AzEmailServiceDomain -Name <String> -EmailServiceInputObject <IEmailServiceIdentity>
31-
[-DefaultProfile <PSObject>] [<CommonParameters>]
31+
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
3232
```
3333

3434
### GetViaIdentity
3535
```
3636
Get-AzEmailServiceDomain -InputObject <IEmailServiceIdentity> [-DefaultProfile <PSObject>]
37-
[<CommonParameters>]
37+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
3838
```
3939

4040
## DESCRIPTION
@@ -179,6 +179,21 @@ Accept pipeline input: False
179179
Accept wildcard characters: False
180180
```
181181
182+
### -ProgressAction
183+
{{ Fill ProgressAction Description }}
184+
185+
```yaml
186+
Type: System.Management.Automation.ActionPreference
187+
Parameter Sets: (All)
188+
Aliases: proga
189+
190+
Required: False
191+
Position: Named
192+
Default value: None
193+
Accept pipeline input: False
194+
Accept wildcard characters: False
195+
```
196+
182197
### -ResourceGroupName
183198
The name of the resource group.
184199
The name is case insensitive.

src/Communication/Communication/help/Get-AzEmailServiceSenderUsername.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,34 +15,34 @@ Get a valid sender username for a domains resource.
1515
### List (Default)
1616
```
1717
Get-AzEmailServiceSenderUsername -DomainName <String> -EmailServiceName <String> -ResourceGroupName <String>
18-
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
18+
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>]
1919
[<CommonParameters>]
2020
```
2121

2222
### GetViaIdentityEmailService
2323
```
2424
Get-AzEmailServiceSenderUsername -DomainName <String> -SenderUsername <String>
2525
-EmailServiceInputObject <IEmailServiceIdentity> [-DefaultProfile <PSObject>]
26-
[<CommonParameters>]
26+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
2727
```
2828

2929
### Get
3030
```
3131
Get-AzEmailServiceSenderUsername -DomainName <String> -EmailServiceName <String> -ResourceGroupName <String>
3232
-SenderUsername <String> [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
33-
[<CommonParameters>]
33+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
3434
```
3535

3636
### GetViaIdentityDomain
3737
```
3838
Get-AzEmailServiceSenderUsername -SenderUsername <String> -DomainInputObject <IEmailServiceIdentity>
39-
[-DefaultProfile <PSObject>] [<CommonParameters>]
39+
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
4040
```
4141

4242
### GetViaIdentity
4343
```
4444
Get-AzEmailServiceSenderUsername -InputObject <IEmailServiceIdentity> [-DefaultProfile <PSObject>]
45-
[<CommonParameters>]
45+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
4646
```
4747

4848
## DESCRIPTION
@@ -183,6 +183,21 @@ Accept pipeline input: True (ByValue)
183183
Accept wildcard characters: False
184184
```
185185
186+
### -ProgressAction
187+
{{ Fill ProgressAction Description }}
188+
189+
```yaml
190+
Type: System.Management.Automation.ActionPreference
191+
Parameter Sets: (All)
192+
Aliases: proga
193+
194+
Required: False
195+
Position: Named
196+
Default value: None
197+
Accept pipeline input: False
198+
Accept wildcard characters: False
199+
```
200+
186201
### -ResourceGroupName
187202
The name of the resource group.
188203
The name is case insensitive.

src/Communication/Communication/help/Get-AzEmailServicedataEmailSendResult.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ Gets the status of the email send operation.
1515
### Get (Default)
1616
```
1717
Get-AzEmailServicedataEmailSendResult -Endpoint <String> -OperationId <String> [-DefaultProfile <PSObject>]
18-
[<CommonParameters>]
18+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
1919
```
2020

2121
### GetViaIdentity
2222
```
2323
Get-AzEmailServicedataEmailSendResult -Endpoint <String> -InputObject <IEmailServicedataIdentity>
24-
[-DefaultProfile <PSObject>] [<CommonParameters>]
24+
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
2525
```
2626

2727
## DESCRIPTION
@@ -67,7 +67,7 @@ Accept wildcard characters: False
6767
```
6868
6969
### -Endpoint
70-
The communication resource, for example `https://my-resource.communication.azure.com`
70+
The communication resource, for example https://my-resource.communication.azure.com
7171
7272
```yaml
7373
Type: System.String
@@ -111,6 +111,21 @@ Accept pipeline input: False
111111
Accept wildcard characters: False
112112
```
113113
114+
### -ProgressAction
115+
{{ Fill ProgressAction Description }}
116+
117+
```yaml
118+
Type: System.Management.Automation.ActionPreference
119+
Parameter Sets: (All)
120+
Aliases: proga
121+
122+
Required: False
123+
Position: Named
124+
Default value: None
125+
Accept pipeline input: False
126+
Accept wildcard characters: False
127+
```
128+
114129
### CommonParameters
115130
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
116131

0 commit comments

Comments
 (0)