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
  • string

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
  • string

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
  • string

The name of the bgp community. e.g. Skype.

communityPrefixes
  • string[]

The prefixes that the bgp community contains.

communityValue
  • string

The value of the bgp community. For more information: https://docs.microsoft.com/en-us/azure/expressroute/expressroute-routing.

isAuthorizedToUse
  • boolean

Customer is authorized to use bgp community or not.

serviceGroup
  • string

The service group of the bgp community contains.

serviceSupportedRegion
  • string

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
  • string

Resource ID.

location
  • string

Resource location.

name
  • string

Resource name.

serviceName
  • string

The name of the bgp community. e.g. Skype.

tags
  • <string, string>

Resource tags.

type
  • string

Resource type.

Name Type Description
nextLink
  • string

The URL to get the next set of results.

value

A list of service community resources.