-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Service Association Link and IP Configuration Profiles on Subnet (#…
…3840) * add service association links for virtual network * add ipconfig profiles on subnet * fixed example issue * Review for tabfix and properties fromat rename
- Loading branch information
1 parent
e9e8c83
commit c60ac4a
Showing
2 changed files
with
129 additions
and
2 deletions.
There are no files selected for viewing
69 changes: 69 additions & 0 deletions
69
...osoft.Network/stable/2018-08-01/examples/VirtualNetworkGetWithServiceAssociationLink.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,69 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2018-08-01", | ||
"subscriptionId": "subId", | ||
"resourceGroupName": "rg1", | ||
"virtualNetworkName": "test-vnet" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "test-vnet", | ||
"id": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/test-vnet", | ||
"type": "Microsoft.Network/virtualNetworks", | ||
"location": "westus", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"addressSpace": { | ||
"addressPrefixes": [ | ||
"10.0.0.0/16" | ||
] | ||
}, | ||
"subnets": [ | ||
{ | ||
"name": "subnet1", | ||
"id": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/subnet1", | ||
"etag": "W/\"4d3e91b4-f67f-48be-880b-e4a8abdd019e\"", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"addressPrefix": "10.0.214.0/24", | ||
"ipConfigurationProfiles": [ | ||
{ | ||
"id": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkProfiles/networkProfile1/containerNetworkInterfaceConfigurations/eth0/ipConfigurations/ipconfigprofile1" | ||
} | ||
], | ||
"serviceAssociationLinks": [ | ||
{ | ||
"name": "serviceAssociationLink1", | ||
"id": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/subnet1/serviceAssociationLinks/serviceAssociationLink1", | ||
"etag": "W/\"4d3e91b4-f67f-48be-880b-e4a8abdd019e\"", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"linkedResourceType": "Microsoft.Provider/resourceType" | ||
} | ||
} | ||
], | ||
"serviceEndpoints": [], | ||
"delegations": [ | ||
{ | ||
"name": "aciDelegation", | ||
"id": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/subnet1/delegations/aciDelegation", | ||
"etag": "W/\"4d3e91b4-f67f-48be-880b-e4a8abdd019e\"", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"serviceName": "Microsoft.Provider/resourceType", | ||
"actions": [ | ||
"Microsoft.Network/virtualNetworks/subnets/action" | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"virtualNetworkPeerings": [] | ||
} | ||
} | ||
} | ||
} | ||
} |
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