urlMatchInfo resource type

Namespace: microsoft.graph.externalConnectors

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Collects the settings for the pattern that a URL must follow to be processed by an instance of urlToItemResolverBase.

Properties

Property Type Description
baseUrls String collection A list of the URL prefixes that must match URLs to be processed by this URL-to-item-resolver.
urlPattern String A regular expression that will be matched towards the URL that is processed by this URL-to-item-resolver. The ECMAScript specification for regular expressions (ECMA-262) is used for the evaluation. The named groups defined by the regular expression will be used later to extract values from the URL.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.externalConnectors.urlMatchInfo",
  "baseUrls": [
    "String"
  ],
  "urlPattern": "String"
}