diff --git a/src/Resources/Authorization.Autorest/check-dependencies.ps1 b/src/Resources/Authorization.Autorest/check-dependencies.ps1
index 1200ec1e6fc4..c29591c7bfe1 100644
--- a/src/Resources/Authorization.Autorest/check-dependencies.ps1
+++ b/src/Resources/Authorization.Autorest/check-dependencies.ps1
@@ -25,7 +25,7 @@ if(-not $Isolated) {
function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum, [string]$requiredVersion) {
if($predicate) {
$module = Get-Module -ListAvailable -Name $moduleName
- if((-not $module) -or ($versionMinimum -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -ge [System.Version]$versionMinimum } | Measure-Object).Count -eq 0)) {
+ if((-not $module) -or ($versionMinimum -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -ge [System.Version]$versionMinimum } | Measure-Object).Count -eq 0) -or ($requiredVersion -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -eq [System.Version]$requiredVersion } | Measure-Object).Count -eq 0)) {
$null = New-Item -ItemType Directory -Force -Path $path
Write-Host -ForegroundColor Green "Installing local $moduleName module into '$path'..."
if ($requiredVersion) {
diff --git a/src/Resources/Authorization.Autorest/docs/Az.Authorization.md b/src/Resources/Authorization.Autorest/docs/Az.Authorization.md
index b6d82e4631da..9eef745132e9 100644
--- a/src/Resources/Authorization.Autorest/docs/Az.Authorization.md
+++ b/src/Resources/Authorization.Autorest/docs/Az.Authorization.md
@@ -1,6 +1,6 @@
---
Module Name: Az.Authorization
-Module Guid: 6ecaa7be-41f0-40c8-8246-8b97f7e15a95
+Module Guid: e2748a39-705b-4fb3-b793-2f6b8f5cfec1
Download Help Link: https://docs.microsoft.com/powershell/module/az.authorization
Help Version: 1.0.0.0
Locale: en-US
diff --git a/src/Resources/Authorization.Autorest/generate-info.json b/src/Resources/Authorization.Autorest/generate-info.json
index 9812c1c55ba4..8791a78a902a 100644
--- a/src/Resources/Authorization.Autorest/generate-info.json
+++ b/src/Resources/Authorization.Autorest/generate-info.json
@@ -1,8 +1,8 @@
{
- "autorest_powershell": "3.0.482",
- "swagger_commit": "3439439b760e84e5dcc3e68edde7251c602da5f0",
"node": "v14.15.5",
- "autorest_core": "3.8.3",
+ "autorest_core": "3.8.4",
+ "autorest_modelerfour": "4.15.414",
+ "swagger_commit": "d55b8005f05b040b852c15e74a0f3e36494a15e1",
"autorest": "`-- (empty)",
- "autorest_modelerfour": "4.15.414"
+ "autorest_powershell": "3.0.486"
}
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalSettings.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalSettings.PowerShell.cs
index 73d421603d97..c169aba39b2d 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalSettings.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalSettings.PowerShell.cs
@@ -158,7 +158,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IApprovalSettings FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
/// Serializes this instance to a json string.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalSettings.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalSettings.TypeConverter.cs
index 1395aceafb1f..7291ebe36660 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalSettings.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalSettings.TypeConverter.cs
@@ -26,8 +26,7 @@ public partial class ApprovalSettingsTypeConverter : global::System.Management.A
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalSettings.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalSettings.json.cs
index 4d00ae3f81c4..82b0e44c7b06 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalSettings.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalSettings.json.cs
@@ -20,7 +20,7 @@ public partial class ApprovalSettings
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class ApprovalSettings
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class ApprovalSettings
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalStage.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalStage.PowerShell.cs
index bf7e2fbeb149..defe2bbdc810 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalStage.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalStage.PowerShell.cs
@@ -166,7 +166,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IApprovalStage FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
/// Serializes this instance to a json string.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalStage.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalStage.TypeConverter.cs
index a95895cbbfb6..f8e5a2b937d8 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalStage.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalStage.TypeConverter.cs
@@ -26,8 +26,7 @@ public partial class ApprovalStageTypeConverter : global::System.Management.Auto
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalStage.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalStage.json.cs
index 1c03afd0174f..faf6e6aa356a 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalStage.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ApprovalStage.json.cs
@@ -20,7 +20,7 @@ public partial class ApprovalStage
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class ApprovalStage
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class ApprovalStage
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudError.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudError.PowerShell.cs
index 6569d647ae98..1bcbbcd7c302 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudError.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudError.PowerShell.cs
@@ -142,7 +142,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.ICloudError FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
/// Serializes this instance to a json string.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudError.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudError.TypeConverter.cs
index d1ecdf1bec54..516b9ce0a249 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudError.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudError.TypeConverter.cs
@@ -26,8 +26,7 @@ public partial class CloudErrorTypeConverter : global::System.Management.Automat
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudError.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudError.json.cs
index 497aaaaf4c2b..6bd2e9e7a466 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudError.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudError.json.cs
@@ -20,7 +20,7 @@ public partial class CloudError
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class CloudError
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class CloudError
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudErrorBody.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudErrorBody.PowerShell.cs
index c9b342a47d55..7c71a7764a7f 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudErrorBody.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudErrorBody.PowerShell.cs
@@ -134,7 +134,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.ICloudErrorBody FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
/// Serializes this instance to a json string.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudErrorBody.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudErrorBody.TypeConverter.cs
index 0c0dc83ec55d..cefc4670c3d1 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudErrorBody.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudErrorBody.TypeConverter.cs
@@ -26,8 +26,7 @@ public partial class CloudErrorBodyTypeConverter : global::System.Management.Aut
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudErrorBody.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudErrorBody.json.cs
index 3dd3fcd17a90..55d5bb4c7e89 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudErrorBody.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/CloudErrorBody.json.cs
@@ -20,7 +20,7 @@ public partial class CloudErrorBody
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class CloudErrorBody
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class CloudErrorBody
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResource.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResource.PowerShell.cs
index 515390dc33eb..f512e94c7171 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResource.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResource.PowerShell.cs
@@ -142,7 +142,7 @@ internal EligibleChildResource(global::System.Management.Automation.PSObject con
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IEligibleChildResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
/// Serializes this instance to a json string.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResource.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResource.TypeConverter.cs
index 4a095ac804af..7c18980ac7c9 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResource.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResource.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class EligibleChildResourceTypeConverter : global::System.Managem
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResource.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResource.json.cs
index bb472870acef..6d996ad89523 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResource.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResource.json.cs
@@ -20,7 +20,7 @@ public partial class EligibleChildResource
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class EligibleChildResource
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class EligibleChildResource
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResourcesListResult.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResourcesListResult.PowerShell.cs
index 014e150e2170..c60b1f547aed 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResourcesListResult.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResourcesListResult.PowerShell.cs
@@ -134,7 +134,7 @@ internal EligibleChildResourcesListResult(global::System.Management.Automation.P
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IEligibleChildResourcesListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
/// Serializes this instance to a json string.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResourcesListResult.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResourcesListResult.TypeConverter.cs
index 7cf1c63bea2f..d3bea58fb9d3 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResourcesListResult.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResourcesListResult.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class EligibleChildResourcesListResultTypeConverter : global::Sys
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResourcesListResult.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResourcesListResult.json.cs
index f3d72ad24efc..88e7732e2ddb 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResourcesListResult.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/EligibleChildResourcesListResult.json.cs
@@ -20,7 +20,7 @@ public partial class EligibleChildResourcesListResult
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class EligibleChildResourcesListResult
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class EligibleChildResourcesListResult
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedProperties.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedProperties.PowerShell.cs
index cd81f6042091..e5c40308de00 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedProperties.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedProperties.PowerShell.cs
@@ -221,7 +221,7 @@ internal ExpandedProperties(global::System.Management.Automation.PSObject conten
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IExpandedProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
/// Serializes this instance to a json string.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedProperties.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedProperties.TypeConverter.cs
index 0d79b780029f..69c4dd1c96dc 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedProperties.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedProperties.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class ExpandedPropertiesTypeConverter : global::System.Management
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedProperties.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedProperties.json.cs
index 5556bbb0f3c0..6d7600b20205 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedProperties.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedProperties.json.cs
@@ -19,7 +19,7 @@ public partial class ExpandedProperties
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -29,7 +29,8 @@ public partial class ExpandedProperties
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -41,7 +42,8 @@ public partial class ExpandedProperties
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesPrincipal.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesPrincipal.PowerShell.cs
index fdd487515c12..d0c9e9029d23 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesPrincipal.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesPrincipal.PowerShell.cs
@@ -150,7 +150,7 @@ internal ExpandedPropertiesPrincipal(global::System.Management.Automation.PSObje
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IExpandedPropertiesPrincipal FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
/// Serializes this instance to a json string.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesPrincipal.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesPrincipal.TypeConverter.cs
index 29ceab9f2afc..1a68e5e21ab4 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesPrincipal.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesPrincipal.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class ExpandedPropertiesPrincipalTypeConverter : global::System.M
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesPrincipal.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesPrincipal.json.cs
index 5b7042dd7998..dbf52fe471f1 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesPrincipal.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesPrincipal.json.cs
@@ -20,7 +20,7 @@ public partial class ExpandedPropertiesPrincipal
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class ExpandedPropertiesPrincipal
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class ExpandedPropertiesPrincipal
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesRoleDefinition.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesRoleDefinition.PowerShell.cs
index 1bf2bb911526..bafbede6a064 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesRoleDefinition.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesRoleDefinition.PowerShell.cs
@@ -142,7 +142,7 @@ internal ExpandedPropertiesRoleDefinition(global::System.Management.Automation.P
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IExpandedPropertiesRoleDefinition FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
/// Serializes this instance to a json string.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesRoleDefinition.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesRoleDefinition.TypeConverter.cs
index 619069168420..612d1314fbd2 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesRoleDefinition.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesRoleDefinition.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class ExpandedPropertiesRoleDefinitionTypeConverter : global::Sys
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesRoleDefinition.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesRoleDefinition.json.cs
index df45a87fd67c..053de8935958 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesRoleDefinition.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesRoleDefinition.json.cs
@@ -20,7 +20,7 @@ public partial class ExpandedPropertiesRoleDefinition
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class ExpandedPropertiesRoleDefinition
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class ExpandedPropertiesRoleDefinition
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesScope.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesScope.PowerShell.cs
index fe77718864dc..2963630177df 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesScope.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesScope.PowerShell.cs
@@ -142,7 +142,7 @@ internal ExpandedPropertiesScope(global::System.Management.Automation.PSObject c
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IExpandedPropertiesScope FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
/// Serializes this instance to a json string.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesScope.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesScope.TypeConverter.cs
index bfaaeabd908b..d2c3b6459c11 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesScope.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesScope.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class ExpandedPropertiesScopeTypeConverter : global::System.Manag
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesScope.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesScope.json.cs
index 722a083a06d1..caeafe4af84a 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesScope.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/ExpandedPropertiesScope.json.cs
@@ -20,7 +20,7 @@ public partial class ExpandedPropertiesScope
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class ExpandedPropertiesScope
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class ExpandedPropertiesScope
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentProperties.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentProperties.PowerShell.cs
index 37bfc5b25a60..ef9a1816a8b5 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentProperties.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentProperties.PowerShell.cs
@@ -83,7 +83,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IPolicyAssignmentProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentProperties.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentProperties.TypeConverter.cs
index d7a3b71ceb72..67c1d7e3e11f 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentProperties.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentProperties.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class PolicyAssignmentPropertiesTypeConverter : global::System.Ma
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentProperties.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentProperties.json.cs
index 8c10e50aef3d..048363383df7 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentProperties.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentProperties.json.cs
@@ -19,7 +19,7 @@ public partial class PolicyAssignmentProperties
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -29,7 +29,8 @@ public partial class PolicyAssignmentProperties
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -41,7 +42,8 @@ public partial class PolicyAssignmentProperties
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesPolicy.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesPolicy.PowerShell.cs
index eacb7af0c5b4..a543aab8bf9d 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesPolicy.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesPolicy.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IPolicyAssignmentPropertiesPolicy FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesPolicy.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesPolicy.TypeConverter.cs
index cb2e8d614c4c..9748c8dcfd38 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesPolicy.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesPolicy.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class PolicyAssignmentPropertiesPolicyTypeConverter : global::Sys
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesPolicy.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesPolicy.json.cs
index 1676ec9f755c..9f120560b524 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesPolicy.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesPolicy.json.cs
@@ -20,7 +20,7 @@ public partial class PolicyAssignmentPropertiesPolicy
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class PolicyAssignmentPropertiesPolicy
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class PolicyAssignmentPropertiesPolicy
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesRoleDefinition.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesRoleDefinition.PowerShell.cs
index 54e911e8f576..319214d9aea2 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesRoleDefinition.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesRoleDefinition.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IPolicyAssignmentPropertiesRoleDefinition FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesRoleDefinition.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesRoleDefinition.TypeConverter.cs
index dd2e525b235c..5afda37163e7 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesRoleDefinition.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesRoleDefinition.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class PolicyAssignmentPropertiesRoleDefinitionTypeConverter : glo
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesRoleDefinition.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesRoleDefinition.json.cs
index 4ba379fd1372..ab7ded7aefce 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesRoleDefinition.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesRoleDefinition.json.cs
@@ -20,7 +20,7 @@ public partial class PolicyAssignmentPropertiesRoleDefinition
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class PolicyAssignmentPropertiesRoleDefinition
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class PolicyAssignmentPropertiesRoleDefinition
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesScope.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesScope.PowerShell.cs
index 0215e144c95f..566db1765161 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesScope.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesScope.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IPolicyAssignmentPropertiesScope FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesScope.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesScope.TypeConverter.cs
index 8f83f1446916..b511bdc80eaf 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesScope.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesScope.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class PolicyAssignmentPropertiesScopeTypeConverter : global::Syst
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesScope.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesScope.json.cs
index 68dd1cb19207..7c04ab24df06 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesScope.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyAssignmentPropertiesScope.json.cs
@@ -20,7 +20,7 @@ public partial class PolicyAssignmentPropertiesScope
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class PolicyAssignmentPropertiesScope
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class PolicyAssignmentPropertiesScope
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyProperties.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyProperties.PowerShell.cs
index f402a736313e..4c9ce5364f8d 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyProperties.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyProperties.PowerShell.cs
@@ -83,7 +83,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IPolicyProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyProperties.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyProperties.TypeConverter.cs
index c1d2ce416500..c81755d6a60d 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyProperties.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyProperties.TypeConverter.cs
@@ -26,8 +26,7 @@ public partial class PolicyPropertiesTypeConverter : global::System.Management.A
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyProperties.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyProperties.json.cs
index 10613c373704..3754981320c9 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyProperties.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyProperties.json.cs
@@ -19,7 +19,7 @@ public partial class PolicyProperties
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -29,7 +29,8 @@ public partial class PolicyProperties
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -41,7 +42,8 @@ public partial class PolicyProperties
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyPropertiesScope.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyPropertiesScope.PowerShell.cs
index 9676fbe94e98..8dd0d82cbffa 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyPropertiesScope.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyPropertiesScope.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IPolicyPropertiesScope FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyPropertiesScope.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyPropertiesScope.TypeConverter.cs
index 67cb9e6fa0b6..b55cdd758998 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyPropertiesScope.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyPropertiesScope.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class PolicyPropertiesScopeTypeConverter : global::System.Managem
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyPropertiesScope.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyPropertiesScope.json.cs
index ba5f02aadc7d..10c3f5bf289b 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyPropertiesScope.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/PolicyPropertiesScope.json.cs
@@ -20,7 +20,7 @@ public partial class PolicyPropertiesScope
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class PolicyPropertiesScope
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class PolicyPropertiesScope
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/Principal.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/Principal.PowerShell.cs
index 0c99b04a8457..baaa0e38c364 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/Principal.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/Principal.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IPrincipal FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/Principal.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/Principal.TypeConverter.cs
index 29dafbf9a95e..06d4e8212391 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/Principal.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/Principal.TypeConverter.cs
@@ -26,8 +26,7 @@ public partial class PrincipalTypeConverter : global::System.Management.Automati
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/Principal.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/Principal.json.cs
index f9ccd2a71390..c62e9521bc45 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/Principal.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/Principal.json.cs
@@ -20,7 +20,7 @@ public partial class Principal
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class Principal
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class Principal
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentSchedule.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentSchedule.PowerShell.cs
index 791390d94daf..05ff810d81bb 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentSchedule.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentSchedule.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentSchedule FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentSchedule.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentSchedule.TypeConverter.cs
index 7223012b7ed2..f68e39e332e2 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentSchedule.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentSchedule.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleAssignmentScheduleTypeConverter : global::System.Manage
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentSchedule.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentSchedule.json.cs
index fa754dfae2e9..59b5e2f2bb45 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentSchedule.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentSchedule.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentSchedule
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentSchedule
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentSchedule
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleFilter.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleFilter.PowerShell.cs
index 5eaac2f7dfb9..069952ebaf78 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleFilter.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleFilter.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleFilter FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleFilter.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleFilter.TypeConverter.cs
index b1b90d7afe30..60f07b17cc46 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleFilter.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleFilter.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleAssignmentScheduleFilterTypeConverter : global::System.
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleFilter.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleFilter.json.cs
index cdbd88595687..5f86bd837e3e 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleFilter.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleFilter.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleFilter
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleFilter
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleFilter
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstance.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstance.PowerShell.cs
index 803b0d44c4b7..1d969e3fdaed 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstance.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstance.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleInstance FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstance.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstance.TypeConverter.cs
index 6bf48b90a75e..e4e7ce6c98cf 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstance.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstance.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleAssignmentScheduleInstanceTypeConverter : global::Syste
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstance.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstance.json.cs
index 2f665cae73da..766b2ffc06ed 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstance.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstance.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleInstance
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleInstance
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleInstance
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceFilter.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceFilter.PowerShell.cs
index e609ec97de6f..a15ad49159a6 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceFilter.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceFilter.PowerShell.cs
@@ -84,7 +84,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleInstanceFilter FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceFilter.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceFilter.TypeConverter.cs
index 2490aa3b8b39..f721c0b513b9 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceFilter.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceFilter.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleAssignmentScheduleInstanceFilterTypeConverter : global:
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceFilter.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceFilter.json.cs
index 143e9d305bd6..74bba3426a14 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceFilter.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceFilter.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleInstanceFilter
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleInstanceFilter
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleInstanceFilter
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceListResult.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceListResult.PowerShell.cs
index 692a4be12cf6..3e595569b9ae 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceListResult.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceListResult.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleInstanceListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceListResult.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceListResult.TypeConverter.cs
index d94572b81b2c..db5f0c6dbc22 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceListResult.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceListResult.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleAssignmentScheduleInstanceListResultTypeConverter : glo
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceListResult.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceListResult.json.cs
index 11d253296c06..a0ce042c5dce 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceListResult.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceListResult.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleInstanceListResult
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleInstanceListResult
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleInstanceListResult
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceProperties.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceProperties.PowerShell.cs
index 4a017decf5f0..6222b5a55edf 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceProperties.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceProperties.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleInstanceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceProperties.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceProperties.TypeConverter.cs
index b5ffe20b39c0..c8c934f339bc 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceProperties.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceProperties.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleAssignmentScheduleInstancePropertiesTypeConverter : glo
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceProperties.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceProperties.json.cs
index c353d8b5f60e..f20591bf853b 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceProperties.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleInstanceProperties.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleInstanceProperties
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleInstanceProperties
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleInstanceProperties
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleListResult.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleListResult.PowerShell.cs
index 3e473287d90a..fdddda7c2d46 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleListResult.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleListResult.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleListResult.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleListResult.TypeConverter.cs
index c82a87b0cf3e..34a2ac09fa7a 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleListResult.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleListResult.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleAssignmentScheduleListResultTypeConverter : global::Sys
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleListResult.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleListResult.json.cs
index cd6e58749a56..610e5827be00 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleListResult.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleListResult.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleListResult
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleListResult
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleListResult
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleProperties.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleProperties.PowerShell.cs
index 927cccedfa98..9cf5ac4517b8 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleProperties.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleProperties.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleProperties.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleProperties.TypeConverter.cs
index 4cb4691396be..470e93752123 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleProperties.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleProperties.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleAssignmentSchedulePropertiesTypeConverter : global::Sys
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleProperties.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleProperties.json.cs
index dc9a04078a35..58fc49c398fa 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleProperties.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleProperties.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleProperties
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleProperties
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleProperties
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequest.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequest.PowerShell.cs
index 7015c7a59f7a..afe782dd0039 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequest.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequest.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequest.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequest.TypeConverter.cs
index 1cf3359bbbd9..bf97d97aa38c 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequest.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequest.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleAssignmentScheduleRequestTypeConverter : global::System
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequest.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequest.json.cs
index c176a1a612fd..5c3fcd5451f7 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequest.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequest.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleRequest
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleRequest
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleRequest
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestFilter.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestFilter.PowerShell.cs
index b6c95dde13d7..20a3e28757b9 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestFilter.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestFilter.PowerShell.cs
@@ -84,7 +84,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleRequestFilter FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestFilter.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestFilter.TypeConverter.cs
index 204688dd5325..6f6443a5957c 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestFilter.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestFilter.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleAssignmentScheduleRequestFilterTypeConverter : global::
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestFilter.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestFilter.json.cs
index 114fa80c173d..5b00e31a7849 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestFilter.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestFilter.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleRequestFilter
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleRequestFilter
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleRequestFilter
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestListResult.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestListResult.PowerShell.cs
index 2a194983f5cc..8885097f71c6 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestListResult.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestListResult.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleRequestListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestListResult.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestListResult.TypeConverter.cs
index ab0291526286..15527437ffa3 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestListResult.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestListResult.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleAssignmentScheduleRequestListResultTypeConverter : glob
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestListResult.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestListResult.json.cs
index d8741a48973d..6aa0fc3eac9a 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestListResult.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestListResult.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleRequestListResult
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleRequestListResult
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleRequestListResult
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestProperties.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestProperties.PowerShell.cs
index fd0452372084..6513c3fb6868 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestProperties.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestProperties.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleRequestProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestProperties.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestProperties.TypeConverter.cs
index 632bcbdabd00..8b777c5f18e1 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestProperties.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestProperties.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleAssignmentScheduleRequestPropertiesTypeConverter : glob
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestProperties.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestProperties.json.cs
index 4e6dc6a76c1f..f04c360bb536 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestProperties.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestProperties.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleRequestProperties
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleRequestProperties
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleRequestProperties
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfo.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfo.PowerShell.cs
index 66fc9870aba8..0544ed790bf9 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfo.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfo.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleRequestPropertiesScheduleInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfo.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfo.TypeConverter.cs
index 8bb0f616b8ef..ebed9a40192d 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfo.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfo.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleAssignmentScheduleRequestPropertiesScheduleInfoTypeConv
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfo.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfo.json.cs
index 7143a38a988b..07ce83d1bd22 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfo.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfo.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleRequestPropertiesScheduleInfo
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleRequestPropertiesScheduleInfo
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleRequestPropertiesScheduleInfo
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration.PowerShell.cs
index f7c7f56c3162..d28d13b413fb 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration.TypeConverter.cs
index 74b06367458f..47fdabe498af 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleAssignmentScheduleRequestPropertiesScheduleInfoExpirati
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration.json.cs
index 6c0c6a7a7b28..f3f6832505bb 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesScheduleInfoExpiration.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleRequestPropertiesScheduleInfoExpirati
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleRequestPropertiesScheduleInfoExpirati
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleRequestPropertiesScheduleInfoExpirati
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesTicketInfo.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesTicketInfo.PowerShell.cs
index e9cbb03b3a76..f188b2f7c456 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesTicketInfo.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesTicketInfo.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleRequestPropertiesTicketInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesTicketInfo.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesTicketInfo.TypeConverter.cs
index 8b1172b25f42..d8df392f33f6 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesTicketInfo.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesTicketInfo.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleAssignmentScheduleRequestPropertiesTicketInfoTypeConver
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesTicketInfo.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesTicketInfo.json.cs
index efc620cc1208..677d87f7e81f 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesTicketInfo.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleAssignmentScheduleRequestPropertiesTicketInfo.json.cs
@@ -20,7 +20,7 @@ public partial class RoleAssignmentScheduleRequestPropertiesTicketInfo
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleAssignmentScheduleRequestPropertiesTicketInfo
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleAssignmentScheduleRequestPropertiesTicketInfo
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilitySchedule.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilitySchedule.PowerShell.cs
index 45472d37719f..c3ddd6922a37 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilitySchedule.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilitySchedule.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilitySchedule FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilitySchedule.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilitySchedule.TypeConverter.cs
index dcbdec6a9d52..b5d7d250a08f 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilitySchedule.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilitySchedule.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleEligibilityScheduleTypeConverter : global::System.Manag
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilitySchedule.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilitySchedule.json.cs
index d9b5e6302085..49f05d366447 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilitySchedule.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilitySchedule.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilitySchedule
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilitySchedule
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilitySchedule
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleFilter.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleFilter.PowerShell.cs
index 8ea5695c7342..dd7268c846b1 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleFilter.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleFilter.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleFilter FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleFilter.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleFilter.TypeConverter.cs
index 9cac03dfbc0d..3eb3be1e1a9e 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleFilter.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleFilter.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleEligibilityScheduleFilterTypeConverter : global::System
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleFilter.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleFilter.json.cs
index f6d94e3db2a5..d0efb268a4b7 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleFilter.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleFilter.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleFilter
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleFilter
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleFilter
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstance.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstance.PowerShell.cs
index 3abc032b4bbf..6c16aa028518 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstance.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstance.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleInstance FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstance.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstance.TypeConverter.cs
index 15cc037baca4..4d05c58f7437 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstance.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstance.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleEligibilityScheduleInstanceTypeConverter : global::Syst
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstance.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstance.json.cs
index c5c7008f4bea..ac8066365408 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstance.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstance.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleInstance
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleInstance
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleInstance
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceFilter.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceFilter.PowerShell.cs
index 7f1f605e15fe..ca70d8e35426 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceFilter.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceFilter.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleInstanceFilter FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceFilter.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceFilter.TypeConverter.cs
index 4fda34f9d06f..78a758d746b4 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceFilter.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceFilter.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleEligibilityScheduleInstanceFilterTypeConverter : global
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceFilter.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceFilter.json.cs
index 245974152327..dd94adafb846 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceFilter.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceFilter.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleInstanceFilter
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleInstanceFilter
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleInstanceFilter
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceListResult.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceListResult.PowerShell.cs
index dc1861cfef37..e558e78b3c43 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceListResult.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceListResult.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleInstanceListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceListResult.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceListResult.TypeConverter.cs
index 1543d219a4fc..ed6c64900460 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceListResult.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceListResult.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleEligibilityScheduleInstanceListResultTypeConverter : gl
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceListResult.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceListResult.json.cs
index 98732171ab94..fde1e2fafc87 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceListResult.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceListResult.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleInstanceListResult
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleInstanceListResult
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleInstanceListResult
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceProperties.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceProperties.PowerShell.cs
index dccad21e1534..95f565ea6ec4 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceProperties.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceProperties.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleInstanceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceProperties.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceProperties.TypeConverter.cs
index 6670dce99085..c96904ff061a 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceProperties.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceProperties.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleEligibilityScheduleInstancePropertiesTypeConverter : gl
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceProperties.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceProperties.json.cs
index 6210370522ad..daf6fec9f290 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceProperties.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleInstanceProperties.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleInstanceProperties
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleInstanceProperties
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleInstanceProperties
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleListResult.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleListResult.PowerShell.cs
index b147f0fae90a..a50897c94493 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleListResult.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleListResult.PowerShell.cs
@@ -84,7 +84,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleListResult.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleListResult.TypeConverter.cs
index 054d1fb47177..7ed96845f3d2 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleListResult.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleListResult.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleEligibilityScheduleListResultTypeConverter : global::Sy
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleListResult.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleListResult.json.cs
index 53b6b1ad7512..758f38be1c60 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleListResult.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleListResult.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleListResult
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleListResult
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleListResult
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleProperties.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleProperties.PowerShell.cs
index 0b2a4aec0b5b..ae2f3beb6049 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleProperties.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleProperties.PowerShell.cs
@@ -84,7 +84,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleProperties.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleProperties.TypeConverter.cs
index 209bd49a83ba..2c918f8812d5 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleProperties.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleProperties.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleEligibilitySchedulePropertiesTypeConverter : global::Sy
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleProperties.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleProperties.json.cs
index e7c26526b570..7d8cb03e0138 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleProperties.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleProperties.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleProperties
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleProperties
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleProperties
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequest.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequest.PowerShell.cs
index 07619708b74c..120aef8c6d12 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequest.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequest.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequest.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequest.TypeConverter.cs
index 3afb53137365..0c5dfdd42a97 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequest.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequest.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleEligibilityScheduleRequestTypeConverter : global::Syste
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequest.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequest.json.cs
index 2d00c28b3f95..875d826093dd 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequest.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequest.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleRequest
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleRequest
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleRequest
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestFilter.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestFilter.PowerShell.cs
index 306032ef1796..c9b290e96a96 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestFilter.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestFilter.PowerShell.cs
@@ -84,7 +84,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleRequestFilter FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestFilter.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestFilter.TypeConverter.cs
index d9cfb05c4591..cd5bf3e35bdd 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestFilter.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestFilter.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleEligibilityScheduleRequestFilterTypeConverter : global:
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestFilter.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestFilter.json.cs
index 2fe1a3d5eb03..4815a5e9512a 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestFilter.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestFilter.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleRequestFilter
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleRequestFilter
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleRequestFilter
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestListResult.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestListResult.PowerShell.cs
index 5af8d9b212ae..e748a3605227 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestListResult.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestListResult.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleRequestListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestListResult.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestListResult.TypeConverter.cs
index 04e691765b70..08353d8fe990 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestListResult.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestListResult.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleEligibilityScheduleRequestListResultTypeConverter : glo
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestListResult.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestListResult.json.cs
index 278dec27db2a..a9db06adb783 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestListResult.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestListResult.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleRequestListResult
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleRequestListResult
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleRequestListResult
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestProperties.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestProperties.PowerShell.cs
index 7f014797ca85..59981e58a8da 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestProperties.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestProperties.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleRequestProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestProperties.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestProperties.TypeConverter.cs
index 12105e7c666c..99051f2316c4 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestProperties.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestProperties.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleEligibilityScheduleRequestPropertiesTypeConverter : glo
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestProperties.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestProperties.json.cs
index 55900752cee4..4efdf098d4e7 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestProperties.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestProperties.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleRequestProperties
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleRequestProperties
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleRequestProperties
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfo.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfo.PowerShell.cs
index 9da89665944a..3ab6ec257cec 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfo.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfo.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleRequestPropertiesScheduleInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfo.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfo.TypeConverter.cs
index d7bbf34cb133..f15fda8c43bf 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfo.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfo.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleEligibilityScheduleRequestPropertiesScheduleInfoTypeCon
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfo.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfo.json.cs
index e9ae9531107d..2b61fd770903 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfo.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfo.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleRequestPropertiesScheduleInfo
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleRequestPropertiesScheduleInfo
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleRequestPropertiesScheduleInfo
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration.PowerShell.cs
index 738d9587459d..fe71d145b25e 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration.TypeConverter.cs
index 1ad70c05a8ef..829645f2da02 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleEligibilityScheduleRequestPropertiesScheduleInfoExpirat
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration.json.cs
index 4f477663b01f..38681f14ed47 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesScheduleInfoExpiration.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleRequestPropertiesScheduleInfoExpirat
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleRequestPropertiesScheduleInfoExpirat
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleRequestPropertiesScheduleInfoExpirat
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesTicketInfo.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesTicketInfo.PowerShell.cs
index ccfa4ab066c2..bfb5f5eb5d9b 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesTicketInfo.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesTicketInfo.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleRequestPropertiesTicketInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesTicketInfo.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesTicketInfo.TypeConverter.cs
index 51cb93efd094..93c5caafb971 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesTicketInfo.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesTicketInfo.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleEligibilityScheduleRequestPropertiesTicketInfoTypeConve
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesTicketInfo.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesTicketInfo.json.cs
index c730d502a9b1..7879cff3cfd5 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesTicketInfo.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleEligibilityScheduleRequestPropertiesTicketInfo.json.cs
@@ -20,7 +20,7 @@ public partial class RoleEligibilityScheduleRequestPropertiesTicketInfo
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleEligibilityScheduleRequestPropertiesTicketInfo
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleEligibilityScheduleRequestPropertiesTicketInfo
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicy.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicy.PowerShell.cs
index 0cc260ba3698..a7c287df7a76 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicy.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicy.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicy FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicy.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicy.TypeConverter.cs
index b9db3343dae4..deb9e378fd0d 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicy.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicy.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleManagementPolicyTypeConverter : global::System.Manageme
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicy.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicy.json.cs
index fb77bea00b81..8aaed98f5a85 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicy.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicy.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicy
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicy
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicy
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.PowerShell.cs
index 1782da3efda5..7a8254feee4c 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyApprovalRule FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.TypeConverter.cs
index f1c6d4d0bba9..c9a7e954ce26 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleManagementPolicyApprovalRuleTypeConverter : global::Sys
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.cs
index 4f6624a26be5..a1b956b19c00 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.cs
@@ -95,7 +95,7 @@ public RoleManagementPolicyApprovalRule()
/// an instance that will receive validation
/// events.
///
- /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed.
+ /// A that will be complete when validation is completed.
///
public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener eventListener)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.json.cs
index 9b9950bbc6f0..781c0b442c00 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyApprovalRule.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicyApprovalRule
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicyApprovalRule
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicyApprovalRule
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignment.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignment.PowerShell.cs
index 1e8d3cd86796..cd5f06cb61fc 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignment.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignment.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyAssignment FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignment.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignment.TypeConverter.cs
index e950bd1073ee..19cbefb78b9a 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignment.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignment.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleManagementPolicyAssignmentTypeConverter : global::Syste
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignment.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignment.json.cs
index 1f059e7f8e07..2af1b4688dc8 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignment.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignment.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicyAssignment
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicyAssignment
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicyAssignment
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentListResult.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentListResult.PowerShell.cs
index d4830ce7a61d..2cabdd244b5f 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentListResult.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentListResult.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyAssignmentListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentListResult.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentListResult.TypeConverter.cs
index 964f6dbb1dcb..6ff63ffac020 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentListResult.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentListResult.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleManagementPolicyAssignmentListResultTypeConverter : glo
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentListResult.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentListResult.json.cs
index 8d9a25d8f78e..5590c5035e09 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentListResult.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentListResult.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicyAssignmentListResult
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicyAssignmentListResult
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicyAssignmentListResult
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentProperties.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentProperties.PowerShell.cs
index 3705d13320d1..e693b5d01526 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentProperties.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentProperties.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyAssignmentProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentProperties.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentProperties.TypeConverter.cs
index d1443819b6a8..d995e5b04c6f 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentProperties.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentProperties.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleManagementPolicyAssignmentPropertiesTypeConverter : glo
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentProperties.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentProperties.json.cs
index 555e543a5d23..591c50845cb7 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentProperties.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAssignmentProperties.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicyAssignmentProperties
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicyAssignmentProperties
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicyAssignmentProperties
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.PowerShell.cs
index 21adf2a0a779..3129c27895a4 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.PowerShell.cs
@@ -85,7 +85,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyAuthenticationContextRule FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.TypeConverter.cs
index 119001575299..4db3b4c63867 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleManagementPolicyAuthenticationContextRuleTypeConverter
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.cs
index 78279fc75923..195d0d52a176 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.cs
@@ -81,7 +81,7 @@ public RoleManagementPolicyAuthenticationContextRule()
/// an instance that will receive validation
/// events.
///
- /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed.
+ /// A that will be complete when validation is completed.
///
public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener eventListener)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.json.cs
index dbb5419f4af8..9a8aa608415d 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyAuthenticationContextRule.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicyAuthenticationContextRule
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicyAuthenticationContextRule
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicyAuthenticationContextRule
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.PowerShell.cs
index c2f1fc96cb10..701250964a97 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.PowerShell.cs
@@ -84,7 +84,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyEnablementRule FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.TypeConverter.cs
index a993ad153ba2..f9f32dc820ed 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleManagementPolicyEnablementRuleTypeConverter : global::S
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.cs
index 70a4da87283b..dfdaafaff34e 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.cs
@@ -72,7 +72,7 @@ public RoleManagementPolicyEnablementRule()
/// an instance that will receive validation
/// events.
///
- /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed.
+ /// A that will be complete when validation is completed.
///
public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener eventListener)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.json.cs
index d90a75194ee5..37eba3260404 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyEnablementRule.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicyEnablementRule
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicyEnablementRule
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicyEnablementRule
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.PowerShell.cs
index b982c1735ae8..351fee5a31a1 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.PowerShell.cs
@@ -84,7 +84,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyExpirationRule FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.TypeConverter.cs
index 7e77df268adc..9da078a8450f 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleManagementPolicyExpirationRuleTypeConverter : global::S
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.cs
index 4767c427cd05..839761cd3b95 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.cs
@@ -79,7 +79,7 @@ public RoleManagementPolicyExpirationRule()
/// an instance that will receive validation
/// events.
///
- /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed.
+ /// A that will be complete when validation is completed.
///
public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener eventListener)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.json.cs
index bf91d4e9fc43..3c8394179f83 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyExpirationRule.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicyExpirationRule
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicyExpirationRule
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicyExpirationRule
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyListResult.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyListResult.PowerShell.cs
index 9bd0e588cdc6..2179f5fd510e 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyListResult.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyListResult.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyListResult.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyListResult.TypeConverter.cs
index b227b1199e40..3bc0ba3f347e 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyListResult.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyListResult.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleManagementPolicyListResultTypeConverter : global::Syste
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyListResult.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyListResult.json.cs
index 94b4e5d2249b..3e80c59c86dd 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyListResult.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyListResult.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicyListResult
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicyListResult
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicyListResult
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.PowerShell.cs
index 43474f18787b..0d9331fd7cad 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.PowerShell.cs
@@ -84,7 +84,9 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ ///
+ /// an instance of the model class.
+ ///
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyNotificationRule FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.TypeConverter.cs
index 16a28619e22a..05aade0529cc 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.TypeConverter.cs
@@ -27,8 +27,8 @@ public partial class RoleManagementPolicyNotificationRuleTypeConverter : global:
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.cs
index eb8a42d7fe2b..1186d61f7254 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.cs
@@ -102,7 +102,7 @@ public RoleManagementPolicyNotificationRule()
/// an instance that will receive validation
/// events.
///
- /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed.
+ /// A that will be complete when validation is completed.
///
public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener eventListener)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.json.cs
index f87a6ea1f03a..dde409f2d659 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyNotificationRule.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicyNotificationRule
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicyNotificationRule
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicyNotificationRule
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyProperties.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyProperties.PowerShell.cs
index 5d1a77325add..23cd05fb9c85 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyProperties.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyProperties.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyProperties.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyProperties.TypeConverter.cs
index cc76e71d29ea..53f2ca891893 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyProperties.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyProperties.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleManagementPolicyPropertiesTypeConverter : global::Syste
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyProperties.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyProperties.json.cs
index 47dd585badc4..3c938cd20575 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyProperties.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyProperties.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicyProperties
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicyProperties
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicyProperties
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRule.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRule.PowerShell.cs
index e5247de7ab05..db7442a8f76c 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRule.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRule.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyRule FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRule.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRule.TypeConverter.cs
index 4768f2be5c32..cb86ac3b5c3f 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRule.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRule.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleManagementPolicyRuleTypeConverter : global::System.Mana
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRule.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRule.json.cs
index 2d5c697d4413..66d578a72d5b 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRule.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRule.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicyRule
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicyRule
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicyRule
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRuleTarget.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRuleTarget.PowerShell.cs
index 497b77b384dd..f3196fec2a3b 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRuleTarget.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRuleTarget.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyRuleTarget FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
///
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRuleTarget.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRuleTarget.TypeConverter.cs
index 6e3428beb830..44502ba36b4c 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRuleTarget.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRuleTarget.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class RoleManagementPolicyRuleTargetTypeConverter : global::Syste
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRuleTarget.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRuleTarget.json.cs
index 11628d7496b4..50efdd233ad4 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRuleTarget.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/RoleManagementPolicyRuleTarget.json.cs
@@ -20,7 +20,7 @@ public partial class RoleManagementPolicyRuleTarget
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class RoleManagementPolicyRuleTarget
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class RoleManagementPolicyRuleTarget
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/UserSet.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/UserSet.PowerShell.cs
index ac7aa52b6556..7c0c8f55887d 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/UserSet.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/UserSet.PowerShell.cs
@@ -84,7 +84,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IUserSet FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
/// Serializes this instance to a json string.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/UserSet.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/UserSet.TypeConverter.cs
index 0faac1bf7a77..0ae56fc84609 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/UserSet.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/UserSet.TypeConverter.cs
@@ -26,8 +26,7 @@ public partial class UserSetTypeConverter : global::System.Management.Automation
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/UserSet.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/UserSet.json.cs
index 0b0d9d89a6c3..e4c82f4af948 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/UserSet.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/Api20201001Preview/UserSet.json.cs
@@ -20,7 +20,7 @@ public partial class UserSet
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -30,7 +30,8 @@ public partial class UserSet
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -42,7 +43,8 @@ public partial class UserSet
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/AuthorizationIdentity.PowerShell.cs b/src/Resources/Authorization.Autorest/generated/api/Models/AuthorizationIdentity.PowerShell.cs
index 2224f9b024d3..dea287bbad41 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/AuthorizationIdentity.PowerShell.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/AuthorizationIdentity.PowerShell.cs
@@ -195,7 +195,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.
/// Creates a new instance of , deserializing the content from a json string.
///
/// a string containing a JSON serialized instance of this model.
- /// an instance of the model class.
+ /// an instance of the model class.
public static Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.IAuthorizationIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonNode.Parse(jsonText));
/// Serializes this instance to a json string.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/AuthorizationIdentity.TypeConverter.cs b/src/Resources/Authorization.Autorest/generated/api/Models/AuthorizationIdentity.TypeConverter.cs
index 0ef6dd14e37d..8ac414842c13 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/AuthorizationIdentity.TypeConverter.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/AuthorizationIdentity.TypeConverter.cs
@@ -26,8 +26,8 @@ public partial class AuthorizationIdentityTypeConverter : global::System.Managem
public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue);
///
- /// Determines if the converter can convert the parameter to the
- /// parameter.
+ /// Determines if the converter can convert the parameter to the .
///
/// the instance to check if it can be converted to the type.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Models/AuthorizationIdentity.json.cs b/src/Resources/Authorization.Autorest/generated/api/Models/AuthorizationIdentity.json.cs
index e483b82a37b1..934d539f0f3f 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Models/AuthorizationIdentity.json.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Models/AuthorizationIdentity.json.cs
@@ -19,7 +19,7 @@ public partial class AuthorizationIdentity
partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Json.JsonObject json);
///
- /// AfterToJson will be called after the json erialization has finished, allowing customization of the AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior
///
/// The JSON container that the serialization result will be placed in.
@@ -29,7 +29,8 @@ public partial class AuthorizationIdentity
///
/// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of
/// the object before it is deserialized.
- /// If you wish to disable the default deserialization entirely, return true in the output parameter.
+ /// If you wish to disable the default deserialization entirely, return true in the
+ /// output parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JsonNode that should be deserialized into this object.
@@ -41,7 +42,8 @@ public partial class AuthorizationIdentity
///
/// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the
/// object before it is serialized.
- /// If you wish to disable the default serialization entirely, return true in the output parameter.
+ /// If you wish to disable the default serialization entirely, return true in the output
+ /// parameter.
/// Implement this method in a partial class to enable this behavior.
///
/// The JSON container that the serialization result will be placed in.
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/ApprovalMode.cs b/src/Resources/Authorization.Autorest/generated/api/Support/ApprovalMode.cs
index 24497dabd532..859f3024d5da 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/ApprovalMode.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/ApprovalMode.cs
@@ -21,7 +21,7 @@ public partial struct ApprovalMode :
/// the value for an instance of the Enum.
private string _value { get; set; }
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
/// the value to create an instance for.
private ApprovalMode(string underlyingValue)
{
@@ -82,8 +82,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum ApprovalMode
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.ApprovalMode e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.ApprovalMode e2)
{
@@ -91,8 +91,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum ApprovalMode
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.ApprovalMode e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.ApprovalMode e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/AssignmentType.cs b/src/Resources/Authorization.Autorest/generated/api/Support/AssignmentType.cs
index d366d10135d1..0b265e86f4ad 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/AssignmentType.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/AssignmentType.cs
@@ -17,7 +17,7 @@ public partial struct AssignmentType :
/// the value for an instance of the Enum.
private string _value { get; set; }
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
/// the value to create an instance for.
private AssignmentType(string underlyingValue)
{
@@ -78,8 +78,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum AssignmentType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.AssignmentType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.AssignmentType e2)
{
@@ -87,8 +87,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum AssignmentType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.AssignmentType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.AssignmentType e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/EnablementRules.cs b/src/Resources/Authorization.Autorest/generated/api/Support/EnablementRules.cs
index 88600d829442..5a8fcead0c27 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/EnablementRules.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/EnablementRules.cs
@@ -26,7 +26,7 @@ internal static object CreateFrom(object value)
return new EnablementRules(global::System.Convert.ToString(value));
}
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
/// the value to create an instance for.
private EnablementRules(string underlyingValue)
{
@@ -80,8 +80,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum EnablementRules
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.EnablementRules e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.EnablementRules e2)
{
@@ -89,8 +89,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum EnablementRules
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.EnablementRules e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.EnablementRules e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/MemberType.cs b/src/Resources/Authorization.Autorest/generated/api/Support/MemberType.cs
index ca37e975ab96..b6a8364f7293 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/MemberType.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/MemberType.cs
@@ -49,7 +49,7 @@ public override int GetHashCode()
return this._value.GetHashCode();
}
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
/// the value to create an instance for.
private MemberType(string underlyingValue)
{
@@ -80,8 +80,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum MemberType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.MemberType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.MemberType e2)
{
@@ -89,8 +89,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum MemberType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.MemberType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.MemberType e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/NotificationDeliveryMechanism.cs b/src/Resources/Authorization.Autorest/generated/api/Support/NotificationDeliveryMechanism.cs
index 44290ab0bdd7..9ee533a3139d 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/NotificationDeliveryMechanism.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/NotificationDeliveryMechanism.cs
@@ -50,7 +50,7 @@ public override int GetHashCode()
}
///
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
///
/// the value to create an instance for.
private NotificationDeliveryMechanism(string underlyingValue)
@@ -82,8 +82,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum NotificationDeliveryMechanism
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.NotificationDeliveryMechanism e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.NotificationDeliveryMechanism e2)
{
@@ -91,8 +91,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum NotificationDeliveryMechanism
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.NotificationDeliveryMechanism e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.NotificationDeliveryMechanism e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/NotificationLevel.cs b/src/Resources/Authorization.Autorest/generated/api/Support/NotificationLevel.cs
index 0c5041bd8101..f36e415e51a0 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/NotificationLevel.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/NotificationLevel.cs
@@ -49,7 +49,7 @@ public override int GetHashCode()
return this._value.GetHashCode();
}
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
/// the value to create an instance for.
private NotificationLevel(string underlyingValue)
{
@@ -80,8 +80,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum NotificationLevel
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.NotificationLevel e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.NotificationLevel e2)
{
@@ -89,8 +89,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum NotificationLevel
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.NotificationLevel e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.NotificationLevel e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/PrincipalType.cs b/src/Resources/Authorization.Autorest/generated/api/Support/PrincipalType.cs
index a0fc3f5da6b3..94fe7601f15d 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/PrincipalType.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/PrincipalType.cs
@@ -65,7 +65,7 @@ public override int GetHashCode()
return this._value.GetHashCode();
}
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
/// the value to create an instance for.
private PrincipalType(string underlyingValue)
{
@@ -96,8 +96,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum PrincipalType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.PrincipalType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.PrincipalType e2)
{
@@ -105,8 +105,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum PrincipalType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.PrincipalType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.PrincipalType e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/RecipientType.cs b/src/Resources/Authorization.Autorest/generated/api/Support/RecipientType.cs
index 5e9f813ab51e..30e6cfd27c15 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/RecipientType.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/RecipientType.cs
@@ -49,7 +49,7 @@ public override int GetHashCode()
return this._value.GetHashCode();
}
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
/// the value to create an instance for.
private RecipientType(string underlyingValue)
{
@@ -80,8 +80,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum RecipientType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RecipientType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RecipientType e2)
{
@@ -89,8 +89,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum RecipientType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RecipientType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RecipientType e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/RequestType.cs b/src/Resources/Authorization.Autorest/generated/api/Support/RequestType.cs
index c6bb95e29e24..f655be82926e 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/RequestType.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/RequestType.cs
@@ -63,7 +63,7 @@ public override int GetHashCode()
return this._value.GetHashCode();
}
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
/// the value to create an instance for.
private RequestType(string underlyingValue)
{
@@ -94,8 +94,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum RequestType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType e2)
{
@@ -103,8 +103,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum RequestType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/RoleManagementPolicyRuleType.cs b/src/Resources/Authorization.Autorest/generated/api/Support/RoleManagementPolicyRuleType.cs
index 1fdae1be4778..a662c163885c 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/RoleManagementPolicyRuleType.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/RoleManagementPolicyRuleType.cs
@@ -56,7 +56,7 @@ public override int GetHashCode()
}
///
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
///
/// the value to create an instance for.
private RoleManagementPolicyRuleType(string underlyingValue)
@@ -88,8 +88,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum RoleManagementPolicyRuleType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RoleManagementPolicyRuleType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RoleManagementPolicyRuleType e2)
{
@@ -97,8 +97,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum RoleManagementPolicyRuleType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RoleManagementPolicyRuleType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RoleManagementPolicyRuleType e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/Status.cs b/src/Resources/Authorization.Autorest/generated/api/Support/Status.cs
index af92cca6d16a..b276b054ab63 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/Status.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/Status.cs
@@ -87,7 +87,7 @@ public override int GetHashCode()
return this._value.GetHashCode();
}
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
/// the value to create an instance for.
private Status(string underlyingValue)
{
@@ -118,8 +118,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum Status
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Status e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Status e2)
{
@@ -127,8 +127,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum Status
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Status e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Status e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/Type.cs b/src/Resources/Authorization.Autorest/generated/api/Support/Type.cs
index ac4da620c200..bfb2806a4b1a 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/Type.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/Type.cs
@@ -56,7 +56,7 @@ public override string ToString()
return this._value;
}
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
/// the value to create an instance for.
private Type(string underlyingValue)
{
@@ -80,8 +80,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum Type
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type e2)
{
@@ -89,8 +89,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum Type
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/api/Support/UserType.cs b/src/Resources/Authorization.Autorest/generated/api/Support/UserType.cs
index db6cf08534f2..729249742513 100644
--- a/src/Resources/Authorization.Autorest/generated/api/Support/UserType.cs
+++ b/src/Resources/Authorization.Autorest/generated/api/Support/UserType.cs
@@ -54,7 +54,7 @@ public override string ToString()
return this._value;
}
- /// Creates an instance of the
+ /// Creates an instance of the Enum class.
/// the value to create an instance for.
private UserType(string underlyingValue)
{
@@ -78,8 +78,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding != operator for enum UserType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are not equal to the same value
public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.UserType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.UserType e2)
{
@@ -87,8 +87,8 @@ public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Resour
}
/// Overriding == operator for enum UserType
- /// the value to compare against
- /// the value to compare against
+ /// the value to compare against
+ /// the value to compare against
/// true if the two instances are equal to the same value
public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.UserType e1, Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.UserType e2)
{
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleInstance_Get.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleInstance_Get.cs
index a6c1f0f694ec..4c287a380de2 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleInstance_Get.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleInstance_Get.cs
@@ -66,11 +66,11 @@ public partial class GetAzRoleAssignmentScheduleInstance_Get : global::System.Ma
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleInstance_GetViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleInstance_GetViaIdentity.cs
index 987f592be227..1af6699c7e9a 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleInstance_GetViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleInstance_GetViaIdentity.cs
@@ -74,11 +74,11 @@ public partial class GetAzRoleAssignmentScheduleInstance_GetViaIdentity : global
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleInstance_List.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleInstance_List.cs
index b50751b717a0..9c0c88fb415a 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleInstance_List.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleInstance_List.cs
@@ -91,11 +91,11 @@ public partial class GetAzRoleAssignmentScheduleInstance_List : global::System.M
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleRequest_Get.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleRequest_Get.cs
index b55bb73269fb..a5562223e6ec 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleRequest_Get.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleRequest_Get.cs
@@ -66,11 +66,11 @@ public partial class GetAzRoleAssignmentScheduleRequest_Get : global::System.Man
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleRequest_GetViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleRequest_GetViaIdentity.cs
index 96affaa2f1d2..7604dbc94aac 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleRequest_GetViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleRequest_GetViaIdentity.cs
@@ -74,11 +74,11 @@ public partial class GetAzRoleAssignmentScheduleRequest_GetViaIdentity : global:
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleRequest_List.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleRequest_List.cs
index 5e74ccad8642..debdf4130701 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleRequest_List.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentScheduleRequest_List.cs
@@ -92,11 +92,11 @@ public partial class GetAzRoleAssignmentScheduleRequest_List : global::System.Ma
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentSchedule_Get.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentSchedule_Get.cs
index 123c8bc9d369..27864a7a677a 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentSchedule_Get.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentSchedule_Get.cs
@@ -66,11 +66,11 @@ public partial class GetAzRoleAssignmentSchedule_Get : global::System.Management
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentSchedule_GetViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentSchedule_GetViaIdentity.cs
index f599d68c176b..2c6854874afd 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentSchedule_GetViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentSchedule_GetViaIdentity.cs
@@ -74,11 +74,11 @@ public partial class GetAzRoleAssignmentSchedule_GetViaIdentity : global::System
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentSchedule_List.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentSchedule_List.cs
index 691dfd57fe9a..3ea13fd8a67e 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentSchedule_List.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleAssignmentSchedule_List.cs
@@ -91,11 +91,11 @@ public partial class GetAzRoleAssignmentSchedule_List : global::System.Managemen
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleInstance_Get.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleInstance_Get.cs
index bd84b674fdc4..b233541c6674 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleInstance_Get.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleInstance_Get.cs
@@ -66,11 +66,11 @@ public partial class GetAzRoleEligibilityScheduleInstance_Get : global::System.M
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleInstance_GetViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleInstance_GetViaIdentity.cs
index 08d65c2b2673..1d9b220f4040 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleInstance_GetViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleInstance_GetViaIdentity.cs
@@ -74,11 +74,11 @@ public partial class GetAzRoleEligibilityScheduleInstance_GetViaIdentity : globa
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleInstance_List.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleInstance_List.cs
index f66ba6cac0fa..4a19cafc202d 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleInstance_List.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleInstance_List.cs
@@ -91,11 +91,11 @@ public partial class GetAzRoleEligibilityScheduleInstance_List : global::System.
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleRequest_Get.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleRequest_Get.cs
index da8bde9dde50..bb2569d887ff 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleRequest_Get.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleRequest_Get.cs
@@ -66,11 +66,11 @@ public partial class GetAzRoleEligibilityScheduleRequest_Get : global::System.Ma
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleRequest_GetViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleRequest_GetViaIdentity.cs
index 1668fa1e1a94..32d9c1607bfa 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleRequest_GetViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleRequest_GetViaIdentity.cs
@@ -74,11 +74,11 @@ public partial class GetAzRoleEligibilityScheduleRequest_GetViaIdentity : global
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleRequest_List.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleRequest_List.cs
index 5e3d27740360..391542756f8e 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleRequest_List.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilityScheduleRequest_List.cs
@@ -92,11 +92,11 @@ public partial class GetAzRoleEligibilityScheduleRequest_List : global::System.M
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilitySchedule_Get.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilitySchedule_Get.cs
index 6979ffcf0d71..32f0857c24f4 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilitySchedule_Get.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilitySchedule_Get.cs
@@ -66,11 +66,11 @@ public partial class GetAzRoleEligibilitySchedule_Get : global::System.Managemen
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilitySchedule_GetViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilitySchedule_GetViaIdentity.cs
index f040da53f3be..78f5d8ce06a3 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilitySchedule_GetViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilitySchedule_GetViaIdentity.cs
@@ -74,11 +74,11 @@ public partial class GetAzRoleEligibilitySchedule_GetViaIdentity : global::Syste
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilitySchedule_List.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilitySchedule_List.cs
index 9795ba4badfc..bd3030c27151 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilitySchedule_List.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibilitySchedule_List.cs
@@ -91,11 +91,11 @@ public partial class GetAzRoleEligibilitySchedule_List : global::System.Manageme
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibleChildResource_Get.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibleChildResource_Get.cs
index 753e340a4d28..cabc03708882 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibleChildResource_Get.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibleChildResource_Get.cs
@@ -90,11 +90,11 @@ public partial class GetAzRoleEligibleChildResource_Get : global::System.Managem
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibleChildResource_GetViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibleChildResource_GetViaIdentity.cs
index 4a6135da9149..1046dda4bc21 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibleChildResource_GetViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleEligibleChildResource_GetViaIdentity.cs
@@ -98,11 +98,11 @@ public partial class GetAzRoleEligibleChildResource_GetViaIdentity : global::Sys
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicyAssignment_Get.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicyAssignment_Get.cs
index 268ee92bf1cd..1264cc9fd375 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicyAssignment_Get.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicyAssignment_Get.cs
@@ -66,11 +66,11 @@ public partial class GetAzRoleManagementPolicyAssignment_Get : global::System.Ma
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicyAssignment_GetViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicyAssignment_GetViaIdentity.cs
index 20c831761f59..af71afa75ecf 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicyAssignment_GetViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicyAssignment_GetViaIdentity.cs
@@ -74,11 +74,11 @@ public partial class GetAzRoleManagementPolicyAssignment_GetViaIdentity : global
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicyAssignment_List.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicyAssignment_List.cs
index f0e2b16c222e..a4faee3251a8 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicyAssignment_List.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicyAssignment_List.cs
@@ -72,11 +72,11 @@ public partial class GetAzRoleManagementPolicyAssignment_List : global::System.M
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicy_Get.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicy_Get.cs
index c24cdff82249..969f9bc84d95 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicy_Get.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicy_Get.cs
@@ -66,11 +66,11 @@ public partial class GetAzRoleManagementPolicy_Get : global::System.Management.A
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicy_GetViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicy_GetViaIdentity.cs
index 142ac27bdcae..13d53c2c1745 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicy_GetViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicy_GetViaIdentity.cs
@@ -74,11 +74,11 @@ public partial class GetAzRoleManagementPolicy_GetViaIdentity : global::System.M
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicy_List.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicy_List.cs
index f0fae5d679d4..577e409a5ebe 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicy_List.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/GetAzRoleManagementPolicy_List.cs
@@ -72,11 +72,11 @@ public partial class GetAzRoleManagementPolicy_List : global::System.Management.
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/NewAzRoleAssignmentScheduleRequest_CreateExpanded.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/NewAzRoleAssignmentScheduleRequest_CreateExpanded.cs
index 1890fc8e833b..1b5d580d72e2 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/NewAzRoleAssignmentScheduleRequest_CreateExpanded.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/NewAzRoleAssignmentScheduleRequest_CreateExpanded.cs
@@ -33,6 +33,9 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
///
private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource();
+ /// Role Assignment schedule request
+ private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleRequest _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.RoleAssignmentScheduleRequest();
+
/// Wait for .NET debugger to attach
[global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")]
[global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.ParameterCategory.Runtime)]
@@ -53,7 +56,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"The conditions on the role assignment. This limits the resources it can be assigned to. e.g.: @Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase 'foo_storage_container'",
SerializedName = @"condition",
PossibleTypes = new [] { typeof(string) })]
- public string Condition { get => ParametersBody.Condition ?? null; set => ParametersBody.Condition = value; }
+ public string Condition { get => _parametersBody.Condition ?? null; set => _parametersBody.Condition = value; }
/// Version of the condition. Currently accepted value is '2.0'
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Version of the condition. Currently accepted value is '2.0'")]
@@ -64,7 +67,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"Version of the condition. Currently accepted value is '2.0'",
SerializedName = @"conditionVersion",
PossibleTypes = new [] { typeof(string) })]
- public string ConditionVersion { get => ParametersBody.ConditionVersion ?? null; set => ParametersBody.ConditionVersion = value; }
+ public string ConditionVersion { get => _parametersBody.ConditionVersion ?? null; set => _parametersBody.ConditionVersion = value; }
///
/// The credentials, account, tenant, and subscription used for communication with Azure
@@ -84,7 +87,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"Duration of the role assignment schedule in TimeSpan.",
SerializedName = @"duration",
PossibleTypes = new [] { typeof(string) })]
- public string ExpirationDuration { get => ParametersBody.ExpirationDuration ?? null; set => ParametersBody.ExpirationDuration = value; }
+ public string ExpirationDuration { get => _parametersBody.ExpirationDuration ?? null; set => _parametersBody.ExpirationDuration = value; }
/// End DateTime of the role assignment schedule.
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "End DateTime of the role assignment schedule.")]
@@ -95,7 +98,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"End DateTime of the role assignment schedule.",
SerializedName = @"endDateTime",
PossibleTypes = new [] { typeof(global::System.DateTime) })]
- public global::System.DateTime ExpirationEndDateTime { get => ParametersBody.ExpirationEndDateTime ?? default(global::System.DateTime); set => ParametersBody.ExpirationEndDateTime = value; }
+ public global::System.DateTime ExpirationEndDateTime { get => _parametersBody.ExpirationEndDateTime ?? default(global::System.DateTime); set => _parametersBody.ExpirationEndDateTime = value; }
/// Type of the role assignment schedule expiration
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Type of the role assignment schedule expiration")]
@@ -107,7 +110,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
SerializedName = @"type",
PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type) })]
[global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type))]
- public Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type ExpirationType { get => ParametersBody.ExpirationType ?? ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type)""); set => ParametersBody.ExpirationType = value; }
+ public Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type ExpirationType { get => _parametersBody.ExpirationType ?? ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type)""); set => _parametersBody.ExpirationType = value; }
/// SendAsync Pipeline Steps to be appended to the front of the pipeline
[global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")]
@@ -133,7 +136,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"Justification for the role assignment",
SerializedName = @"justification",
PossibleTypes = new [] { typeof(string) })]
- public string Justification { get => ParametersBody.Justification ?? null; set => ParametersBody.Justification = value; }
+ public string Justification { get => _parametersBody.Justification ?? null; set => _parametersBody.Justification = value; }
/// The linked role eligibility schedule id - to activate an eligibility.
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The linked role eligibility schedule id - to activate an eligibility.")]
@@ -144,14 +147,14 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"The linked role eligibility schedule id - to activate an eligibility.",
SerializedName = @"linkedRoleEligibilityScheduleId",
PossibleTypes = new [] { typeof(string) })]
- public string LinkedRoleEligibilityScheduleId { get => ParametersBody.LinkedRoleEligibilityScheduleId ?? null; set => ParametersBody.LinkedRoleEligibilityScheduleId = value; }
+ public string LinkedRoleEligibilityScheduleId { get => _parametersBody.LinkedRoleEligibilityScheduleId ?? null; set => _parametersBody.LinkedRoleEligibilityScheduleId = value; }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
@@ -169,12 +172,6 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
[global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.ParameterCategory.Path)]
public string Name { get => this._name; set => this._name = value; }
- /// Backing field for property.
- private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleRequest _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.RoleAssignmentScheduleRequest();
-
- /// Role Assignment schedule request
- private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleAssignmentScheduleRequest ParametersBody { get => this._parametersBody; set => this._parametersBody = value; }
-
///
/// The instance of the that the remote call will use.
///
@@ -189,7 +186,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"The principal ID.",
SerializedName = @"principalId",
PossibleTypes = new [] { typeof(string) })]
- public string PrincipalId { get => ParametersBody.PrincipalId ?? null; set => ParametersBody.PrincipalId = value; }
+ public string PrincipalId { get => _parametersBody.PrincipalId ?? null; set => _parametersBody.PrincipalId = value; }
/// The URI for the proxy server to use
[global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")]
@@ -219,7 +216,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
SerializedName = @"requestType",
PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType) })]
[global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType))]
- public Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType RequestType { get => ParametersBody.RequestType ?? ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType)""); set => ParametersBody.RequestType = value; }
+ public Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType RequestType { get => _parametersBody.RequestType ?? ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType)""); set => _parametersBody.RequestType = value; }
/// The role definition ID.
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The role definition ID.")]
@@ -230,7 +227,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"The role definition ID.",
SerializedName = @"roleDefinitionId",
PossibleTypes = new [] { typeof(string) })]
- public string RoleDefinitionId { get => ParametersBody.RoleDefinitionId ?? null; set => ParametersBody.RoleDefinitionId = value; }
+ public string RoleDefinitionId { get => _parametersBody.RoleDefinitionId ?? null; set => _parametersBody.RoleDefinitionId = value; }
/// Start DateTime of the role assignment schedule.
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Start DateTime of the role assignment schedule.")]
@@ -241,7 +238,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"Start DateTime of the role assignment schedule.",
SerializedName = @"startDateTime",
PossibleTypes = new [] { typeof(global::System.DateTime) })]
- public global::System.DateTime ScheduleInfoStartDateTime { get => ParametersBody.ScheduleInfoStartDateTime ?? default(global::System.DateTime); set => ParametersBody.ScheduleInfoStartDateTime = value; }
+ public global::System.DateTime ScheduleInfoStartDateTime { get => _parametersBody.ScheduleInfoStartDateTime ?? default(global::System.DateTime); set => _parametersBody.ScheduleInfoStartDateTime = value; }
/// Backing field for property.
private string _scope;
@@ -273,7 +270,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"The resultant role assignment schedule id or the role assignment schedule id being updated",
SerializedName = @"targetRoleAssignmentScheduleId",
PossibleTypes = new [] { typeof(string) })]
- public string TargetRoleAssignmentScheduleId { get => ParametersBody.TargetRoleAssignmentScheduleId ?? null; set => ParametersBody.TargetRoleAssignmentScheduleId = value; }
+ public string TargetRoleAssignmentScheduleId { get => _parametersBody.TargetRoleAssignmentScheduleId ?? null; set => _parametersBody.TargetRoleAssignmentScheduleId = value; }
/// The role assignment schedule instance id being updated
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The role assignment schedule instance id being updated")]
@@ -284,7 +281,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"The role assignment schedule instance id being updated",
SerializedName = @"targetRoleAssignmentScheduleInstanceId",
PossibleTypes = new [] { typeof(string) })]
- public string TargetRoleAssignmentScheduleInstanceId { get => ParametersBody.TargetRoleAssignmentScheduleInstanceId ?? null; set => ParametersBody.TargetRoleAssignmentScheduleInstanceId = value; }
+ public string TargetRoleAssignmentScheduleInstanceId { get => _parametersBody.TargetRoleAssignmentScheduleInstanceId ?? null; set => _parametersBody.TargetRoleAssignmentScheduleInstanceId = value; }
/// Ticket number for the role assignment
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Ticket number for the role assignment")]
@@ -295,7 +292,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"Ticket number for the role assignment",
SerializedName = @"ticketNumber",
PossibleTypes = new [] { typeof(string) })]
- public string TicketNumber { get => ParametersBody.TicketInfoTicketNumber ?? null; set => ParametersBody.TicketInfoTicketNumber = value; }
+ public string TicketNumber { get => _parametersBody.TicketInfoTicketNumber ?? null; set => _parametersBody.TicketInfoTicketNumber = value; }
/// Ticket system name for the role assignment
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Ticket system name for the role assignment")]
@@ -306,7 +303,7 @@ public partial class NewAzRoleAssignmentScheduleRequest_CreateExpanded : global:
Description = @"Ticket system name for the role assignment",
SerializedName = @"ticketSystem",
PossibleTypes = new [] { typeof(string) })]
- public string TicketSystem { get => ParametersBody.TicketInfoTicketSystem ?? null; set => ParametersBody.TicketInfoTicketSystem = value; }
+ public string TicketSystem { get => _parametersBody.TicketInfoTicketSystem ?? null; set => _parametersBody.TicketInfoTicketSystem = value; }
///
/// overrideOnCreated will be called before the regular onCreated has been processed, allowing customization of what
@@ -478,12 +475,12 @@ protected override void ProcessRecord()
try
{
await ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; }
- await this.Client.RoleAssignmentScheduleRequestsCreate(Scope, Name, ParametersBody, onCreated, onDefault, this, Pipeline);
+ await this.Client.RoleAssignmentScheduleRequestsCreate(Scope, Name, _parametersBody, onCreated, onDefault, this, Pipeline);
await ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; }
}
catch (Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.UndeclaredResponseException urexception)
{
- WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name,body=ParametersBody})
+ WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name,body=_parametersBody})
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action }
});
@@ -553,14 +550,14 @@ protected override void StopProcessing()
{
// Unrecognized Response. Create an error record based on what we have.
var ex = new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.RestException(responseMessage, await response);
- WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=ParametersBody })
+ WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=_parametersBody })
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action }
});
}
else
{
- WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=ParametersBody })
+ WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=_parametersBody })
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty }
});
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/NewAzRoleEligibilityScheduleRequest_CreateExpanded.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/NewAzRoleEligibilityScheduleRequest_CreateExpanded.cs
index ec4326159e23..e4afe22be37e 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/NewAzRoleEligibilityScheduleRequest_CreateExpanded.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/NewAzRoleEligibilityScheduleRequest_CreateExpanded.cs
@@ -33,6 +33,9 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
///
private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource();
+ /// Role Eligibility schedule request
+ private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleRequest _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.RoleEligibilityScheduleRequest();
+
/// Wait for .NET debugger to attach
[global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")]
[global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.ParameterCategory.Runtime)]
@@ -53,7 +56,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
Description = @"The conditions on the role assignment. This limits the resources it can be assigned to. e.g.: @Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase 'foo_storage_container'",
SerializedName = @"condition",
PossibleTypes = new [] { typeof(string) })]
- public string Condition { get => ParametersBody.Condition ?? null; set => ParametersBody.Condition = value; }
+ public string Condition { get => _parametersBody.Condition ?? null; set => _parametersBody.Condition = value; }
/// Version of the condition. Currently accepted value is '2.0'
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Version of the condition. Currently accepted value is '2.0'")]
@@ -64,7 +67,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
Description = @"Version of the condition. Currently accepted value is '2.0'",
SerializedName = @"conditionVersion",
PossibleTypes = new [] { typeof(string) })]
- public string ConditionVersion { get => ParametersBody.ConditionVersion ?? null; set => ParametersBody.ConditionVersion = value; }
+ public string ConditionVersion { get => _parametersBody.ConditionVersion ?? null; set => _parametersBody.ConditionVersion = value; }
///
/// The credentials, account, tenant, and subscription used for communication with Azure
@@ -84,7 +87,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
Description = @"Duration of the role eligibility schedule in TimeSpan.",
SerializedName = @"duration",
PossibleTypes = new [] { typeof(string) })]
- public string ExpirationDuration { get => ParametersBody.ExpirationDuration ?? null; set => ParametersBody.ExpirationDuration = value; }
+ public string ExpirationDuration { get => _parametersBody.ExpirationDuration ?? null; set => _parametersBody.ExpirationDuration = value; }
/// End DateTime of the role eligibility schedule.
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "End DateTime of the role eligibility schedule.")]
@@ -95,7 +98,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
Description = @"End DateTime of the role eligibility schedule.",
SerializedName = @"endDateTime",
PossibleTypes = new [] { typeof(global::System.DateTime) })]
- public global::System.DateTime ExpirationEndDateTime { get => ParametersBody.ExpirationEndDateTime ?? default(global::System.DateTime); set => ParametersBody.ExpirationEndDateTime = value; }
+ public global::System.DateTime ExpirationEndDateTime { get => _parametersBody.ExpirationEndDateTime ?? default(global::System.DateTime); set => _parametersBody.ExpirationEndDateTime = value; }
/// Type of the role eligibility schedule expiration
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Type of the role eligibility schedule expiration")]
@@ -107,7 +110,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
SerializedName = @"type",
PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type) })]
[global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type))]
- public Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type ExpirationType { get => ParametersBody.ExpirationType ?? ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type)""); set => ParametersBody.ExpirationType = value; }
+ public Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type ExpirationType { get => _parametersBody.ExpirationType ?? ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.Type)""); set => _parametersBody.ExpirationType = value; }
/// SendAsync Pipeline Steps to be appended to the front of the pipeline
[global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")]
@@ -133,14 +136,14 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
Description = @"Justification for the role eligibility",
SerializedName = @"justification",
PossibleTypes = new [] { typeof(string) })]
- public string Justification { get => ParametersBody.Justification ?? null; set => ParametersBody.Justification = value; }
+ public string Justification { get => _parametersBody.Justification ?? null; set => _parametersBody.Justification = value; }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
@@ -158,12 +161,6 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
[global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.ParameterCategory.Path)]
public string Name { get => this._name; set => this._name = value; }
- /// Backing field for property.
- private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleRequest _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.RoleEligibilityScheduleRequest();
-
- /// Role Eligibility schedule request
- private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleEligibilityScheduleRequest ParametersBody { get => this._parametersBody; set => this._parametersBody = value; }
-
///
/// The instance of the that the remote call will use.
///
@@ -178,7 +175,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
Description = @"The principal ID.",
SerializedName = @"principalId",
PossibleTypes = new [] { typeof(string) })]
- public string PrincipalId { get => ParametersBody.PrincipalId ?? null; set => ParametersBody.PrincipalId = value; }
+ public string PrincipalId { get => _parametersBody.PrincipalId ?? null; set => _parametersBody.PrincipalId = value; }
/// The URI for the proxy server to use
[global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")]
@@ -208,7 +205,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
SerializedName = @"requestType",
PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType) })]
[global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType))]
- public Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType RequestType { get => ParametersBody.RequestType ?? ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType)""); set => ParametersBody.RequestType = value; }
+ public Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType RequestType { get => _parametersBody.RequestType ?? ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Support.RequestType)""); set => _parametersBody.RequestType = value; }
/// The role definition ID.
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The role definition ID.")]
@@ -219,7 +216,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
Description = @"The role definition ID.",
SerializedName = @"roleDefinitionId",
PossibleTypes = new [] { typeof(string) })]
- public string RoleDefinitionId { get => ParametersBody.RoleDefinitionId ?? null; set => ParametersBody.RoleDefinitionId = value; }
+ public string RoleDefinitionId { get => _parametersBody.RoleDefinitionId ?? null; set => _parametersBody.RoleDefinitionId = value; }
/// Start DateTime of the role eligibility schedule.
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Start DateTime of the role eligibility schedule.")]
@@ -230,7 +227,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
Description = @"Start DateTime of the role eligibility schedule.",
SerializedName = @"startDateTime",
PossibleTypes = new [] { typeof(global::System.DateTime) })]
- public global::System.DateTime ScheduleInfoStartDateTime { get => ParametersBody.ScheduleInfoStartDateTime ?? default(global::System.DateTime); set => ParametersBody.ScheduleInfoStartDateTime = value; }
+ public global::System.DateTime ScheduleInfoStartDateTime { get => _parametersBody.ScheduleInfoStartDateTime ?? default(global::System.DateTime); set => _parametersBody.ScheduleInfoStartDateTime = value; }
/// Backing field for property.
private string _scope;
@@ -262,7 +259,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
Description = @"The resultant role eligibility schedule id or the role eligibility schedule id being updated",
SerializedName = @"targetRoleEligibilityScheduleId",
PossibleTypes = new [] { typeof(string) })]
- public string TargetRoleEligibilityScheduleId { get => ParametersBody.TargetRoleEligibilityScheduleId ?? null; set => ParametersBody.TargetRoleEligibilityScheduleId = value; }
+ public string TargetRoleEligibilityScheduleId { get => _parametersBody.TargetRoleEligibilityScheduleId ?? null; set => _parametersBody.TargetRoleEligibilityScheduleId = value; }
/// The role eligibility schedule instance id being updated
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The role eligibility schedule instance id being updated")]
@@ -273,7 +270,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
Description = @"The role eligibility schedule instance id being updated",
SerializedName = @"targetRoleEligibilityScheduleInstanceId",
PossibleTypes = new [] { typeof(string) })]
- public string TargetRoleEligibilityScheduleInstanceId { get => ParametersBody.TargetRoleEligibilityScheduleInstanceId ?? null; set => ParametersBody.TargetRoleEligibilityScheduleInstanceId = value; }
+ public string TargetRoleEligibilityScheduleInstanceId { get => _parametersBody.TargetRoleEligibilityScheduleInstanceId ?? null; set => _parametersBody.TargetRoleEligibilityScheduleInstanceId = value; }
/// Ticket number for the role eligibility
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Ticket number for the role eligibility")]
@@ -284,7 +281,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
Description = @"Ticket number for the role eligibility",
SerializedName = @"ticketNumber",
PossibleTypes = new [] { typeof(string) })]
- public string TicketNumber { get => ParametersBody.TicketInfoTicketNumber ?? null; set => ParametersBody.TicketInfoTicketNumber = value; }
+ public string TicketNumber { get => _parametersBody.TicketInfoTicketNumber ?? null; set => _parametersBody.TicketInfoTicketNumber = value; }
/// Ticket system name for the role eligibility
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Ticket system name for the role eligibility")]
@@ -295,7 +292,7 @@ public partial class NewAzRoleEligibilityScheduleRequest_CreateExpanded : global
Description = @"Ticket system name for the role eligibility",
SerializedName = @"ticketSystem",
PossibleTypes = new [] { typeof(string) })]
- public string TicketSystem { get => ParametersBody.TicketInfoTicketSystem ?? null; set => ParametersBody.TicketInfoTicketSystem = value; }
+ public string TicketSystem { get => _parametersBody.TicketInfoTicketSystem ?? null; set => _parametersBody.TicketInfoTicketSystem = value; }
///
/// overrideOnCreated will be called before the regular onCreated has been processed, allowing customization of what
@@ -467,12 +464,12 @@ protected override void ProcessRecord()
try
{
await ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; }
- await this.Client.RoleEligibilityScheduleRequestsCreate(Scope, Name, ParametersBody, onCreated, onDefault, this, Pipeline);
+ await this.Client.RoleEligibilityScheduleRequestsCreate(Scope, Name, _parametersBody, onCreated, onDefault, this, Pipeline);
await ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; }
}
catch (Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.UndeclaredResponseException urexception)
{
- WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name,body=ParametersBody})
+ WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name,body=_parametersBody})
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action }
});
@@ -542,14 +539,14 @@ protected override void StopProcessing()
{
// Unrecognized Response. Create an error record based on what we have.
var ex = new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.RestException(responseMessage, await response);
- WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=ParametersBody })
+ WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=_parametersBody })
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action }
});
}
else
{
- WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=ParametersBody })
+ WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=_parametersBody })
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty }
});
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/NewAzRoleManagementPolicyAssignment_CreateExpanded.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/NewAzRoleManagementPolicyAssignment_CreateExpanded.cs
index 46156111ee5e..079eb774de39 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/NewAzRoleManagementPolicyAssignment_CreateExpanded.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/NewAzRoleManagementPolicyAssignment_CreateExpanded.cs
@@ -33,6 +33,9 @@ public partial class NewAzRoleManagementPolicyAssignment_CreateExpanded : global
///
private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource();
+ /// Role management policy
+ private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyAssignment _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.RoleManagementPolicyAssignment();
+
/// Wait for .NET debugger to attach
[global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")]
[global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.ParameterCategory.Runtime)]
@@ -66,11 +69,11 @@ public partial class NewAzRoleManagementPolicyAssignment_CreateExpanded : global
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
@@ -88,12 +91,6 @@ public partial class NewAzRoleManagementPolicyAssignment_CreateExpanded : global
[global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.ParameterCategory.Path)]
public string Name { get => this._name; set => this._name = value; }
- /// Backing field for property.
- private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyAssignment _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.RoleManagementPolicyAssignment();
-
- /// Role management policy
- private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyAssignment ParametersBody { get => this._parametersBody; set => this._parametersBody = value; }
-
///
/// The instance of the that the remote call will use.
///
@@ -108,7 +105,7 @@ public partial class NewAzRoleManagementPolicyAssignment_CreateExpanded : global
Description = @"The policy id role management policy assignment.",
SerializedName = @"policyId",
PossibleTypes = new [] { typeof(string) })]
- public string PolicyId { get => ParametersBody.PolicyId ?? null; set => ParametersBody.PolicyId = value; }
+ public string PolicyId { get => _parametersBody.PolicyId ?? null; set => _parametersBody.PolicyId = value; }
/// The URI for the proxy server to use
[global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")]
@@ -135,7 +132,7 @@ public partial class NewAzRoleManagementPolicyAssignment_CreateExpanded : global
Description = @"The role definition of management policy assignment.",
SerializedName = @"roleDefinitionId",
PossibleTypes = new [] { typeof(string) })]
- public string RoleDefinitionId { get => ParametersBody.RoleDefinitionId ?? null; set => ParametersBody.RoleDefinitionId = value; }
+ public string RoleDefinitionId { get => _parametersBody.RoleDefinitionId ?? null; set => _parametersBody.RoleDefinitionId = value; }
/// Backing field for property.
private string _scope;
@@ -321,12 +318,12 @@ protected override void ProcessRecord()
try
{
await ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; }
- await this.Client.RoleManagementPolicyAssignmentsCreate(Scope, Name, ParametersBody, onCreated, onDefault, this, Pipeline);
+ await this.Client.RoleManagementPolicyAssignmentsCreate(Scope, Name, _parametersBody, onCreated, onDefault, this, Pipeline);
await ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; }
}
catch (Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.UndeclaredResponseException urexception)
{
- WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name,body=ParametersBody})
+ WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name,body=_parametersBody})
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action }
});
@@ -396,14 +393,14 @@ protected override void StopProcessing()
{
// Unrecognized Response. Create an error record based on what we have.
var ex = new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.RestException(responseMessage, await response);
- WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=ParametersBody })
+ WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=_parametersBody })
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action }
});
}
else
{
- WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=ParametersBody })
+ WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=_parametersBody })
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty }
});
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicyAssignment_Delete.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicyAssignment_Delete.cs
index 5bd2a0a5f06d..61b4f9553291 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicyAssignment_Delete.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicyAssignment_Delete.cs
@@ -66,11 +66,11 @@ public partial class RemoveAzRoleManagementPolicyAssignment_Delete : global::Sys
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicyAssignment_DeleteViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicyAssignment_DeleteViaIdentity.cs
index d6da8addcf84..2d5be1270426 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicyAssignment_DeleteViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicyAssignment_DeleteViaIdentity.cs
@@ -74,11 +74,11 @@ public partial class RemoveAzRoleManagementPolicyAssignment_DeleteViaIdentity :
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicy_Delete.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicy_Delete.cs
index 90aec5027991..3813ff5c787a 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicy_Delete.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicy_Delete.cs
@@ -66,11 +66,11 @@ public partial class RemoveAzRoleManagementPolicy_Delete : global::System.Manage
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicy_DeleteViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicy_DeleteViaIdentity.cs
index ec09c3fb3e57..f9db42e9ddf1 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicy_DeleteViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/RemoveAzRoleManagementPolicy_DeleteViaIdentity.cs
@@ -74,11 +74,11 @@ public partial class RemoveAzRoleManagementPolicy_DeleteViaIdentity : global::Sy
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleAssignmentScheduleRequest_Cancel.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleAssignmentScheduleRequest_Cancel.cs
index 376b09a0cc0f..f738659ab693 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleAssignmentScheduleRequest_Cancel.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleAssignmentScheduleRequest_Cancel.cs
@@ -66,11 +66,11 @@ public partial class StopAzRoleAssignmentScheduleRequest_Cancel : global::System
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleAssignmentScheduleRequest_CancelViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleAssignmentScheduleRequest_CancelViaIdentity.cs
index b119ecd30ac8..2bd7c9aee35d 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleAssignmentScheduleRequest_CancelViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleAssignmentScheduleRequest_CancelViaIdentity.cs
@@ -74,11 +74,11 @@ public partial class StopAzRoleAssignmentScheduleRequest_CancelViaIdentity : glo
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleEligibilityScheduleRequest_Cancel.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleEligibilityScheduleRequest_Cancel.cs
index 7b99b0f2ab03..c22179b2b103 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleEligibilityScheduleRequest_Cancel.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleEligibilityScheduleRequest_Cancel.cs
@@ -66,11 +66,11 @@ public partial class StopAzRoleEligibilityScheduleRequest_Cancel : global::Syste
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleEligibilityScheduleRequest_CancelViaIdentity.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleEligibilityScheduleRequest_CancelViaIdentity.cs
index 7c110b3171f4..077d60e0724d 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleEligibilityScheduleRequest_CancelViaIdentity.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/StopAzRoleEligibilityScheduleRequest_CancelViaIdentity.cs
@@ -74,11 +74,11 @@ public partial class StopAzRoleEligibilityScheduleRequest_CancelViaIdentity : gl
public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
///
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/UpdateAzRoleManagementPolicy_UpdateExpanded.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/UpdateAzRoleManagementPolicy_UpdateExpanded.cs
index 2f1610edbc6d..ce4ea3daa2b0 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/UpdateAzRoleManagementPolicy_UpdateExpanded.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/UpdateAzRoleManagementPolicy_UpdateExpanded.cs
@@ -33,6 +33,9 @@ public partial class UpdateAzRoleManagementPolicy_UpdateExpanded : global::Syste
///
private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource();
+ /// Role management policy
+ private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicy _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.RoleManagementPolicy();
+
/// Wait for .NET debugger to attach
[global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")]
[global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.ParameterCategory.Runtime)]
@@ -59,7 +62,7 @@ public partial class UpdateAzRoleManagementPolicy_UpdateExpanded : global::Syste
Description = @"The role management policy description.",
SerializedName = @"description",
PossibleTypes = new [] { typeof(string) })]
- public string Description { get => ParametersBody.Description ?? null; set => ParametersBody.Description = value; }
+ public string Description { get => _parametersBody.Description ?? null; set => _parametersBody.Description = value; }
/// The role management policy display name.
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The role management policy display name.")]
@@ -70,7 +73,7 @@ public partial class UpdateAzRoleManagementPolicy_UpdateExpanded : global::Syste
Description = @"The role management policy display name.",
SerializedName = @"displayName",
PossibleTypes = new [] { typeof(string) })]
- public string DisplayName { get => ParametersBody.DisplayName ?? null; set => ParametersBody.DisplayName = value; }
+ public string DisplayName { get => _parametersBody.DisplayName ?? null; set => _parametersBody.DisplayName = value; }
/// SendAsync Pipeline Steps to be appended to the front of the pipeline
[global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")]
@@ -96,14 +99,14 @@ public partial class UpdateAzRoleManagementPolicy_UpdateExpanded : global::Syste
Description = @"The role management policy is default policy.",
SerializedName = @"isOrganizationDefault",
PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })]
- public global::System.Management.Automation.SwitchParameter IsOrganizationDefault { get => ParametersBody.IsOrganizationDefault ?? default(global::System.Management.Automation.SwitchParameter); set => ParametersBody.IsOrganizationDefault = value; }
+ public global::System.Management.Automation.SwitchParameter IsOrganizationDefault { get => _parametersBody.IsOrganizationDefault ?? default(global::System.Management.Automation.SwitchParameter); set => _parametersBody.IsOrganizationDefault = value; }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
/// Backing field for property.
@@ -121,12 +124,6 @@ public partial class UpdateAzRoleManagementPolicy_UpdateExpanded : global::Syste
[global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.ParameterCategory.Path)]
public string Name { get => this._name; set => this._name = value; }
- /// Backing field for property.
- private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicy _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.RoleManagementPolicy();
-
- /// Role management policy
- private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicy ParametersBody { get => this._parametersBody; set => this._parametersBody = value; }
-
///
/// The instance of the that the remote call will use.
///
@@ -158,7 +155,7 @@ public partial class UpdateAzRoleManagementPolicy_UpdateExpanded : global::Syste
Description = @"The rule applied to the policy.",
SerializedName = @"rules",
PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyRule) })]
- public Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyRule[] Rule { get => ParametersBody.Rule ?? null /* arrayOf */; set => ParametersBody.Rule = value; }
+ public Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyRule[] Rule { get => _parametersBody.Rule ?? null /* arrayOf */; set => _parametersBody.Rule = value; }
/// Backing field for property.
private string _scope;
@@ -336,12 +333,12 @@ protected override void ProcessRecord()
try
{
await ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; }
- await this.Client.RoleManagementPoliciesUpdate(Scope, Name, ParametersBody, onOk, onDefault, this, Pipeline);
+ await this.Client.RoleManagementPoliciesUpdate(Scope, Name, _parametersBody, onOk, onDefault, this, Pipeline);
await ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; }
}
catch (Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.UndeclaredResponseException urexception)
{
- WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name,body=ParametersBody})
+ WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope,Name=Name,body=_parametersBody})
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action }
});
@@ -395,14 +392,14 @@ public UpdateAzRoleManagementPolicy_UpdateExpanded()
{
// Unrecognized Response. Create an error record based on what we have.
var ex = new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.RestException(responseMessage, await response);
- WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=ParametersBody })
+ WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=_parametersBody })
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action }
});
}
else
{
- WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=ParametersBody })
+ WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope, Name=Name, body=_parametersBody })
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty }
});
diff --git a/src/Resources/Authorization.Autorest/generated/cmdlets/UpdateAzRoleManagementPolicy_UpdateViaIdentityExpanded.cs b/src/Resources/Authorization.Autorest/generated/cmdlets/UpdateAzRoleManagementPolicy_UpdateViaIdentityExpanded.cs
index 3d446e53bdef..609a9c538fab 100644
--- a/src/Resources/Authorization.Autorest/generated/cmdlets/UpdateAzRoleManagementPolicy_UpdateViaIdentityExpanded.cs
+++ b/src/Resources/Authorization.Autorest/generated/cmdlets/UpdateAzRoleManagementPolicy_UpdateViaIdentityExpanded.cs
@@ -33,6 +33,9 @@ public partial class UpdateAzRoleManagementPolicy_UpdateViaIdentityExpanded : gl
///
private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource();
+ /// Role management policy
+ private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicy _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.RoleManagementPolicy();
+
/// Wait for .NET debugger to attach
[global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")]
[global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.ParameterCategory.Runtime)]
@@ -59,7 +62,7 @@ public partial class UpdateAzRoleManagementPolicy_UpdateViaIdentityExpanded : gl
Description = @"The role management policy description.",
SerializedName = @"description",
PossibleTypes = new [] { typeof(string) })]
- public string Description { get => ParametersBody.Description ?? null; set => ParametersBody.Description = value; }
+ public string Description { get => _parametersBody.Description ?? null; set => _parametersBody.Description = value; }
/// The role management policy display name.
[global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The role management policy display name.")]
@@ -70,7 +73,7 @@ public partial class UpdateAzRoleManagementPolicy_UpdateViaIdentityExpanded : gl
Description = @"The role management policy display name.",
SerializedName = @"displayName",
PossibleTypes = new [] { typeof(string) })]
- public string DisplayName { get => ParametersBody.DisplayName ?? null; set => ParametersBody.DisplayName = value; }
+ public string DisplayName { get => _parametersBody.DisplayName ?? null; set => _parametersBody.DisplayName = value; }
/// SendAsync Pipeline Steps to be appended to the front of the pipeline
[global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")]
@@ -104,22 +107,16 @@ public partial class UpdateAzRoleManagementPolicy_UpdateViaIdentityExpanded : gl
Description = @"The role management policy is default policy.",
SerializedName = @"isOrganizationDefault",
PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })]
- public global::System.Management.Automation.SwitchParameter IsOrganizationDefault { get => ParametersBody.IsOrganizationDefault ?? default(global::System.Management.Automation.SwitchParameter); set => ParametersBody.IsOrganizationDefault = value; }
+ public global::System.Management.Automation.SwitchParameter IsOrganizationDefault { get => _parametersBody.IsOrganizationDefault ?? default(global::System.Management.Automation.SwitchParameter); set => _parametersBody.IsOrganizationDefault = value; }
///
- /// cancellation delegate. Stops the cmdlet when called.
+ /// cancellation delegate. Stops the cmdlet when called.
///
global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel;
- /// cancellation token.
+ /// cancellation token.
global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener.Token => _cancellationTokenSource.Token;
- /// Backing field for property.
- private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicy _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.RoleManagementPolicy();
-
- /// Role management policy
- private Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicy ParametersBody { get => this._parametersBody; set => this._parametersBody = value; }
-
///
/// The instance of the that the remote call will use.
///
@@ -151,7 +148,7 @@ public partial class UpdateAzRoleManagementPolicy_UpdateViaIdentityExpanded : gl
Description = @"The rule applied to the policy.",
SerializedName = @"rules",
PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyRule) })]
- public Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyRule[] Rule { get => ParametersBody.Rule ?? null /* arrayOf */; set => ParametersBody.Rule = value; }
+ public Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Models.Api20201001Preview.IRoleManagementPolicyRule[] Rule { get => _parametersBody.Rule ?? null /* arrayOf */; set => _parametersBody.Rule = value; }
///
/// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what
@@ -317,7 +314,7 @@ protected override void ProcessRecord()
await ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; }
if (InputObject?.Id != null)
{
- await this.Client.RoleManagementPoliciesUpdateViaIdentity(InputObject.Id, ParametersBody, onOk, onDefault, this, Pipeline);
+ await this.Client.RoleManagementPoliciesUpdateViaIdentity(InputObject.Id, _parametersBody, onOk, onDefault, this, Pipeline);
}
else
{
@@ -330,13 +327,13 @@ protected override void ProcessRecord()
{
ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.RoleManagementPolicyName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) );
}
- await this.Client.RoleManagementPoliciesUpdate(InputObject.Scope ?? null, InputObject.RoleManagementPolicyName ?? null, ParametersBody, onOk, onDefault, this, Pipeline);
+ await this.Client.RoleManagementPoliciesUpdate(InputObject.Scope ?? null, InputObject.RoleManagementPolicyName ?? null, _parametersBody, onOk, onDefault, this, Pipeline);
}
await ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; }
}
catch (Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.UndeclaredResponseException urexception)
{
- WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ParametersBody})
+ WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_parametersBody})
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action }
});
@@ -390,14 +387,14 @@ public UpdateAzRoleManagementPolicy_UpdateViaIdentityExpanded()
{
// Unrecognized Response. Create an error record based on what we have.
var ex = new Microsoft.Azure.PowerShell.Cmdlets.Resources.Authorization.Runtime.RestException(responseMessage, await response);
- WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ParametersBody })
+ WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_parametersBody })
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action }
});
}
else
{
- WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ParametersBody })
+ WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_parametersBody })
{
ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty }
});
diff --git a/src/Resources/MSGraph.Autorest/Az.MSGraph.format.ps1xml b/src/Resources/MSGraph.Autorest/Az.MSGraph.format.ps1xml
index 44562118890c..c74039eaa944 100644
--- a/src/Resources/MSGraph.Autorest/Az.MSGraph.format.ps1xml
+++ b/src/Resources/MSGraph.Autorest/Az.MSGraph.format.ps1xml
@@ -45,6 +45,9 @@
+
+
+
@@ -67,6 +70,9 @@
ApplicationId
+
+ FederatedIdentityCredentialId
+ GroupId
@@ -109,6 +115,80 @@
+
+ Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10Beta.CollectionOfFederatedIdentityCredential
+
+ Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10Beta.CollectionOfFederatedIdentityCredential
+
+
+
+
+
+
+
+
+
+
+
+ OdataNextLink
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10Beta.MicrosoftGraphFederatedIdentityCredential
+
+ Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10Beta.MicrosoftGraphFederatedIdentityCredential
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Id
+
+
+ Audience
+
+
+ Description
+
+
+ Issuer
+
+
+ Name
+
+
+ Subject
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10Beta.OdataErrorDetail
@@ -1018,7 +1098,7 @@
-
+
@@ -1052,7 +1132,7 @@
DataType
- IsSyncedFromOnPremis
+ IsSyncedFromOnPremiseName
diff --git a/src/Resources/MSGraph.Autorest/README.md b/src/Resources/MSGraph.Autorest/README.md
index 9a17c41c0009..5321cb035d32 100644
--- a/src/Resources/MSGraph.Autorest/README.md
+++ b/src/Resources/MSGraph.Autorest/README.md
@@ -52,6 +52,7 @@ require:
input-file:
- ../OpenApiSpecs/v1.0/Applications.yml
+ - ../OpenApiSpecs/beta/Applications.yml
- ../OpenApiSpecs/v1.0/Groups.yml
- ../OpenApiSpecs/beta/Groups.yml
- ../OpenApiSpecs/v1.0/Users.yml
@@ -136,10 +137,43 @@ directive:
remove: true
- where:
- subject: ^application$|^group$|^serviceprincipal$|^user$
- variant: ^Update$
+ subject: ^application$|^group$|^serviceprincipal$|^user$|^applicationfederatedidentitycredentials$
+ variant: ^Update$|^Create$
remove: true
+ - where:
+ subject: ^applicationfederatedidentitycredentials$
+ parameter-name: applicationid
+ set:
+ parameter-name: ApplicationObjectId
+
+ - where:
+ subject: ^applicationfederatedidentitycredentials$
+ parameter-name: FederatedIdentityCredentialId
+ set:
+ parameter-name: Id
+
+ - where:
+ subject: ^applicationfederatedidentitycredentials$
+ verb: ^Update$
+ parameter-name: Name
+ hide: true
+
+ - where:
+ subject: ^applicationfederatedidentitycredentials$
+ verb: Get|New
+ hide: true
+
+ - where:
+ subject: ^applicationfederatedidentitycredential$|GroupGraphRefMember$|grouprefmember$|groupmember$
+ set:
+ preview-message: This cmdlet is using API version beta which is under preview.
+
+ - where:
+ subject: ^applicationfederatedidentitycredentials$
+ set:
+ subject: AppFederatedIdentityCredential
+
- where:
subject: ^application$|^serviceprincipal$|^group$
verb: restore
diff --git a/src/Resources/MSGraph.Autorest/check-dependencies.ps1 b/src/Resources/MSGraph.Autorest/check-dependencies.ps1
index 1200ec1e6fc4..c29591c7bfe1 100644
--- a/src/Resources/MSGraph.Autorest/check-dependencies.ps1
+++ b/src/Resources/MSGraph.Autorest/check-dependencies.ps1
@@ -25,7 +25,7 @@ if(-not $Isolated) {
function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum, [string]$requiredVersion) {
if($predicate) {
$module = Get-Module -ListAvailable -Name $moduleName
- if((-not $module) -or ($versionMinimum -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -ge [System.Version]$versionMinimum } | Measure-Object).Count -eq 0)) {
+ if((-not $module) -or ($versionMinimum -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -ge [System.Version]$versionMinimum } | Measure-Object).Count -eq 0) -or ($requiredVersion -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -eq [System.Version]$requiredVersion } | Measure-Object).Count -eq 0)) {
$null = New-Item -ItemType Directory -Force -Path $path
Write-Host -ForegroundColor Green "Installing local $moduleName module into '$path'..."
if ($requiredVersion) {
diff --git a/src/Resources/MSGraph.Autorest/custom/Add-AzADAppPermission.ps1 b/src/Resources/MSGraph.Autorest/custom/Add-AzADAppPermission.ps1
index 84fe98070966..b0e7d44fe20c 100644
--- a/src/Resources/MSGraph.Autorest/custom/Add-AzADAppPermission.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Add-AzADAppPermission.ps1
@@ -24,18 +24,6 @@ For instance, to get available permissions for Graph API:
Application permissions under the `appRoles` property correspond to `Role` in `-Type`. Delegated permissions under the `oauth2Permissions` property correspond to `Scope` in `-Type`.
User needs to grant consent via Azure Portal if the permission requires admin consent because Azure PowerShell doesn't support it yet.
-
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-System.Boolean
.Link
https://docs.microsoft.com/powershell/module/az.resources/add-azadapppermission
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Add-AzADGroupMember.ps1 b/src/Resources/MSGraph.Autorest/custom/Add-AzADGroupMember.ps1
index 6e04f10d18de..33a80264b70b 100644
--- a/src/Resources/MSGraph.Autorest/custom/Add-AzADGroupMember.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Add-AzADGroupMember.ps1
@@ -11,23 +11,11 @@
Adds member to group.
.Description
Adds member to group.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphGroup
-.Outputs
-System.Boolean
.Link
https://docs.microsoft.com/powershell/module/az.resources/add-azadgroupmember
#>
function Add-AzADGroupMember {
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.PreviewMessageAttribute("This cmdlet is using API version beta which is under preview.")]
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='MemberObjectIdWithGroupObjectIdParameterSet', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
diff --git a/src/Resources/MSGraph.Autorest/custom/Get-AzADAppCredential.ps1 b/src/Resources/MSGraph.Autorest/custom/Get-AzADAppCredential.ps1
index 226a55149bf1..e87d9a6a35f0 100644
--- a/src/Resources/MSGraph.Autorest/custom/Get-AzADAppCredential.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Get-AzADAppCredential.ps1
@@ -18,20 +18,6 @@
Lists key credentials and password credentials for an application.
.Description
Lists key credentials and password credentials for an application.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphKeyCredential
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphPasswordCredential
.Link
https://docs.microsoft.com/powershell/module/az.resources/get-azadappcredential
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Get-AzADAppFederatedIdentityCredential.ps1 b/src/Resources/MSGraph.Autorest/custom/Get-AzADAppFederatedIdentityCredential.ps1
new file mode 100644
index 000000000000..10fea8a495b7
--- /dev/null
+++ b/src/Resources/MSGraph.Autorest/custom/Get-AzADAppFederatedIdentityCredential.ps1
@@ -0,0 +1,163 @@
+
+# ----------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
+# is regenerated.
+# ----------------------------------------------------------------------------------
+
+<#
+.Synopsis
+Get federatedIdentityCredentials by Id from applications.
+.Description
+Get federatedIdentityCredentials by Id from applications.
+.Link
+https://docs.microsoft.com/powershell/module/az.resources/get-azadappfederatedidentitycredentials
+#>
+function Get-AzADAppFederatedIdentityCredential {
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.PreviewMessageAttribute("This cmdlet is using API version beta which is under preview.")]
+ [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10Beta.IMicrosoftGraphFederatedIdentityCredential])]
+ [CmdletBinding(DefaultParameterSetName='ListByApplicationObjectId', PositionalBinding=$false)]
+ param(
+ [Parameter(ParameterSetName = 'ListByApplicationObjectId', Mandatory)]
+ [Parameter(ParameterSetName='GetByApplicationObjectId', Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Path')]
+ [System.String]
+ # key: id of application
+ ${ApplicationObjectId},
+
+ [Parameter(ParameterSetName = 'ListByApplicationObject', Mandatory)]
+ [Parameter(ParameterSetName='GetByApplicationObject', Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.MicrosoftGraphApplication]
+ # application object
+ ${ApplicationObject},
+
+ [Parameter(ParameterSetName='GetByApplicationObjectId', Mandatory)]
+ [Parameter(ParameterSetName='GetByApplicationObject', Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Path')]
+ [System.String]
+ # key: id of federatedIdentityCredential
+ ${Id},
+
+ [Parameter()]
+ [AllowEmptyCollection()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Query')]
+ [System.String[]]
+ # Expand related entities
+ ${Expand},
+
+ [Parameter()]
+ [AllowEmptyCollection()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Query')]
+ [System.String[]]
+ # Select properties to be returned
+ ${Select},
+
+ [Parameter(ParameterSetName='ListByApplicationObjectId')]
+ [Parameter(ParameterSetName='ListByApplicationObject')]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Query')]
+ [System.Management.Automation.SwitchParameter]
+ # Include count of items
+ ${Count},
+
+ [Parameter(ParameterSetName='ListByApplicationObjectId')]
+ [Parameter(ParameterSetName='ListByApplicationObject')]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Query')]
+ [System.String]
+ # Filter items by property values
+ ${Filter},
+
+ [Parameter(ParameterSetName='ListByApplicationObjectId')]
+ [Parameter(ParameterSetName='ListByApplicationObject')]
+ [AllowEmptyCollection()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Query')]
+ [System.String[]]
+ # Order items by property values
+ ${Orderby},
+
+ [Parameter(ParameterSetName='ListByApplicationObjectId')]
+ [Parameter(ParameterSetName='ListByApplicationObject')]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Query')]
+ [System.String]
+ # Search items by search phrases
+ ${Search},
+
+ [Parameter(ParameterSetName='ListByApplicationObjectId')]
+ [Parameter(ParameterSetName='ListByApplicationObject')]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
+ [System.UInt64]
+ # Gets only the first 'n' objects.
+ ${First},
+
+ [Parameter(ParameterSetName='ListByApplicationObjectId')]
+ [Parameter(ParameterSetName='ListByApplicationObject')]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
+ [System.UInt64]
+ # Ignores the first 'n' objects and then gets the remaining objects.
+ ${Skip},
+
+ [Parameter()]
+ [Alias('AzureRMContext', 'AzureCredential')]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Azure')]
+ [System.Management.Automation.PSObject]
+ # The credentials, account, tenant, and subscription used for communication with Azure.
+ ${DefaultProfile},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Wait for .NET debugger to attach
+ ${Break},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be appended to the front of the pipeline
+ ${HttpPipelineAppend},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be prepended to the front of the pipeline
+ ${HttpPipelinePrepend},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Runtime')]
+ [System.Uri]
+ # The URI for the proxy server to use
+ ${Proxy},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Runtime')]
+ [System.Management.Automation.PSCredential]
+ # Credentials for a proxy server to use for the remote call
+ ${ProxyCredential},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Use the default credentials for the proxy
+ ${ProxyUseDefaultCredentials}
+ )
+
+ process {
+ if ($PSBoundParameters.ContainsKey('ApplicationObject')) {
+ $PSBoundParameters['ApplicationObjectId'] = $PSBoundParameters['ApplicationObject'].Id
+ $PSBoundParameters.Remove('ApplicationObject')
+ }
+ . Az.MSGraph.internal\Get-AzADAppFederatedIdentityCredential @PSBoundParameters
+ }
+}
\ No newline at end of file
diff --git a/src/Resources/MSGraph.Autorest/custom/Get-AzADAppPermission.ps1 b/src/Resources/MSGraph.Autorest/custom/Get-AzADAppPermission.ps1
index 6da55526ec22..484450365f75 100644
--- a/src/Resources/MSGraph.Autorest/custom/Get-AzADAppPermission.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Get-AzADAppPermission.ps1
@@ -17,17 +17,6 @@
Lists API permissions the application has requested.
.Description
Lists API permissions the application has requested.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.MicrosoftGraphApplicationApiPermission
.Link
https://docs.microsoft.com/powershell/module/az.resources/get-azadapppermission
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Get-AzADApplication.ps1 b/src/Resources/MSGraph.Autorest/custom/Get-AzADApplication.ps1
index c7dd2b8d173c..1406ffce0e28 100644
--- a/src/Resources/MSGraph.Autorest/custom/Get-AzADApplication.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Get-AzADApplication.ps1
@@ -18,17 +18,6 @@
Lists entities from applications or get entity from applications by key
.Description
Lists entities from applications or get entity from applications by key
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication
.Link
https://docs.microsoft.com/powershell/module/az.resources/get-azadapplication
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Get-AzADGroup.ps1 b/src/Resources/MSGraph.Autorest/custom/Get-AzADGroup.ps1
index ba02a542c324..5b548576d1a2 100644
--- a/src/Resources/MSGraph.Autorest/custom/Get-AzADGroup.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Get-AzADGroup.ps1
@@ -18,17 +18,6 @@
Lists entities from groups or get entity from groups by key
.Description
Lists entities from groups or get entity from groups by key
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphGroup
.Link
https://docs.microsoft.com/powershell/module/az.resources/get-azadgroup
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Get-AzADGroupMember.ps1 b/src/Resources/MSGraph.Autorest/custom/Get-AzADGroupMember.ps1
index dade68524073..52374613d0c0 100644
--- a/src/Resources/MSGraph.Autorest/custom/Get-AzADGroupMember.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Get-AzADGroupMember.ps1
@@ -10,24 +10,12 @@
Lists members from group.
.Description
Lists members from group.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphGroup
-.Outputs
-System.Boolean
.Link
https://docs.microsoft.com/powershell/module/az.resources/get-azadgroupmember
#>
function Get-AzADGroupMember {
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.PreviewMessageAttribute("This cmdlet is using API version beta which is under preview.")]
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphDirectoryObject])]
[CmdletBinding(DefaultParameterSetName='ObjectIdParameterSet', PositionalBinding=$false)]
param(
diff --git a/src/Resources/MSGraph.Autorest/custom/Get-AzADServicePrincipal.ps1 b/src/Resources/MSGraph.Autorest/custom/Get-AzADServicePrincipal.ps1
index ca0e9783f782..45e7c6656666 100644
--- a/src/Resources/MSGraph.Autorest/custom/Get-AzADServicePrincipal.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Get-AzADServicePrincipal.ps1
@@ -18,17 +18,6 @@
Lists entities from service principals or get entity from service principals by key
.Description
Lists entities from service principals or get entity from service principals by key
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphServicePrincipal
.Link
https://docs.microsoft.com/powershell/module/az.resources/get-azadserviceprincipal
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Get-AzADSpCredential.ps1 b/src/Resources/MSGraph.Autorest/custom/Get-AzADSpCredential.ps1
index 6754e5253cda..4cfb0c8721fd 100644
--- a/src/Resources/MSGraph.Autorest/custom/Get-AzADSpCredential.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Get-AzADSpCredential.ps1
@@ -18,20 +18,6 @@
Lists key credentials and password credentials for an service principal.
.Description
Lists key credentials and password credentials for an service principal.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphServiceprincipal
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphKeyCredential
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphPasswordCredential
.Link
https://docs.microsoft.com/powershell/module/az.resources/get-azadspcredential
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Get-AzADUser.ps1 b/src/Resources/MSGraph.Autorest/custom/Get-AzADUser.ps1
index 68ab9af97cd5..e23f3a22642e 100644
--- a/src/Resources/MSGraph.Autorest/custom/Get-AzADUser.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Get-AzADUser.ps1
@@ -18,17 +18,6 @@
Lists entities from users or get entity from users by key
.Description
Lists entities from users or get entity from users by key
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphUser
.Link
https://docs.microsoft.com/powershell/module/az.resources/get-azaduser
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/New-AzADAppCredential.ps1 b/src/Resources/MSGraph.Autorest/custom/New-AzADAppCredential.ps1
index f78bfbb867ab..71ba550a3f82 100644
--- a/src/Resources/MSGraph.Autorest/custom/New-AzADAppCredential.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/New-AzADAppCredential.ps1
@@ -18,20 +18,6 @@
Creates key credentials or password credentials for an application.
.Description
Creates key credentials or password credentials for an application.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphKeyCredential
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphPasswordCredential
.Link
https://docs.microsoft.com/powershell/module/az.resources/new-azadappcredential
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/New-AzADAppFederatedIdentityCredential.ps1 b/src/Resources/MSGraph.Autorest/custom/New-AzADAppFederatedIdentityCredential.ps1
new file mode 100644
index 000000000000..f8dd43d82962
--- /dev/null
+++ b/src/Resources/MSGraph.Autorest/custom/New-AzADAppFederatedIdentityCredential.ps1
@@ -0,0 +1,141 @@
+
+# ----------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
+# is regenerated.
+# ----------------------------------------------------------------------------------
+
+<#
+.Synopsis
+Create federatedIdentityCredential for applications.
+.Description
+Create federatedIdentityCredential for applications.
+.Link
+https://docs.microsoft.com/powershell/module/az.resources/new-azadappfederatedidentitycredential
+#>
+function New-AzADAppFederatedIdentityCredential {
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.PreviewMessageAttribute("This cmdlet is using API version beta which is under preview.")]
+ [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10Beta.IMicrosoftGraphFederatedIdentityCredential])]
+ [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
+ param(
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Path')]
+ [System.String]
+ # key: id of application
+ ${ApplicationObjectId},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
+ [System.Collections.Hashtable]
+ # Additional Parameters
+ ${AdditionalProperties},
+
+ [Parameter(Mandatory)]
+ [AllowEmptyCollection()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
+ [System.String[]]
+ # Lists the audiences that can appear in the external token.
+ # This field is mandatory, and defaults to 'api://AzureADTokenExchange'.
+ # It says what Microsoft identity platform should accept in the aud claim in the incoming token.
+ # This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token.
+ # Required.
+ ${Audience},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
+ [System.String]
+ # The un-validated, user-provided description of the federated identity credential.
+ # Optional.
+ ${Description},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
+ [System.String]
+ # The URL of the external identity provider and must match the issuer claim of the external token being exchanged.
+ # The combination of the values of issuer and subject must be unique on the app.
+ # Required.
+ ${Issuer},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
+ [System.String]
+ # is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly.
+ # It is immutable once created.
+ # Required.
+ # Not nullable.
+ # Supports $filter (eq).
+ ${Name},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
+ [System.String]
+ # Required.
+ # The identifier of the external software workload within the external identity provider.
+ # Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings.
+ # The value here must match the sub claim within the token presented to Azure AD.
+ # The combination of issuer and subject must be unique on the app.
+ # Supports $filter (eq).
+ ${Subject},
+
+ [Parameter()]
+ [Alias('AzureRMContext', 'AzureCredential')]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Azure')]
+ [System.Management.Automation.PSObject]
+ # The credentials, account, tenant, and subscription used for communication with Azure.
+ ${DefaultProfile},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Wait for .NET debugger to attach
+ ${Break},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be appended to the front of the pipeline
+ ${HttpPipelineAppend},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be prepended to the front of the pipeline
+ ${HttpPipelinePrepend},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Runtime')]
+ [System.Uri]
+ # The URI for the proxy server to use
+ ${Proxy},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Runtime')]
+ [System.Management.Automation.PSCredential]
+ # Credentials for a proxy server to use for the remote call
+ ${ProxyCredential},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Use the default credentials for the proxy
+ ${ProxyUseDefaultCredentials}
+ )
+
+ process {
+ . Az.MSGraph.internal\New-AzADAppFederatedIdentityCredential @PSBoundParameters
+ }
+}
+
\ No newline at end of file
diff --git a/src/Resources/MSGraph.Autorest/custom/New-AzADApplication.ps1 b/src/Resources/MSGraph.Autorest/custom/New-AzADApplication.ps1
index 1f78bd54c5d2..684f18916b6b 100644
--- a/src/Resources/MSGraph.Autorest/custom/New-AzADApplication.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/New-AzADApplication.ps1
@@ -18,19 +18,6 @@
Adds new entity to applications
.Description
Adds new entity to applications
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication
.Notes
COMPLEX PARAMETER PROPERTIES
diff --git a/src/Resources/MSGraph.Autorest/custom/New-AzADGroup.ps1 b/src/Resources/MSGraph.Autorest/custom/New-AzADGroup.ps1
index 1f4d8268e2f3..f239bbd5b896 100644
--- a/src/Resources/MSGraph.Autorest/custom/New-AzADGroup.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/New-AzADGroup.ps1
@@ -11,19 +11,6 @@
Adds new entity to groups
.Description
Adds new entity to groups
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphGroup
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphGroup
.Notes
COMPLEX PARAMETER PROPERTIES
diff --git a/src/Resources/MSGraph.Autorest/custom/New-AzADServicePrincipal.ps1 b/src/Resources/MSGraph.Autorest/custom/New-AzADServicePrincipal.ps1
index 53b825b34067..9e44a894fc35 100644
--- a/src/Resources/MSGraph.Autorest/custom/New-AzADServicePrincipal.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/New-AzADServicePrincipal.ps1
@@ -18,19 +18,6 @@
Adds new entity to servicePrincipals
.Description
Adds new entity to servicePrincipals
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphServicePrincipal
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphServicePrincipal
.Notes
COMPLEX PARAMETER PROPERTIES
diff --git a/src/Resources/MSGraph.Autorest/custom/New-AzADSpCredential.ps1 b/src/Resources/MSGraph.Autorest/custom/New-AzADSpCredential.ps1
index 9e26602b1b9c..0d8e96622149 100644
--- a/src/Resources/MSGraph.Autorest/custom/New-AzADSpCredential.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/New-AzADSpCredential.ps1
@@ -18,20 +18,6 @@
Creates key credentials or password credentials for an service principal.
.Description
Creates key credentials or password credentials for an service principal.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphServiceprincipal
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphKeyCredential
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphPasswordCredential
.Link
https://docs.microsoft.com/powershell/module/az.resources/new-azadspcredential
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/New-AzADUser.ps1 b/src/Resources/MSGraph.Autorest/custom/New-AzADUser.ps1
index 8782cf9c3898..ad9d347fe7cd 100644
--- a/src/Resources/MSGraph.Autorest/custom/New-AzADUser.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/New-AzADUser.ps1
@@ -18,19 +18,6 @@
Adds new entity to users
.Description
Adds new entity to users
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphUser
-.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphUser
.Notes
.Link
diff --git a/src/Resources/MSGraph.Autorest/custom/Remove-AzADAppCredential.ps1 b/src/Resources/MSGraph.Autorest/custom/Remove-AzADAppCredential.ps1
index f5e20061a1ca..f11a3ccfc185 100644
--- a/src/Resources/MSGraph.Autorest/custom/Remove-AzADAppCredential.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Remove-AzADAppCredential.ps1
@@ -18,19 +18,6 @@
Removes key credentials or password credentials for an application.
.Description
Removes key credentials or password credentials for an application.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication
-.Outputs
-System.Boolean
.Link
https://docs.microsoft.com/powershell/module/az.resources/Remove-azadappcredential
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Remove-AzADAppPermission.ps1 b/src/Resources/MSGraph.Autorest/custom/Remove-AzADAppPermission.ps1
index 9ad5d8a2e51f..dcc5ce2dd142 100644
--- a/src/Resources/MSGraph.Autorest/custom/Remove-AzADAppPermission.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Remove-AzADAppPermission.ps1
@@ -16,17 +16,6 @@
Removes an API permission.
.Description
Removes an API permission.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-System.Boolean
.Link
https://docs.microsoft.com/powershell/module/az.resources/remove-azadapppermission
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Remove-AzADApplication.ps1 b/src/Resources/MSGraph.Autorest/custom/Remove-AzADApplication.ps1
index 6d7334677c4a..04d91614b2e9 100644
--- a/src/Resources/MSGraph.Autorest/custom/Remove-AzADApplication.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Remove-AzADApplication.ps1
@@ -18,17 +18,6 @@
Deletes entity from applications
.Description
Deletes entity from applications
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-System.Boolean
.Link
https://docs.microsoft.com/powershell/module/az.resources/remove-azadapplication
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Remove-AzADGroup.ps1 b/src/Resources/MSGraph.Autorest/custom/Remove-AzADGroup.ps1
index b3421ab5cdf9..e359631cc1d3 100644
--- a/src/Resources/MSGraph.Autorest/custom/Remove-AzADGroup.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Remove-AzADGroup.ps1
@@ -18,17 +18,6 @@
Deletes entity from groups.
.Description
Deletes entity from groups.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-System.Boolean
.Link
https://docs.microsoft.com/powershell/module/az.resources/remove-azadgroup
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Remove-AzADGroupMember.ps1 b/src/Resources/MSGraph.Autorest/custom/Remove-AzADGroupMember.ps1
index 544f2492f42f..e0c2b70ece6a 100644
--- a/src/Resources/MSGraph.Autorest/custom/Remove-AzADGroupMember.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Remove-AzADGroupMember.ps1
@@ -19,23 +19,11 @@ Users, contacts, and groups that are members of this group.
HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only.
Nullable.
Supports $expand.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-System.Collections.Hashtable
-.Outputs
-System.Boolean
.Link
https://docs.microsoft.com/powershell/module/az.resources/remove-azadgroupmember
#>
function Remove-AzADGroupMember {
+ [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.PreviewMessageAttribute("This cmdlet is using API version beta which is under preview.")]
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName = 'ExplicitParameterSet ', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')]
param(
diff --git a/src/Resources/MSGraph.Autorest/custom/Remove-AzADServicePrincipal.ps1 b/src/Resources/MSGraph.Autorest/custom/Remove-AzADServicePrincipal.ps1
index 6db41874e11e..a69233666ded 100644
--- a/src/Resources/MSGraph.Autorest/custom/Remove-AzADServicePrincipal.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Remove-AzADServicePrincipal.ps1
@@ -18,17 +18,6 @@
Deletes entity from service principal.
.Description
Deletes entity from service principal.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-System.Boolean
.Link
https://docs.microsoft.com/powershell/module/az.resources/remove-azadserviceprincipal
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Remove-AzADSpCredential.ps1 b/src/Resources/MSGraph.Autorest/custom/Remove-AzADSpCredential.ps1
index 6d108a9c422e..f7fa8fb0e9f4 100644
--- a/src/Resources/MSGraph.Autorest/custom/Remove-AzADSpCredential.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Remove-AzADSpCredential.ps1
@@ -18,19 +18,6 @@
Removes key credentials or password credentials for an service principal.
.Description
Removes key credentials or password credentials for an service principal.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Inputs
-Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphServicePrincipal
-.Outputs
-System.Boolean
.Link
https://docs.microsoft.com/powershell/module/az.resources/remove-azadspcredential
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Remove-AzADUser.ps1 b/src/Resources/MSGraph.Autorest/custom/Remove-AzADUser.ps1
index 3f947730cee6..919b2c1a27b8 100644
--- a/src/Resources/MSGraph.Autorest/custom/Remove-AzADUser.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Remove-AzADUser.ps1
@@ -18,17 +18,6 @@
Deletes entity from users.
.Description
Deletes entity from users.
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-System.Boolean
.Link
https://docs.microsoft.com/powershell/module/az.resources/remove-azaduser
#>
diff --git a/src/Resources/MSGraph.Autorest/custom/Update-AzADApplication.ps1 b/src/Resources/MSGraph.Autorest/custom/Update-AzADApplication.ps1
index 2bf9222fc5a0..544afda75e62 100644
--- a/src/Resources/MSGraph.Autorest/custom/Update-AzADApplication.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Update-AzADApplication.ps1
@@ -18,17 +18,6 @@
Updates entity in applications
.Description
Updates entity in applications
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
diff --git a/src/Resources/MSGraph.Autorest/custom/Update-AzADServicePrincipal.ps1 b/src/Resources/MSGraph.Autorest/custom/Update-AzADServicePrincipal.ps1
index f6525e1ee87d..3d6e23463dad 100644
--- a/src/Resources/MSGraph.Autorest/custom/Update-AzADServicePrincipal.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Update-AzADServicePrincipal.ps1
@@ -18,17 +18,6 @@
Updates entity in service principal
.Description
Updates entity in service principal
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
diff --git a/src/Resources/MSGraph.Autorest/custom/Update-AzADUser.ps1 b/src/Resources/MSGraph.Autorest/custom/Update-AzADUser.ps1
index 42fb166e45a0..83dffde29d3b 100644
--- a/src/Resources/MSGraph.Autorest/custom/Update-AzADUser.ps1
+++ b/src/Resources/MSGraph.Autorest/custom/Update-AzADUser.ps1
@@ -11,17 +11,6 @@
Updates entity in users
.Description
Updates entity in users
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-.Example
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-
-.Outputs
-System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
diff --git a/src/Resources/MSGraph.Autorest/docs/Az.MSGraph.md b/src/Resources/MSGraph.Autorest/docs/Az.MSGraph.md
index 004fba616d77..d3b041e76b9a 100644
--- a/src/Resources/MSGraph.Autorest/docs/Az.MSGraph.md
+++ b/src/Resources/MSGraph.Autorest/docs/Az.MSGraph.md
@@ -20,6 +20,9 @@ Adds member to group.
### [Get-AzADAppCredential](Get-AzADAppCredential.md)
Lists key credentials and password credentials for an application.
+### [Get-AzADAppFederatedIdentityCredential](Get-AzADAppFederatedIdentityCredential.md)
+Get federatedIdentityCredentials by Id from applications.
+
### [Get-AzADApplication](Get-AzADApplication.md)
Lists entities from applications or get entity from applications by key
@@ -44,6 +47,9 @@ Lists entities from users or get entity from users by key
### [New-AzADAppCredential](New-AzADAppCredential.md)
Creates key credentials or password credentials for an application.
+### [New-AzADAppFederatedIdentityCredential](New-AzADAppFederatedIdentityCredential.md)
+Create federatedIdentityCredential for applications.
+
### [New-AzADApplication](New-AzADApplication.md)
Adds new entity to applications
@@ -62,6 +68,9 @@ Adds new entity to users
### [Remove-AzADAppCredential](Remove-AzADAppCredential.md)
Removes key credentials or password credentials for an application.
+### [Remove-AzADAppFederatedIdentityCredential](Remove-AzADAppFederatedIdentityCredential.md)
+Delete federatedIdentityCredentials for applications.
+
### [Remove-AzADApplication](Remove-AzADApplication.md)
Deletes entity from applications
@@ -87,6 +96,9 @@ Removes key credentials or password credentials for an service principal.
### [Remove-AzADUser](Remove-AzADUser.md)
Deletes entity from users.
+### [Update-AzADAppFederatedIdentityCredential](Update-AzADAppFederatedIdentityCredential.md)
+Update the federatedIdentityCredentials in applications.
+
### [Update-AzADApplication](Update-AzADApplication.md)
Updates entity in applications
diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADAppFederatedIdentityCredential.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADAppFederatedIdentityCredential.md
new file mode 100644
index 000000000000..9e6340c5cd28
--- /dev/null
+++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADAppFederatedIdentityCredential.md
@@ -0,0 +1,390 @@
+---
+external help file:
+Module Name: Az.Resources
+online version: https://docs.microsoft.com/powershell/module/az.resources/get-azadappfederatedidentitycredentials
+schema: 2.0.0
+---
+
+# Get-AzADAppFederatedIdentityCredential
+
+## SYNOPSIS
+Get federatedIdentityCredentials by Id from applications.
+
+## SYNTAX
+
+### ListByApplicationObjectId (Default)
+```
+Get-AzADAppFederatedIdentityCredential -ApplicationObjectId [-Count] [-Expand ]
+ [-Filter ] [-Orderby ] [-Search ] [-Select ] [-First ]
+ [-Skip ] [-DefaultProfile ] []
+```
+
+### GetByApplicationObject
+```
+Get-AzADAppFederatedIdentityCredential -ApplicationObject -Id
+ [-Expand ] [-Select ] [-DefaultProfile ] []
+```
+
+### GetByApplicationObjectId
+```
+Get-AzADAppFederatedIdentityCredential -ApplicationObjectId -Id [-Expand ]
+ [-Select ] [-DefaultProfile ] []
+```
+
+### ListByApplicationObject
+```
+Get-AzADAppFederatedIdentityCredential -ApplicationObject [-Count]
+ [-Expand ] [-Filter ] [-Orderby ] [-Search ] [-Select ]
+ [-First ] [-Skip ] [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+Get federatedIdentityCredentials by Id from applications.
+
+## EXAMPLES
+
+### Example 1: List federated identity credentials for application
+```powershell
+Get-AzADApplication -ObjectId $app | Get-AzADAppFederatedCredential
+```
+
+List federated identity credentials for application
+
+### Example 2: Get federated identity credential by id
+```powershell
+Get-AzADAppFederatedCredential -ApplicationObjectId $appObjectId -Id $credentialId
+```
+
+Get federated identity credential by id
+
+## PARAMETERS
+
+### -ApplicationObject
+application object
+To construct, see NOTES section for APPLICATIONOBJECT properties and create a hash table.
+
+```yaml
+Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.MicrosoftGraphApplication
+Parameter Sets: GetByApplicationObject, ListByApplicationObject
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ApplicationObjectId
+key: id of application
+
+```yaml
+Type: System.String
+Parameter Sets: GetByApplicationObjectId, ListByApplicationObjectId
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Count
+Include count of items
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: ListByApplicationObject, ListByApplicationObjectId
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: System.Management.Automation.PSObject
+Parameter Sets: (All)
+Aliases: AzureRMContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Expand
+Expand related entities
+
+```yaml
+Type: System.String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Filter
+Filter items by property values
+
+```yaml
+Type: System.String
+Parameter Sets: ListByApplicationObject, ListByApplicationObjectId
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -First
+Gets only the first 'n' objects.
+
+```yaml
+Type: System.UInt64
+Parameter Sets: ListByApplicationObject, ListByApplicationObjectId
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Id
+key: id of federatedIdentityCredential
+
+```yaml
+Type: System.String
+Parameter Sets: GetByApplicationObject, GetByApplicationObjectId
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Orderby
+Order items by property values
+
+```yaml
+Type: System.String[]
+Parameter Sets: ListByApplicationObject, ListByApplicationObjectId
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Search
+Search items by search phrases
+
+```yaml
+Type: System.String
+Parameter Sets: ListByApplicationObject, ListByApplicationObjectId
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Select
+Select properties to be returned
+
+```yaml
+Type: System.String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Skip
+Ignores the first 'n' objects and then gets the remaining objects.
+
+```yaml
+Type: System.UInt64
+Parameter Sets: ListByApplicationObject, ListByApplicationObjectId
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+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).
+
+## INPUTS
+
+## OUTPUTS
+
+### Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10Beta.IMicrosoftGraphFederatedIdentityCredential
+
+## NOTES
+
+ALIASES
+
+COMPLEX PARAMETER PROPERTIES
+
+To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
+
+
+APPLICATIONOBJECT : application object
+ - `[(Any)