Bgp Service Communities
Gets all the available bgp service communities.
GET https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Network/bgpServiceCommunities?api-version={api-version}
URI Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
|
subscriptionId
|
path | True |
|
The subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
|
api-version
|
query | True |
|
Client API version. |
Responses
| Name | Type | Description |
|---|---|---|
| 200 OK |
Request successful. The operation returns a list of BgpServiceCommunity resources. |
Examples
ServiceCommunityList
Sample Request
GET https://management.azure.com/subscriptions/subid/providers/Microsoft.Network/bgpServiceCommunities?api-version=2017-09-01
Sample Response
{
"value": [
{
"id": "/subscriptions/subid/providers/Microsofot.Network/bgpServiceCommunities/skype",
"name": "skype",
"type": "Microsofot.Network/bgpServiceCommunities",
"properties": {
"serviceName": "skype",
"bgpCommunities": [
{
"serviceSupportedRegion": "Global",
"communityName": "Skype For Business Online",
"communityValue": "12076:5030",
"communityPrefixes": [
"13.67.56.225/32",
"13.67.186.105/32"
],
"isAuthorizedToUse": true,
"serviceGroup": "O365"
}
]
}
},
{
"id": "/subscriptions/subid/providers/Microsofot.Network/bgpServiceCommunities/exchange",
"name": "exchange",
"type": "Microsofot.Network/bgpServiceCommunities",
"properties": {
"serviceName": "exchange",
"bgpCommunities": [
{
"serviceSupportedRegion": "Global",
"communityName": "Exchange Online",
"communityValue": "12076:5040",
"communityPrefixes": [
"13.67.56.225/32",
"13.67.186.105/32"
],
"isAuthorizedToUse": true,
"serviceGroup": "O365"
}
]
}
}
]
}
Definitions
| BGPCommunity |
Contains bgp community information offered in Service Community resources. |
| BgpServiceCommunity |
Service Community Properties. |
| BgpServiceCommunityListResult |
Contains bgp community information offered in Service Community resources.
| Name | Type | Description |
|---|---|---|
| communityName |
|
The name of the bgp community. e.g. Skype. |
| communityPrefixes |
|
The prefixes that the bgp community contains. |
| communityValue |
|
The value of the bgp community. For more information: https://docs.microsoft.com/en-us/azure/expressroute/expressroute-routing. |
| isAuthorizedToUse |
|
Customer is authorized to use bgp community or not. |
| serviceGroup |
|
The service group of the bgp community contains. |
| serviceSupportedRegion |
|
The region which the service support. e.g. For O365, region is Global. |
Service Community Properties.
| Name | Type | Description |
|---|---|---|
| bgpCommunities |
Get a list of bgp communities. |
|
| id |
|
Resource ID. |
| location |
|
Resource location. |
| name |
|
Resource name. |
| serviceName |
|
The name of the bgp community. e.g. Skype. |
| tags |
|
Resource tags. |
| type |
|
Resource type. |
| Name | Type | Description |
|---|---|---|
| nextLink |
|
The URL to get the next set of results. |
| value |
A list of service community resources. |