Content resources API - GET configuration
Gets the configuration of content providers in your Dynatrace environment.
The request produces an application/json
payload.
GET |
|
Authentication
To execute this request, you need the Read configuration (ReadConfig
) permission assigned to your API token. To learn how to obtain and use it, see Tokens and authentication.
Parameters
The request doesn't provide any configurable parameters.
Response
Response codes
Code | Description |
---|---|
200 | Success |
Response body
The ContentResources object
The configuration of content resources.
Element | Type | Description |
---|---|---|
resourceProviders | ResourceProvider[] | An ordered list of manually added content providers. Rules are evaluated from top to bottom; the first matching rules applies. |
resourceUrlCleanupRules | ResourceUrlCleanupRule[] | An ordered list of resource URL cleanup rules. Rules are evaluated from top to bottom; the first matching rules applies. |
resourceTypes | ResourceType[] | An ordered list of manually defined resource types. Rules are evaluated from top to bottom; the first matching rules applies. |
The ResourceType object
A rule for the resource type.
Element | Type | Description |
---|---|---|
regularExpression | string | The regular expression to detect the resource. |
primaryResourceType | string | The primary type of the resource. |
secondaryResourceType | string | The secondary type of the resource. |
The ResourceUrlCleanupRule object
A rule for the URL cleanup rule.
Element | Type | Description |
---|---|---|
resourceName | string | The name of the rule. |
regularExpression | string | The pattern (regular expression) to look for. |
replaceWith | string | The text to replace the found pattern with. |
The ResourceProvider object
A rule for the content provider.
Element | Type | Description |
---|---|---|
resourceName | string | The name of the provider. |
resourceType | string | The type of the provider. |
brandIconUrl | string | The URL of the provider's icon. |
domainNamePatterns | string[] | A list of domain patterns of the provider. |
{
"resourceProviders": [
{
"resourceName": "string",
"resourceType": "CDN_RESOURCES",
"brandIconUrl": "string",
"domainNamePatterns": [
"string"
]
}
],
"resourceUrlCleanupRules": [
{
"resourceName": "string",
"regularExpression": "string",
"replaceWith": "string"
}
],
"resourceTypes": [
{
"regularExpression": "string",
"primaryResourceType": "CSS",
"secondaryResourceType": "string"
}
]
}