Skip to content
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

Add type field to child resources. Fix routefilter reference. Add ipv6peering property #5975

Merged
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 @@ -15,7 +15,8 @@
"provisioningState": "Succeeded",
"authorizationKey": "authKey",
"authorizationUseStatus": "Available"
}
},
"type": "Microsoft.Network/expressRouteCircuits/authorizations"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"addressPrefix": "10.0.0.0/24",
"circuitConnectionStatus": "Connected",
"provisioningState":"Succeeded"
}
},
"type": "Microsoft.Network/expressRouteCircuits/peerings/connections"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,12 @@
"legacyMode": 0,
"routingRegistryName": "ARIN"
}
},
"routeFilter": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/routeFilters/filterName"
}
}
},
"type": "Microsoft.Network/expressRouteCircuits/peerings"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1441,6 +1441,11 @@
"readOnly": true,
"type": "string",
"description": "A unique read-only string that changes whenever the resource is updated."
},
"type": {
"readOnly": true,
"type": "string",
"description": "Type of the resource."
}
},
"allOf": [
Expand Down Expand Up @@ -1571,6 +1576,15 @@
},
"description": "Contains stats associated with the peering."
},
"RouteFilterReference": {
"properties": {
"id": {
"type":"string",
"description": "Corresponding route filter Id."
}
},
"description": "Reference to a route filter."
},
"ExpressRouteCircuitPeeringPropertiesFormat": {
"properties": {
"peeringType": {
Expand Down Expand Up @@ -1639,7 +1653,7 @@
"description": "Gets whether the provider or the customer last modified the peering."
},
"routeFilter": {
"$ref": "./routeFilter.json#/definitions/RouteFilter",
"$ref": "#/definitions/RouteFilterReference",
"description": "The reference of the RouteFilter resource."
},
"ipv6PeeringConfig": {
Expand Down Expand Up @@ -1683,6 +1697,11 @@
"readOnly": true,
"type": "string",
"description": "A unique read-only string that changes whenever the resource is updated."
},
"type": {
"readOnly": true,
"type": "string",
"description": "Type of the resource."
}
},
"allOf": [
Expand Down Expand Up @@ -1778,6 +1797,11 @@
"readOnly": true,
"type": "string",
"description": "A unique read-only string that changes whenever the resource is updated."
},
"type": {
"readOnly": true,
"type": "string",
"description": "Type of the resource."
}
},
"allOf": [
Expand Down Expand Up @@ -1852,6 +1876,11 @@
"readOnly": true,
"type": "string",
"description": "A unique read-only string that changes whenever the resource is updated."
},
"type": {
"readOnly": true,
"type": "string",
"description": "Type of the resource."
}
},
"allOf": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -687,6 +687,13 @@
},
"description": "A collection of references to express route circuit peerings."
},
"ipv6Peerings": {
"type": "array",
"items": {
"$ref": "./expressRouteCircuit.json#/definitions/ExpressRouteCircuitPeering"
},
"description": "A collection of references to express route circuit ipv6 peerings."
},
"provisioningState": {
"type": "string",
"readOnly": true,
Expand Down