Skip to content

Commit

Permalink
.NET SDK Resource Provider:'WebSites' (Azure#5674)
Browse files Browse the repository at this point in the history
REST Spec PR 'Azure/azure-rest-api-specs#5542'
REST Spec PR Author 'Hamster-Huey'
REST Spec PR Last commit
  • Loading branch information
adxsdknet authored and dsgouda committed Apr 4, 2019
1 parent b81f596 commit 8627629
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public SitePatchResource()
/// this site has a pending operation.</param>
/// <param name="geoDistributions">GeoDistributions for this
/// site</param>
public SitePatchResource(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string state = default(string), IList<string> hostNames = default(IList<string>), string repositorySiteName = default(string), UsageState? usageState = default(UsageState?), bool? enabled = default(bool?), IList<string> enabledHostNames = default(IList<string>), SiteAvailabilityState? availabilityState = default(SiteAvailabilityState?), IList<HostNameSslState> hostNameSslStates = default(IList<HostNameSslState>), string serverFarmId = default(string), bool? reserved = default(bool?), bool? isXenon = default(bool?), bool? hyperV = default(bool?), System.DateTime? lastModifiedTimeUtc = default(System.DateTime?), SiteConfig siteConfig = default(SiteConfig), IList<string> trafficManagerHostNames = default(IList<string>), bool? scmSiteAlsoStopped = default(bool?), string targetSwapSlot = default(string), HostingEnvironmentProfile hostingEnvironmentProfile = default(HostingEnvironmentProfile), bool? clientAffinityEnabled = default(bool?), bool? clientCertEnabled = default(bool?), string clientCertExclusionPaths = default(string), bool? hostNamesDisabled = default(bool?), string outboundIpAddresses = default(string), string possibleOutboundIpAddresses = default(string), int? containerSize = default(int?), int? dailyMemoryTimeQuota = default(int?), System.DateTime? suspendedTill = default(System.DateTime?), int? maxNumberOfWorkers = default(int?), CloningInfo cloningInfo = default(CloningInfo), string resourceGroup = default(string), bool? isDefaultContainer = default(bool?), string defaultHostName = default(string), SlotSwapStatus slotSwapStatus = default(SlotSwapStatus), bool? httpsOnly = default(bool?), RedundancyMode? redundancyMode = default(RedundancyMode?), System.Guid? inProgressOperationId = default(System.Guid?), IList<GeoDistribution> geoDistributions = default(IList<GeoDistribution>))
public SitePatchResource(string id = default(string), string name = default(string), string kind = default(string), string type = default(string), string state = default(string), IList<string> hostNames = default(IList<string>), string repositorySiteName = default(string), UsageState? usageState = default(UsageState?), bool? enabled = default(bool?), IList<string> enabledHostNames = default(IList<string>), SiteAvailabilityState? availabilityState = default(SiteAvailabilityState?), IList<HostNameSslState> hostNameSslStates = default(IList<HostNameSslState>), string serverFarmId = default(string), bool? reserved = default(bool?), bool? isXenon = default(bool?), bool? hyperV = default(bool?), System.DateTime? lastModifiedTimeUtc = default(System.DateTime?), SiteConfig siteConfig = default(SiteConfig), IList<string> trafficManagerHostNames = default(IList<string>), bool? scmSiteAlsoStopped = default(bool?), string targetSwapSlot = default(string), HostingEnvironmentProfile hostingEnvironmentProfile = default(HostingEnvironmentProfile), bool? clientAffinityEnabled = default(bool?), bool? clientCertEnabled = default(bool?), string clientCertExclusionPaths = default(string), bool? hostNamesDisabled = default(bool?), string outboundIpAddresses = default(string), string possibleOutboundIpAddresses = default(string), int? containerSize = default(int?), int? dailyMemoryTimeQuota = default(int?), System.DateTime? suspendedTill = default(System.DateTime?), int? maxNumberOfWorkers = default(int?), CloningInfo cloningInfo = default(CloningInfo), string resourceGroup = default(string), bool? isDefaultContainer = default(bool?), string defaultHostName = default(string), SlotSwapStatus slotSwapStatus = default(SlotSwapStatus), bool? httpsOnly = default(bool?), RedundancyMode? redundancyMode = default(RedundancyMode?), System.Guid? inProgressOperationId = default(System.Guid?), IList<GeoDistribution> geoDistributions = default(IList<GeoDistribution>), ManagedServiceIdentity identity = default(ManagedServiceIdentity))
: base(id, name, kind, type)
{
State = state;
Expand Down Expand Up @@ -168,6 +168,7 @@ public SitePatchResource(string id = default(string), string name = default(stri
RedundancyMode = redundancyMode;
InProgressOperationId = inProgressOperationId;
GeoDistributions = geoDistributions;
Identity = identity;
CustomInit();
}

Expand Down Expand Up @@ -443,6 +444,11 @@ public SitePatchResource(string id = default(string), string name = default(stri
[JsonProperty(PropertyName = "properties.geoDistributions")]
public IList<GeoDistribution> GeoDistributions { get; set; }

/// <summary>
/// </summary>
[JsonProperty(PropertyName = "identity")]
public ManagedServiceIdentity Identity { get; set; }

/// <summary>
/// Validate the object.
/// </summary>
Expand Down

0 comments on commit 8627629

Please sign in to comment.