Skip to content

Updating the swagger changes with latest API spec merge #27761

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public GatewayResiliencyInformation()

/// <param name="components">List of Resiliency based Recommendation Components for the gateway
/// </param>
public GatewayResiliencyInformation(string overallScore = default(string), string scoreChange = default(string), string minScoreFromRecommendations = default(string), string maxScoreFromRecommendations = default(string), string lastComputedTime = default(string), string nextEligibleComputeTime = default(string), System.Collections.Generic.IList<ResiliencyRecommendationComponents> components = default(System.Collections.Generic.IList<ResiliencyRecommendationComponents>))
public GatewayResiliencyInformation(string overallScore = default(string), string scoreChange = default(string), string minScoreFromRecommendations = default(string), string maxScoreFromRecommendations = default(string), System.DateTime? lastComputedTime = default(System.DateTime?), System.DateTime? nextEligibleComputeTime = default(System.DateTime?), System.Collections.Generic.IList<ResiliencyRecommendationComponents> components = default(System.Collections.Generic.IList<ResiliencyRecommendationComponents>))

{
this.OverallScore = overallScore;
Expand Down Expand Up @@ -99,14 +99,14 @@ public GatewayResiliencyInformation()
/// computed for the gateway
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "lastComputedTime")]
public string LastComputedTime {get; set; }
public System.DateTime? LastComputedTime {get; set; }

/// <summary>
/// Gets or sets timestamp denoting the next eligible time to re-compute the
/// resiliency score for the gateway
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "nextEligibleComputeTime")]
public string NextEligibleComputeTime {get; set; }
public System.DateTime? NextEligibleComputeTime {get; set; }

/// <summary>
/// Gets or sets list of Resiliency based Recommendation Components for the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public GatewayRouteSetsInformation()

/// <param name="circuitsMetadataMap">Dictionary containing map of the circuit id and circuit details
/// </param>
public GatewayRouteSetsInformation(string lastComputedTime = default(string), string nextEligibleComputeTime = default(string), string routeSetVersion = default(string), System.Collections.Generic.IList<GatewayRouteSet> routeSets = default(System.Collections.Generic.IList<GatewayRouteSet>), System.Collections.Generic.IDictionary<string, CircuitMetadataMap> circuitsMetadataMap = default(System.Collections.Generic.IDictionary<string, CircuitMetadataMap>))
public GatewayRouteSetsInformation(System.DateTime? lastComputedTime = default(System.DateTime?), System.DateTime? nextEligibleComputeTime = default(System.DateTime?), string routeSetVersion = default(string), System.Collections.Generic.IList<GatewayRouteSet> routeSets = default(System.Collections.Generic.IList<GatewayRouteSet>), System.Collections.Generic.IDictionary<string, CircuitMetadataMap> circuitsMetadataMap = default(System.Collections.Generic.IDictionary<string, CircuitMetadataMap>))

{
this.LastComputedTime = lastComputedTime;
Expand All @@ -62,14 +62,14 @@ public GatewayRouteSetsInformation()
/// computed for the gateway
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "lastComputedTime")]
public string LastComputedTime {get; set; }
public System.DateTime? LastComputedTime {get; set; }

/// <summary>
/// Gets or sets timestamp denoting the next eligible time to re-compute the
/// route sets for the gateway
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "nextEligibleComputeTime")]
public string NextEligibleComputeTime {get; set; }
public System.DateTime? NextEligibleComputeTime {get; set; }

/// <summary>
/// Gets or sets version for the route set
Expand Down
2 changes: 1 addition & 1 deletion src/Network/Network.Management.Sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use-extension:

###
``` yaml
commit: f026fcefb66a636d5156b7610e92b80880ab2cea
commit: e09cd33f2f497a30aff4d6ca706e4fd01cbb384d
input-file:
- https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/network/resource-manager/Microsoft.Network/stable/2024-07-01/applicationGateway.json
- https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/network/resource-manager/Microsoft.Network/stable/2024-07-01/applicationGatewayWafDynamicManifests.json
Expand Down