Skip to content

Commit

Permalink
RMS - Adding changes to fix the correctness validation issues. (Azure…
Browse files Browse the repository at this point in the history
…#12189)

* Adding changes to fix the correctness validation issues. Missing properties - prov state, nat rules. Case correction - fqdn.

* Removing prov state.

* Adding other missing properties. NSG in SubnetSettings and Public IP in NIC IP settings.

* Removing property case change
  • Loading branch information
punit-bhatt authored and mkarmark committed Jul 20, 2021
1 parent 900f9a9 commit f5d26e0
Showing 1 changed file with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1813,6 +1813,9 @@
"addressPrefix": {
"description": "Gets or sets address prefix for the subnet.",
"type": "string"
},
"networkSecurityGroup": {
"$ref": "#/definitions/NsgReference"
}
}
},
Expand Down Expand Up @@ -1936,6 +1939,26 @@
],
"properties": {}
},
"NsgReference": {
"description": "Defines reference to NSG.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AzureResourceReference"
}
],
"properties": {}
},
"PublicIpReference": {
"description": "Defines reference to a public IP.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AzureResourceReference"
}
],
"properties": {}
},
"NicIpConfigurationResourceSettings": {
"description": "Defines NIC IP configuration properties.",
"type": "object",
Expand Down Expand Up @@ -1965,6 +1988,16 @@
"items": {
"$ref": "#/definitions/LoadBalancerBackendAddressPoolReference"
}
},
"loadBalancerNatRules": {
"description": "Gets or sets the references of the load balancer NAT rules.",
"type": "array",
"items": {
"$ref": "#/definitions/LoadBalancerNatRuleReference"
}
},
"publicIp": {
"$ref": "#/definitions/PublicIpReference"
}
}
},
Expand Down

0 comments on commit f5d26e0

Please sign in to comment.