Skip to content

Commit 636ade9

Browse files
authored
RMS - Adding changes to fix the correctness validation issues. (#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
1 parent 2d75ec5 commit 636ade9

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

specification/resourcemover/resource-manager/Microsoft.Migrate/preview/2019-10-01-preview/resourcemovercollection.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1813,6 +1813,9 @@
18131813
"addressPrefix": {
18141814
"description": "Gets or sets address prefix for the subnet.",
18151815
"type": "string"
1816+
},
1817+
"networkSecurityGroup": {
1818+
"$ref": "#/definitions/NsgReference"
18161819
}
18171820
}
18181821
},
@@ -1936,6 +1939,26 @@
19361939
],
19371940
"properties": {}
19381941
},
1942+
"NsgReference": {
1943+
"description": "Defines reference to NSG.",
1944+
"type": "object",
1945+
"allOf": [
1946+
{
1947+
"$ref": "#/definitions/AzureResourceReference"
1948+
}
1949+
],
1950+
"properties": {}
1951+
},
1952+
"PublicIpReference": {
1953+
"description": "Defines reference to a public IP.",
1954+
"type": "object",
1955+
"allOf": [
1956+
{
1957+
"$ref": "#/definitions/AzureResourceReference"
1958+
}
1959+
],
1960+
"properties": {}
1961+
},
19391962
"NicIpConfigurationResourceSettings": {
19401963
"description": "Defines NIC IP configuration properties.",
19411964
"type": "object",
@@ -1965,6 +1988,16 @@
19651988
"items": {
19661989
"$ref": "#/definitions/LoadBalancerBackendAddressPoolReference"
19671990
}
1991+
},
1992+
"loadBalancerNatRules": {
1993+
"description": "Gets or sets the references of the load balancer NAT rules.",
1994+
"type": "array",
1995+
"items": {
1996+
"$ref": "#/definitions/LoadBalancerNatRuleReference"
1997+
}
1998+
},
1999+
"publicIp": {
2000+
"$ref": "#/definitions/PublicIpReference"
19682001
}
19692002
}
19702003
},

0 commit comments

Comments
 (0)