diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/IStaticSitesOperations.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/IStaticSitesOperations.cs
index d417e4d033a4..b737dedb0dfa 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/IStaticSitesOperations.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/IStaticSitesOperations.cs
@@ -23,6 +23,36 @@ namespace Microsoft.Azure.Management.WebSites
///
public partial interface IStaticSitesOperations
{
+ ///
+ /// Generates a preview workflow file for the static site
+ ///
+ ///
+ /// Description for Generates a preview workflow file for the static
+ /// site
+ ///
+ ///
+ /// Location where you plan to create the static site.
+ ///
+ ///
+ /// A JSON representation of the StaticSitesWorkflowPreviewRequest
+ /// properties. See example.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task> PreviewWorkflowWithHttpMessagesAsync(string location, StaticSitesWorkflowPreviewRequest staticSitesWorkflowPreviewRequest, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
/// Get all Static Sites for a subscription.
///
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/IWebSiteManagementClient.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/IWebSiteManagementClient.cs
index 3481e85ddd9b..853f40ef83d4 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/IWebSiteManagementClient.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/IWebSiteManagementClient.cs
@@ -149,6 +149,27 @@ public partial interface IWebSiteManagementClient : System.IDisposable
///
IResourceHealthMetadataOperations ResourceHealthMetadata { get; }
+ ///
+ /// Exchange code for GitHub access token for AppService CLI
+ ///
+ ///
+ /// Description for Exchange code for GitHub access token for
+ /// AppService CLI
+ ///
+ ///
+ /// Code string to exchange for Github Access token
+ ///
+ ///
+ /// State string used for verification.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ Task> GenerateGithubAccessTokenForAppserviceCLIAsyncWithHttpMessagesAsync(string code, string state, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+
///
/// Gets publishing user
///
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AddressResponse.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AddressResponse.cs
index 879dbaad9a28..d4a8bfafcce4 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AddressResponse.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AddressResponse.cs
@@ -38,6 +38,8 @@ public AddressResponse()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Main public virtual IP.
/// Virtual Network internal IP address
/// of the App Service Environment if it is in internal load-balancing
@@ -45,8 +47,8 @@ public AddressResponse()
/// IP addresses appearing on
/// outbound connections.
/// Additional virtual IPs.
- public AddressResponse(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string serviceIpAddress = default(string), string internalIpAddress = default(string), IList outboundIpAddresses = default(IList), IList vipMappings = default(IList))
- : base(id, name, kind, type)
+ public AddressResponse(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string serviceIpAddress = default(string), string internalIpAddress = default(string), IList outboundIpAddresses = default(IList), IList vipMappings = default(IList))
+ : base(id, name, kind, type, systemData)
{
ServiceIpAddress = serviceIpAddress;
InternalIpAddress = internalIpAddress;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AllowedAudiencesValidation.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AllowedAudiencesValidation.cs
index 7af8c086f3f3..9f0841de41cf 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AllowedAudiencesValidation.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AllowedAudiencesValidation.cs
@@ -35,8 +35,10 @@ public AllowedAudiencesValidation()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public AllowedAudiencesValidation(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IList allowedAudiences = default(IList))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public AllowedAudiencesValidation(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), IList allowedAudiences = default(IList))
+ : base(id, name, kind, type, systemData)
{
AllowedAudiences = allowedAudiences;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AnalysisDefinition.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AnalysisDefinition.cs
index 69956364b44c..c52533546d5c 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AnalysisDefinition.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AnalysisDefinition.cs
@@ -36,9 +36,11 @@ public AnalysisDefinition()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Description of the Analysis
- public AnalysisDefinition(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string description = default(string))
- : base(id, name, kind, type)
+ public AnalysisDefinition(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string description = default(string))
+ : base(id, name, kind, type, systemData)
{
Description = description;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppRegistration.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppRegistration.cs
index a1e6ff47661a..2c256da60814 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppRegistration.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppRegistration.cs
@@ -33,8 +33,10 @@ public AppRegistration()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public AppRegistration(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string appId = default(string), string appSecretSettingName = default(string))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public AppRegistration(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string appId = default(string), string appSecretSettingName = default(string))
+ : base(id, name, kind, type, systemData)
{
AppId = appId;
AppSecretSettingName = appSecretSettingName;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificateOrder.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificateOrder.cs
index fba67b6ee17a..954237f1eebe 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificateOrder.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificateOrder.cs
@@ -43,6 +43,8 @@ public AppServiceCertificateOrder()
/// Kind of resource.
/// Resource type.
/// Resource tags.
+ /// The system metadata relating to this
+ /// resource.
/// State of the Key Vault secret.
/// Certificate distinguished
/// name.
@@ -78,8 +80,8 @@ public AppServiceCertificateOrder()
/// moment.
/// Time stamp when the
/// certificate would be auto renewed next
- public AppServiceCertificateOrder(string location, CertificateProductType productType, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary tags = default(IDictionary), IDictionary certificates = default(IDictionary), string distinguishedName = default(string), string domainVerificationToken = default(string), int? validityInYears = default(int?), int? keySize = default(int?), bool? autoRenew = default(bool?), ProvisioningState? provisioningState = default(ProvisioningState?), CertificateOrderStatus? status = default(CertificateOrderStatus?), CertificateDetails signedCertificate = default(CertificateDetails), string csr = default(string), CertificateDetails intermediate = default(CertificateDetails), CertificateDetails root = default(CertificateDetails), string serialNumber = default(string), System.DateTime? lastCertificateIssuanceTime = default(System.DateTime?), System.DateTime? expirationTime = default(System.DateTime?), bool? isPrivateKeyExternal = default(bool?), IList appServiceCertificateNotRenewableReasons = default(IList), System.DateTime? nextAutoRenewalTimeStamp = default(System.DateTime?))
- : base(location, id, name, kind, type, tags)
+ public AppServiceCertificateOrder(string location, CertificateProductType productType, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary tags = default(IDictionary), SystemData systemData = default(SystemData), IDictionary certificates = default(IDictionary), string distinguishedName = default(string), string domainVerificationToken = default(string), int? validityInYears = default(int?), int? keySize = default(int?), bool? autoRenew = default(bool?), ProvisioningState? provisioningState = default(ProvisioningState?), CertificateOrderStatus? status = default(CertificateOrderStatus?), CertificateDetails signedCertificate = default(CertificateDetails), string csr = default(string), CertificateDetails intermediate = default(CertificateDetails), CertificateDetails root = default(CertificateDetails), string serialNumber = default(string), System.DateTime? lastCertificateIssuanceTime = default(System.DateTime?), System.DateTime? expirationTime = default(System.DateTime?), bool? isPrivateKeyExternal = default(bool?), IList appServiceCertificateNotRenewableReasons = default(IList), System.DateTime? nextAutoRenewalTimeStamp = default(System.DateTime?))
+ : base(location, id, name, kind, type, tags, systemData)
{
Certificates = certificates;
DistinguishedName = distinguishedName;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificateOrderPatchResource.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificateOrderPatchResource.cs
index a9284452f4d4..382e0ba5bd8b 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificateOrderPatchResource.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificateOrderPatchResource.cs
@@ -43,6 +43,8 @@ public AppServiceCertificateOrderPatchResource()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// State of the Key Vault secret.
/// Certificate distinguished
/// name.
@@ -78,8 +80,8 @@ public AppServiceCertificateOrderPatchResource()
/// moment.
/// Time stamp when the
/// certificate would be auto renewed next
- public AppServiceCertificateOrderPatchResource(CertificateProductType productType, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary certificates = default(IDictionary), string distinguishedName = default(string), string domainVerificationToken = default(string), int? validityInYears = default(int?), int? keySize = default(int?), bool? autoRenew = default(bool?), ProvisioningState? provisioningState = default(ProvisioningState?), CertificateOrderStatus? status = default(CertificateOrderStatus?), CertificateDetails signedCertificate = default(CertificateDetails), string csr = default(string), CertificateDetails intermediate = default(CertificateDetails), CertificateDetails root = default(CertificateDetails), string serialNumber = default(string), System.DateTime? lastCertificateIssuanceTime = default(System.DateTime?), System.DateTime? expirationTime = default(System.DateTime?), bool? isPrivateKeyExternal = default(bool?), IList appServiceCertificateNotRenewableReasons = default(IList), System.DateTime? nextAutoRenewalTimeStamp = default(System.DateTime?))
- : base(id, name, kind, type)
+ public AppServiceCertificateOrderPatchResource(CertificateProductType productType, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), IDictionary certificates = default(IDictionary), string distinguishedName = default(string), string domainVerificationToken = default(string), int? validityInYears = default(int?), int? keySize = default(int?), bool? autoRenew = default(bool?), ProvisioningState? provisioningState = default(ProvisioningState?), CertificateOrderStatus? status = default(CertificateOrderStatus?), CertificateDetails signedCertificate = default(CertificateDetails), string csr = default(string), CertificateDetails intermediate = default(CertificateDetails), CertificateDetails root = default(CertificateDetails), string serialNumber = default(string), System.DateTime? lastCertificateIssuanceTime = default(System.DateTime?), System.DateTime? expirationTime = default(System.DateTime?), bool? isPrivateKeyExternal = default(bool?), IList appServiceCertificateNotRenewableReasons = default(IList), System.DateTime? nextAutoRenewalTimeStamp = default(System.DateTime?))
+ : base(id, name, kind, type, systemData)
{
Certificates = certificates;
DistinguishedName = distinguishedName;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificatePatchResource.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificatePatchResource.cs
index cabf8228ef12..6f377a1fbab6 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificatePatchResource.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificatePatchResource.cs
@@ -39,6 +39,8 @@ public AppServiceCertificatePatchResource()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Key Vault resource Id.
/// Key Vault secret name.
/// Status of the Key Vault secret.
@@ -48,8 +50,8 @@ public AppServiceCertificatePatchResource()
/// 'AzureServiceUnauthorizedToAccessKeyVault', 'KeyVaultDoesNotExist',
/// 'KeyVaultSecretDoesNotExist', 'UnknownError', 'ExternalPrivateKey',
/// 'Unknown'
- public AppServiceCertificatePatchResource(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string keyVaultId = default(string), string keyVaultSecretName = default(string), KeyVaultSecretStatus? provisioningState = default(KeyVaultSecretStatus?))
- : base(id, name, kind, type)
+ public AppServiceCertificatePatchResource(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string keyVaultId = default(string), string keyVaultSecretName = default(string), KeyVaultSecretStatus? provisioningState = default(KeyVaultSecretStatus?))
+ : base(id, name, kind, type, systemData)
{
KeyVaultId = keyVaultId;
KeyVaultSecretName = keyVaultSecretName;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificateResource.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificateResource.cs
index a9b3c95a4df4..46eaf7f034b9 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificateResource.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceCertificateResource.cs
@@ -43,6 +43,8 @@ public AppServiceCertificateResource()
/// Kind of resource.
/// Resource type.
/// Resource tags.
+ /// The system metadata relating to this
+ /// resource.
/// Key Vault resource Id.
/// Key Vault secret name.
/// Status of the Key Vault secret.
@@ -52,8 +54,8 @@ public AppServiceCertificateResource()
/// 'AzureServiceUnauthorizedToAccessKeyVault', 'KeyVaultDoesNotExist',
/// 'KeyVaultSecretDoesNotExist', 'UnknownError', 'ExternalPrivateKey',
/// 'Unknown'
- public AppServiceCertificateResource(string location, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary tags = default(IDictionary), string keyVaultId = default(string), string keyVaultSecretName = default(string), KeyVaultSecretStatus? provisioningState = default(KeyVaultSecretStatus?))
- : base(location, id, name, kind, type, tags)
+ public AppServiceCertificateResource(string location, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary tags = default(IDictionary), SystemData systemData = default(SystemData), string keyVaultId = default(string), string keyVaultSecretName = default(string), KeyVaultSecretStatus? provisioningState = default(KeyVaultSecretStatus?))
+ : base(location, id, name, kind, type, tags, systemData)
{
KeyVaultId = keyVaultId;
KeyVaultSecretName = keyVaultSecretName;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceEnvironmentPatchResource.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceEnvironmentPatchResource.cs
index bf9e55680b03..94285fc0bb20 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceEnvironmentPatchResource.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceEnvironmentPatchResource.cs
@@ -48,6 +48,8 @@ public AppServiceEnvironmentPatchResource()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Provisioning state of the App
/// Service Environment. Possible values include: 'Succeeded',
/// 'Failed', 'Canceled', 'InProgress', 'Deleting'
@@ -126,8 +128,8 @@ public AppServiceEnvironmentPatchResource()
/// Environment default SSL certificate
/// Key Vault Secret Name for
/// ILB App Service Environment default SSL certificate
- public AppServiceEnvironmentPatchResource(string appServiceEnvironmentPatchResourceName, string location, VirtualNetworkProfile virtualNetwork, IList workerPools, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), ProvisioningState? provisioningState = default(ProvisioningState?), HostingEnvironmentStatus? status = default(HostingEnvironmentStatus?), string vnetName = default(string), string vnetResourceGroupName = default(string), string vnetSubnetName = default(string), string internalLoadBalancingMode = default(string), string multiSize = default(string), int? multiRoleCount = default(int?), int? ipsslAddressCount = default(int?), string databaseEdition = default(string), string databaseServiceObjective = default(string), int? upgradeDomains = default(int?), string subscriptionId = default(string), string dnsSuffix = default(string), string lastAction = default(string), string lastActionResult = default(string), string allowedMultiSizes = default(string), string allowedWorkerSizes = default(string), int? maximumNumberOfMachines = default(int?), IList vipMappings = default(IList), IList environmentCapacities = default(IList), IList networkAccessControlList = default(IList), bool? environmentIsHealthy = default(bool?), string environmentStatus = default(string), string resourceGroup = default(string), int? frontEndScaleFactor = default(int?), int? defaultFrontEndScaleFactor = default(int?), string apiManagementAccountId = default(string), bool? suspended = default(bool?), bool? dynamicCacheEnabled = default(bool?), IList clusterSettings = default(IList), IList userWhitelistedIpRanges = default(IList), bool? hasLinuxWorkers = default(bool?), string sslCertKeyVaultId = default(string), string sslCertKeyVaultSecretName = default(string))
- : base(id, name, kind, type)
+ public AppServiceEnvironmentPatchResource(string appServiceEnvironmentPatchResourceName, string location, VirtualNetworkProfile virtualNetwork, IList workerPools, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), ProvisioningState? provisioningState = default(ProvisioningState?), HostingEnvironmentStatus? status = default(HostingEnvironmentStatus?), string vnetName = default(string), string vnetResourceGroupName = default(string), string vnetSubnetName = default(string), string internalLoadBalancingMode = default(string), string multiSize = default(string), int? multiRoleCount = default(int?), int? ipsslAddressCount = default(int?), string databaseEdition = default(string), string databaseServiceObjective = default(string), int? upgradeDomains = default(int?), string subscriptionId = default(string), string dnsSuffix = default(string), string lastAction = default(string), string lastActionResult = default(string), string allowedMultiSizes = default(string), string allowedWorkerSizes = default(string), int? maximumNumberOfMachines = default(int?), IList vipMappings = default(IList), IList environmentCapacities = default(IList), IList networkAccessControlList = default(IList), bool? environmentIsHealthy = default(bool?), string environmentStatus = default(string), string resourceGroup = default(string), int? frontEndScaleFactor = default(int?), int? defaultFrontEndScaleFactor = default(int?), string apiManagementAccountId = default(string), bool? suspended = default(bool?), bool? dynamicCacheEnabled = default(bool?), IList clusterSettings = default(IList), IList userWhitelistedIpRanges = default(IList), bool? hasLinuxWorkers = default(bool?), string sslCertKeyVaultId = default(string), string sslCertKeyVaultSecretName = default(string))
+ : base(id, name, kind, type, systemData)
{
AppServiceEnvironmentPatchResourceName = appServiceEnvironmentPatchResourceName;
Location = location;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceEnvironmentResource.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceEnvironmentResource.cs
index 910c484a40d3..f7ce85e28f33 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceEnvironmentResource.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServiceEnvironmentResource.cs
@@ -50,6 +50,8 @@ public AppServiceEnvironmentResource()
/// Kind of resource.
/// Resource type.
/// Resource tags.
+ /// The system metadata relating to this
+ /// resource.
/// Provisioning state of the App
/// Service Environment. Possible values include: 'Succeeded',
/// 'Failed', 'Canceled', 'InProgress', 'Deleting'
@@ -128,8 +130,8 @@ public AppServiceEnvironmentResource()
/// Environment default SSL certificate
/// Key Vault Secret Name for
/// ILB App Service Environment default SSL certificate
- public AppServiceEnvironmentResource(string location, string appServiceEnvironmentResourceName, string appServiceEnvironmentResourceLocation, VirtualNetworkProfile virtualNetwork, IList workerPools, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary tags = default(IDictionary), ProvisioningState? provisioningState = default(ProvisioningState?), HostingEnvironmentStatus? status = default(HostingEnvironmentStatus?), string vnetName = default(string), string vnetResourceGroupName = default(string), string vnetSubnetName = default(string), string internalLoadBalancingMode = default(string), string multiSize = default(string), int? multiRoleCount = default(int?), int? ipsslAddressCount = default(int?), string databaseEdition = default(string), string databaseServiceObjective = default(string), int? upgradeDomains = default(int?), string subscriptionId = default(string), string dnsSuffix = default(string), string lastAction = default(string), string lastActionResult = default(string), string allowedMultiSizes = default(string), string allowedWorkerSizes = default(string), int? maximumNumberOfMachines = default(int?), IList vipMappings = default(IList), IList environmentCapacities = default(IList), IList networkAccessControlList = default(IList), bool? environmentIsHealthy = default(bool?), string environmentStatus = default(string), string resourceGroup = default(string), int? frontEndScaleFactor = default(int?), int? defaultFrontEndScaleFactor = default(int?), string apiManagementAccountId = default(string), bool? suspended = default(bool?), bool? dynamicCacheEnabled = default(bool?), IList clusterSettings = default(IList), IList userWhitelistedIpRanges = default(IList), bool? hasLinuxWorkers = default(bool?), string sslCertKeyVaultId = default(string), string sslCertKeyVaultSecretName = default(string))
- : base(location, id, name, kind, type, tags)
+ public AppServiceEnvironmentResource(string location, string appServiceEnvironmentResourceName, string appServiceEnvironmentResourceLocation, VirtualNetworkProfile virtualNetwork, IList workerPools, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary tags = default(IDictionary), SystemData systemData = default(SystemData), ProvisioningState? provisioningState = default(ProvisioningState?), HostingEnvironmentStatus? status = default(HostingEnvironmentStatus?), string vnetName = default(string), string vnetResourceGroupName = default(string), string vnetSubnetName = default(string), string internalLoadBalancingMode = default(string), string multiSize = default(string), int? multiRoleCount = default(int?), int? ipsslAddressCount = default(int?), string databaseEdition = default(string), string databaseServiceObjective = default(string), int? upgradeDomains = default(int?), string subscriptionId = default(string), string dnsSuffix = default(string), string lastAction = default(string), string lastActionResult = default(string), string allowedMultiSizes = default(string), string allowedWorkerSizes = default(string), int? maximumNumberOfMachines = default(int?), IList vipMappings = default(IList), IList environmentCapacities = default(IList), IList networkAccessControlList = default(IList), bool? environmentIsHealthy = default(bool?), string environmentStatus = default(string), string resourceGroup = default(string), int? frontEndScaleFactor = default(int?), int? defaultFrontEndScaleFactor = default(int?), string apiManagementAccountId = default(string), bool? suspended = default(bool?), bool? dynamicCacheEnabled = default(bool?), IList clusterSettings = default(IList), IList userWhitelistedIpRanges = default(IList), bool? hasLinuxWorkers = default(bool?), string sslCertKeyVaultId = default(string), string sslCertKeyVaultSecretName = default(string))
+ : base(location, id, name, kind, type, tags, systemData)
{
AppServiceEnvironmentResourceName = appServiceEnvironmentResourceName;
AppServiceEnvironmentResourceLocation = appServiceEnvironmentResourceLocation;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServicePlan.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServicePlan.cs
index 6f5f763da3eb..6ac4f1154934 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServicePlan.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServicePlan.cs
@@ -40,6 +40,8 @@ public AppServicePlan()
/// Kind of resource.
/// Resource type.
/// Resource tags.
+ /// The system metadata relating to this
+ /// resource.
/// Target worker tier assigned to the App
/// Service plan.
/// App Service plan status. Possible values
@@ -82,8 +84,8 @@ public AppServicePlan()
/// Provisioning state of the App
/// Service Environment. Possible values include: 'Succeeded',
/// 'Failed', 'Canceled', 'InProgress', 'Deleting'
- public AppServicePlan(string location, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary tags = default(IDictionary), string workerTierName = default(string), StatusOptions? status = default(StatusOptions?), string subscription = default(string), HostingEnvironmentProfile hostingEnvironmentProfile = default(HostingEnvironmentProfile), int? maximumNumberOfWorkers = default(int?), string geoRegion = default(string), bool? perSiteScaling = default(bool?), int? maximumElasticWorkerCount = default(int?), int? numberOfSites = default(int?), bool? isSpot = default(bool?), System.DateTime? spotExpirationTime = default(System.DateTime?), System.DateTime? freeOfferExpirationTime = default(System.DateTime?), string resourceGroup = default(string), bool? reserved = default(bool?), bool? isXenon = default(bool?), bool? hyperV = default(bool?), int? targetWorkerCount = default(int?), int? targetWorkerSizeId = default(int?), ProvisioningState? provisioningState = default(ProvisioningState?), SkuDescription sku = default(SkuDescription))
- : base(location, id, name, kind, type, tags)
+ public AppServicePlan(string location, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary tags = default(IDictionary), SystemData systemData = default(SystemData), string workerTierName = default(string), StatusOptions? status = default(StatusOptions?), string subscription = default(string), HostingEnvironmentProfile hostingEnvironmentProfile = default(HostingEnvironmentProfile), int? maximumNumberOfWorkers = default(int?), string geoRegion = default(string), bool? perSiteScaling = default(bool?), int? maximumElasticWorkerCount = default(int?), int? numberOfSites = default(int?), bool? isSpot = default(bool?), System.DateTime? spotExpirationTime = default(System.DateTime?), System.DateTime? freeOfferExpirationTime = default(System.DateTime?), string resourceGroup = default(string), bool? reserved = default(bool?), bool? isXenon = default(bool?), bool? hyperV = default(bool?), int? targetWorkerCount = default(int?), int? targetWorkerSizeId = default(int?), ProvisioningState? provisioningState = default(ProvisioningState?), SkuDescription sku = default(SkuDescription))
+ : base(location, id, name, kind, type, tags, systemData)
{
WorkerTierName = workerTierName;
Status = status;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServicePlanPatchResource.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServicePlanPatchResource.cs
index 55716222a405..c7a1312656b0 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServicePlanPatchResource.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppServicePlanPatchResource.cs
@@ -38,6 +38,8 @@ public AppServicePlanPatchResource()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Target worker tier assigned to the App
/// Service plan.
/// App Service plan status. Possible values
@@ -82,8 +84,8 @@ public AppServicePlanPatchResource()
/// Provisioning state of the App
/// Service Environment. Possible values include: 'Succeeded',
/// 'Failed', 'Canceled', 'InProgress', 'Deleting'
- public AppServicePlanPatchResource(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string workerTierName = default(string), StatusOptions? status = default(StatusOptions?), string subscription = default(string), HostingEnvironmentProfile hostingEnvironmentProfile = default(HostingEnvironmentProfile), int? maximumNumberOfWorkers = default(int?), string geoRegion = default(string), bool? perSiteScaling = default(bool?), int? maximumElasticWorkerCount = default(int?), int? numberOfSites = default(int?), bool? isSpot = default(bool?), System.DateTime? spotExpirationTime = default(System.DateTime?), System.DateTime? freeOfferExpirationTime = default(System.DateTime?), string resourceGroup = default(string), bool? reserved = default(bool?), bool? isXenon = default(bool?), bool? hyperV = default(bool?), int? targetWorkerCount = default(int?), int? targetWorkerSizeId = default(int?), ProvisioningState? provisioningState = default(ProvisioningState?))
- : base(id, name, kind, type)
+ public AppServicePlanPatchResource(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string workerTierName = default(string), StatusOptions? status = default(StatusOptions?), string subscription = default(string), HostingEnvironmentProfile hostingEnvironmentProfile = default(HostingEnvironmentProfile), int? maximumNumberOfWorkers = default(int?), string geoRegion = default(string), bool? perSiteScaling = default(bool?), int? maximumElasticWorkerCount = default(int?), int? numberOfSites = default(int?), bool? isSpot = default(bool?), System.DateTime? spotExpirationTime = default(System.DateTime?), System.DateTime? freeOfferExpirationTime = default(System.DateTime?), string resourceGroup = default(string), bool? reserved = default(bool?), bool? isXenon = default(bool?), bool? hyperV = default(bool?), int? targetWorkerCount = default(int?), int? targetWorkerSizeId = default(int?), ProvisioningState? provisioningState = default(ProvisioningState?))
+ : base(id, name, kind, type, systemData)
{
WorkerTierName = workerTierName;
Status = status;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ApplicationStackResource.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ApplicationStackResource.cs
index ac8153b7ec12..245abefb0776 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ApplicationStackResource.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ApplicationStackResource.cs
@@ -38,6 +38,8 @@ public ApplicationStackResource()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Application stack
/// name.
/// Application stack display name.
@@ -46,8 +48,8 @@ public ApplicationStackResource()
/// available.
/// List of frameworks associated with
/// application stack.
- public ApplicationStackResource(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string applicationStackResourceName = default(string), string display = default(string), string dependency = default(string), IList majorVersions = default(IList), IList frameworks = default(IList))
- : base(id, name, kind, type)
+ public ApplicationStackResource(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string applicationStackResourceName = default(string), string display = default(string), string dependency = default(string), IList majorVersions = default(IList), IList frameworks = default(IList))
+ : base(id, name, kind, type, systemData)
{
ApplicationStackResourceName = applicationStackResourceName;
Display = display;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppserviceGithubToken.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppserviceGithubToken.cs
new file mode 100644
index 000000000000..a4a1226ce6af
--- /dev/null
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppserviceGithubToken.cs
@@ -0,0 +1,87 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.WebSites.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Github access token for Appservice CLI github integration.
+ ///
+ public partial class AppserviceGithubToken
+ {
+ ///
+ /// Initializes a new instance of the AppserviceGithubToken class.
+ ///
+ public AppserviceGithubToken()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the AppserviceGithubToken class.
+ ///
+ /// Github access token for Appservice CLI
+ /// github integration
+ /// Scope of the github access token
+ /// token type
+ /// True if valid github token received, False
+ /// otherwise
+ /// Error message if unable to get
+ /// token
+ public AppserviceGithubToken(string accessToken = default(string), string scope = default(string), string tokenType = default(string), bool? gotToken = default(bool?), string errorMessage = default(string))
+ {
+ AccessToken = accessToken;
+ Scope = scope;
+ TokenType = tokenType;
+ GotToken = gotToken;
+ ErrorMessage = errorMessage;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets github access token for Appservice CLI github
+ /// integration
+ ///
+ [JsonProperty(PropertyName = "accessToken")]
+ public string AccessToken { get; set; }
+
+ ///
+ /// Gets or sets scope of the github access token
+ ///
+ [JsonProperty(PropertyName = "scope")]
+ public string Scope { get; set; }
+
+ ///
+ /// Gets or sets token type
+ ///
+ [JsonProperty(PropertyName = "tokenType")]
+ public string TokenType { get; set; }
+
+ ///
+ /// Gets or sets true if valid github token received, False otherwise
+ ///
+ [JsonProperty(PropertyName = "gotToken")]
+ public bool? GotToken { get; set; }
+
+ ///
+ /// Gets or sets error message if unable to get token
+ ///
+ [JsonProperty(PropertyName = "errorMessage")]
+ public string ErrorMessage { get; set; }
+
+ }
+}
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppserviceGithubTokenRequest.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppserviceGithubTokenRequest.cs
new file mode 100644
index 000000000000..e99bcc39cb0f
--- /dev/null
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AppserviceGithubTokenRequest.cs
@@ -0,0 +1,80 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.WebSites.Models
+{
+ using Microsoft.Rest;
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Appservice Github token request content.
+ ///
+ public partial class AppserviceGithubTokenRequest
+ {
+ ///
+ /// Initializes a new instance of the AppserviceGithubTokenRequest
+ /// class.
+ ///
+ public AppserviceGithubTokenRequest()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the AppserviceGithubTokenRequest
+ /// class.
+ ///
+ /// Code string to exchange for Github Access
+ /// token
+ /// State string used for verification.
+ public AppserviceGithubTokenRequest(string code, string state)
+ {
+ Code = code;
+ State = state;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets code string to exchange for Github Access token
+ ///
+ [JsonProperty(PropertyName = "code")]
+ public string Code { get; set; }
+
+ ///
+ /// Gets or sets state string used for verification.
+ ///
+ [JsonProperty(PropertyName = "state")]
+ public string State { get; set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public virtual void Validate()
+ {
+ if (Code == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "Code");
+ }
+ if (State == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "State");
+ }
+ }
+ }
+}
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AuthPlatform.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AuthPlatform.cs
index fcb76de8feff..fd33beba620a 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AuthPlatform.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AuthPlatform.cs
@@ -33,8 +33,10 @@ public AuthPlatform()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public AuthPlatform(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), bool? enabled = default(bool?), string runtimeVersion = default(string), string configFilePath = default(string))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public AuthPlatform(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), bool? enabled = default(bool?), string runtimeVersion = default(string), string configFilePath = default(string))
+ : base(id, name, kind, type, systemData)
{
Enabled = enabled;
RuntimeVersion = runtimeVersion;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectory.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectory.cs
index 1adab0d29484..bec9f5d1f290 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectory.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectory.cs
@@ -33,8 +33,10 @@ public AzureActiveDirectory()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public AzureActiveDirectory(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), bool? enabled = default(bool?), AzureActiveDirectoryRegistration registration = default(AzureActiveDirectoryRegistration), AzureActiveDirectoryLogin login = default(AzureActiveDirectoryLogin), AzureActiveDirectoryValidation validation = default(AzureActiveDirectoryValidation), bool? isAutoProvisioned = default(bool?))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public AzureActiveDirectory(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), bool? enabled = default(bool?), AzureActiveDirectoryRegistration registration = default(AzureActiveDirectoryRegistration), AzureActiveDirectoryLogin login = default(AzureActiveDirectoryLogin), AzureActiveDirectoryValidation validation = default(AzureActiveDirectoryValidation), bool? isAutoProvisioned = default(bool?))
+ : base(id, name, kind, type, systemData)
{
Enabled = enabled;
Registration = registration;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectoryLogin.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectoryLogin.cs
index 108a38b756cf..beac4d992ee3 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectoryLogin.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectoryLogin.cs
@@ -35,8 +35,10 @@ public AzureActiveDirectoryLogin()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public AzureActiveDirectoryLogin(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), bool? disableWWWAuthenticate = default(bool?), IList loginParameters = default(IList))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public AzureActiveDirectoryLogin(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), bool? disableWWWAuthenticate = default(bool?), IList loginParameters = default(IList))
+ : base(id, name, kind, type, systemData)
{
DisableWWWAuthenticate = disableWWWAuthenticate;
LoginParameters = loginParameters;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectoryRegistration.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectoryRegistration.cs
index 28c6a7986420..23523e0a4c91 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectoryRegistration.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectoryRegistration.cs
@@ -35,8 +35,10 @@ public AzureActiveDirectoryRegistration()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public AzureActiveDirectoryRegistration(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string openIdIssuer = default(string), string clientId = default(string), string clientSecretSettingName = default(string), string clientSecretCertificateThumbprint = default(string))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public AzureActiveDirectoryRegistration(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string openIdIssuer = default(string), string clientId = default(string), string clientSecretSettingName = default(string), string clientSecretCertificateThumbprint = default(string))
+ : base(id, name, kind, type, systemData)
{
OpenIdIssuer = openIdIssuer;
ClientId = clientId;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectoryValidation.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectoryValidation.cs
index 4122b36d7f76..1e5b247353d9 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectoryValidation.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureActiveDirectoryValidation.cs
@@ -37,8 +37,10 @@ public AzureActiveDirectoryValidation()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public AzureActiveDirectoryValidation(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), JwtClaimChecks jwtClaimChecks = default(JwtClaimChecks), IList allowedAudiences = default(IList))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public AzureActiveDirectoryValidation(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), JwtClaimChecks jwtClaimChecks = default(JwtClaimChecks), IList allowedAudiences = default(IList))
+ : base(id, name, kind, type, systemData)
{
JwtClaimChecks = jwtClaimChecks;
AllowedAudiences = allowedAudiences;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureStoragePropertyDictionaryResource.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureStoragePropertyDictionaryResource.cs
index 331960cea659..57fd0c092cf7 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureStoragePropertyDictionaryResource.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/AzureStoragePropertyDictionaryResource.cs
@@ -37,9 +37,11 @@ public AzureStoragePropertyDictionaryResource()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Azure storage accounts.
- public AzureStoragePropertyDictionaryResource(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary properties = default(IDictionary))
- : base(id, name, kind, type)
+ public AzureStoragePropertyDictionaryResource(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), IDictionary properties = default(IDictionary))
+ : base(id, name, kind, type, systemData)
{
Properties = properties;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BackupItem.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BackupItem.cs
index d88db9a81169..49c7c7d595a7 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BackupItem.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BackupItem.cs
@@ -38,6 +38,8 @@ public BackupItem()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Id of the backup.
/// SAS URL for the storage account
/// container which contains this backup.
@@ -65,8 +67,8 @@ public BackupItem()
/// support.
/// Size of the original web app which
/// has been backed up.
- public BackupItem(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), int? backupId = default(int?), string storageAccountUrl = default(string), string blobName = default(string), string backupItemName = default(string), BackupItemStatus? status = default(BackupItemStatus?), long? sizeInBytes = default(long?), System.DateTime? created = default(System.DateTime?), string log = default(string), IList databases = default(IList), bool? scheduled = default(bool?), System.DateTime? lastRestoreTimeStamp = default(System.DateTime?), System.DateTime? finishedTimeStamp = default(System.DateTime?), string correlationId = default(string), long? websiteSizeInBytes = default(long?))
- : base(id, name, kind, type)
+ public BackupItem(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), int? backupId = default(int?), string storageAccountUrl = default(string), string blobName = default(string), string backupItemName = default(string), BackupItemStatus? status = default(BackupItemStatus?), long? sizeInBytes = default(long?), System.DateTime? created = default(System.DateTime?), string log = default(string), IList databases = default(IList), bool? scheduled = default(bool?), System.DateTime? lastRestoreTimeStamp = default(System.DateTime?), System.DateTime? finishedTimeStamp = default(System.DateTime?), string correlationId = default(string), long? websiteSizeInBytes = default(long?))
+ : base(id, name, kind, type, systemData)
{
BackupId = backupId;
StorageAccountUrl = storageAccountUrl;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BackupRequest.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BackupRequest.cs
index 8a5bda6bc021..3c5db51538e6 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BackupRequest.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BackupRequest.cs
@@ -39,6 +39,8 @@ public BackupRequest()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Name of the backup.
/// True if the backup schedule is enabled (must
/// be included in that case), false if the backup schedule should be
@@ -46,8 +48,8 @@ public BackupRequest()
/// Schedule for the backup if it is
/// executed periodically.
/// Databases included in the backup.
- public BackupRequest(string storageAccountUrl, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string backupName = default(string), bool? enabled = default(bool?), BackupSchedule backupSchedule = default(BackupSchedule), IList databases = default(IList))
- : base(id, name, kind, type)
+ public BackupRequest(string storageAccountUrl, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string backupName = default(string), bool? enabled = default(bool?), BackupSchedule backupSchedule = default(BackupSchedule), IList databases = default(IList))
+ : base(id, name, kind, type, systemData)
{
BackupName = backupName;
Enabled = enabled;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BillingMeter.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BillingMeter.cs
index 2e6698cad5cd..019b54408f66 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BillingMeter.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BillingMeter.cs
@@ -37,6 +37,8 @@ public BillingMeter()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Meter GUID onboarded in Commerce
/// Azure Location of billable
/// resource
@@ -46,8 +48,8 @@ public BillingMeter()
/// App Service ResourceType meter used
/// for
/// App Service OS type meter used for
- public BillingMeter(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string meterId = default(string), string billingLocation = default(string), string shortName = default(string), string friendlyName = default(string), string resourceType = default(string), string osType = default(string))
- : base(id, name, kind, type)
+ public BillingMeter(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string meterId = default(string), string billingLocation = default(string), string shortName = default(string), string friendlyName = default(string), string resourceType = default(string), string osType = default(string))
+ : base(id, name, kind, type, systemData)
{
MeterId = meterId;
BillingLocation = billingLocation;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BlobStorageTokenStore.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BlobStorageTokenStore.cs
index 477633b938cb..180204257c50 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BlobStorageTokenStore.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/BlobStorageTokenStore.cs
@@ -33,8 +33,10 @@ public BlobStorageTokenStore()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public BlobStorageTokenStore(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string sasUrlSettingName = default(string))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public BlobStorageTokenStore(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string sasUrlSettingName = default(string))
+ : base(id, name, kind, type, systemData)
{
SasUrlSettingName = sasUrlSettingName;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Certificate.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Certificate.cs
index d46eb9c0661c..b5f1ed425414 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Certificate.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Certificate.cs
@@ -41,6 +41,8 @@ public Certificate()
/// Kind of resource.
/// Resource type.
/// Resource tags.
+ /// The system metadata relating to this
+ /// resource.
/// Friendly name of the
/// certificate.
/// Subject name of the certificate.
@@ -72,8 +74,8 @@ public Certificate()
/// "/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}".
/// CNAME of the certificate to be issued
/// via free certificate
- public Certificate(string location, string password, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary tags = default(IDictionary), string friendlyName = default(string), string subjectName = default(string), IList hostNames = default(IList), byte[] pfxBlob = default(byte[]), string siteName = default(string), string selfLink = default(string), string issuer = default(string), System.DateTime? issueDate = default(System.DateTime?), System.DateTime? expirationDate = default(System.DateTime?), string thumbprint = default(string), bool? valid = default(bool?), byte[] cerBlob = default(byte[]), string publicKeyHash = default(string), HostingEnvironmentProfile hostingEnvironmentProfile = default(HostingEnvironmentProfile), string keyVaultId = default(string), string keyVaultSecretName = default(string), KeyVaultSecretStatus? keyVaultSecretStatus = default(KeyVaultSecretStatus?), string serverFarmId = default(string), string canonicalName = default(string))
- : base(location, id, name, kind, type, tags)
+ public Certificate(string location, string password, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary tags = default(IDictionary), SystemData systemData = default(SystemData), string friendlyName = default(string), string subjectName = default(string), IList hostNames = default(IList), byte[] pfxBlob = default(byte[]), string siteName = default(string), string selfLink = default(string), string issuer = default(string), System.DateTime? issueDate = default(System.DateTime?), System.DateTime? expirationDate = default(System.DateTime?), string thumbprint = default(string), bool? valid = default(bool?), byte[] cerBlob = default(byte[]), string publicKeyHash = default(string), HostingEnvironmentProfile hostingEnvironmentProfile = default(HostingEnvironmentProfile), string keyVaultId = default(string), string keyVaultSecretName = default(string), KeyVaultSecretStatus? keyVaultSecretStatus = default(KeyVaultSecretStatus?), string serverFarmId = default(string), string canonicalName = default(string))
+ : base(location, id, name, kind, type, tags, systemData)
{
FriendlyName = friendlyName;
SubjectName = subjectName;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CertificateEmail.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CertificateEmail.cs
index 964709077aa5..ed1c3069891b 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CertificateEmail.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CertificateEmail.cs
@@ -36,10 +36,12 @@ public CertificateEmail()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Email id.
/// Time stamp.
- public CertificateEmail(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string emailId = default(string), System.DateTime? timeStamp = default(System.DateTime?))
- : base(id, name, kind, type)
+ public CertificateEmail(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string emailId = default(string), System.DateTime? timeStamp = default(System.DateTime?))
+ : base(id, name, kind, type, systemData)
{
EmailId = emailId;
TimeStamp = timeStamp;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CertificateOrderAction.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CertificateOrderAction.cs
index 19be35309378..1d01fc4207fa 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CertificateOrderAction.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CertificateOrderAction.cs
@@ -36,6 +36,8 @@ public CertificateOrderAction()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Action type. Possible values include:
/// 'CertificateIssued', 'CertificateOrderCanceled',
/// 'CertificateOrderCreated', 'CertificateRevoked',
@@ -45,8 +47,8 @@ public CertificateOrderAction()
/// 'FraudDocumentationRequired', 'Unknown'
/// Time at which the certificate action was
/// performed.
- public CertificateOrderAction(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), CertificateOrderActionType? actionType = default(CertificateOrderActionType?), System.DateTime? createdAt = default(System.DateTime?))
- : base(id, name, kind, type)
+ public CertificateOrderAction(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), CertificateOrderActionType? actionType = default(CertificateOrderActionType?), System.DateTime? createdAt = default(System.DateTime?))
+ : base(id, name, kind, type, systemData)
{
ActionType = actionType;
CreatedAt = createdAt;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CertificatePatchResource.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CertificatePatchResource.cs
index f2579bd985bc..7351047c36e9 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CertificatePatchResource.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CertificatePatchResource.cs
@@ -39,6 +39,8 @@ public CertificatePatchResource()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Friendly name of the
/// certificate.
/// Subject name of the certificate.
@@ -70,8 +72,8 @@ public CertificatePatchResource()
/// "/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}".
/// CNAME of the certificate to be issued
/// via free certificate
- public CertificatePatchResource(string password, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string friendlyName = default(string), string subjectName = default(string), IList hostNames = default(IList), byte[] pfxBlob = default(byte[]), string siteName = default(string), string selfLink = default(string), string issuer = default(string), System.DateTime? issueDate = default(System.DateTime?), System.DateTime? expirationDate = default(System.DateTime?), string thumbprint = default(string), bool? valid = default(bool?), byte[] cerBlob = default(byte[]), string publicKeyHash = default(string), HostingEnvironmentProfile hostingEnvironmentProfile = default(HostingEnvironmentProfile), string keyVaultId = default(string), string keyVaultSecretName = default(string), KeyVaultSecretStatus? keyVaultSecretStatus = default(KeyVaultSecretStatus?), string serverFarmId = default(string), string canonicalName = default(string))
- : base(id, name, kind, type)
+ public CertificatePatchResource(string password, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string friendlyName = default(string), string subjectName = default(string), IList hostNames = default(IList), byte[] pfxBlob = default(byte[]), string siteName = default(string), string selfLink = default(string), string issuer = default(string), System.DateTime? issueDate = default(System.DateTime?), System.DateTime? expirationDate = default(System.DateTime?), string thumbprint = default(string), bool? valid = default(bool?), byte[] cerBlob = default(byte[]), string publicKeyHash = default(string), HostingEnvironmentProfile hostingEnvironmentProfile = default(HostingEnvironmentProfile), string keyVaultId = default(string), string keyVaultSecretName = default(string), KeyVaultSecretStatus? keyVaultSecretStatus = default(KeyVaultSecretStatus?), string serverFarmId = default(string), string canonicalName = default(string))
+ : base(id, name, kind, type, systemData)
{
FriendlyName = friendlyName;
SubjectName = subjectName;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ClientRegistration.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ClientRegistration.cs
index 516e1eda692c..57b35ad8ec8b 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ClientRegistration.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ClientRegistration.cs
@@ -33,8 +33,10 @@ public ClientRegistration()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public ClientRegistration(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string clientId = default(string), string clientSecretSettingName = default(string))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public ClientRegistration(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string clientId = default(string), string clientSecretSettingName = default(string))
+ : base(id, name, kind, type, systemData)
{
ClientId = clientId;
ClientSecretSettingName = clientSecretSettingName;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ConnectionStringDictionary.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ConnectionStringDictionary.cs
index 2211f6ff3636..9d37655f3f4a 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ConnectionStringDictionary.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ConnectionStringDictionary.cs
@@ -35,9 +35,11 @@ public ConnectionStringDictionary()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Connection strings.
- public ConnectionStringDictionary(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary properties = default(IDictionary))
- : base(id, name, kind, type)
+ public ConnectionStringDictionary(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), IDictionary properties = default(IDictionary))
+ : base(id, name, kind, type, systemData)
{
Properties = properties;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ContinuousWebJob.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ContinuousWebJob.cs
index f8139a745481..0b510906fc99 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ContinuousWebJob.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ContinuousWebJob.cs
@@ -38,6 +38,8 @@ public ContinuousWebJob()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Job status. Possible values include:
/// 'Initializing', 'Starting', 'Running', 'PendingRestart',
/// 'Stopped'
@@ -51,8 +53,8 @@ public ContinuousWebJob()
/// Error information.
/// Using SDK?
/// Job settings.
- public ContinuousWebJob(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), ContinuousWebJobStatus? status = default(ContinuousWebJobStatus?), string detailedStatus = default(string), string logUrl = default(string), string runCommand = default(string), string url = default(string), string extraInfoUrl = default(string), WebJobType? webJobType = default(WebJobType?), string error = default(string), bool? usingSdk = default(bool?), IDictionary settings = default(IDictionary))
- : base(id, name, kind, type)
+ public ContinuousWebJob(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), ContinuousWebJobStatus? status = default(ContinuousWebJobStatus?), string detailedStatus = default(string), string logUrl = default(string), string runCommand = default(string), string url = default(string), string extraInfoUrl = default(string), WebJobType? webJobType = default(WebJobType?), string error = default(string), bool? usingSdk = default(bool?), IDictionary settings = default(IDictionary))
+ : base(id, name, kind, type, systemData)
{
Status = status;
DetailedStatus = detailedStatus;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CookieExpiration.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CookieExpiration.cs
index 2bad787f8310..558e3f0dfb35 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CookieExpiration.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CookieExpiration.cs
@@ -33,10 +33,12 @@ public CookieExpiration()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Possible values include: 'FixedTime',
/// 'IdentityProviderDerived'
- public CookieExpiration(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), CookieExpirationConvention? convention = default(CookieExpirationConvention?), string timeToExpiration = default(string))
- : base(id, name, kind, type)
+ public CookieExpiration(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), CookieExpirationConvention? convention = default(CookieExpirationConvention?), string timeToExpiration = default(string))
+ : base(id, name, kind, type, systemData)
{
Convention = convention;
TimeToExpiration = timeToExpiration;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CreatedByType.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CreatedByType.cs
new file mode 100644
index 000000000000..cc7b1a654e75
--- /dev/null
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CreatedByType.cs
@@ -0,0 +1,24 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.WebSites.Models
+{
+
+ ///
+ /// Defines values for CreatedByType.
+ ///
+ public static class CreatedByType
+ {
+ public const string User = "User";
+ public const string Application = "Application";
+ public const string ManagedIdentity = "ManagedIdentity";
+ public const string Key = "Key";
+ }
+}
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CsmPublishingCredentialsPoliciesCollection.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CsmPublishingCredentialsPoliciesCollection.cs
index 364b186fed71..002ba907823c 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CsmPublishingCredentialsPoliciesCollection.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CsmPublishingCredentialsPoliciesCollection.cs
@@ -40,8 +40,10 @@ public CsmPublishingCredentialsPoliciesCollection()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public CsmPublishingCredentialsPoliciesCollection(CsmPublishingCredentialsPoliciesEntity ftp, CsmPublishingCredentialsPoliciesEntity scm, string id = default(string), string name = default(string), string kind = default(string), string type = default(string))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public CsmPublishingCredentialsPoliciesCollection(CsmPublishingCredentialsPoliciesEntity ftp, CsmPublishingCredentialsPoliciesEntity scm, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData))
+ : base(id, name, kind, type, systemData)
{
Ftp = ftp;
Scm = scm;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CsmPublishingCredentialsPoliciesEntity.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CsmPublishingCredentialsPoliciesEntity.cs
index 3b389e6e76fa..1424b4cefaca 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CsmPublishingCredentialsPoliciesEntity.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CsmPublishingCredentialsPoliciesEntity.cs
@@ -41,8 +41,10 @@ public CsmPublishingCredentialsPoliciesEntity()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public CsmPublishingCredentialsPoliciesEntity(bool allow, string id = default(string), string name = default(string), string kind = default(string), string type = default(string))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public CsmPublishingCredentialsPoliciesEntity(bool allow, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData))
+ : base(id, name, kind, type, systemData)
{
Allow = allow;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CustomHostnameAnalysisResult.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CustomHostnameAnalysisResult.cs
index 78dddad2e52e..3e8e121a4292 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CustomHostnameAnalysisResult.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CustomHostnameAnalysisResult.cs
@@ -40,6 +40,8 @@ public CustomHostnameAnalysisResult()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// <code>true</code> if
/// hostname is already verified; otherwise,
@@ -68,8 +70,8 @@ public CustomHostnameAnalysisResult()
/// controller can see for this hostname.
/// Alternate TXT records controller
/// can see for this hostname.
- public CustomHostnameAnalysisResult(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), bool? isHostnameAlreadyVerified = default(bool?), DnsVerificationTestResult? customDomainVerificationTest = default(DnsVerificationTestResult?), ErrorEntity customDomainVerificationFailureInfo = default(ErrorEntity), bool? hasConflictOnScaleUnit = default(bool?), bool? hasConflictAcrossSubscription = default(bool?), string conflictingAppResourceId = default(string), IList cNameRecords = default(IList), IList txtRecords = default(IList), IList aRecords = default(IList), IList alternateCNameRecords = default(IList), IList alternateTxtRecords = default(IList))
- : base(id, name, kind, type)
+ public CustomHostnameAnalysisResult(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), bool? isHostnameAlreadyVerified = default(bool?), DnsVerificationTestResult? customDomainVerificationTest = default(DnsVerificationTestResult?), ErrorEntity customDomainVerificationFailureInfo = default(ErrorEntity), bool? hasConflictOnScaleUnit = default(bool?), bool? hasConflictAcrossSubscription = default(bool?), string conflictingAppResourceId = default(string), IList cNameRecords = default(IList), IList txtRecords = default(IList), IList aRecords = default(IList), IList alternateCNameRecords = default(IList), IList alternateTxtRecords = default(IList))
+ : base(id, name, kind, type, systemData)
{
IsHostnameAlreadyVerified = isHostnameAlreadyVerified;
CustomDomainVerificationTest = customDomainVerificationTest;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CustomOpenIdConnectProvider.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CustomOpenIdConnectProvider.cs
index c6bcf20e8429..e81816a03e80 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CustomOpenIdConnectProvider.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/CustomOpenIdConnectProvider.cs
@@ -35,8 +35,10 @@ public CustomOpenIdConnectProvider()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public CustomOpenIdConnectProvider(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), bool? enabled = default(bool?), OpenIdConnectRegistration registration = default(OpenIdConnectRegistration), OpenIdConnectLogin login = default(OpenIdConnectLogin))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public CustomOpenIdConnectProvider(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), bool? enabled = default(bool?), OpenIdConnectRegistration registration = default(OpenIdConnectRegistration), OpenIdConnectLogin login = default(OpenIdConnectLogin))
+ : base(id, name, kind, type, systemData)
{
Enabled = enabled;
Registration = registration;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DeletedAppRestoreRequest.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DeletedAppRestoreRequest.cs
index 347a22b2abf2..7cf0d66b7298 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DeletedAppRestoreRequest.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DeletedAppRestoreRequest.cs
@@ -36,6 +36,8 @@ public DeletedAppRestoreRequest()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// ARM resource ID of the deleted app.
/// Example:
/// /subscriptions/{subId}/providers/Microsoft.Web/deletedSites/{deletedSiteId}
@@ -47,8 +49,8 @@ public DeletedAppRestoreRequest()
/// deleted.
/// If true, the snapshot is retrieved
/// from DRSecondary endpoint.
- public DeletedAppRestoreRequest(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string deletedSiteId = default(string), bool? recoverConfiguration = default(bool?), string snapshotTime = default(string), bool? useDRSecondary = default(bool?))
- : base(id, name, kind, type)
+ public DeletedAppRestoreRequest(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string deletedSiteId = default(string), bool? recoverConfiguration = default(bool?), string snapshotTime = default(string), bool? useDRSecondary = default(bool?))
+ : base(id, name, kind, type, systemData)
{
DeletedSiteId = deletedSiteId;
RecoverConfiguration = recoverConfiguration;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DeletedSite.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DeletedSite.cs
index 565a9b6b34d0..09ba38457592 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DeletedSite.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DeletedSite.cs
@@ -36,6 +36,8 @@ public DeletedSite()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Numeric id for the deleted site
/// Time in UTC when the app was
/// deleted.
@@ -47,8 +49,8 @@ public DeletedSite()
/// Slot of the deleted site
/// Kind of site that was deleted
/// Geo Region of the deleted site
- public DeletedSite(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), int? deletedSiteId = default(int?), string deletedTimestamp = default(string), string subscription = default(string), string resourceGroup = default(string), string deletedSiteName = default(string), string slot = default(string), string deletedSiteKind = default(string), string geoRegionName = default(string))
- : base(id, name, kind, type)
+ public DeletedSite(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), int? deletedSiteId = default(int?), string deletedTimestamp = default(string), string subscription = default(string), string resourceGroup = default(string), string deletedSiteName = default(string), string slot = default(string), string deletedSiteKind = default(string), string geoRegionName = default(string))
+ : base(id, name, kind, type, systemData)
{
DeletedSiteId = deletedSiteId;
DeletedTimestamp = deletedTimestamp;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Deployment.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Deployment.cs
index 9a88a578c6b1..d27e4c5a6830 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Deployment.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Deployment.cs
@@ -36,6 +36,8 @@ public Deployment()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Deployment status.
/// Details about deployment status.
/// Who authored the deployment.
@@ -46,8 +48,8 @@ public Deployment()
/// True if deployment is currently active, false
/// if completed and null if not started.
/// Details on deployment.
- public Deployment(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), int? status = default(int?), string message = default(string), string author = default(string), string deployer = default(string), string authorEmail = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), bool? active = default(bool?), string details = default(string))
- : base(id, name, kind, type)
+ public Deployment(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), int? status = default(int?), string message = default(string), string author = default(string), string deployer = default(string), string authorEmail = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), bool? active = default(bool?), string details = default(string))
+ : base(id, name, kind, type, systemData)
{
Status = status;
Message = message;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DetectorDefinition.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DetectorDefinition.cs
index bcccb400ddc8..7259b0880b4e 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DetectorDefinition.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DetectorDefinition.cs
@@ -36,13 +36,15 @@ public DetectorDefinition()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Display name of the detector
/// Description of the detector
/// Detector Rank
/// Flag representing whether detector is
/// enabled or not.
- public DetectorDefinition(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string displayName = default(string), string description = default(string), double? rank = default(double?), bool? isEnabled = default(bool?))
- : base(id, name, kind, type)
+ public DetectorDefinition(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string displayName = default(string), string description = default(string), double? rank = default(double?), bool? isEnabled = default(bool?))
+ : base(id, name, kind, type, systemData)
{
DisplayName = displayName;
Description = description;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DetectorResponse.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DetectorResponse.cs
index 853860a84c5c..73def4e4f343 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DetectorResponse.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DetectorResponse.cs
@@ -38,10 +38,12 @@ public DetectorResponse()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// metadata for the detector
/// Data Set
- public DetectorResponse(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), DetectorInfo metadata = default(DetectorInfo), IList dataset = default(IList))
- : base(id, name, kind, type)
+ public DetectorResponse(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), DetectorInfo metadata = default(DetectorInfo), IList dataset = default(IList))
+ : base(id, name, kind, type, systemData)
{
Metadata = metadata;
Dataset = dataset;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DiagnosticAnalysis.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DiagnosticAnalysis.cs
index a14320e7e5e3..6c00427abc7c 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DiagnosticAnalysis.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DiagnosticAnalysis.cs
@@ -38,14 +38,16 @@ public DiagnosticAnalysis()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Start time of the period
/// End time of the period
/// List of time periods.
/// Data by each detector
/// Data by each detector for
/// detectors that did not corelate
- public DiagnosticAnalysis(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), IList abnormalTimePeriods = default(IList), IList payload = default(IList), IList nonCorrelatedDetectors = default(IList))
- : base(id, name, kind, type)
+ public DiagnosticAnalysis(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), IList abnormalTimePeriods = default(IList), IList payload = default(IList), IList nonCorrelatedDetectors = default(IList))
+ : base(id, name, kind, type, systemData)
{
StartTime = startTime;
EndTime = endTime;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DiagnosticCategory.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DiagnosticCategory.cs
index 57b10cf75dd7..2ddf0382f7d4 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DiagnosticCategory.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DiagnosticCategory.cs
@@ -36,10 +36,12 @@ public DiagnosticCategory()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Description of the diagnostic
/// category
- public DiagnosticCategory(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string description = default(string))
- : base(id, name, kind, type)
+ public DiagnosticCategory(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string description = default(string))
+ : base(id, name, kind, type, systemData)
{
Description = description;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DiagnosticDetectorResponse.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DiagnosticDetectorResponse.cs
index 2a896dd8fdef..57a4146606de 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DiagnosticDetectorResponse.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DiagnosticDetectorResponse.cs
@@ -38,6 +38,8 @@ public DiagnosticDetectorResponse()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Start time of the period
/// End time of the period
/// Flag representing Issue was
@@ -49,8 +51,8 @@ public DiagnosticDetectorResponse()
/// Additional Data that detector wants to
/// send.
/// Meta Data
- public DiagnosticDetectorResponse(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), bool? issueDetected = default(bool?), DetectorDefinition detectorDefinition = default(DetectorDefinition), IList metrics = default(IList), IList abnormalTimePeriods = default(IList), IList> data = default(IList>), ResponseMetaData responseMetaData = default(ResponseMetaData))
- : base(id, name, kind, type)
+ public DiagnosticDetectorResponse(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), bool? issueDetected = default(bool?), DetectorDefinition detectorDefinition = default(DetectorDefinition), IList metrics = default(IList), IList abnormalTimePeriods = default(IList), IList> data = default(IList>), ResponseMetaData responseMetaData = default(ResponseMetaData))
+ : base(id, name, kind, type, systemData)
{
StartTime = startTime;
EndTime = endTime;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Domain.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Domain.cs
index 7b37c3176248..29a240e9b023 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Domain.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Domain.cs
@@ -45,6 +45,8 @@ public Domain()
/// Kind of resource.
/// Resource type.
/// Resource tags.
+ /// The system metadata relating to this
+ /// resource.
/// Domain registration status.
/// Possible values include: 'Active', 'Awaiting', 'Cancelled',
/// 'Confiscated', 'Disabled', 'Excluded', 'Expired', 'Failed', 'Held',
@@ -83,8 +85,8 @@ public Domain()
/// Target DNS type (would be used for
/// migration). Possible values include: 'AzureDns',
/// 'DefaultDomainRegistrarDns'
- public Domain(string location, Contact contactAdmin, Contact contactBilling, Contact contactRegistrant, Contact contactTech, DomainPurchaseConsent consent, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary tags = default(IDictionary), DomainStatus? registrationStatus = default(DomainStatus?), ProvisioningState? provisioningState = default(ProvisioningState?), IList nameServers = default(IList), bool? privacy = default(bool?), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? expirationTime = default(System.DateTime?), System.DateTime? lastRenewedTime = default(System.DateTime?), bool? autoRenew = default(bool?), bool? readyForDnsRecordManagement = default(bool?), IList managedHostNames = default(IList), IList domainNotRenewableReasons = default(IList), DnsType? dnsType = default(DnsType?), string dnsZoneId = default(string), DnsType? targetDnsType = default(DnsType?), string authCode = default(string))
- : base(location, id, name, kind, type, tags)
+ public Domain(string location, Contact contactAdmin, Contact contactBilling, Contact contactRegistrant, Contact contactTech, DomainPurchaseConsent consent, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IDictionary tags = default(IDictionary), SystemData systemData = default(SystemData), DomainStatus? registrationStatus = default(DomainStatus?), ProvisioningState? provisioningState = default(ProvisioningState?), IList nameServers = default(IList), bool? privacy = default(bool?), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? expirationTime = default(System.DateTime?), System.DateTime? lastRenewedTime = default(System.DateTime?), bool? autoRenew = default(bool?), bool? readyForDnsRecordManagement = default(bool?), IList managedHostNames = default(IList), IList domainNotRenewableReasons = default(IList), DnsType? dnsType = default(DnsType?), string dnsZoneId = default(string), DnsType? targetDnsType = default(DnsType?), string authCode = default(string))
+ : base(location, id, name, kind, type, tags, systemData)
{
ContactAdmin = contactAdmin;
ContactBilling = contactBilling;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DomainOwnershipIdentifier.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DomainOwnershipIdentifier.cs
index 76577cbd5406..e9cb22fe9f72 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DomainOwnershipIdentifier.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DomainOwnershipIdentifier.cs
@@ -36,9 +36,11 @@ public DomainOwnershipIdentifier()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Ownership Id.
- public DomainOwnershipIdentifier(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string ownershipId = default(string))
- : base(id, name, kind, type)
+ public DomainOwnershipIdentifier(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string ownershipId = default(string))
+ : base(id, name, kind, type, systemData)
{
OwnershipId = ownershipId;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DomainPatchResource.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DomainPatchResource.cs
index c91ad00fac20..d2e4d878803b 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DomainPatchResource.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/DomainPatchResource.cs
@@ -43,6 +43,8 @@ public DomainPatchResource()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Domain registration status.
/// Possible values include: 'Active', 'Awaiting', 'Cancelled',
/// 'Confiscated', 'Disabled', 'Excluded', 'Expired', 'Failed', 'Held',
@@ -81,8 +83,8 @@ public DomainPatchResource()
/// Target DNS type (would be used for
/// migration). Possible values include: 'AzureDns',
/// 'DefaultDomainRegistrarDns'
- public DomainPatchResource(Contact contactAdmin, Contact contactBilling, Contact contactRegistrant, Contact contactTech, DomainPurchaseConsent consent, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), DomainStatus? registrationStatus = default(DomainStatus?), ProvisioningState? provisioningState = default(ProvisioningState?), IList nameServers = default(IList), bool? privacy = default(bool?), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? expirationTime = default(System.DateTime?), System.DateTime? lastRenewedTime = default(System.DateTime?), bool? autoRenew = default(bool?), bool? readyForDnsRecordManagement = default(bool?), IList managedHostNames = default(IList), IList domainNotRenewableReasons = default(IList), DnsType? dnsType = default(DnsType?), string dnsZoneId = default(string), DnsType? targetDnsType = default(DnsType?), string authCode = default(string))
- : base(id, name, kind, type)
+ public DomainPatchResource(Contact contactAdmin, Contact contactBilling, Contact contactRegistrant, Contact contactTech, DomainPurchaseConsent consent, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), DomainStatus? registrationStatus = default(DomainStatus?), ProvisioningState? provisioningState = default(ProvisioningState?), IList nameServers = default(IList), bool? privacy = default(bool?), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? expirationTime = default(System.DateTime?), System.DateTime? lastRenewedTime = default(System.DateTime?), bool? autoRenew = default(bool?), bool? readyForDnsRecordManagement = default(bool?), IList managedHostNames = default(IList), IList domainNotRenewableReasons = default(IList), DnsType? dnsType = default(DnsType?), string dnsZoneId = default(string), DnsType? targetDnsType = default(DnsType?), string authCode = default(string))
+ : base(id, name, kind, type, systemData)
{
ContactAdmin = contactAdmin;
ContactBilling = contactBilling;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Facebook.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Facebook.cs
index 5d66f50d57a6..3bfa84f53a0e 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Facebook.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Facebook.cs
@@ -33,8 +33,10 @@ public Facebook()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public Facebook(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), bool? enabled = default(bool?), AppRegistration registration = default(AppRegistration), string graphApiVersion = default(string), LoginScopes login = default(LoginScopes))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public Facebook(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), bool? enabled = default(bool?), AppRegistration registration = default(AppRegistration), string graphApiVersion = default(string), LoginScopes login = default(LoginScopes))
+ : base(id, name, kind, type, systemData)
{
Enabled = enabled;
Registration = registration;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/FileSystemTokenStore.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/FileSystemTokenStore.cs
index d56ea63988fe..49571dcabdf8 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/FileSystemTokenStore.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/FileSystemTokenStore.cs
@@ -33,8 +33,10 @@ public FileSystemTokenStore()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public FileSystemTokenStore(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string directory = default(string))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public FileSystemTokenStore(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string directory = default(string))
+ : base(id, name, kind, type, systemData)
{
Directory = directory;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ForwardProxy.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ForwardProxy.cs
index 239718fe2b4e..6a0d706058c9 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ForwardProxy.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/ForwardProxy.cs
@@ -33,10 +33,12 @@ public ForwardProxy()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Possible values include: 'NoProxy',
/// 'Standard', 'Custom'
- public ForwardProxy(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), ForwardProxyConvention? convention = default(ForwardProxyConvention?), string customHostHeaderName = default(string), string customProtoHeaderName = default(string))
- : base(id, name, kind, type)
+ public ForwardProxy(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), ForwardProxyConvention? convention = default(ForwardProxyConvention?), string customHostHeaderName = default(string), string customProtoHeaderName = default(string))
+ : base(id, name, kind, type, systemData)
{
Convention = convention;
CustomHostHeaderName = customHostHeaderName;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/FunctionEnvelope.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/FunctionEnvelope.cs
index 0e0627a92be9..f9d44be0ac07 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/FunctionEnvelope.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/FunctionEnvelope.cs
@@ -38,6 +38,8 @@ public FunctionEnvelope()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Function App ID.
/// Script root path URI.
/// Script URI.
@@ -53,8 +55,8 @@ public FunctionEnvelope()
/// The function language
/// Gets or sets a value indicating whether
/// the function is disabled
- public FunctionEnvelope(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string functionAppId = default(string), string scriptRootPathHref = default(string), string scriptHref = default(string), string configHref = default(string), string testDataHref = default(string), string secretsFileHref = default(string), string href = default(string), object config = default(object), IDictionary files = default(IDictionary), string testData = default(string), string invokeUrlTemplate = default(string), string language = default(string), bool? isDisabled = default(bool?))
- : base(id, name, kind, type)
+ public FunctionEnvelope(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string functionAppId = default(string), string scriptRootPathHref = default(string), string scriptHref = default(string), string configHref = default(string), string testDataHref = default(string), string secretsFileHref = default(string), string href = default(string), object config = default(object), IDictionary files = default(IDictionary), string testData = default(string), string invokeUrlTemplate = default(string), string language = default(string), bool? isDisabled = default(bool?))
+ : base(id, name, kind, type, systemData)
{
FunctionAppId = functionAppId;
ScriptRootPathHref = scriptRootPathHref;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/GeoRegion.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/GeoRegion.cs
index e39413ff64dd..242148f99d15 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/GeoRegion.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/GeoRegion.cs
@@ -36,11 +36,13 @@ public GeoRegion()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Region description.
/// Display name for region.
/// Display name for region.
- public GeoRegion(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string description = default(string), string displayName = default(string), string orgDomain = default(string))
- : base(id, name, kind, type)
+ public GeoRegion(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string description = default(string), string displayName = default(string), string orgDomain = default(string))
+ : base(id, name, kind, type, systemData)
{
Description = description;
DisplayName = displayName;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/GitHub.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/GitHub.cs
index 8555c23b8f92..4638590e7a51 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/GitHub.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/GitHub.cs
@@ -33,8 +33,10 @@ public GitHub()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public GitHub(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), bool? enabled = default(bool?), ClientRegistration registration = default(ClientRegistration), LoginScopes login = default(LoginScopes))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public GitHub(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), bool? enabled = default(bool?), ClientRegistration registration = default(ClientRegistration), LoginScopes login = default(LoginScopes))
+ : base(id, name, kind, type, systemData)
{
Enabled = enabled;
Registration = registration;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/GlobalValidation.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/GlobalValidation.cs
index 6e668cba711c..ccc599a9d9f8 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/GlobalValidation.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/GlobalValidation.cs
@@ -35,11 +35,13 @@ public GlobalValidation()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Possible values include:
/// 'RedirectToLoginPage', 'AllowAnonymous', 'Return401',
/// 'Return403'
- public GlobalValidation(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), bool? requireAuthentication = default(bool?), UnauthenticatedClientActionV2? unauthenticatedClientAction = default(UnauthenticatedClientActionV2?), string redirectToProvider = default(string), IList excludedPaths = default(IList))
- : base(id, name, kind, type)
+ public GlobalValidation(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), bool? requireAuthentication = default(bool?), UnauthenticatedClientActionV2? unauthenticatedClientAction = default(UnauthenticatedClientActionV2?), string redirectToProvider = default(string), IList excludedPaths = default(IList))
+ : base(id, name, kind, type, systemData)
{
RequireAuthentication = requireAuthentication;
UnauthenticatedClientAction = unauthenticatedClientAction;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Google.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Google.cs
index 26af1e210ab7..665b222f6cda 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Google.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Google.cs
@@ -33,8 +33,10 @@ public Google()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public Google(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), bool? enabled = default(bool?), ClientRegistration registration = default(ClientRegistration), LoginScopes login = default(LoginScopes), AllowedAudiencesValidation validation = default(AllowedAudiencesValidation))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public Google(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), bool? enabled = default(bool?), ClientRegistration registration = default(ClientRegistration), LoginScopes login = default(LoginScopes), AllowedAudiencesValidation validation = default(AllowedAudiencesValidation))
+ : base(id, name, kind, type, systemData)
{
Enabled = enabled;
Registration = registration;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HostNameBinding.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HostNameBinding.cs
index fd1f70bf2206..b5466e6bae59 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HostNameBinding.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HostNameBinding.cs
@@ -36,6 +36,8 @@ public HostNameBinding()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// App Service app name.
/// Fully qualified ARM domain resource
/// URI.
@@ -51,8 +53,8 @@ public HostNameBinding()
/// SSL certificate thumbprint
/// Virtual IP address assigned to the hostname
/// if IP based SSL is enabled.
- public HostNameBinding(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string siteName = default(string), string domainId = default(string), string azureResourceName = default(string), AzureResourceType? azureResourceType = default(AzureResourceType?), CustomHostNameDnsRecordType? customHostNameDnsRecordType = default(CustomHostNameDnsRecordType?), HostNameType? hostNameType = default(HostNameType?), SslState? sslState = default(SslState?), string thumbprint = default(string), string virtualIP = default(string))
- : base(id, name, kind, type)
+ public HostNameBinding(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string siteName = default(string), string domainId = default(string), string azureResourceName = default(string), AzureResourceType? azureResourceType = default(AzureResourceType?), CustomHostNameDnsRecordType? customHostNameDnsRecordType = default(CustomHostNameDnsRecordType?), HostNameType? hostNameType = default(HostNameType?), SslState? sslState = default(SslState?), string thumbprint = default(string), string virtualIP = default(string))
+ : base(id, name, kind, type, systemData)
{
SiteName = siteName;
DomainId = domainId;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HttpSettings.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HttpSettings.cs
index b5090a80f932..acbb38338fce 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HttpSettings.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HttpSettings.cs
@@ -33,8 +33,10 @@ public HttpSettings()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public HttpSettings(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), bool? requireHttps = default(bool?), HttpSettingsRoutes routes = default(HttpSettingsRoutes), ForwardProxy forwardProxy = default(ForwardProxy))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public HttpSettings(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), bool? requireHttps = default(bool?), HttpSettingsRoutes routes = default(HttpSettingsRoutes), ForwardProxy forwardProxy = default(ForwardProxy))
+ : base(id, name, kind, type, systemData)
{
RequireHttps = requireHttps;
Routes = routes;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HttpSettingsRoutes.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HttpSettingsRoutes.cs
index 1c71deecd7f2..05fa00c8d41d 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HttpSettingsRoutes.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HttpSettingsRoutes.cs
@@ -33,8 +33,10 @@ public HttpSettingsRoutes()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public HttpSettingsRoutes(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string apiPrefix = default(string))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public HttpSettingsRoutes(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string apiPrefix = default(string))
+ : base(id, name, kind, type, systemData)
{
ApiPrefix = apiPrefix;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HybridConnection.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HybridConnection.cs
index e98573aa1d10..ebec778f44ea 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HybridConnection.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HybridConnection.cs
@@ -37,6 +37,8 @@ public HybridConnection()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// The name of the Service Bus
/// namespace.
/// The name of the Service Bus relay.
@@ -53,8 +55,8 @@ public HybridConnection()
/// normally, use the POST /listKeys API instead.
/// The suffix for the service bus
/// endpoint. By default this is .servicebus.windows.net
- public HybridConnection(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string serviceBusNamespace = default(string), string relayName = default(string), string relayArmUri = default(string), string hostname = default(string), int? port = default(int?), string sendKeyName = default(string), string sendKeyValue = default(string), string serviceBusSuffix = default(string))
- : base(id, name, kind, type)
+ public HybridConnection(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string serviceBusNamespace = default(string), string relayName = default(string), string relayArmUri = default(string), string hostname = default(string), int? port = default(int?), string sendKeyName = default(string), string sendKeyValue = default(string), string serviceBusSuffix = default(string))
+ : base(id, name, kind, type, systemData)
{
ServiceBusNamespace = serviceBusNamespace;
RelayName = relayName;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HybridConnectionKey.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HybridConnectionKey.cs
index c2e79154a648..da12b2cdd2e9 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HybridConnectionKey.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HybridConnectionKey.cs
@@ -37,10 +37,12 @@ public HybridConnectionKey()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// The name of the send key.
/// The value of the send key.
- public HybridConnectionKey(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string sendKeyName = default(string), string sendKeyValue = default(string))
- : base(id, name, kind, type)
+ public HybridConnectionKey(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string sendKeyName = default(string), string sendKeyValue = default(string))
+ : base(id, name, kind, type, systemData)
{
SendKeyName = sendKeyName;
SendKeyValue = sendKeyValue;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HybridConnectionLimits.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HybridConnectionLimits.cs
index 9ada5c91749b..ac2b0671871d 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HybridConnectionLimits.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/HybridConnectionLimits.cs
@@ -37,12 +37,14 @@ public HybridConnectionLimits()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// The current number of Hybrid
/// Connections.
/// The maximum number of Hybrid Connections
/// allowed.
- public HybridConnectionLimits(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), int? current = default(int?), int? maximum = default(int?))
- : base(id, name, kind, type)
+ public HybridConnectionLimits(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), int? current = default(int?), int? maximum = default(int?))
+ : base(id, name, kind, type, systemData)
{
Current = current;
Maximum = maximum;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Identifier.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Identifier.cs
index 7571f8806156..a06ff2c3504b 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Identifier.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Identifier.cs
@@ -36,9 +36,11 @@ public Identifier()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// String representation of the identity.
- public Identifier(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string value = default(string))
- : base(id, name, kind, type)
+ public Identifier(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string value = default(string))
+ : base(id, name, kind, type, systemData)
{
Value = value;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/IdentityProviders.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/IdentityProviders.cs
index 25b7f98e559f..9a400f475d64 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/IdentityProviders.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/IdentityProviders.cs
@@ -35,8 +35,10 @@ public IdentityProviders()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public IdentityProviders(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), AzureActiveDirectory azureActiveDirectory = default(AzureActiveDirectory), Facebook facebook = default(Facebook), GitHub gitHub = default(GitHub), Google google = default(Google), Twitter twitter = default(Twitter), IDictionary customOpenIdConnectProviders = default(IDictionary))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public IdentityProviders(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), AzureActiveDirectory azureActiveDirectory = default(AzureActiveDirectory), Facebook facebook = default(Facebook), GitHub gitHub = default(GitHub), Google google = default(Google), Twitter twitter = default(Twitter), IDictionary customOpenIdConnectProviders = default(IDictionary))
+ : base(id, name, kind, type, systemData)
{
AzureActiveDirectory = azureActiveDirectory;
Facebook = facebook;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/JwtClaimChecks.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/JwtClaimChecks.cs
index b6ac7bf567d9..05b34aecb843 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/JwtClaimChecks.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/JwtClaimChecks.cs
@@ -35,8 +35,10 @@ public JwtClaimChecks()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public JwtClaimChecks(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IList allowedGroups = default(IList), IList allowedClientApplications = default(IList))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public JwtClaimChecks(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), IList allowedGroups = default(IList), IList allowedClientApplications = default(IList))
+ : base(id, name, kind, type, systemData)
{
AllowedGroups = allowedGroups;
AllowedClientApplications = allowedClientApplications;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Login.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Login.cs
index d14e1bc90117..241443fe6a96 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Login.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Login.cs
@@ -35,8 +35,10 @@ public Login()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public Login(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), LoginRoutes routes = default(LoginRoutes), TokenStore tokenStore = default(TokenStore), bool? preserveUrlFragmentsForLogins = default(bool?), IList allowedExternalRedirectUrls = default(IList), CookieExpiration cookieExpiration = default(CookieExpiration), Nonce nonce = default(Nonce))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public Login(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), LoginRoutes routes = default(LoginRoutes), TokenStore tokenStore = default(TokenStore), bool? preserveUrlFragmentsForLogins = default(bool?), IList allowedExternalRedirectUrls = default(IList), CookieExpiration cookieExpiration = default(CookieExpiration), Nonce nonce = default(Nonce))
+ : base(id, name, kind, type, systemData)
{
Routes = routes;
TokenStore = tokenStore;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/LoginRoutes.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/LoginRoutes.cs
index 9b31fe5653bb..f723e42ff572 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/LoginRoutes.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/LoginRoutes.cs
@@ -33,8 +33,10 @@ public LoginRoutes()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public LoginRoutes(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string logoutEndpoint = default(string))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public LoginRoutes(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string logoutEndpoint = default(string))
+ : base(id, name, kind, type, systemData)
{
LogoutEndpoint = logoutEndpoint;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/LoginScopes.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/LoginScopes.cs
index ec2430e910eb..213746e849a4 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/LoginScopes.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/LoginScopes.cs
@@ -35,8 +35,10 @@ public LoginScopes()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public LoginScopes(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IList scopes = default(IList))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public LoginScopes(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), IList scopes = default(IList))
+ : base(id, name, kind, type, systemData)
{
Scopes = scopes;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MSDeploy.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MSDeploy.cs
index 2a601fc13092..61b06ffe1022 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MSDeploy.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MSDeploy.cs
@@ -38,6 +38,8 @@ public MSDeploy()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Package URI
/// SQL Connection String
/// Database Type
@@ -55,8 +57,8 @@ public MSDeploy()
/// Sets the AppOffline rule while the
/// MSDeploy operation executes.
/// Setting is <code>false</code> by default.
- public MSDeploy(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string packageUri = default(string), string connectionString = default(string), string dbType = default(string), string setParametersXmlFileUri = default(string), IDictionary setParameters = default(IDictionary), bool? skipAppData = default(bool?), bool? appOffline = default(bool?))
- : base(id, name, kind, type)
+ public MSDeploy(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string packageUri = default(string), string connectionString = default(string), string dbType = default(string), string setParametersXmlFileUri = default(string), IDictionary setParameters = default(IDictionary), bool? skipAppData = default(bool?), bool? appOffline = default(bool?))
+ : base(id, name, kind, type, systemData)
{
PackageUri = packageUri;
ConnectionString = connectionString;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MSDeployLog.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MSDeployLog.cs
index b98032e54b1e..ff19ad65e16d 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MSDeployLog.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MSDeployLog.cs
@@ -38,9 +38,11 @@ public MSDeployLog()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// List of log entry messages
- public MSDeployLog(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), IList entries = default(IList))
- : base(id, name, kind, type)
+ public MSDeployLog(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), IList entries = default(IList))
+ : base(id, name, kind, type, systemData)
{
Entries = entries;
CustomInit();
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MSDeployStatus.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MSDeployStatus.cs
index 32175ea1230d..d87f99c27188 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MSDeployStatus.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MSDeployStatus.cs
@@ -36,6 +36,8 @@ public MSDeployStatus()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Username of deployer
/// Provisioning state. Possible values
/// include: 'accepted', 'running', 'succeeded', 'failed',
@@ -44,8 +46,8 @@ public MSDeployStatus()
/// End time of deploy operation
/// Whether the deployment operation has
/// completed
- public MSDeployStatus(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string deployer = default(string), MSDeployProvisioningState? provisioningState = default(MSDeployProvisioningState?), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), bool? complete = default(bool?))
- : base(id, name, kind, type)
+ public MSDeployStatus(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), string deployer = default(string), MSDeployProvisioningState? provisioningState = default(MSDeployProvisioningState?), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), bool? complete = default(bool?))
+ : base(id, name, kind, type, systemData)
{
Deployer = deployer;
ProvisioningState = provisioningState;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MigrateMySqlRequest.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MigrateMySqlRequest.cs
index db3069fe54b2..340e5db8e772 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MigrateMySqlRequest.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MigrateMySqlRequest.cs
@@ -41,8 +41,10 @@ public MigrateMySqlRequest()
/// Resource Name.
/// Kind of resource.
/// Resource type.
- public MigrateMySqlRequest(string connectionString, MySqlMigrationType migrationType, string id = default(string), string name = default(string), string kind = default(string), string type = default(string))
- : base(id, name, kind, type)
+ /// The system metadata relating to this
+ /// resource.
+ public MigrateMySqlRequest(string connectionString, MySqlMigrationType migrationType, string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData))
+ : base(id, name, kind, type, systemData)
{
ConnectionString = connectionString;
MigrationType = migrationType;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MigrateMySqlStatus.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MigrateMySqlStatus.cs
index 459d50aef84b..b18115658337 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MigrateMySqlStatus.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/MigrateMySqlStatus.cs
@@ -36,6 +36,8 @@ public MigrateMySqlStatus()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// Status of the migration
/// task. Possible values include: 'InProgress', 'Failed', 'Succeeded',
/// 'TimedOut', 'Created'
@@ -43,8 +45,8 @@ public MigrateMySqlStatus()
/// task.
/// True if the web app has in app
/// MySql enabled
- public MigrateMySqlStatus(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), OperationStatus? migrationOperationStatus = default(OperationStatus?), string operationId = default(string), bool? localMySqlEnabled = default(bool?))
- : base(id, name, kind, type)
+ public MigrateMySqlStatus(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), SystemData systemData = default(SystemData), OperationStatus? migrationOperationStatus = default(OperationStatus?), string operationId = default(string), bool? localMySqlEnabled = default(bool?))
+ : base(id, name, kind, type, systemData)
{
MigrationOperationStatus = migrationOperationStatus;
OperationId = operationId;
diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/NetworkFeatures.cs b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/NetworkFeatures.cs
index af9cf1928dac..0e57d242d84c 100644
--- a/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/NetworkFeatures.cs
+++ b/sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/NetworkFeatures.cs
@@ -39,6 +39,8 @@ public NetworkFeatures()
/// Resource Name.
/// Kind of resource.
/// Resource type.
+ /// The system metadata relating to this
+ /// resource.
/// The Virtual Network name.
/// The Virtual Network summary
/// view.
@@ -46,8 +48,8 @@ public NetworkFeatures()
/// view.
/// The Hybrid Connection V2 (Service
/// Bus) view.
- public NetworkFeatures(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string virtualNetworkName = default(string), VnetInfo virtualNetworkConnection = default(VnetInfo), IList hybridConnections = default(IList), IList