-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resource Navigation Link and Service Association Link merge issues (#…
…6074) * Added missed features * Fix validation issues * Mark nextLink as read only
- Loading branch information
Showing
3 changed files
with
210 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
...icrosoft.Network/stable/2019-04-01/examples/VirtualNetworkGetResourceNavigationLinks.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2019-04-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg1", | ||
"virtualNetworkName": "vnet", | ||
"subnetName": "subnet" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "redisCache_redis-tester", | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet/resourceNavigationLinks/redisCache_redis-tester", | ||
"etag": "W/\"00000000-0000-0000-0000-000000000000\"", | ||
"type": "Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"linkedResourceType": "Microsoft.Cache/redis", | ||
"link": "/subscriptions/subid/resourceGroups/another-rg/providers/Microsoft.Cache/Redis/redis-tester" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
...icrosoft.Network/stable/2019-04-01/examples/VirtualNetworkGetServiceAssociationLinks.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2019-04-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg1", | ||
"virtualNetworkName": "vnet", | ||
"subnetName": "subnet" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "acisal", | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet/serviceAssociationLinks/acisal", | ||
"etag": "W/\"00000000-0000-0000-0000-000000000000\"", | ||
"type": "Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"linkedResourceType": "Microsoft.ContainerInstance/containerGroups", | ||
"allowDelete": true, | ||
"locations": [ | ||
"westus" | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters