@@ -123,25 +123,25 @@ You must provide expected breaking change az version and moudle verision otherwi
123
123
## Case 1 — Generic Breaking change for a cmdlet
124
124
125
125
` ` ` csharp
126
- [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.GenericBreakingChangeWithVersionAttribute( "16.0.0", "4.0.0", "2022/05/30")
126
+ [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.GenericBreakingChangeAttribute("message about the change", "16.0.0", "4.0.0", "2022/05/30")
127
127
```
128
128
129
129
## Case 2 — Breaking change for a cmdlet
130
130
131
131
``` csharp
132
- [Microsoft .Azure .PowerShell .Cmdlets .Databricks .Runtime .CmdletDeprecationWithVersionAttribute (" 16.0.0" , " 4.0.0" , " 2022/05/30" , ReplacementCmdletName = 'replace-xxx' )
132
+ [Microsoft .Azure .PowerShell .Cmdlets .Databricks .Runtime .CmdletBreakingChangeAttribute (" 16.0.0" , " 4.0.0" , " 2022/05/30" , ReplacementCmdletName = 'replace-xxx' )
133
133
```
134
134
135
135
## Case 3 — Breaking change for an output type
136
136
137
137
```csharp
138
- [Microsoft .Azure .PowerShell .Cmdlets .Databricks .Runtime .CmdletOutputBreakingChangeWithVersionAttribute (" oldtype" , " 11.0.0" , " 5.0.0" , " 2022/05/11" , ReplacementCmdletOutputType = " newtype" , DeprecatedOutputProperties = (" propertyA" , " PropertyB" ), NewOutputProperties = (" PropertyC" , " PropertyD" ))]
138
+ [Microsoft .Azure .PowerShell .Cmdlets .Databricks .Runtime .OutputBreakingChangeAttribute (" oldtype" , " 11.0.0" , " 5.0.0" , " 2022/05/11" , ReplacementCmdletOutputType = " newtype" , DeprecatedOutputProperties = (" propertyA" , " PropertyB" ), NewOutputProperties = (" PropertyC" , " PropertyD" ))]
139
139
```
140
140
141
141
## Case 4 — Breaking change for a parameter
142
142
143
143
``` csharp
144
- [Microsoft .Azure .PowerShell .Cmdlets .Databricks .Runtime .CmdletParameterBreakingChangeWithVersionAttribute (" ResourceGroupName" , " 11.0.0" , " 4.1.0" , " 2028/06/18" )]
144
+ [Microsoft .Azure .PowerShell .Cmdlets .Databricks .Runtime .ParameterBreakingChangeAttribute (" ResourceGroupName" , " 11.0.0" , " 4.1.0" , " 2028/06/18" )]
145
145
```
146
146
147
147
## Case 5 — Preview message
0 commit comments