diff --git a/openapi.json b/openapi.json index d2f4d01..f63b7fd 100644 --- a/openapi.json +++ b/openapi.json @@ -8,7 +8,7 @@ }, "termsOfService": "https://www.instana.com/terms-of-use/", "title": "Introduction to Instana public APIs", - "version": "1.273.888", + "version": "1.274.928", "x-logo": { "altText": "instana logo", "backgroundColor": "#FAFBFC", @@ -171,11 +171,11 @@ }, { "name": "Synthetic Settings", - "description": "The API endpoints of this group can be used to manage Synthetic Locations, Synthetic Tests and Synthetic Credentials. \n\n## Synthetic Location Properties:\n- **id** Unique identifier of the location resource.\n- **label** Friendly name of the location.\n- **description** The description of the location.\n- **locationType** Indicates if the location is managed or private.\n- **playbackCapability** The playback capabilities provided by this location resource.\n The playbackCapability object has the following properties: \n - **syntheticType** Different types of synthetic tests that can be executed at this location. \n Possible values are HTTPAction, HTTPScript, BrowserScript (Beta), WebpageAction (Beta), and WebpageScript (Beta). \n The values are corresponding to the syntheticType parameter available in the createSyntheticTest endpoint.\n - **browserType** Different types of supported Web browsers when creating synthetic tests for BrowserScript, WebpageAction and WebpageScript.\n Right now, only Chrome and Firefox are supported. \n- **geoPoint** An object includes the longitude, latitude, country name, and city name properties of a location. \n- **popVersion** PoP's version\n- **customProperties** An object with name/value pairs to provide additional information of the Synthetic location.\n- **createdAt** The location created time, following RFC3339 standard.\n- **modifiedAt** The location modified time, following RFC3339 standard.\n- **observedAt** The timestamp when PoP requests a Synthetic test, following RFC3339 standard.\n\n## Synthetic Test Properties:\n- **id** Unique identifier of the Synthetic test resource.\n- **label** Friendly name of the Synthetic test resource.\n- **description** The description of the Synthetic test.\n- **active** Indicates if the Synthetic test is started or not. The default is true.\n- **applicationId** Unique identifier of the Application Perspective.\n- **configuration** An object which has two properties: syntheticType and the corresponding configuration object:\n - **syntheticType** The type of the Synthetic test. Supported values are HTTPAction, HTTScript, BrowserScript (Beta), WebpageAction (Beta),\n and WebpageScript (Beta). The locations assigned to execute this Synthetic\n test must support this syntheticType, i.e. the location's playbackCapabilities property.\n - **markSyntheticCall** Flag used to control if HTTP calls will be marked as synthetic calls/endpoints in Instana backend, so they can be ignored when calculating service and application KPIs, users can also check \"Hide Synthetic Calls\" checkbox to hide/show them in UI.\n - **retries** An integer type from 0 to 2, 0 by default.\n It indicates how many attempts (max 2) will be allowed\n to get a successful connection (not necessarily a successful result).\n For API Simple, failures like socket hangups, gateway timeouts, and DNS lookup fails cause retires, but 404's 400's, do not.\n API Script and Browser Script test will retry if script failed for any reason.\n - **retryInterval** The time interval between retries in seconds. The default is 1s, max is 10s.\n - **timeout** The timeout to be used by the PoP playback engines running the test. Values are in integers followed by a time unit (ms, s, m). \n It is the minimum value of test configuration `timeout`, `testFrequency` and `maxTimeout` configured in PoP deployment.\n - If user defined timeout value exceeds the `maxTimeout` or `testFrequency` in test configuration, the timeout value does not take effect \n and PoP playback engines use the smaller one of `maxTimeout` and `testFrequency` as the actual timeout value.\n - If timeout value in test configuration is not provided, the default value is **1m** for HTTPAction and HTTPScript tests. \n BrowserScript, WebpageAction, and WebpageScript tests use the smaller one of `maxTimeout` and `testFrequency` as the actual timeout value.\n - **XXXConfiguration** The configuration corresponding to the syntheticType. Configuration types are HTTPActionConfiguration, HTTPScriptConfiguration,\n BrowserScriptConfiguration (Beta), WebpageActionConfiguration (Beta), and WebpageScriptConfiguration (Beta). \n - **HTTPActionConfiguration** has the following properties:\n - **url** The URL is being tested. It is required.\n - **syntheticType** Its value is HTTPAction. It is required.\n - **operation** An operation being used must be one of GET, HEAD, OPTIONS, PATCH, POST, PUT, and DELETE. By default, it is GET.\n - **headers** An object with header/value pairs\n - **header** The header to be sent in operation. It should not contain the terminating ':' character.\n - **value** The value of the header.\n - **body** The body content to send with the operation.\n - **validationString** An expression to be evaluated.\n - **followRedirect** A boolean type, true by default; to allow redirect.\n - **allowInsecure** A boolean type, true by default; if set to true then allow insecure certificates\n (expired, self-signed, etc).\n - **expectStatus** An integer type, by default, the Synthetic passes for any 2XX status code.\n This forces just one status code to cause a pass, including what would normally be a fail, for example, a 404.\n - **expectJson** An optional object to be used to check against the test response object.\n - **expectMatch** An optional regular expression string to be used to check the test response.\n - **expectExists** An optional list of property labels used to check if they are present in the test response object.\n - **expectNotEmpty** An optional list of property labels used to check if they are present in the test response object with a non-empty value.\n - **HTTPScriptConfiguration** has the following properties:\n - **script** The Javascript content, it is plain text, not base64 encoded. **script** and **scripts** are mutually exclusive.\n - **scripts** Multi script package. **script** and **scripts** are mutually exclusive.\n - **scriptFile** The name of the file to run\n - **bundle** All required js files bundled up into a single zip file with base64 encoded\n - **syntheticType** Its value is HTTPScript. It is required.\n - The API Script Guide, including examples, can be found at: https://www.ibm.com/docs/en/instana-observability/current?topic=monitoring-using-api-scripts\n - **BrowserScriptConfiguration** has the following properties:\n - **script** A Node.js based test script, it is plain text, not base64 encoded. **script** and **scripts** are mutually exclusive.\n - **scripts** Multi script package. **script** and **scripts** are mutually exclusive.\n - **scriptFile** The name of the file to run\n - **bundle** All required js files bundled up into a single zip file with base64 encoded\n - **scriptType** The type of the script, right now, only Basic type is supported. \n - **browser** The type of the browser: chrome or firefox, chrome by default.\n - **recordVideo** A boolean type, false by default.\n - **syntheticType** Its value is BrowserScript. It is required.\n - **WebpageActionConfiguration** has the following properties:\n - **url** The URL of the Web page being tested. It is required.\n - **browser** The type of the browser: chrome or firefox, chrome by default.\n - **recordVideo** A boolean type, false by default.\n - **syntheticType** Its value is WebpageAction. It is required.\n - **WebpageScriptConfiguration** has the following properties:\n - **script** A Selenium IDE recording script. It is required.\n - **browser** The type of the browser: chrome or firefox, chrome by default.\n - **recordVideo** A boolean type, false by default.\n - **syntheticType** Its value is WebpageScript. It is required.\n- **createdAt** The test created time, following RFC3339 standard.\n- **createdBy** The user identifier who created the test resource.\n- **customProperties** An object with name/value pairs to provide additional information of the Synthetic test.\n- **locations** It is an array of the PoP location IDs where the Synthetic tests are located.\n- **modifiedAt** The test last updated time, following RFC3339 standard.\n- **modifiedBy** The user identifier who updated the test resource.\n- **playbackMode** Defines how the Synthetic test should be executed across multiple\n PoPs. This property is optional, and its default value is Simultaneous, and only Simultaneous is supported, i.e.,\n Synthetic tests run at all locations simultaneously. \n- **testFrequency** How often the playback for a Synthetic test is scheduled. The unit of the testFrequency parameter is minute.\n The default is every 15 minutes. The range is from 1 minute to 120 minutes.\n\n## Synthetic Credentials:\n\nSynthetic credentials can be used to store passwords and/or secrets used by the Synthetic Tests.\n\nAll Script Tests can use credentials in their body and API Simple Tests can use them on header parameters.\n\nIt is required that the credentials used in the test be created before the test is created or modified.\n\nTests using credentials are validated during test creation and update whether you use the API or UI, as follows:\n\n1. The user Id of the logged in user or API Token being used to create or modify the test must have permission to use credentials. \n Requests to create or update a test referencing credentials without the correct permission will fail with return code `Forbidden`.\n\n2. The credentials or secrets used in the test must exist. \n Requests to create or update a test referencing credentials that do not exist will fail with return code `Bad Request`." + "description": "The API endpoints of this group can be used to manage Synthetic Locations, Synthetic Tests and Synthetic Credentials. \n\n## Synthetic Location Properties:\n- **id** Unique identifier of the location resource.\n- **label** Friendly name of the location.\n- **description** The description of the location.\n- **locationType** Indicates if the location is managed or private.\n- **playbackCapability** The playback capabilities provided by this location resource.\n The playbackCapability object has the following properties: \n - **syntheticType** Different types of synthetic tests that can be executed at this location. \n Possible values are HTTPAction, HTTPScript, BrowserScript, WebpageAction, WebpageScript, and SSLCertificate. \n The values are corresponding to the syntheticType parameter available in the createSyntheticTest endpoint.\n - **browserType** Different types of supported Web browsers when creating synthetic tests for BrowserScript, WebpageAction and WebpageScript.\n Right now, only Chrome and Firefox are supported. \n- **geoPoint** An object includes the longitude, latitude, country name, and city name properties of a location. \n- **popVersion** PoP's version\n- **customProperties** An object with name/value pairs to provide additional information of the Synthetic location.\n- **createdAt** The location created time, following RFC3339 standard.\n- **modifiedAt** The location modified time, following RFC3339 standard.\n- **observedAt** The timestamp when PoP requests a Synthetic test, following RFC3339 standard.\n\n## Synthetic Test Properties:\n- **id** Unique identifier of the Synthetic test resource.\n- **label** Friendly name of the Synthetic test resource.\n- **description** The description of the Synthetic test.\n- **active** Indicates if the Synthetic test is started or not. The default is true.\n- **applicationId** Unique identifier of the Application Perspective.\n- **configuration** An object which has two properties: syntheticType and the corresponding configuration object:\n - **syntheticType** The type of the Synthetic test. Supported values are HTTPAction, HTTScript, BrowserScript, WebpageAction,\n WebpageScript, and SSLCertificate. The locations assigned to execute this Synthetic\n test must support this syntheticType, i.e. the location's playbackCapabilities property.\n - **markSyntheticCall** Flag used to control if HTTP calls will be marked as synthetic calls/endpoints in Instana backend, so they can be ignored when calculating service and application KPIs, users can also check \"Hide Synthetic Calls\" checkbox to hide/show them in UI.\n - **retries** An integer type from 0 to 2, 0 by default.\n It indicates how many attempts (max 2) will be allowed\n to get a successful connection (not necessarily a successful result).\n For API Simple, failures like socket hangups, gateway timeouts, and DNS lookup fails cause retires, but 404's 400's, do not.\n API Script and Browser Script test will retry if script failed for any reason.\n - **retryInterval** The time interval between retries in seconds. The default is 1s, max is 10s.\n - **timeout** The timeout to be used by the PoP playback engines running the test. Values are in integers followed by a time unit (ms, s, m). \n It is the minimum value of test configuration `timeout`, `testFrequency` and `maxTimeout` configured in PoP deployment.\n - If user defined timeout value exceeds the `maxTimeout` or `testFrequency` in test configuration, the timeout value does not take effect \n and PoP playback engines use the smaller one of `maxTimeout` and `testFrequency` as the actual timeout value.\n - If timeout value in test configuration is not provided, the default value is **1m** for HTTPAction and HTTPScript tests. \n BrowserScript, WebpageAction, and WebpageScript tests use the smaller one of `maxTimeout` and `testFrequency` as the actual timeout value.\n - **XXXConfiguration** The configuration corresponding to the syntheticType. Configuration types are HTTPActionConfiguration, HTTPScriptConfiguration,\n BrowserScriptConfiguration, WebpageActionConfiguration, WebpageScriptConfiguration, and SSLCertificateConfiguration. \n - **HTTPActionConfiguration** has the following properties:\n - **url** The URL is being tested. It is required.\n - **syntheticType** Its value is HTTPAction. It is required.\n - **operation** An operation being used must be one of GET, HEAD, OPTIONS, PATCH, POST, PUT, and DELETE. By default, it is GET.\n - **headers** An object with header/value pairs\n - **header** The header to be sent in operation. It should not contain the terminating ':' character.\n - **value** The value of the header.\n - **body** The body content to send with the operation.\n - **validationString** An expression to be evaluated.\n - **followRedirect** A boolean type, true by default; to allow redirect.\n - **allowInsecure** A boolean type, true by default; if set to true then allow insecure certificates\n (expired, self-signed, etc).\n - **expectStatus** An integer type, by default, the Synthetic passes for any 2XX status code.\n This forces just one status code to cause a pass, including what would normally be a fail, for example, a 404.\n - **expectJson** An optional object to be used to check against the test response object.\n - **expectMatch** An optional regular expression string to be used to check the test response.\n - **expectExists** An optional list of property labels used to check if they are present in the test response object.\n - **expectNotEmpty** An optional list of property labels used to check if they are present in the test response object with a non-empty value.\n - **HTTPScriptConfiguration** has the following properties:\n - **script** The Javascript content, it is plain text, not base64 encoded. **script** and **scripts** are mutually exclusive.\n - **scripts** Multi script package. **script** and **scripts** are mutually exclusive.\n - **scriptFile** The name of the file to run\n - **bundle** All required js files bundled up into a single zip file with base64 encoded\n - **syntheticType** Its value is HTTPScript. It is required.\n - The API Script Guide, including examples, can be found at: https://www.ibm.com/docs/en/instana-observability/current?topic=monitoring-using-api-scripts\n - **BrowserScriptConfiguration** has the following properties:\n - **script** A Node.js based test script, it is plain text, not base64 encoded. **script** and **scripts** are mutually exclusive.\n - **scripts** Multi script package. **script** and **scripts** are mutually exclusive.\n - **scriptFile** The name of the file to run\n - **bundle** All required js files bundled up into a single zip file with base64 encoded\n - **scriptType** The type of the script, right now, only Basic type is supported. \n - **browser** The type of the browser: chrome or firefox, chrome by default.\n - **recordVideo** A boolean type, false by default.\n - **syntheticType** Its value is BrowserScript. It is required.\n - **WebpageActionConfiguration** has the following properties:\n - **url** The URL of the Web page being tested. It is required.\n - **browser** The type of the browser: chrome or firefox, chrome by default.\n - **recordVideo** A boolean type, false by default.\n - **syntheticType** Its value is WebpageAction. It is required.\n - **WebpageScriptConfiguration** has the following properties:\n - **script** A Selenium IDE recording script. It is required.\n - **browser** The type of the browser: chrome or firefox, chrome by default.\n - **recordVideo** A boolean type, false by default.\n - **syntheticType** Its value is WebpageScript. It is required.\n - **SSLCertificateConfiguration** has the following properties:\n - **hostname** The hostname of the SSL enabled website.\n - **port** The SSL port, set to 443 by default.\n - **daysRemainingCheck** The number of days to use on the validation check. The test will fail when the certificate validity has less than this number of days remaining until expiration.\n- **createdAt** The test created time, following RFC3339 standard.\n- **createdBy** The user identifier who created the test resource.\n- **customProperties** An object with name/value pairs to provide additional information of the Synthetic test.\n- **locations** It is an array of the PoP location IDs where the Synthetic tests are located.\n- **modifiedAt** The test last updated time, following RFC3339 standard.\n- **modifiedBy** The user identifier who updated the test resource.\n- **playbackMode** Defines how the Synthetic test should be executed across multiple\n PoPs. This property is optional, and its default value is Simultaneous, and only Simultaneous is supported, i.e.,\n Synthetic tests run at all locations simultaneously. \n- **testFrequency** How often the playback for a Synthetic test is scheduled. The unit of the testFrequency parameter is minute.\n The default is every 15 minutes. The range is from 1 minute to 120 minutes. \n For SSLCertificate tests, the default is every 24 hours and the range is from 60 minute to 1440 minutes.\n\n## Synthetic Credentials:\n\nSynthetic credentials can be used to store passwords and/or secrets used by the Synthetic Tests.\n\nAll Script Tests can use credentials in their body and API Simple Tests can use them on header parameters.\n\nIt is required that the credentials used in the test be created before the test is created or modified.\n\nTests using credentials are validated during test creation and update whether you use the API or UI, as follows:\n\n1. The user Id of the logged in user or API Token being used to create or modify the test must have permission to use credentials. \n Requests to create or update a test referencing credentials without the correct permission will fail with return code `Forbidden`.\n\n2. The credentials or secrets used in the test must exist. \n Requests to create or update a test referencing credentials that do not exist will fail with return code `Bad Request`." }, { "name": "Synthetic Test Playback Results", - "description": "The endpoints of this group retrieve the results for defined Synthetic tests.\n\n**Note on names in TagFilter/TagFilterExpression**: From R243, the name used in a TagFilter or a TagFilterExpression has the format: synthetic.\\.\nIt can be one of the following: synthetic.id (id is the test result id), synthetic.testId,\nsynthetic.testName, synthetic.locationId, synthetic.applicationId, synthetic.serviceId, synthetic.syntheticType,\nsynthetic.locationName, and synthetic.locationLabel. If it is a metric name, then the format is: synthetic.metrics\\.\nFor example, synthetic.metricsResponseTime, synthetic.metricsStatus.\n\nThe names used prior to R243 should be considered as deprecated. They will be accepted temporarily and will be removed in an upcoming release.\n\n## Get Synthetic test playback results \nThe endpoint returns the aggregated Synthetic test result data\n\n### Mandatory Parameters \n\n**testId** An array of the unique identifiers of Synthetic tests\n\n**metrics** A list of metric objects that define which metric should be returned, with the defined aggregation. Each metrics objects consists of minimum two items:\n1. *metric* select a particular metric. This is the list of available metrics for all types of Synthetic Tests: \n synthetic.metricsResponseTime (ms), synthetic.metricsResponseSize (bytes), synthetic.metricsStatusCode (an integer represents an HTTP response code, e.g., 200, 401, 500), synthetic.metricsRequestSize (bytes), \n synthetic.metricsUploadSpeed (bytes per second), synthetic.metricsDownloadSpeed (bytes per second), \n synthetic.metricsRedirectTime (ms), synthetic.metricsRedirectCount, synthetic.metricsConnectCount, synthetic.metricsStatus (an integer, 1-success or 0-failure), and synthetic.tags (list of custom properties and values). \n \n The following metrics are only available for the HTTPAction type Synthetic Tests: synthetic.metricsBlocking (bytes), synthetic.metricsDns (bytes), synthetic.metricsConnect (bytes), synthetic.metricsSsl (bytes), \n synthetic.metricsSending (bytes), synthetic.metricsWaiting (bytes), and synthetic.metricsReceiving (bytes).\n\n The metric synthetic.tags adds the latest list of custom properties to the response.\n\n2. *aggregation* Depending on the selected metric, different aggregations are available e.g., SUM, MEAN, P90 (90th percentile), DISTINCT_COUNT, and MAX. MAX is only allowed for synthetic.tags.\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n```\nThe timeFrame might be adjusted to fit the metric granularity so that there is no partial bucket. For example, if the query timeFrame is 08:02 - 09:02 and the metric granularity is 5 minutes, the timeFrame will be adjusted to 08:05 - 09:00. The adjusted timeFrame will be returned in the response payload. If the query does not have any metric with granularity, a default granularity will be used for adjustment.\n\n### Optional Parameters\n\n**metrics** By default you will get an aggregated metric for the selected timeframe\n\n* *granularity*\n * If it is not set you will get an aggregated value for the selected timeframe\n * If the granularity is set you will get data points with the specified granularity **in seconds**\n * The granularity should not be greater than the `windowSize` (important: `windowSize` is expressed in **milliseconds**)\n * The granularity should not be set too small relative to the `windowSize` to avoid creating an excessively large number of data points (max 600)\n * The granularity values are the same for all metrics\n\n**pagination** if you use pagination you most probably want to fix the timeFrame for the retrieved metrics\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic test results you want to return with one query\n\n**order** You can order the returned items alphanumerical by label, either ascending or descending\n1. *by* Use the metric name, e.g. \"synthetic.metricsResponseTime\", to order by its value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n**tagFilters** It serves as a filter to narrow down return results.\nIt will be replaced by **tagFilterExpression**.\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with\nlogical operators AND or OR.\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\nEither tagFilters or tagFilterExpression can specify a custom property by its key and value.\n```\n\"tagFilters\":[{\n \"name\":\"synthetic.tags\",\n \"key\":\"location\",\n \"value\":\"Denver\",\n \"operator\":\"EQUALS\"\n}]\n```\n\nTo narrow down the result set you have two options to search for a test.\n\n**locationId | applicationId**\n\n* *synthetic.locationId:* filter by locationId\n\n* *synthetic.applicationId:* filter by applicationId\n\n### Defaults\n\n**metrics**\n* *granularity:* 0\n\n**timeFrame**\n```\n\"timeFrame\": {\n\t\"windowSize\": 60000,\n\t\"to\": {current timestamp}\n}\n```\n**locationId | applicationId**\n* no filters are applied in the default call\n\n### Sample payload to get a Synthetic test result\n```\n{\n \"testId\": [\"tUmWgvzdo1Q1vpVRpzR5\", \"Pg0Q1UqHRd7OMysohVLd\"],\n \"//comment1\": \"Get test results from last 30 minutes (windowSize), data are aggregated every 10 minutes (granularity)\",\n \"//comment2\": \"The granularity values for responseTime and responseSize must be the same\"\n \"metrics\": [\n {\n \"aggregation\": \"MEAN\",\n \"granularity\": 600, \n \"metric\": \"synthetic.metricsResponseTime\"\n },\n {\n \"aggregation\": \"MEAN\",\n \"granularity\": 600, \n \"metric\": \"synthetic.metricsResponseSize\"\n }],\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 1800000 \n }\n}\n```\n\n## Get a list of Synthetic test playback results (no aggregation)\n### Mandatory Parameters\n**syntheticMetrics** It is an array of metrics. The available metrics for all types of Synthetic Tests: synthetic.id (a string representing the test result ID), \nsynthetic.metricsResponseTime (ms), synthetic.metricsResponseSize (bytes), synthetic.metricsStatusCode (an integer represents an HTTP response code, e.g., 200, 401, 500), synthetic.metricsRequestSize (bytes),\nsynthetic.metricsUploadSpeed (bytes per second), synthetic.metricsDownloadSpeed (bytes per second),\nsynthetic.metricsRedirectTime (ms), synthetic.metricsRedirectCount, synthetic.metricsConnectCount, synthetic.metricsStatus (an integer, 1-success or 0-failure), and synthetic.tags (list of custom properties and values).\n\nThe following metrics are only available for the HTTPAction type Synthetic Tests: synthetic.metricsBlocking (bytes), synthetic.metricsDns (bytes), synthetic.metricsConnect (bytes), synthetic.metricsSsl (bytes),\nsynthetic.metricsSending (bytes), synthetic.metricsWaiting (bytes), and synthetic.metricsReceiving (bytes).\n\nThe metric synthetic.tags adds the latest list of custom properties to the response.\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n```\n\n### Optional Parameters\n**pagination** if you use pagination you most probably want to fix the timeFrame for the retrieved metrics\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic test results you want to return with one query\n\n**order** You can order the returned items alphanumerical by label, either ascending or descending\n1. *by* Use the metric name, e.g. \"synthetic.metricsResponseTime\" to order by that value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n**tagFilters** It serves as a filter to narrow down return results. \nIt will be replaced by **tagFilterExpression**.\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with \nlogical operators AND or OR.\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\nEither tagFilters or tagFilterExpression can specify a custom property by its key and value.\n```\n\"tagFilters\":[{\n \"name\":\"synthetic.tags\",\n \"key\":\"location\",\n \"value\":\"Denver\",\n \"operator\":\"EQUALS\"\n}]\n```\n\n### Sample payload to get a list of Synthetic test results with tagFilters\n```json\n{\n \"syntheticMetrics\":[\"synthetic.metricsResponseTime\",\"synthetic.metricsResponseSize\"],\n \"order\":{\n \"by\":\"synthetic.metricsResponseTime\",\n \"direction\":\"DESC\"\n },\n \"tagFilters\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.testId\",\n \"operator\":\"EQUALS\"\n }],\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 1800000\n }\n}\n```\n\n### Sample payload to get a list of Synthetic test results with tagFilterExpression\n```json\n{\n \"syntheticMetrics\":[\"synthetic.metricsResponseTime\",\"synthetic.metricsResponseSize\"],\n \"order\":{\n \"by\":\"synthetic.metricsResponseTime\",\n \"direction\":\"DESC\"\n },\n \"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"AND\",\n \"elements\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.testId\",\n \"operator\":\"EQUALS\"\n }, {\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\": \"abcdefgXSJmQsehOWg1S\"\n }]\n },\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 1800000\n }\n}\n```\n\n## Get a list of Synthetic tests with Success Rate and Average Response Time data\nThe endpoint returns a list of Synthetic tests with Success Rate and Average Response Time result data\n\n### Mandatory Parameters\n\n**metrics**\n1. *metric* select a particular metric. Right now, only synthetic.metricsResponseTime (ms) is supported.\n2. *aggregation* MEAN\n3. *granularity* 60\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n\n\"timeFrame\": {\n\t\"windowSize\": 60000,\n\t\"to\": {current timestamp}\n}\n```\n\n### Optional Parameters\n\n**pagination** if you use pagination you most probably want to fix the timeFrame for the retrieved metrics\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic test results you want to return with one query\n\n**order** You can order the returned items alphanumerical by label, either ascending or descending\n1. *by* Use the metric name, \"synthetic.metricsResponseTime\", to order by its value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n**tagFilters** It serves as a filter to narrow down return results. The name of a tagFilter is one of the following: \nsynthetic.syntheticType, synthetic.locationId, and synthetic.applicationId.\nIt will be replaced by **tagFilterExpression**.\n```\n\"tagFilters\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.applicationId\",\n \"operator\":\"EQUALS\"\n}]\n```\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with\nlogical operators AND or OR.\n```\n\"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"AND\",\n \"elements\":[{\n \"name\": \"synthetic.metricsStatus\", \n \"operator\": \"EQUALS\", \n \"numberValue\": 1\n }, {\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\":\"WnjlKKbgzLDnyGra6PAs\"\n }]\n}\n```\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\nEither tagFilters or tagFilterExpression can specify a custom property by its key and value.\n```\n\"tagFilters\":[{\n \"name\":\"synthetic.tags\",\n \"key\":\"location\",\n \"value\":\"Denver\",\n \"operator\":\"EQUALS\"\n}]\n```\n\nTo narrow down the result set you have three options to search for a test.\n\n**syntheticType | locationId | applicationId**\n\n* *synthetic.syntheticType:* filter by syntheticType, either HTTPAction or HTTPScript\n\n* *synthetic.locationId:* filter by locationId\n\n* *synthetic.applicationId:* filter by applicationId\n\n\nTests can also be filtered by their active state (`true`/`false`) using the custom property label `synthetic.testActive`.\n```\n\"tagFilters\": [{ \n \"name\":\"synthetic.testActive\", \n \"operator\":\"EQUALS\",\n \"booleanValue\": false \n}]\n```\n\n### Defaults\n\n**syntheticType | locationId | applicationId**\n* no filters are applied in the default call\n\n### Sample payload to get a list of active Synthetic tests with SuccessRate and Average Response Time results\n```\n{\n \"metrics\": [\n {\n \"aggregation\": \"MEAN\",\n \"granularity\": 60, \n \"metric\": \"synthetic.metricsResponseTime\"\n }],\n \"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"AND\",\n \"elements\":[{\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\": \"abcdefgXSJmQsehOWg1S\"\n }, {\n \"name\": \"synthetic.testActive\",\n \"operator\": \"EQUALS\",\n \"booleanValue\": true\n }]\n },\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 3600000 \n }\n}\n```\n\n## Get a list of Synthetic locations with Last Test Run on (each location) data\nThe endpoint returns a list of Synthetic locations with Last Test Run on (each location) result data\n\n### Mandatory Parameters\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n\n\"timeFrame\": {\n\t\"windowSize\": 60000,\n\t\"to\": {current timestamp}\n}\n```\n\n### Optional Parameters\n\n**pagination** if you use pagination you should use the same timeFrame for all of the pages you want to query\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic locations you want to return with one query\n\n**order** You can order the returned items alphanumerically by label, either ascending or descending\n1. *by* Use the metric name, e.g., \"location_name\", to order by its value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n The sorting can be done on the following metrics: location_name, location_label, status, type, total_tests,\n last_test_run, and namespace\n\n**tagFilters** It serves as a filter to narrow down return results. The name of a tagFilter is one of the following: \nsynthetic.locationName, synthetic.locationLabel, and synthetic.locationId.\nIt will be replaced by **tagFilterExpression**.\n```\n\"tagFilters\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.locationId\",\n \"operator\":\"EQUALS\"\n}]\n```\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with\nlogical operators AND or OR.\n```\n\"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"OR\",\n \"elements\":[{\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\":\"WnjlKKbgzLDnyGra6PAs\"\n }]\n}\n```\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\n### Sample payload to get a list of Synthetic locations with Last Test Run on (each location) data\n```\n{\n \"order\": {\n \t\"by\": \"status\", \n \t\"direction\": \"Desc\"\n },\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 3600000 \n }\n}\n```\n\n## Get Synthetic test playback result detail data\n\n### Query Parameters\n**type** The type of the detailed data. Its value is one of these types: SUBTRANSACTIONS, LOGS, and HAR.\n\n**name** The name of the file to be retrieved, if more than one file available for the same type. Used when the type equals to LOGS or IMAGES\n\n## Download a Synthetic test playback result detail data file\n\n### Query Parameter\n**type** The type of a single compressed file. Its value is one of these types: SUBTRANSACTIONS, LOGS, IMAGES, VIDEOS, and HAR." + "description": "The endpoints of this group retrieve the results for defined Synthetic tests.\n\n**Note on names in TagFilter/TagFilterExpression**: From R243, the name used in a TagFilter or a TagFilterExpression has the format: synthetic.\\.\nIt can be one of the following: synthetic.id (id is the test result id), synthetic.testId,\nsynthetic.testName, synthetic.locationId, synthetic.applicationId, synthetic.serviceId, synthetic.syntheticType,\nsynthetic.locationName, and synthetic.locationLabel. If it is a metric name, then the format is: synthetic.metrics\\.\nFor example, synthetic.metricsResponseTime, synthetic.metricsStatus.\n\nThe names used prior to R243 should be considered as deprecated. They will be accepted temporarily and will be removed in an upcoming release.\n\n## Get Synthetic test playback results \nThe endpoint returns the aggregated Synthetic test result data\n\n### Mandatory Parameters \n\n**testId** An array of the unique identifiers of Synthetic tests\n\n**metrics** A list of metric objects that define which metric should be returned, with the defined aggregation. Each metrics objects consists of minimum two items:\n1. *metric* select a particular metric. This is the list of available metrics for all types of Synthetic Tests: \n synthetic.metricsResponseTime (ms), synthetic.metricsResponseSize (bytes), synthetic.metricsStatusCode (an integer represents an HTTP response code, e.g., 200, 401, 500), synthetic.metricsRequestSize (bytes), \n synthetic.metricsUploadSpeed (bytes per second), synthetic.metricsDownloadSpeed (bytes per second), \n synthetic.metricsRedirectTime (ms), synthetic.metricsRedirectCount, synthetic.metricsConnectCount, synthetic.metricsStatus (an integer, 1-success or 0-failure), and synthetic.tags (list of custom properties and values). \n \n The following metrics are only available for the HTTPAction type Synthetic Tests: synthetic.metricsBlocking (bytes), synthetic.metricsDns (bytes), synthetic.metricsConnect (bytes), synthetic.metricsSsl (bytes), \n synthetic.metricsSending (bytes), synthetic.metricsWaiting (bytes), and synthetic.metricsReceiving (bytes).\n\n The metric synthetic.customMetrics (list of custom metrics and values) is only available for SSLCertificate tests.\n\n The metric synthetic.tags adds the latest list of custom properties to the response.\n\n2. *aggregation* Depending on the selected metric, different aggregations are available e.g., SUM, MEAN, P90 (90th percentile), DISTINCT_COUNT, and MAX. MAX is only allowed for synthetic.tags.\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n```\nThe timeFrame might be adjusted to fit the metric granularity so that there is no partial bucket. For example, if the query timeFrame is 08:02 - 09:02 and the metric granularity is 5 minutes, the timeFrame will be adjusted to 08:05 - 09:00. The adjusted timeFrame will be returned in the response payload. If the query does not have any metric with granularity, a default granularity will be used for adjustment.\n\n### Optional Parameters\n\n**metrics** By default you will get an aggregated metric for the selected timeframe\n\n* *granularity*\n * If it is not set you will get an aggregated value for the selected timeframe\n * If the granularity is set you will get data points with the specified granularity **in seconds**\n * The granularity should not be greater than the `windowSize` (important: `windowSize` is expressed in **milliseconds**)\n * The granularity should not be set too small relative to the `windowSize` to avoid creating an excessively large number of data points (max 600)\n * The granularity values are the same for all metrics\n\n**pagination** if you use pagination you most probably want to fix the timeFrame for the retrieved metrics\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic test results you want to return with one query\n\n**order** You can order the returned items alphanumerical by label, either ascending or descending\n1. *by* Use the metric name, e.g. \"synthetic.metricsResponseTime\", to order by its value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n**tagFilters** It serves as a filter to narrow down return results.\nIt will be replaced by **tagFilterExpression**.\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with\nlogical operators AND or OR.\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\nEither tagFilters or tagFilterExpression can specify a custom property by its key and value.\n```\n\"tagFilters\":[{\n \"name\":\"synthetic.tags\",\n \"key\":\"location\",\n \"value\":\"Denver\",\n \"operator\":\"EQUALS\"\n}]\n```\n\nTo narrow down the result set you have two options to search for a test.\n\n**locationId | applicationId**\n\n* *synthetic.locationId:* filter by locationId\n\n* *synthetic.applicationId:* filter by applicationId\n\n### Defaults\n\n**metrics**\n* *granularity:* 0\n\n**timeFrame**\n```\n\"timeFrame\": {\n\t\"windowSize\": 60000,\n\t\"to\": {current timestamp}\n}\n```\n**locationId | applicationId**\n* no filters are applied in the default call\n\n### Sample payload to get a Synthetic test result\n```\n{\n \"testId\": [\"tUmWgvzdo1Q1vpVRpzR5\", \"Pg0Q1UqHRd7OMysohVLd\"],\n \"//comment1\": \"Get test results from last 30 minutes (windowSize), data are aggregated every 10 minutes (granularity)\",\n \"//comment2\": \"The granularity values for responseTime and responseSize must be the same\"\n \"metrics\": [\n {\n \"aggregation\": \"MEAN\",\n \"granularity\": 600, \n \"metric\": \"synthetic.metricsResponseTime\"\n },\n {\n \"aggregation\": \"MEAN\",\n \"granularity\": 600, \n \"metric\": \"synthetic.metricsResponseSize\"\n }],\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 1800000 \n }\n}\n```\n\n## Get a list of Synthetic test playback results (no aggregation)\n### Mandatory Parameters\n**syntheticMetrics** It is an array of metrics. The available metrics for all types of Synthetic Tests: synthetic.id (a string representing the test result ID), \nsynthetic.metricsResponseTime (ms), synthetic.metricsResponseSize (bytes), synthetic.metricsStatusCode (an integer represents an HTTP response code, e.g., 200, 401, 500), synthetic.metricsRequestSize (bytes),\nsynthetic.metricsUploadSpeed (bytes per second), synthetic.metricsDownloadSpeed (bytes per second),\nsynthetic.metricsRedirectTime (ms), synthetic.metricsRedirectCount, synthetic.metricsConnectCount, synthetic.metricsStatus (an integer, 1-success or 0-failure), and synthetic.tags (list of custom properties and values).\n\nThe following metrics are only available for the HTTPAction type Synthetic Tests: synthetic.metricsBlocking (bytes), synthetic.metricsDns (bytes), synthetic.metricsConnect (bytes), synthetic.metricsSsl (bytes),\nsynthetic.metricsSending (bytes), synthetic.metricsWaiting (bytes), and synthetic.metricsReceiving (bytes).\n\nThe metric synthetic.customMetrics (list of custom metrics and values) is only available for SSLCertificate tests.\n\nThe metric synthetic.tags adds the latest list of custom properties to the response.\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n```\n\n### Optional Parameters\n**pagination** if you use pagination you most probably want to fix the timeFrame for the retrieved metrics\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic test results you want to return with one query\n\n**order** You can order the returned items alphanumerical by label, either ascending or descending\n1. *by* Use the metric name, e.g. \"synthetic.metricsResponseTime\" to order by that value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n**tagFilters** It serves as a filter to narrow down return results. \nIt will be replaced by **tagFilterExpression**.\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with \nlogical operators AND or OR.\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\nEither tagFilters or tagFilterExpression can specify a custom property by its key and value.\n```\n\"tagFilters\":[{\n \"name\":\"synthetic.tags\",\n \"key\":\"location\",\n \"value\":\"Denver\",\n \"operator\":\"EQUALS\"\n}]\n```\n\n### Sample payload to get a list of Synthetic test results with tagFilters\n```json\n{\n \"syntheticMetrics\":[\"synthetic.metricsResponseTime\",\"synthetic.metricsResponseSize\"],\n \"order\":{\n \"by\":\"synthetic.metricsResponseTime\",\n \"direction\":\"DESC\"\n },\n \"tagFilters\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.testId\",\n \"operator\":\"EQUALS\"\n }],\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 1800000\n }\n}\n```\n\n### Sample payload to get a list of Synthetic test results with tagFilterExpression\n```json\n{\n \"syntheticMetrics\":[\"synthetic.metricsResponseTime\",\"synthetic.metricsResponseSize\"],\n \"order\":{\n \"by\":\"synthetic.metricsResponseTime\",\n \"direction\":\"DESC\"\n },\n \"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"AND\",\n \"elements\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.testId\",\n \"operator\":\"EQUALS\"\n }, {\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\": \"abcdefgXSJmQsehOWg1S\"\n }]\n },\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 1800000\n }\n}\n```\n\n### Sample payload to get the custom metrics of a Synthetic SSLCertificate test\n```json\n{\n \"syntheticMetrics\":[\"synthetic.customMetrics\"],\n \"tagFilters\":[{\n \"stringValue\":\"dk6yzb9fxCDlB6axIhUu\",\n \"name\":\"synthetic.testId\",\n \"operator\":\"EQUALS\"\n }],\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 172800000\n }\n}\n```\n\n## Get a list of Synthetic tests with Success Rate and Average Response Time data\nThe endpoint returns a list of Synthetic tests with Success Rate and Average Response Time result data\n\n### Mandatory Parameters\n\n**metrics**\n1. *metric* select a particular metric. Right now, only synthetic.metricsResponseTime (ms) is supported.\n2. *aggregation* MEAN\n3. *granularity* 60\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n\n\"timeFrame\": {\n\t\"windowSize\": 60000,\n\t\"to\": {current timestamp}\n}\n```\n\n### Optional Parameters\n\n**pagination** if you use pagination you most probably want to fix the timeFrame for the retrieved metrics\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic test results you want to return with one query\n\n**order** You can order the returned items alphanumerical by label, either ascending or descending\n1. *by* Use the metric name, \"synthetic.metricsResponseTime\", to order by its value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n**tagFilters** It serves as a filter to narrow down return results. The name of a tagFilter is one of the following: \nsynthetic.syntheticType, synthetic.locationId, and synthetic.applicationId.\nIt will be replaced by **tagFilterExpression**.\n```\n\"tagFilters\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.applicationId\",\n \"operator\":\"EQUALS\"\n}]\n```\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with\nlogical operators AND or OR.\n```\n\"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"AND\",\n \"elements\":[{\n \"name\": \"synthetic.metricsStatus\", \n \"operator\": \"EQUALS\", \n \"numberValue\": 1\n }, {\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\":\"WnjlKKbgzLDnyGra6PAs\"\n }]\n}\n```\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\nEither tagFilters or tagFilterExpression can specify a custom property by its key and value.\n```\n\"tagFilters\":[{\n \"name\":\"synthetic.tags\",\n \"key\":\"location\",\n \"value\":\"Denver\",\n \"operator\":\"EQUALS\"\n}]\n```\n\nTo narrow down the result set you have three options to search for a test.\n\n**syntheticType | locationId | applicationId**\n\n* *synthetic.syntheticType:* filter by syntheticType, either HTTPAction or HTTPScript\n\n* *synthetic.locationId:* filter by locationId\n\n* *synthetic.applicationId:* filter by applicationId\n\n\nTests can also be filtered by their active state (`true`/`false`) using the custom property label `synthetic.testActive`.\n```\n\"tagFilters\": [{ \n \"name\":\"synthetic.testActive\", \n \"operator\":\"EQUALS\",\n \"booleanValue\": false \n}]\n```\n\n### Defaults\n\n**syntheticType | locationId | applicationId**\n* no filters are applied in the default call\n\n### Sample payload to get a list of active Synthetic tests with SuccessRate and Average Response Time results\n```\n{\n \"metrics\": [\n {\n \"aggregation\": \"MEAN\",\n \"granularity\": 60, \n \"metric\": \"synthetic.metricsResponseTime\"\n }],\n \"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"AND\",\n \"elements\":[{\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\": \"abcdefgXSJmQsehOWg1S\"\n }, {\n \"name\": \"synthetic.testActive\",\n \"operator\": \"EQUALS\",\n \"booleanValue\": true\n }]\n },\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 3600000 \n }\n}\n```\n\n## Get a list of Synthetic locations with Last Test Run on (each location) data\nThe endpoint returns a list of Synthetic locations with Last Test Run on (each location) result data\n\n### Mandatory Parameters\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n\n\"timeFrame\": {\n\t\"windowSize\": 60000,\n\t\"to\": {current timestamp}\n}\n```\n\n### Optional Parameters\n\n**pagination** if you use pagination you should use the same timeFrame for all of the pages you want to query\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic locations you want to return with one query\n\n**order** You can order the returned items alphanumerically by label, either ascending or descending\n1. *by* Use the metric name, e.g., \"location_name\", to order by its value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n The sorting can be done on the following metrics: location_name, location_label, status, type, total_tests,\n last_test_run, and namespace\n\n**tagFilters** It serves as a filter to narrow down return results. The name of a tagFilter is one of the following: \nsynthetic.locationName, synthetic.locationLabel, and synthetic.locationId.\nIt will be replaced by **tagFilterExpression**.\n```\n\"tagFilters\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.locationId\",\n \"operator\":\"EQUALS\"\n}]\n```\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with\nlogical operators AND or OR.\n```\n\"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"OR\",\n \"elements\":[{\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\":\"WnjlKKbgzLDnyGra6PAs\"\n }]\n}\n```\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\n### Sample payload to get a list of Synthetic locations with Last Test Run on (each location) data\n```\n{\n \"order\": {\n \t\"by\": \"status\", \n \t\"direction\": \"Desc\"\n },\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 3600000 \n }\n}\n```\n\n## Get Synthetic test playback result detail data\n\n### Query Parameters\n**type** The type of the detailed data. Its value is one of these types: SUBTRANSACTIONS, LOGS, and HAR.\n\n**name** The name of the file to be retrieved, if more than one file available for the same type. Used when the type equals to LOGS or IMAGES\n\n## Download a Synthetic test playback result detail data file\n\n### Query Parameter\n**type** The type of a single compressed file. Its value is one of these types: SUBTRANSACTIONS, LOGS, IMAGES, VIDEOS, and HAR." }, { "name": "Action Catalog" @@ -203,8 +203,7 @@ "name": "apdexId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -215,8 +214,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -227,8 +225,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -253,7 +250,6 @@ }, "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApdexReport" } @@ -284,7 +280,6 @@ "required": true, "schema": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 } @@ -301,7 +296,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/BackendTraceReference" } @@ -331,8 +325,7 @@ "in": "query", "name": "fillTimeSeries", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -345,6 +338,10 @@ "groupbyTagEntity": "DESTINATION" }, "metrics": [ + { + "aggregation": "SUM", + "metric": "calls" + }, { "aggregation": "P75", "metric": "latency", @@ -354,7 +351,7 @@ "includeInternal": false, "includeSynthetic": false, "order": { - "by": "calls_SUM", + "by": "calls", "direction": "DESC" }, "pagination": { @@ -453,15 +450,14 @@ "in": "query", "name": "fillTimeSeries", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], "requestBody": { "content": { "application/json": { - "example": "{\n \"group\": {\n \"groupbyTag\": \"trace.endpoint.name\",\n \"groupbyTagEntity\": \"NOT_APPLICABLE\"\n },\n \"metrics\": [\n {\n \"aggregation\": \"SUM\",\n \"metric\": \"latency\"\n }\n ],\n \"order\": {\n \"by\": \"traces_SUM\",\n \"direction\": \"ASC\"\n },\n \"pagination\": {\n \"retrievalSize\": 20\n }\n \"tagFilterExpression\": {\n \"type\": \"EXPRESSION\",\n \"logicalOperator\": \"AND\",\n \"elements\": [\n {\n \"type\": \"TAG_FILTER\",\n \"name\": \"call.type\",\n \"operator\": \"EQUALS\",\n \"entity\": \"NOT_APPLICABLE\",\n \"value\": \"DATABASE\"\n },\n {\n \"type\": \"TAG_FILTER\",\n \"name\": \"service.name\",\n \"operator\": \"EQUALS\",\n \"entity\": \"DESTINATION\",\n \"value\": \"ratings\"\n }\n ]\n },\n }\n", + "example": "{\n \"group\": {\n \"groupbyTag\": \"trace.endpoint.name\",\n \"groupbyTagEntity\": \"NOT_APPLICABLE\"\n },\n \"metrics\": [\n {\n \"aggregation\": \"SUM\",\n \"metric\": \"latency\"\n }\n ],\n \"order\": {\n \"by\": \"latency\",\n \"direction\": \"ASC\"\n },\n \"pagination\": {\n \"retrievalSize\": 20\n }\n \"tagFilterExpression\": {\n \"type\": \"EXPRESSION\",\n \"logicalOperator\": \"AND\",\n \"elements\": [\n {\n \"type\": \"TAG_FILTER\",\n \"name\": \"call.type\",\n \"operator\": \"EQUALS\",\n \"entity\": \"NOT_APPLICABLE\",\n \"value\": \"DATABASE\"\n },\n {\n \"type\": \"TAG_FILTER\",\n \"name\": \"service.name\",\n \"operator\": \"EQUALS\",\n \"entity\": \"DESTINATION\",\n \"value\": \"ratings\"\n }\n ]\n },\n }\n", "schema": { "$ref": "#/components/schemas/GetTraceGroups" } @@ -647,8 +643,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -804,8 +799,7 @@ "in": "query", "name": "nameFilter", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -814,8 +808,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -824,8 +817,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -834,8 +826,7 @@ "name": "page", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -844,8 +835,7 @@ "name": "pageSize", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -857,8 +847,7 @@ "enum": [ "ALL", "INBOUND" - ], - "example": null + ] } } ], @@ -908,8 +897,7 @@ "in": "query", "name": "nameFilter", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -918,8 +906,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -928,8 +915,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -938,8 +924,7 @@ "name": "page", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -948,8 +933,7 @@ "name": "pageSize", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -961,8 +945,7 @@ "enum": [ "ALL", "INBOUND" - ], - "example": null + ] } }, { @@ -970,8 +953,7 @@ "in": "query", "name": "includeSnapshotIds", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -1029,8 +1011,7 @@ "in": "query", "name": "nameFilter", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -1039,10 +1020,8 @@ "name": "types", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true } @@ -1053,10 +1032,8 @@ "name": "technologies", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true } @@ -1067,8 +1044,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -1077,8 +1053,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -1087,8 +1062,7 @@ "name": "page", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -1097,8 +1071,7 @@ "name": "pageSize", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -1110,8 +1083,7 @@ "enum": [ "ALL", "INBOUND" - ], - "example": null + ] } } ], @@ -1167,8 +1139,7 @@ "name": "from", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -1179,8 +1150,7 @@ "enum": [ "CALLS", "TRACES" - ], - "example": null + ] } }, { @@ -1199,8 +1169,7 @@ "APPLICATION_CONFIG", "APPLICATION_CONFIG_BLUEPRINT", "MAINTENANCE_WINDOWS" - ], - "example": null + ] } } ], @@ -1281,7 +1250,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MetricDescription" } @@ -1314,8 +1282,7 @@ "name": "from", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -1326,8 +1293,7 @@ "enum": [ "CALLS", "TRACES" - ], - "example": null + ] } }, { @@ -1346,8 +1312,7 @@ "APPLICATION_CONFIG", "APPLICATION_CONFIG_BLUEPRINT", "MAINTENANCE_WINDOWS" - ], - "example": null + ] } } ], @@ -1357,7 +1322,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Tag" } @@ -1388,8 +1352,7 @@ "in": "query", "name": "fillTimeSeries", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -1486,8 +1449,7 @@ "in": "query", "name": "fillTimeSeries", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -1594,16 +1556,14 @@ "in": "query", "name": "fillTimeSeries", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } }, { "in": "query", "name": "includeSnapshotIds", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -1713,8 +1673,7 @@ "in": "query", "name": "nameFilter", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -1723,8 +1682,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -1733,8 +1691,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -1743,8 +1700,7 @@ "name": "page", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -1753,8 +1709,7 @@ "name": "pageSize", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -1762,8 +1717,7 @@ "in": "query", "name": "includeSnapshotIds", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -1876,7 +1830,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApplicationConfig" } @@ -2047,8 +2000,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -2080,8 +2032,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -2169,8 +2120,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -2338,7 +2288,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/EndpointConfig" } @@ -2418,8 +2367,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -2451,8 +2399,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -2494,8 +2441,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -2617,7 +2563,6 @@ }, "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/HttpEndpointConfig" } @@ -2721,8 +2666,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -2755,8 +2699,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -2818,8 +2761,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -2938,7 +2880,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ManualServiceConfig" } @@ -3057,7 +2998,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/NewManualServiceConfig" } @@ -3092,7 +3032,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ManualServiceConfig" } @@ -3124,8 +3063,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -3158,8 +3096,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -3258,7 +3195,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ServiceConfig" } @@ -3369,7 +3305,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ServiceConfig" } @@ -3399,7 +3334,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ServiceConfig" } @@ -3433,10 +3367,8 @@ ], "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } @@ -3473,8 +3405,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -3506,8 +3437,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -3555,8 +3485,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -3638,8 +3567,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -3648,8 +3576,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -3657,8 +3584,7 @@ "in": "query", "name": "applicationId", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -3670,8 +3596,7 @@ "enum": [ "ALL", "INBOUND" - ], - "example": null + ] } } ], @@ -3734,8 +3659,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -3744,7 +3668,6 @@ "schema": { "type": "integer", "format": "int32", - "example": null, "maximum": 10000, "minimum": 1 } @@ -3754,8 +3677,7 @@ "name": "offset", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -3763,8 +3685,7 @@ "name": "ingestionTime", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -3838,8 +3759,7 @@ "name": "traceId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -3847,8 +3767,7 @@ "name": "callId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -4028,8 +3947,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -4037,8 +3955,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -4046,8 +3963,7 @@ "name": "page", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -4055,40 +3971,35 @@ "name": "pageSize", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { "in": "query", "name": "targetSnapshotId", "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "eventId", "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "eventSpecificationId", "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "search", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -4096,10 +4007,8 @@ "name": "types", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } }, @@ -4108,10 +4017,8 @@ "name": "actionStatuses", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } }, @@ -4119,16 +4026,14 @@ "in": "query", "name": "orderBy", "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "orderDirection", "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -4161,7 +4066,6 @@ }, "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ActionInstance" } @@ -4175,11 +4079,6 @@ "ApiKeyAuth": [ "Default" ] - }, - { - "ApiKeyAuth": [ - "canViewAutomationActionInstances" - ] } ], "summary": "Get all automation action instances", @@ -4208,8 +4107,7 @@ "timeout": "600" }, "schema": { - "type": "string", - "example": null + "type": "string" } } }, @@ -4276,8 +4174,7 @@ "name": "actionInstanceId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -4285,8 +4182,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -4294,8 +4190,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -4343,11 +4238,6 @@ "ApiKeyAuth": [ "Default" ] - }, - { - "ApiKeyAuth": [ - "canViewAutomationActionInstances" - ] } ], "summary": "Get action instance details", @@ -4365,8 +4255,7 @@ "name": "actionInstanceId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -4374,8 +4263,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -4383,8 +4271,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -4396,8 +4283,7 @@ "comment": "The action remediated the issue" }, "schema": { - "type": "string", - "example": null + "type": "string" } } }, @@ -4515,7 +4401,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Action" } @@ -4546,8 +4431,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -4618,8 +4502,7 @@ "in": "query", "name": "targetSnapshotId", "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -4897,7 +4780,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Policy" } @@ -5053,7 +4935,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Policy" } @@ -5068,7 +4949,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Policy" } @@ -5104,8 +4984,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -5142,8 +5021,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -5238,8 +5116,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -5449,8 +5326,7 @@ "name": "from", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -5461,8 +5337,7 @@ "enum": [ "CALLS", "TRACES" - ], - "example": null + ] } }, { @@ -5481,8 +5356,7 @@ "APPLICATION_CONFIG", "APPLICATION_CONFIG_BLUEPRINT", "MAINTENANCE_WINDOWS" - ], - "example": null + ] } } ], @@ -5758,8 +5632,7 @@ "in": "query", "name": "query", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -5769,8 +5642,7 @@ "name": "pageSize", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -5780,8 +5652,7 @@ "name": "page", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } ], @@ -5807,7 +5678,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomDashboardPreview" } @@ -5891,7 +5761,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApiToken" } @@ -5940,7 +5809,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/UserBasicResult" } @@ -5977,8 +5845,7 @@ "name": "customDashboardId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -6010,8 +5877,7 @@ "name": "customDashboardId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -6095,8 +5961,7 @@ "name": "customDashboardId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -6147,8 +6012,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -6158,8 +6022,7 @@ "name": "from", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -6169,8 +6032,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -6179,8 +6041,7 @@ "in": "query", "name": "excludeTriggeredBefore", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } }, { @@ -6189,8 +6050,7 @@ "in": "query", "name": "filterEventUpdates", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } }, { @@ -6199,8 +6059,7 @@ "in": "query", "name": "includeAgentMonitoringIssues", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } }, { @@ -6209,8 +6068,7 @@ "in": "query", "name": "includeKubernetesInfoEvents", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } }, { @@ -6220,15 +6078,13 @@ "required": true, "schema": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ "INCIDENT", "ISSUE", "CHANGE" - ], - "example": null + ] }, "uniqueItems": true } @@ -6311,7 +6167,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/EventResult" } @@ -6341,10 +6196,8 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } @@ -6357,7 +6210,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/EventResult" } @@ -6391,8 +6243,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -6402,8 +6253,7 @@ "name": "from", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -6413,8 +6263,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -6423,8 +6272,7 @@ "in": "query", "name": "excludeTriggeredBefore", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } }, { @@ -6433,8 +6281,7 @@ "in": "query", "name": "filterEventUpdates", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -6461,7 +6308,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/EventResult" } @@ -6496,8 +6342,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -6507,8 +6352,7 @@ "name": "from", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -6518,8 +6362,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -6528,8 +6371,7 @@ "in": "query", "name": "excludeTriggeredBefore", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } }, { @@ -6538,8 +6380,7 @@ "in": "query", "name": "filterEventUpdates", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -6566,7 +6407,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/EventResult" } @@ -6599,10 +6439,8 @@ "name": "ids", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true } @@ -6614,7 +6452,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/AbstractIntegration" } @@ -6645,10 +6482,8 @@ "name": "ids", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true } @@ -6660,7 +6495,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/IntegrationOverview" } @@ -6726,8 +6560,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -6759,8 +6592,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -6795,8 +6627,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -6840,7 +6671,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ValidatedAlertingConfiguration" } @@ -6870,8 +6700,7 @@ "in": "query", "name": "integrationId", "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -6881,7 +6710,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ValidatedAlertingChannelInputInfo" } @@ -6912,8 +6740,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -6945,8 +6772,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -6981,8 +6807,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -7031,8 +6856,7 @@ "in": "query", "name": "applicationId", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -7045,10 +6869,8 @@ "name": "alertIds", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1000, "minItems": 0, @@ -7111,7 +6933,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApplicationAlertConfigWithMetadata" } @@ -7179,8 +7000,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -7215,8 +7035,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -7226,8 +7045,7 @@ "name": "validOn", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -7329,8 +7147,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -7388,8 +7205,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -7398,7 +7214,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -7434,8 +7249,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -7444,7 +7258,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -7480,8 +7293,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -7490,8 +7302,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -7500,7 +7311,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -7537,8 +7347,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -7568,8 +7377,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -7595,7 +7403,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ConfigVersion" } @@ -7657,8 +7464,7 @@ "MOBILE_APP", "INFRA", "LOG" - ], - "example": null + ] } } ], @@ -7703,7 +7509,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadWithLastUpdated" } @@ -7761,10 +7566,8 @@ "name": "ids", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true } @@ -7776,7 +7579,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/BuiltInEventSpecificationWithLastUpdated" } @@ -7807,8 +7609,7 @@ "name": "eventSpecificationId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -7840,8 +7641,7 @@ "name": "eventSpecificationId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -7878,8 +7678,7 @@ "name": "eventSpecificationId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -7888,7 +7687,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -7927,8 +7725,7 @@ "name": "eventSpecificationId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -7937,7 +7734,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -8009,7 +7805,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomEventSpecificationWithLastUpdated" } @@ -8084,7 +7879,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SystemRuleLabel" } @@ -8116,8 +7910,7 @@ "name": "eventSpecificationId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -8153,8 +7946,7 @@ "name": "eventSpecificationId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -8222,16 +8014,14 @@ "name": "eventSpecificationId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "allowRestore", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -8279,8 +8069,7 @@ "name": "eventSpecificationId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -8289,7 +8078,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -8328,8 +8116,7 @@ "name": "eventSpecificationId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -8338,7 +8125,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -8392,7 +8178,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/EventSpecificationInfo" } @@ -8422,10 +8207,8 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } @@ -8438,7 +8221,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/EventSpecificationInfo" } @@ -8471,8 +8253,7 @@ "in": "query", "name": "applicationId", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -8482,10 +8263,8 @@ "name": "alertIds", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1000, "minItems": 0, @@ -8550,7 +8329,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/GlobalApplicationAlertConfigWithMetadata" } @@ -8617,8 +8395,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -8653,8 +8430,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -8664,8 +8440,7 @@ "name": "validOn", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -8750,8 +8525,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -8802,8 +8576,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -8812,7 +8585,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -8848,8 +8620,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -8858,7 +8629,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -8894,8 +8664,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -8904,8 +8673,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -8914,7 +8682,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -8953,8 +8720,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -8980,7 +8746,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ConfigVersion" } @@ -9012,8 +8777,7 @@ "in": "query", "name": "sloId", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -9021,10 +8785,8 @@ "name": "alertIds", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1000, "minItems": 0, @@ -9062,7 +8824,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ServiceLevelseAlertConfigWithMetadata" } @@ -9129,8 +8890,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -9163,8 +8923,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -9172,8 +8931,7 @@ "name": "validOn", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -9231,8 +8989,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -9283,8 +9040,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -9293,7 +9049,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -9329,8 +9084,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -9339,7 +9093,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -9375,8 +9128,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -9385,8 +9137,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -9395,7 +9146,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -9432,8 +9182,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -9465,7 +9214,6 @@ }, "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ConfigVersion" } @@ -9497,8 +9245,7 @@ "in": "query", "name": "syntheticTestId", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -9506,10 +9253,8 @@ "name": "alertIds", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1000, "minItems": 0, @@ -9578,7 +9323,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SyntheticAlertConfigWithMetadata" } @@ -9646,8 +9390,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -9680,8 +9423,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -9689,8 +9431,7 @@ "name": "validOn", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -9764,8 +9505,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -9817,8 +9557,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -9827,7 +9566,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -9863,8 +9601,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -9873,7 +9610,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -9909,8 +9645,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -9919,8 +9654,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -9929,7 +9663,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -9966,8 +9699,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -10007,7 +9739,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ConfigVersion" } @@ -10040,10 +9771,8 @@ "name": "alertIds", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1000, "minItems": 0, @@ -10057,7 +9786,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/InfraAlertConfigWithMetadata" } @@ -10123,8 +9851,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -10157,8 +9884,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -10166,8 +9892,7 @@ "name": "validOn", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -10202,8 +9927,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -10254,8 +9978,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -10264,7 +9987,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -10300,8 +10022,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -10310,7 +10031,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -10346,8 +10066,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -10356,8 +10075,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -10366,7 +10084,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -10403,8 +10120,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -10414,7 +10130,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ConfigVersion" } @@ -10447,8 +10162,7 @@ "name": "eventId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -10477,7 +10191,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Event" } @@ -10510,8 +10223,7 @@ "in": "query", "name": "mobileAppId", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -10521,10 +10233,8 @@ "name": "alertIds", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1000, "minItems": 0, @@ -10605,7 +10315,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/WithMetadata" } @@ -10658,8 +10367,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -10687,8 +10395,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -10698,8 +10405,7 @@ "name": "validOn", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -10793,8 +10499,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -10844,8 +10549,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -10854,7 +10558,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -10883,8 +10586,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -10893,7 +10595,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -10922,8 +10623,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -10932,8 +10632,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -10942,7 +10641,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -10972,8 +10670,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -11003,8 +10700,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -11030,7 +10726,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ConfigVersion" } @@ -11057,8 +10752,7 @@ "in": "query", "name": "websiteId", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -11068,10 +10762,8 @@ "name": "alertIds", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1000, "minItems": 0, @@ -11159,7 +10851,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/WebsiteAlertConfigWithMetadata" } @@ -11227,8 +10918,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -11263,8 +10953,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -11274,8 +10963,7 @@ "name": "validOn", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -11364,8 +11052,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -11423,8 +11110,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -11433,7 +11119,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -11469,8 +11154,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -11479,7 +11163,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -11515,8 +11198,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -11525,8 +11207,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -11535,7 +11216,6 @@ "application/json": { "schema": { "type": "string", - "example": null, "nullable": true } } @@ -11572,8 +11252,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -11610,8 +11289,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -11637,7 +11315,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ConfigVersion" } @@ -11671,8 +11348,7 @@ "name": "eventId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -11725,8 +11401,7 @@ "in": "query", "name": "query", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -11734,8 +11409,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -11743,8 +11417,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -11752,16 +11425,14 @@ "name": "size", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { "in": "query", "name": "offline", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -11799,8 +11470,7 @@ "in": "query", "name": "query", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -11808,8 +11478,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -11817,8 +11486,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -11826,16 +11494,14 @@ "name": "size", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { "in": "query", "name": "offline", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -11884,8 +11550,7 @@ "name": "hostId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -11934,16 +11599,14 @@ "name": "hostId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "download", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } }, { @@ -11952,10 +11615,8 @@ "required": true, "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true } @@ -11996,8 +11657,7 @@ "name": "hostId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -12005,8 +11665,7 @@ "name": "supportInfoId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -12045,8 +11704,7 @@ "name": "hostId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -12085,8 +11743,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -12094,8 +11751,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -12103,8 +11759,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -12418,16 +12073,14 @@ "name": "plugin", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "filter", "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -12437,7 +12090,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MetricInstance" } @@ -12471,8 +12123,7 @@ "name": "pluginId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -12482,7 +12133,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/GetPayloadKeysResult" } @@ -12513,7 +12163,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/PluginResult" } @@ -12545,7 +12194,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/PluginResult" } @@ -12576,7 +12224,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SearchFieldResult" } @@ -12636,8 +12283,7 @@ "name": "plugin", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -12671,8 +12317,7 @@ "name": "snapshotId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -12685,10 +12330,8 @@ ], "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } @@ -12717,8 +12360,7 @@ "in": "query", "name": "offline", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -12799,8 +12441,7 @@ "name": "snapshotId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -12810,8 +12451,7 @@ "name": "payloadKey", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -12821,8 +12461,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -12832,8 +12471,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -12881,8 +12519,7 @@ "in": "query", "name": "query", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -12892,8 +12529,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -12903,8 +12539,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -12914,8 +12549,7 @@ "name": "size", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -12924,8 +12558,7 @@ "in": "query", "name": "plugin", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -12934,8 +12567,7 @@ "in": "query", "name": "offline", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -13056,8 +12688,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -13067,8 +12698,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -13078,8 +12708,7 @@ "name": "windowSize", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -13187,48 +12816,42 @@ "name": "time", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { "in": "query", "name": "origin", "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "type", "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "name", "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "version", "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "vendor", "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -13274,7 +12897,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SoftwareVersion" } @@ -13305,8 +12927,7 @@ "in": "query", "name": "includeData", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -13380,7 +13001,8 @@ "terminus": "host", "related": [ "vsphereVM", - "vsphereHost" + "vsphereHost", + "vsphereDatacenter" ] } ] @@ -13460,7 +13082,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/UsageResult" } @@ -13492,8 +13113,7 @@ "required": true, "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -13502,8 +13122,7 @@ "required": true, "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -13512,8 +13131,7 @@ "required": true, "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } ], @@ -13523,7 +13141,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/UsageResult" } @@ -13555,8 +13172,7 @@ "required": true, "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -13565,8 +13181,7 @@ "required": true, "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } ], @@ -13576,7 +13191,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/UsageResult" } @@ -13608,8 +13222,7 @@ "required": true, "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -13618,8 +13231,7 @@ "required": true, "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -13628,8 +13240,7 @@ "required": true, "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } ], @@ -13639,7 +13250,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/UsageResult" } @@ -13671,8 +13281,7 @@ "required": true, "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -13681,8 +13290,7 @@ "required": true, "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } ], @@ -13692,7 +13300,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/UsageResult" } @@ -13755,8 +13362,7 @@ "in": "query", "name": "fillTimeSeries", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -14007,8 +13613,7 @@ "name": "beaconType", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -14028,8 +13633,7 @@ "APPLICATION_CONFIG", "APPLICATION_CONFIG_BLUEPRINT", "MAINTENANCE_WINDOWS" - ], - "example": null + ] } } ], @@ -14100,7 +13704,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MobileAppMonitoringMetricDescription" } @@ -14141,7 +13744,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Tag" } @@ -14178,7 +13780,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MobileApp" } @@ -14206,8 +13807,7 @@ "in": "query", "name": "name", "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -14254,8 +13854,7 @@ "name": "mobileAppId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -14284,16 +13883,14 @@ "name": "mobileAppId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "name", "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -14342,8 +13939,7 @@ "name": "mobileAppId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -14383,8 +13979,7 @@ "name": "mobileAppId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -14432,8 +14027,7 @@ "name": "mobileAppId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -14465,8 +14059,7 @@ "name": "mobileAppId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -14474,8 +14067,7 @@ "content": { "text/csv": { "schema": { - "type": "string", - "example": null + "type": "string" } } } @@ -14511,8 +14103,7 @@ "name": "mobileAppId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -14551,8 +14142,7 @@ "name": "mobileAppId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -14635,8 +14225,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" }, "style": "matrix" }, @@ -14646,8 +14235,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "style": "matrix" } @@ -14731,7 +14319,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MobileAppMonitoringBeacon" } @@ -14850,8 +14437,7 @@ "name": "from", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -14859,8 +14445,7 @@ "name": "to", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -14868,8 +14453,7 @@ "name": "maxResults", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } ], @@ -14887,7 +14471,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ReleaseWithMetadata" } @@ -14955,8 +14538,7 @@ "name": "releaseId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -14990,8 +14572,7 @@ "name": "releaseId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -15033,8 +14614,7 @@ "name": "releaseId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -15081,16 +14661,14 @@ "name": "offset", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { "in": "query", "name": "query", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -15098,8 +14676,7 @@ "name": "pageSize", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } ], @@ -15173,7 +14750,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApdexConfiguration" } @@ -15243,8 +14819,7 @@ "enum": [ "APPLICATION", "WEBSITE" - ], - "example": null + ] } }, { @@ -15254,8 +14829,7 @@ "name": "entityId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -15299,7 +14873,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApdexConfiguration" } @@ -15329,8 +14902,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -15363,8 +14935,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -15416,7 +14987,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApiToken" } @@ -15485,8 +15055,7 @@ "name": "internalId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -15518,8 +15087,7 @@ "name": "internalId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -15554,8 +15122,7 @@ "name": "internalId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -15605,16 +15172,14 @@ "name": "offset", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { "in": "query", "name": "query", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -15622,8 +15187,7 @@ "name": "pageSize", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } ], @@ -15756,8 +15320,7 @@ "name": "email", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -15790,7 +15353,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/InvitationResult" } @@ -15825,7 +15387,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Invitation" } @@ -15848,7 +15409,6 @@ }, "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/InvitationResponse" } @@ -15865,8 +15425,7 @@ ] }, "schema": { - "type": "string", - "example": null + "type": "string" } } } @@ -15896,7 +15455,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ValidatedMaintenanceConfigWithStatus" } @@ -15928,8 +15486,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -15962,8 +15519,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -15999,8 +15555,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -16091,7 +15646,6 @@ }, "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApiGroup" } @@ -16163,8 +15717,7 @@ "name": "email", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -16224,7 +15777,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApiGroup" } @@ -16257,8 +15809,7 @@ "name": "groupId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -16267,10 +15818,8 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } @@ -16311,8 +15860,7 @@ "name": "groupId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -16321,10 +15869,8 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } @@ -16365,8 +15911,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -16398,8 +15943,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -16520,8 +16064,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -16569,8 +16112,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -16578,8 +16120,7 @@ "name": "userId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -16621,7 +16162,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/GroupMapping" } @@ -16755,8 +16295,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -16788,8 +16327,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -16862,8 +16400,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -16872,10 +16409,8 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } @@ -16888,7 +16423,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/RCAFeedback" } @@ -17003,7 +16537,6 @@ "application/json": { "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SliConfigurationWithLastUpdated" } @@ -17072,8 +16605,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -17106,8 +16638,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -17143,8 +16674,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -17191,8 +16721,7 @@ "name": "pageSize", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { @@ -17200,16 +16729,14 @@ "name": "page", "schema": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, { "in": "query", "name": "query", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -17217,10 +16744,8 @@ "name": "tag", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true } @@ -17233,8 +16758,7 @@ "enum": [ "application", "website" - ], - "example": null + ] } }, { @@ -17245,8 +16769,7 @@ "enum": [ "name", "entityType" - ], - "example": null + ] } }, { @@ -17257,8 +16780,24 @@ "enum": [ "ASC", "DESC" - ], - "example": null + ] + } + }, + { + "in": "query", + "name": "sloIds", + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "in": "query", + "name": "refresh", + "schema": { + "type": "boolean" } } ], @@ -17466,8 +17005,7 @@ "in": "query", "name": "query", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -17475,10 +17013,8 @@ "name": "tag", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true } @@ -17491,8 +17027,7 @@ "enum": [ "application", "website" - ], - "example": null + ] } } ], @@ -17522,10 +17057,8 @@ ], "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } @@ -17555,8 +17088,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -17573,8 +17105,7 @@ ] }, "schema": { - "type": "string", - "example": null + "type": "string" } } }, @@ -17601,8 +17132,14 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" + } + }, + { + "in": "query", + "name": "refresh", + "schema": { + "type": "boolean" } } ], @@ -17658,8 +17195,7 @@ ] }, "schema": { - "type": "string", - "example": null + "type": "string" } } }, @@ -17686,8 +17222,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -17782,8 +17317,7 @@ ] }, "schema": { - "type": "string", - "example": null + "type": "string" } } }, @@ -17903,7 +17437,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/UserResult" } @@ -17980,8 +17513,7 @@ "name": "email", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -18027,8 +17559,7 @@ "name": "userId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -18061,8 +17592,7 @@ "name": "userId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -18095,7 +17625,6 @@ }, "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/UserResult" } @@ -18233,7 +17762,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ValidatedMaintenanceConfigV2WithStateAndOccurrence" } @@ -18266,8 +17794,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -18301,8 +17828,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -18360,8 +17886,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -18524,8 +18049,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -18585,8 +18109,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -18665,7 +18188,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SliConfigurationWithLastUpdated" } @@ -18737,8 +18259,7 @@ "enum": [ "APPLICATION", "WEBSITE" - ], - "example": null + ] } }, { @@ -18746,8 +18267,7 @@ "name": "entityId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -18777,7 +18297,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SliConfigurationWithLastUpdated" } @@ -18809,8 +18328,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -18842,8 +18360,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -18903,8 +18420,7 @@ "name": "sliId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -18915,8 +18431,7 @@ "required": true, "schema": { "type": "number", - "format": "double", - "example": null + "format": "double" } }, { @@ -18927,8 +18442,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, { @@ -18939,8 +18453,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -18959,7 +18472,6 @@ }, "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SliReport" } @@ -18976,7 +18488,7 @@ ] } ], - "summary": "Generate SLI report", + "summary": "Generate SLI report (Limitation: the Classic Edition API report can be available one hour after the SLI configuration created; other editions are around one minute.)", "tags": [ "SLI Report" ] @@ -18991,24 +18503,21 @@ "name": "sloId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "from", "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "to", "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -19707,7 +19216,6 @@ }, "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SloReport" } @@ -19751,8 +19259,7 @@ "APPLICATION_CONFIG", "APPLICATION_CONFIG_BLUEPRINT", "MAINTENANCE_WINDOWS" - ], - "example": null + ] } } ], @@ -20619,8 +20126,7 @@ "name": "testid", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -20628,8 +20134,7 @@ "name": "testresultid", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -20637,8 +20142,7 @@ "name": "startTime", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -20684,8 +20188,7 @@ "name": "testid", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -20693,8 +20196,7 @@ "name": "testresultid", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -20702,8 +20204,7 @@ "name": "type", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -20711,10 +20212,8 @@ "name": "name", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } }, @@ -20723,8 +20222,7 @@ "name": "startTime", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -20769,8 +20267,7 @@ "name": "testid", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -20778,8 +20275,7 @@ "name": "testresultid", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -20787,8 +20283,7 @@ "name": "type", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -20796,8 +20291,7 @@ "name": "startTime", "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } ], @@ -20846,10 +20340,8 @@ ], "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } @@ -20915,8 +20407,7 @@ "name": "name", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -20949,24 +20440,21 @@ "in": "query", "name": "sort", "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "offset", "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "limit", "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -20974,10 +20462,8 @@ "name": "filter", "schema": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } @@ -21060,7 +20546,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SyntheticLocation" } @@ -21091,8 +20576,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -21124,8 +20608,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -21196,16 +20679,14 @@ "in": "query", "name": "applicationId", "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "locationId", "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -21285,7 +20766,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SyntheticTest" } @@ -21405,8 +20885,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -21438,8 +20917,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -21508,8 +20986,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -21558,8 +21035,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -21628,8 +21104,7 @@ "in": "query", "name": "fillTimeSeries", "schema": { - "type": "boolean", - "example": null + "type": "boolean" } } ], @@ -21916,8 +21391,7 @@ "name": "beaconType", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -21939,8 +21413,7 @@ "APPLICATION_CONFIG", "APPLICATION_CONFIG_BLUEPRINT", "MAINTENANCE_WINDOWS" - ], - "example": null + ] } } ], @@ -22041,7 +21514,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/WebsiteMonitoringMetricDescription" } @@ -22084,7 +21556,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Tag" } @@ -22125,7 +21596,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Website" } @@ -22147,8 +21617,7 @@ "in": "query", "name": "name", "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -22194,8 +21663,7 @@ "name": "websiteId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -22227,8 +21695,7 @@ "name": "websiteId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -22262,16 +21729,14 @@ "name": "websiteId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { "in": "query", "name": "name", "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -22320,8 +21785,7 @@ "name": "websiteId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -22361,8 +21825,7 @@ "name": "websiteId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -22408,8 +21871,7 @@ "name": "websiteId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -22440,8 +21902,7 @@ "name": "websiteId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -22449,8 +21910,7 @@ "content": { "text/csv": { "schema": { - "type": "string", - "example": null + "type": "string" } } } @@ -22487,8 +21947,7 @@ "name": "websiteId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -22527,8 +21986,7 @@ "name": "websiteId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -22574,8 +22032,7 @@ "name": "websiteId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -22583,8 +22040,7 @@ "name": "sourceMapConfigId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -22615,8 +22071,7 @@ "name": "websiteId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } }, { @@ -22624,8 +22079,7 @@ "name": "sourceMapConfigId", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" } } ], @@ -22634,20 +22088,16 @@ "multipart/form-data": { "schema": { "type": "object", - "example": null, "properties": { "fileFormat": { - "type": "string", - "example": null + "type": "string" }, "sourceMap": { "type": "string", - "format": "binary", - "example": null + "format": "binary" }, "url": { - "type": "string", - "example": null + "type": "string" } } } @@ -22726,8 +22176,7 @@ "name": "id", "required": true, "schema": { - "type": "string", - "example": null + "type": "string" }, "style": "matrix" }, @@ -22739,8 +22188,7 @@ "required": true, "schema": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "style": "matrix" } @@ -22854,7 +22302,6 @@ ], "schema": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/WebsiteMonitoringBeacon" } @@ -22991,19 +22438,15 @@ }, "propertyName": "kind" }, - "example": null, "properties": { "id": { - "type": "string", - "example": null + "type": "string" }, "kind": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -23025,16 +22468,13 @@ }, "propertyName": "ruleType" }, - "example": null, "properties": { "ruleType": { - "type": "string", - "example": null + "type": "string" }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, "required": [ @@ -23043,7 +22483,6 @@ }, "AccessLogEntry": { "type": "object", - "example": null, "properties": { "action": { "type": "string", @@ -23053,29 +22492,23 @@ "LOGIN", "FAILED_LOGIN", "LOGOUT" - ], - "example": null + ] }, "email": { - "type": "string", - "example": null + "type": "string" }, "fullName": { - "type": "string", - "example": null + "type": "string" }, "tenantId": { - "type": "string", - "example": null + "type": "string" }, "tenantUnitId": { - "type": "string", - "example": null + "type": "string" }, "timestamp": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, "required": [ @@ -23088,37 +22521,31 @@ }, "AccessLogResponse": { "type": "object", - "example": null, "properties": { "entries": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/AccessLogEntry" } }, "total": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } }, "AccessRule": { "type": "object", - "example": null, "properties": { "accessType": { "type": "string", "enum": [ "READ", "READ_WRITE" - ], - "example": null + ] }, "relatedId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, @@ -23130,8 +22557,7 @@ "ROLE", "TEAM", "GLOBAL" - ], - "example": null + ] } }, "required": [ @@ -23141,35 +22567,29 @@ }, "Action": { "type": "object", - "example": null, "properties": { "createdAt": { "type": "string", - "format": "date-time", - "example": null + "format": "date-time" }, "description": { "type": "string", - "example": null, "maxLength": 512, "minLength": 0 }, "fields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Field" } }, "id": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 }, "inputParameters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Parameter" } @@ -23179,33 +22599,27 @@ }, "modifiedAt": { "type": "string", - "format": "date-time", - "example": null + "format": "date-time" }, "name": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 }, "outputParameters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Parameter" } }, "tags": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "type": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 } @@ -23220,18 +22634,15 @@ }, "ActionConfiguration": { "type": "object", - "example": null, "properties": { "action": { "$ref": "#/components/schemas/Action" }, "agentId": { - "type": "string", - "example": null + "type": "string" }, "inputParameterValues": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ParameterValue" } @@ -23243,31 +22654,24 @@ }, "ActionInstance": { "type": "object", - "example": null, "properties": { "actionDescription": { - "type": "string", - "example": null + "type": "string" }, "actionId": { - "type": "string", - "example": null + "type": "string" }, "actionInstanceId": { - "type": "string", - "example": null + "type": "string" }, "actionName": { - "type": "string", - "example": null + "type": "string" }, "actorId": { - "type": "string", - "example": null + "type": "string" }, "actorName": { - "type": "string", - "example": null + "type": "string" }, "actorType": { "type": "string", @@ -23276,85 +22680,68 @@ "USER", "APITOKEN", "POLICY" - ], - "example": null + ] }, "createdDate": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "endDate": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "errorMessage": { - "type": "string", - "example": null + "type": "string" }, "eventEntityType": { - "type": "string", - "example": null + "type": "string" }, "eventId": { - "type": "string", - "example": null + "type": "string" }, "eventSpecificationId": { - "type": "string", - "example": null + "type": "string" }, "externalSourceType": { - "type": "string", - "example": null + "type": "string" }, "hostSnapshotId": { - "type": "string", - "example": null + "type": "string" }, "inputParameters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ActionInstanceParameter" } }, "metadata": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ActionInstanceMetadataEntry" } }, "output": { - "type": "string", - "example": null + "type": "string" }, "outputParameters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ActionInstanceParameter" } }, "policyId": { - "type": "string", - "example": null + "type": "string" }, "problemText": { - "type": "string", - "example": null + "type": "string" }, "returnCode": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "startDate": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "status": { "type": "string", @@ -23366,12 +22753,10 @@ "FAILED", "READY", "TIMEOUT" - ], - "example": null + ] }, "targetSnapshotId": { - "type": "string", - "example": null + "type": "string" }, "type": { "type": "string", @@ -23383,8 +22768,7 @@ "GITHUB", "GITLAB", "JIRA" - ], - "example": null + ] } }, "required": [ @@ -23395,15 +22779,12 @@ }, "ActionInstanceMetadataEntry": { "type": "object", - "example": null, "properties": { "name": { - "type": "string", - "example": null + "type": "string" }, "value": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -23412,23 +22793,18 @@ }, "ActionInstanceParameter": { "type": "object", - "example": null, "properties": { "displayName": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" }, "type": { - "type": "string", - "example": null + "type": "string" }, "value": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -23438,27 +22814,22 @@ }, "ActionMatch": { "type": "object", - "example": null, "properties": { "action": { "$ref": "#/components/schemas/Action" }, "aiEngine": { - "type": "string", - "example": null + "type": "string" }, "color": { - "type": "string", - "example": null + "type": "string" }, "confidence": { - "type": "string", - "example": null + "type": "string" }, "score": { "type": "number", - "format": "double", - "example": null + "format": "double" } }, "required": [ @@ -23471,42 +22842,33 @@ }, "ActionSearchSpace": { "type": "object", - "example": null, "properties": { "action": { "$ref": "#/components/schemas/Action" }, "description": { - "type": "string", - "example": null + "type": "string" }, "eventId": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" }, "searchOrder": { - "type": "string", - "example": null + "type": "string" }, "searchTarget": { - "type": "string", - "example": null + "type": "string" }, "tags": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -23521,12 +22883,10 @@ }, { "type": "object", - "example": null, "properties": { "deviationFactor": { "type": "number", "format": "double", - "example": null, "exclusiveMaximum": false, "exclusiveMinimum": false, "maximum": 16, @@ -23535,24 +22895,20 @@ } } ], - "example": null, "required": [ "operator" ] }, "AdjustedTimeframe": { "type": "object", - "example": null, "properties": { "to": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "windowSize": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -23562,23 +22918,19 @@ }, "AgentConfigurationUpdate": { "type": "object", - "example": null, "properties": { "remoteBranch": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "remoteName": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "remoteUri": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 } @@ -23590,22 +22942,18 @@ { "$ref": "#/components/schemas/Event" } - ], - "example": null + ] }, "AlertingConfiguration": { "type": "object", - "example": null, "properties": { "alertName": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/StaticStringField" }, @@ -23617,16 +22965,13 @@ }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "integrationIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -23634,8 +22979,7 @@ }, "muteUntil": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, "required": [ @@ -23648,17 +22992,14 @@ }, "AlertingConfigurationWithLastUpdated": { "type": "object", - "example": null, "properties": { "alertName": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/StaticStringField" }, @@ -23670,16 +23011,13 @@ }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "integrationIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -23688,13 +23026,11 @@ "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "muteUntil": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, "required": [ @@ -23707,25 +23043,21 @@ }, "ApdexConfiguration": { "type": "object", - "example": null, "properties": { "apdexEntity": { "$ref": "#/components/schemas/ApdexEntity" }, "apdexName": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "createdAt": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 } @@ -23738,14 +23070,12 @@ }, "ApdexConfigurationInput": { "type": "object", - "example": null, "properties": { "apdexEntity": { "$ref": "#/components/schemas/ApdexEntity" }, "apdexName": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 } @@ -23764,15 +23094,12 @@ }, "propertyName": "apdexType" }, - "example": null, "properties": { "apdexType": { - "type": "string", - "example": null + "type": "string" }, "entityId": { - "type": "string", - "example": null + "type": "string" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -23780,7 +23107,6 @@ "threshold": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 } }, @@ -23792,51 +23118,41 @@ }, "ApdexReport": { "type": "object", - "example": null, "properties": { "apdexId": { - "type": "string", - "example": null + "type": "string" }, "apdexScore": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } }, "from": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "to": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } }, "ApiCreateGroup": { "type": "object", - "example": null, "properties": { "members": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApiMember" }, "uniqueItems": true }, "name": { - "type": "string", - "example": null + "type": "string" }, "permissionSet": { "$ref": "#/components/schemas/ApiPermissionSet" @@ -23850,25 +23166,21 @@ }, "ApiGroup": { "type": "object", - "example": null, "properties": { "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "members": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApiMember" }, "uniqueItems": true }, "name": { - "type": "string", - "example": null + "type": "string" }, "permissionSet": { "$ref": "#/components/schemas/ApiPermissionSet" @@ -23883,15 +23195,12 @@ }, "ApiMember": { "type": "object", - "example": null, "properties": { "email": { - "type": "string", - "example": null + "type": "string" }, "userId": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -23900,11 +23209,9 @@ }, "ApiPermissionSet": { "type": "object", - "example": null, "properties": { "applicationIds": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ScopeBinding" }, @@ -23914,7 +23221,6 @@ }, "businessPerspectiveIds": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ScopeBinding" }, @@ -23927,7 +23233,6 @@ }, "kubernetesClusterUUIDs": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ScopeBinding" }, @@ -23937,7 +23242,6 @@ }, "kubernetesNamespaceUIDs": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ScopeBinding" }, @@ -23947,7 +23251,6 @@ }, "mobileAppIds": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ScopeBinding" }, @@ -23957,10 +23260,8 @@ }, "permissions": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -23971,7 +23272,6 @@ }, "syntheticTestIds": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ScopeBinding" }, @@ -23981,7 +23281,6 @@ }, "websiteIds": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ScopeBinding" }, @@ -24004,15 +23303,12 @@ }, "ApiRestrictedApplicationFilter": { "type": "object", - "example": null, "properties": { "label": { - "type": "string", - "example": null + "type": "string" }, "restrictingApplicationId": { - "type": "string", - "example": null + "type": "string" }, "scope": { "type": "string", @@ -24020,8 +23316,7 @@ "INCLUDE_NO_DOWNSTREAM", "INCLUDE_IMMEDIATE_DOWNSTREAM_DATABASE_AND_MESSAGING", "INCLUDE_ALL_DOWNSTREAM" - ], - "example": null + ] }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -24030,235 +23325,174 @@ }, "ApiToken": { "type": "object", - "example": null, "properties": { "accessGrantingToken": { - "type": "string", - "example": null + "type": "string" }, "canConfigureAgentRunMode": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureAgents": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureApiTokens": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureApplicationSmartAlerts": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureApplications": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureAuthenticationMethods": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureAutomationActions": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureAutomationPolicies": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureEumApplications": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureEventsAndAlerts": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureGlobalAlertPayload": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureGlobalApplicationSmartAlerts": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureGlobalInfraSmartAlerts": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureGlobalLogSmartAlerts": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureGlobalSyntheticSmartAlerts": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureIntegrations": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureLogManagement": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureMaintenanceWindows": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureMobileAppMonitoring": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureMobileAppSmartAlerts": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigurePersonalApiTokens": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureReleases": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureServiceLevelIndicators": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureServiceMapping": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureSessionSettings": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureSyntheticCredentials": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureSyntheticLocations": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureSyntheticTests": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureTeams": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureUsers": { - "type": "boolean", - "example": null + "type": "boolean" }, "canConfigureWebsiteSmartAlerts": { - "type": "boolean", - "example": null + "type": "boolean" }, "canCreateHeapDump": { - "type": "boolean", - "example": null + "type": "boolean" }, "canCreatePublicCustomDashboards": { - "type": "boolean", - "example": null + "type": "boolean" }, "canCreateThreadDump": { - "type": "boolean", - "example": null + "type": "boolean" }, "canDeleteLogs": { - "type": "boolean", - "example": null + "type": "boolean" }, "canEditAllAccessibleCustomDashboards": { - "type": "boolean", - "example": null + "type": "boolean" }, "canInstallNewAgents": { - "type": "boolean", - "example": null + "type": "boolean" }, "canManuallyCloseIssue": { - "type": "boolean", - "example": null + "type": "boolean" }, "canRunAutomationActions": { - "type": "boolean", - "example": null + "type": "boolean" }, "canUseSyntheticCredentials": { - "type": "boolean", - "example": null + "type": "boolean" }, "canViewAccountAndBillingInformation": { - "type": "boolean", - "example": null + "type": "boolean" }, "canViewAuditLog": { - "type": "boolean", - "example": null - }, - "canViewAutomationActionInstances": { - "type": "boolean", - "example": null + "type": "boolean" }, "canViewBizAlerts": { - "type": "boolean", - "example": null + "type": "boolean" }, "canViewBusinessActivities": { - "type": "boolean", - "example": null + "type": "boolean" }, "canViewBusinessProcessDetails": { - "type": "boolean", - "example": null + "type": "boolean" }, "canViewBusinessProcesses": { - "type": "boolean", - "example": null + "type": "boolean" }, "canViewLogVolume": { - "type": "boolean", - "example": null + "type": "boolean" }, "canViewLogs": { - "type": "boolean", - "example": null + "type": "boolean" }, "canViewSyntheticLocations": { - "type": "boolean", - "example": null + "type": "boolean" }, "canViewSyntheticTestResults": { - "type": "boolean", - "example": null + "type": "boolean" }, "canViewSyntheticTests": { - "type": "boolean", - "example": null + "type": "boolean" }, "canViewTraceDetails": { - "type": "boolean", - "example": null + "type": "boolean" }, "id": { - "type": "string", - "example": null + "type": "string" }, "internalId": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -24269,7 +23503,6 @@ }, "AppDataMetricConfiguration": { "type": "object", - "example": null, "properties": { "aggregation": { "type": "string", @@ -24287,21 +23520,17 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "granularity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "metric": { - "type": "string", - "example": null + "type": "string" }, "numeratorTagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -24314,11 +23543,9 @@ }, "Application": { "type": "object", - "example": null, "properties": { "boundaryScope": { - "type": "string", - "example": null + "type": "string" }, "entityType": { "type": "string", @@ -24326,16 +23553,13 @@ "APPLICATION", "SERVICE", "ENDPOINT" - ], - "example": null + ] }, "id": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -24346,14 +23570,11 @@ }, "ApplicationAlertConfig": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -24361,27 +23582,23 @@ }, "applicationId": { "type": "string", - "example": null, "writeOnly": true }, "applications": { "type": "object", "additionalProperties": { "$ref": "#/components/schemas/ApplicationNode" - }, - "example": null + } }, "boundaryScope": { "type": "string", "enum": [ "ALL", "INBOUND" - ], - "example": null + ] }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -24390,7 +23607,6 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, @@ -24400,8 +23616,7 @@ "PER_AP", "PER_AP_SERVICE", "PER_AP_ENDPOINT" - ], - "example": null + ] }, "granularity": { "type": "integer", @@ -24414,20 +23629,16 @@ 900000, 1200000, 1800000 - ], - "example": null + ] }, "includeInternal": { - "type": "boolean", - "example": null + "type": "boolean" }, "includeSynthetic": { - "type": "boolean", - "example": null + "type": "boolean" }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -24436,15 +23647,13 @@ }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagFilter" }, @@ -24458,8 +23667,7 @@ "$ref": "#/components/schemas/ApplicationTimeThreshold" }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -24479,14 +23687,11 @@ }, "ApplicationAlertConfigWithMetadata": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -24494,7 +23699,6 @@ }, "applicationId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, @@ -24502,26 +23706,22 @@ "type": "object", "additionalProperties": { "$ref": "#/components/schemas/ApplicationNode" - }, - "example": null + } }, "boundaryScope": { "type": "string", "enum": [ "ALL", "INBOUND" - ], - "example": null + ] }, "created": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -24530,13 +23730,11 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "evaluationType": { "type": "string", @@ -24544,8 +23742,7 @@ "PER_AP", "PER_AP_SERVICE", "PER_AP_ENDPOINT" - ], - "example": null + ] }, "granularity": { "type": "integer", @@ -24558,53 +23755,44 @@ 900000, 1200000, 1800000 - ], - "example": null + ] }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "includeInternal": { - "type": "boolean", - "example": null + "type": "boolean" }, "includeSynthetic": { - "type": "boolean", - "example": null + "type": "boolean" }, "initialCreated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "readOnly": { - "type": "boolean", - "example": null + "type": "boolean" }, "rule": { "$ref": "#/components/schemas/ApplicationAlertRule" }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagFilter" }, @@ -24618,8 +23806,7 @@ "$ref": "#/components/schemas/ApplicationTimeThreshold" }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -24651,7 +23838,6 @@ }, "propertyName": "alertType" }, - "example": null, "properties": { "aggregation": { "type": "string", @@ -24669,20 +23855,16 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "alertType": { - "type": "string", - "example": null + "type": "string" }, "metricName": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -24698,28 +23880,23 @@ }, { "type": "object", - "example": null, "properties": { "boundaryScope": { "type": "string", "enum": [ "ALL", "INBOUND" - ], - "example": null + ] }, "includeInternal": { - "type": "boolean", - "example": null + "type": "boolean" }, "includeSynthetic": { - "type": "boolean", - "example": null + "type": "boolean" } } } ], - "example": null, "required": [ "boundaryScope", "entityId", @@ -24728,11 +23905,9 @@ }, "ApplicationConfig": { "type": "object", - "example": null, "properties": { "accessRules": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/AccessRule" }, @@ -24745,18 +23920,15 @@ "ALL", "INBOUND", "DEFAULT" - ], - "example": null + ] }, "id": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 }, "label": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 }, @@ -24769,8 +23941,7 @@ "INCLUDE_NO_DOWNSTREAM", "INCLUDE_IMMEDIATE_DOWNSTREAM_DATABASE_AND_MESSAGING", "INCLUDE_ALL_DOWNSTREAM" - ], - "example": null + ] }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -24792,46 +23963,39 @@ }, { "type": "object", - "example": null, "properties": { "applicationId": { - "type": "string", - "example": null + "type": "string" }, "probableRootCause": { "type": "object", "additionalProperties": { - "type": "object", - "example": null + "type": "object" }, - "example": null, "writeOnly": true } } } - ], - "example": null + ] }, "ApplicationExtendedTraversal": { "type": "object", "description": "extended Traversal", - "example": null, "properties": { "related": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ "host", + "vsphereDatacenter", "vsphereHost", "vsphereVM", "kubernetesService", "kubernetesPod", "kubernetesPersistentVolume", "kubernetesPersistentVolumeClaim" - ], - "example": null + ] } }, "terminus": { @@ -24839,14 +24003,14 @@ "description": "Plugin ID of terminus", "enum": [ "host", + "vsphereDatacenter", "vsphereHost", "vsphereVM", "kubernetesService", "kubernetesPod", "kubernetesPersistentVolume", "kubernetesPersistentVolumeClaim" - ], - "example": null + ] } }, "required": [ @@ -24856,7 +24020,6 @@ }, "ApplicationItem": { "type": "object", - "example": null, "properties": { "application": { "$ref": "#/components/schemas/Application" @@ -24865,17 +24028,13 @@ "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } - }, - "example": null + } } }, "required": [ @@ -24885,14 +24044,12 @@ }, "ApplicationMetricResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApplicationItem" } @@ -24900,19 +24057,16 @@ "page": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "pageSize": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -24922,24 +24076,20 @@ }, "ApplicationNode": { "type": "object", - "example": null, "properties": { "applicationId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "inclusive": { - "type": "boolean", - "example": null + "type": "boolean" }, "services": { "type": "object", "additionalProperties": { "$ref": "#/components/schemas/ServiceNode" - }, - "example": null + } } }, "required": [ @@ -24949,39 +24099,32 @@ }, "ApplicationResult": { "type": "object", - "example": null, "properties": { "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Application" } }, "page": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "pageSize": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "totalHits": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } }, "ApplicationScope": { "type": "object", - "example": null, "properties": { "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 } @@ -24992,15 +24135,12 @@ }, "ApplicationScopeWithMetadata": { "type": "object", - "example": null, "properties": { "id": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -25015,32 +24155,26 @@ }, { "type": "object", - "example": null, "properties": { "applicationId": { - "type": "string", - "example": null + "type": "string" }, "boundaryScope": { "type": "string", "enum": [ "ALL", "INBOUND" - ], - "example": null + ] }, "endpointId": { - "type": "string", - "example": null + "type": "string" }, "serviceId": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "boundaryScope" ] @@ -25053,40 +24187,32 @@ }, { "type": "object", - "example": null, "properties": { "applicationId": { - "type": "string", - "example": null + "type": "string" }, "boundaryScope": { "type": "string", "enum": [ "ALL", "INBOUND" - ], - "example": null + ] }, "endpointId": { - "type": "string", - "example": null + "type": "string" }, "includeInternal": { - "type": "boolean", - "example": null + "type": "boolean" }, "includeSynthetic": { - "type": "boolean", - "example": null + "type": "boolean" }, "serviceId": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "applicationId", "boundaryScope" @@ -25102,16 +24228,13 @@ }, "propertyName": "type" }, - "example": null, "properties": { "timeWindow": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -25120,35 +24243,28 @@ }, "AuditLogEntry": { "type": "object", - "example": null, "properties": { "action": { - "type": "string", - "example": null + "type": "string" }, "actor": { "$ref": "#/components/schemas/LogEntryActor" }, "id": { - "type": "string", - "example": null + "type": "string" }, "message": { - "type": "string", - "example": null + "type": "string" }, "meta": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } }, "timestamp": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, "required": [ @@ -25161,29 +24277,24 @@ }, "AuditLogUiResponse": { "type": "object", - "example": null, "properties": { "entries": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/AuditLogEntry" } }, "total": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } }, "Author": { "type": "object", - "example": null, "properties": { "id": { - "type": "string", - "example": null + "type": "string" }, "type": { "type": "string", @@ -25192,8 +24303,7 @@ "USER", "INSTANA", "UNKNOWN" - ], - "example": null + ] } } }, @@ -25205,7 +24315,6 @@ }, { "type": "object", - "example": null, "properties": { "badEventsFilter": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -25216,14 +24325,12 @@ "threshold": { "type": "number", "format": "double", - "example": null, "exclusiveMinimum": false, "minimum": 0 } } } ], - "example": null, "required": [ "blueprint", "type" @@ -25237,18 +24344,15 @@ }, { "type": "object", - "example": null, "properties": { "applicationId": { - "type": "string", - "example": null + "type": "string" }, "badEventFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" }, "badEventFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagFilter" }, @@ -25260,19 +24364,16 @@ "enum": [ "ALL", "INBOUND" - ], - "example": null + ] }, "endpointId": { - "type": "string", - "example": null + "type": "string" }, "goodEventFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" }, "goodEventFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagFilter" }, @@ -25280,32 +24381,26 @@ "minItems": 1 }, "includeInternal": { - "type": "boolean", - "example": null + "type": "boolean" }, "includeSynthetic": { - "type": "boolean", - "example": null + "type": "boolean" }, "serviceId": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "boundaryScope" ] }, "AvailableMetrics": { "type": "object", - "example": null, "properties": { "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MetricMetadata" }, @@ -25315,14 +24410,11 @@ }, "AvailablePlugins": { "type": "object", - "example": null, "properties": { "plugins": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true } @@ -25330,11 +24422,9 @@ }, "BackendTraceReference": { "type": "object", - "example": null, "properties": { "traceId": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -25349,15 +24439,13 @@ }, { "type": "object", - "example": null, "properties": { "conjunction": { "type": "string", "enum": [ "AND", "OR" - ], - "example": null + ] }, "left": { "$ref": "#/components/schemas/MatchExpressionDTO" @@ -25368,7 +24456,6 @@ } } ], - "example": null, "required": [ "conjunction", "left", @@ -25383,23 +24470,19 @@ }, { "type": "object", - "example": null, "properties": { "browser": { "type": "string", "enum": [ "chrome", "firefox" - ], - "example": null + ] }, "recordVideo": { - "type": "boolean", - "example": null + "type": "boolean" }, "script": { "type": "string", - "example": null, "maxLength": 1048576, "minLength": 0 }, @@ -25408,8 +24491,7 @@ "enum": [ "Basic", "Jest" - ], - "example": null + ] }, "scripts": { "$ref": "#/components/schemas/MultipleScriptsConfiguration" @@ -25417,7 +24499,6 @@ } } ], - "example": null, "required": [ "markSyntheticCall", "syntheticType" @@ -25425,25 +24506,20 @@ }, "BuiltInEventSpecification": { "type": "object", - "example": null, "properties": { "description": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "hidden": { - "type": "boolean", - "example": null + "type": "boolean" }, "hyperParams": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/HyperParam" }, @@ -25452,19 +24528,16 @@ }, "id": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "ruleInputs": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/RuleInput" }, @@ -25473,18 +24546,15 @@ }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "shortPluginId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -25497,25 +24567,20 @@ }, "BuiltInEventSpecificationWithLastUpdated": { "type": "object", - "example": null, "properties": { "description": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "hidden": { - "type": "boolean", - "example": null + "type": "boolean" }, "hyperParams": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/HyperParam" }, @@ -25524,25 +24589,21 @@ }, "id": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "ruleInputs": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/RuleInput" }, @@ -25551,18 +24612,15 @@ }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "shortPluginId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -25575,7 +24633,6 @@ }, "BusinessActivity": { "type": "object", - "example": null, "properties": { "activityId": { "type": "string", @@ -25603,7 +24660,6 @@ }, "callId": { "type": "string", - "example": null, "writeOnly": true }, "processDefinitionId": { @@ -25631,7 +24687,6 @@ }, "CallGroupsItem": { "type": "object", - "example": null, "properties": { "cursor": { "$ref": "#/components/schemas/IngestionOffsetCursor" @@ -25640,26 +24695,20 @@ "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } - }, - "example": null + } }, "name": { - "type": "string", - "example": null + "type": "string" }, "timestamp": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -25671,18 +24720,15 @@ }, "CallGroupsResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "canLoadMore": { - "type": "boolean", - "example": null + "type": "boolean" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CallGroupsItem" } @@ -25690,19 +24736,16 @@ "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRepresentedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRetainedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -25712,7 +24755,6 @@ }, "CallRelation": { "type": "object", - "example": null, "properties": { "endpoint": { "$ref": "#/components/schemas/EndpointSimple" @@ -25722,17 +24764,14 @@ }, "technologies": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } }, "ChangeSummary": { "type": "object", - "example": null, "properties": { "author": { "$ref": "#/components/schemas/Author" @@ -25747,8 +24786,7 @@ "DISABLE", "RESTORE", "UNKNOWN" - ], - "example": null + ] } }, "required": [ @@ -25758,14 +24796,12 @@ }, "CloudfoundryPhysicalContext": { "type": "object", - "example": null, "properties": { "application": { "$ref": "#/components/schemas/SnapshotPreview" }, "cfInstanceIndex": { - "type": "string", - "example": null + "type": "string" }, "organization": { "$ref": "#/components/schemas/SnapshotPreview" @@ -25777,17 +24813,14 @@ }, "Condition": { "type": "object", - "example": null, "properties": { "query": { - "type": "string", - "example": null + "type": "string" } } }, "ConfigVersion": { "type": "object", - "example": null, "properties": { "changeSummary": { "$ref": "#/components/schemas/ChangeSummary" @@ -25795,20 +24828,16 @@ "created": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "deleted": { - "type": "boolean", - "example": null + "type": "boolean" }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 } @@ -25818,8 +24847,7 @@ ] }, "ContainerNode": { - "type": "object", - "example": null + "type": "object" }, "CrashMobileAppAlertRule": { "type": "object", @@ -25828,14 +24856,12 @@ "$ref": "#/components/schemas/MobileAppAlertRule" } ], - "example": null, "required": [ "metricName" ] }, "CursorPaginatedBusinessActivityItem": { "type": "object", - "example": null, "properties": { "businessActivity": { "$ref": "#/components/schemas/BusinessActivity" @@ -25847,17 +24873,13 @@ "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } - }, - "example": null + } } }, "required": [ @@ -25866,22 +24888,18 @@ }, "CursorPagination": { "type": "object", - "example": null, "properties": { "ingestionTime": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "offset": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "retrievalSize": { "type": "integer", "format": "int32", - "example": null, "maximum": 200, "minimum": 1 } @@ -25889,7 +24907,6 @@ }, "CursorPaginationInfraExploreCursor": { "type": "object", - "example": null, "properties": { "cursor": { "$ref": "#/components/schemas/InfraExploreCursor" @@ -25897,8 +24914,7 @@ "retrievalSize": { "type": "integer", "format": "int32", - "description": "number of values to return", - "example": null + "description": "number of values to return" } } }, @@ -25910,7 +24926,6 @@ }, { "type": "object", - "example": null, "properties": { "badEventsFilter": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -25921,7 +24936,6 @@ } } ], - "example": null, "required": [ "goodEventsFilter", "type" @@ -25929,11 +24943,9 @@ }, "CustomDashboard": { "type": "object", - "example": null, "properties": { "accessRules": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/AccessRule" }, @@ -25941,16 +24953,13 @@ "minItems": 1 }, "id": { - "type": "string", - "example": null + "type": "string" }, "title": { - "type": "string", - "example": null + "type": "string" }, "widgets": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Widget" }, @@ -25968,18 +24977,15 @@ }, "CustomDashboardPreview": { "type": "object", - "example": null, "properties": { "annotations": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ "SHARED", "WRITABLE" - ], - "example": null + ] }, "maxItems": 8, "minItems": 0, @@ -25987,17 +24993,14 @@ }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "ownerId": { - "type": "string", - "example": null + "type": "string" }, "title": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -26015,16 +25018,13 @@ }, { "type": "object", - "example": null, "properties": { "customEventName": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "customEventName", "metricName" @@ -26032,45 +25032,37 @@ }, "CustomEventSpecification": { "type": "object", - "example": null, "properties": { "actions": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Action" } }, "description": { "type": "string", - "example": null, "maxLength": 32765, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "entityType": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "expirationTime": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "query": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, @@ -26079,12 +25071,10 @@ "enum": [ "AND", "OR" - ], - "example": null + ] }, "rules": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/AbstractRule" }, @@ -26092,8 +25082,7 @@ "minItems": 1 }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -26104,71 +25093,58 @@ }, "CustomEventSpecificationWithLastUpdated": { "type": "object", - "example": null, "properties": { "actions": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Action" } }, "applicationAlertConfigId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "deleted": { - "type": "boolean", - "example": null + "type": "boolean" }, "description": { "type": "string", - "example": null, "maxLength": 32765, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "entityType": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "expirationTime": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "migrated": { - "type": "boolean", - "example": null + "type": "boolean" }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "query": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, @@ -26177,12 +25153,10 @@ "enum": [ "AND", "OR" - ], - "example": null + ] }, "rules": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/AbstractRule" }, @@ -26190,8 +25164,7 @@ "minItems": 1 }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -26209,16 +25182,13 @@ }, { "type": "object", - "example": null, "properties": { "customEventName": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "customEventName", "metricName" @@ -26226,11 +25196,9 @@ }, "CustomPayloadConfiguration": { "type": "object", - "example": null, "properties": { "fields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -26251,15 +25219,12 @@ }, "propertyName": "type" }, - "example": null, "properties": { "key": { - "type": "string", - "example": null + "type": "string" }, "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -26269,11 +25234,9 @@ }, "CustomPayloadWithLastUpdated": { "type": "object", - "example": null, "properties": { "fields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -26283,7 +25246,6 @@ "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 } }, @@ -26299,24 +25261,19 @@ }, { "type": "object", - "example": null, "properties": { "acceptCNAME": { - "type": "boolean", - "example": null + "type": "boolean" }, "lookup": { - "type": "string", - "example": null + "type": "string" }, "lookupServerName": { - "type": "boolean", - "example": null + "type": "boolean" }, "port": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "queryType": { "type": "string", @@ -26342,26 +25299,21 @@ "SOA", "TXT", "WKS" - ], - "example": null + ] }, "recursiveLookups": { - "type": "boolean", - "example": null + "type": "boolean" }, "server": { - "type": "string", - "example": null + "type": "string" }, "serverRetries": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } } ], - "example": null, "required": [ "lookup", "markSyntheticCall", @@ -26371,7 +25323,6 @@ }, "DeprecatedTagFilter": { "type": "object", - "example": null, "properties": { "entity": { "type": "string", @@ -26379,12 +25330,10 @@ "NOT_APPLICABLE", "DESTINATION", "SOURCE" - ], - "example": null + ] }, "name": { - "type": "string", - "example": null + "type": "string" }, "operator": { "type": "string", @@ -26405,12 +25354,10 @@ "ENDS_WITH", "NOT_STARTS_WITH", "NOT_ENDS_WITH" - ], - "example": null + ] }, "value": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -26421,12 +25368,10 @@ }, "Duration": { "type": "object", - "example": null, "properties": { "amount": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "unit": { @@ -26435,8 +25380,7 @@ "MINUTES", "HOURS", "DAYS" - ], - "example": null + ] } }, "required": [ @@ -26452,7 +25396,6 @@ }, { "type": "object", - "example": null, "properties": { "value": { "$ref": "#/components/schemas/DynamicFieldValue" @@ -26460,7 +25403,6 @@ } } ], - "example": null, "required": [ "key", "value" @@ -26468,15 +25410,12 @@ }, "DynamicFieldValue": { "type": "object", - "example": null, "properties": { "key": { - "type": "string", - "example": null + "type": "string" }, "tagName": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -26485,33 +25424,26 @@ }, "DynamicParameter": { "type": "object", - "example": null, "properties": { "key": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" }, "resolvedValue": { - "type": "string", - "example": null + "type": "string" }, "tagName": { - "type": "string", - "example": null + "type": "string" } } }, "EditUser": { "type": "object", - "example": null, "properties": { "fullName": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -26526,20 +25458,16 @@ }, { "type": "object", - "example": null, "properties": { "emails": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } } ], - "example": null, "required": [ "emails", "id", @@ -26554,7 +25482,6 @@ "$ref": "#/components/schemas/SyntheticTypeConfiguration" } ], - "example": null, "required": [ "markSyntheticCall", "syntheticType" @@ -26562,7 +25489,6 @@ }, "Endpoint": { "type": "object", - "example": null, "properties": { "entityType": { "type": "string", @@ -26570,29 +25496,23 @@ "APPLICATION", "SERVICE", "ENDPOINT" - ], - "example": null + ] }, "id": { - "type": "string", - "example": null + "type": "string" }, "isSynthetic": { "type": "boolean", - "example": null, "writeOnly": true }, "label": { - "type": "string", - "example": null + "type": "string" }, "serviceId": { - "type": "string", - "example": null + "type": "string" }, "synthetic": { - "type": "boolean", - "example": null + "type": "boolean" }, "syntheticType": { "type": "string", @@ -26600,15 +25520,12 @@ "NON_SYNTHETIC", "SYNTHETIC", "MIXED" - ], - "example": null + ] }, "technologies": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, @@ -26629,8 +25546,7 @@ "MESSAGING", "PAGE", "PAGE_RESOURCE" - ], - "example": null + ] } }, "required": [ @@ -26643,7 +25559,6 @@ }, "EndpointConfig": { "type": "object", - "example": null, "properties": { "endpointCase": { "type": "string", @@ -26651,20 +25566,16 @@ "ORIGINAL", "LOWER", "UPPER" - ], - "example": null + ] }, "endpointNameByCollectedPathTemplateRuleEnabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "endpointNameByFirstPathSegmentRuleEnabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "rules": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/HttpEndpointRule" }, @@ -26672,8 +25583,7 @@ "minItems": 1 }, "serviceId": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -26689,37 +25599,29 @@ }, { "type": "object", - "example": null, "properties": { "applicationId": { - "type": "string", - "example": null + "type": "string" }, "endpointId": { - "type": "string", - "example": null + "type": "string" }, "endpointServiceId": { - "type": "string", - "example": null + "type": "string" }, "probableRootCause": { "type": "object", "additionalProperties": { - "type": "object", - "example": null + "type": "object" }, - "example": null, "writeOnly": true } } } - ], - "example": null + ] }, "EndpointItem": { "type": "object", - "example": null, "properties": { "endpoint": { "$ref": "#/components/schemas/Endpoint" @@ -26728,17 +25630,13 @@ "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } - }, - "example": null + } } }, "required": [ @@ -26748,14 +25646,12 @@ }, "EndpointMetricResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/EndpointItem" } @@ -26763,19 +25659,16 @@ "page": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "pageSize": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -26785,17 +25678,14 @@ }, "EndpointNode": { "type": "object", - "example": null, "properties": { "endpointId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "inclusive": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -26804,43 +25694,35 @@ }, "EndpointResult": { "type": "object", - "example": null, "properties": { "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Endpoint" } }, "page": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "pageSize": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "totalHits": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } }, "EndpointSimple": { "type": "object", - "example": null, "properties": { "id": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "type": { "type": "string", @@ -26859,8 +25741,7 @@ "MESSAGING", "PAGE", "PAGE_RESOURCE" - ], - "example": null + ] } } }, @@ -26872,7 +25753,6 @@ }, { "type": "object", - "example": null, "properties": { "conditionOperator": { "type": "string", @@ -26883,18 +25763,15 @@ "<=", "=", "!=" - ], - "example": null + ] }, "conditionValue": { "type": "number", - "format": "double", - "example": null + "format": "double" } } } ], - "example": null, "required": [ "conditionOperator" ] @@ -26907,7 +25784,6 @@ }, { "type": "object", - "example": null, "properties": { "conditionOperator": { "type": "string", @@ -26918,23 +25794,19 @@ "<=", "=", "!=" - ], - "example": null + ] }, "conditionValue": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "matchingEntityLabel": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "matchingEntityType": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, @@ -26945,13 +25817,11 @@ "contains", "startsWith", "endsWith" - ], - "example": null + ] } } } ], - "example": null, "required": [ "conditionOperator", "matchingEntityLabel", @@ -26961,18 +25831,15 @@ }, "EntityHealthInfo": { "type": "object", - "example": null, "properties": { "maxSeverity": { "type": "number", "format": "double", - "example": null, "maximum": 10, "minimum": 0 }, "openIssues": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Event" }, @@ -26985,19 +25852,15 @@ }, "EntityId": { "type": "object", - "example": null, "properties": { "host": { - "type": "string", - "example": null + "type": "string" }, "pluginId": { - "type": "string", - "example": null + "type": "string" }, "steadyId": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -27014,17 +25877,14 @@ }, { "type": "object", - "example": null, "properties": { "matchingEntityLabel": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "matchingEntityType": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, @@ -27035,18 +25895,15 @@ "contains", "startsWith", "endsWith" - ], - "example": null + ] }, "offlineDuration": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } } ], - "example": null, "required": [ "matchingEntityLabel", "matchingEntityType", @@ -27061,20 +25918,17 @@ }, { "type": "object", - "example": null, "properties": { "metric": { "type": "string", "enum": [ "BURN_RATE", "BURNED_PERCENTAGE" - ], - "example": null + ] } } } ], - "example": null, "required": [ "metric" ] @@ -27086,30 +25940,25 @@ "$ref": "#/components/schemas/ApplicationAlertRule" } ], - "example": null, "required": [ "metricName" ] }, "Event": { "type": "object", - "example": null, "properties": { "end": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "endpointServiceId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "entityId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, @@ -27123,32 +25972,26 @@ "Website", "Synthetic", "MobileApp" - ], - "example": null + ] }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "metadata": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } }, "metricAccessId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "plugin": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -27158,26 +26001,21 @@ "rca": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } }, "start": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "state": { "type": "string", - "example": null, "maxLength": 8, "minLength": 0 }, "type": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 } @@ -27192,14 +26030,11 @@ }, "EventFilteringConfiguration": { "type": "object", - "example": null, "properties": { "applicationAlertConfigIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -27207,7 +26042,6 @@ }, "eventTypes": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ @@ -27219,8 +26053,7 @@ "offline", "agent_monitoring_issue", "none" - ], - "example": null + ] }, "maxItems": 1024, "minItems": 0, @@ -27228,16 +26061,13 @@ }, "query": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, "ruleIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -27259,149 +26089,116 @@ }, "propertyName": "entityType" }, - "example": null, "properties": { "detail": { - "type": "string", - "example": null + "type": "string" }, "end": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "entityLabel": { - "type": "string", - "example": null + "type": "string" }, "entityName": { - "type": "string", - "example": null + "type": "string" }, "entityType": { - "type": "string", - "example": null + "type": "string" }, "eventId": { - "type": "string", - "example": null + "type": "string" }, "fixSuggestion": { - "type": "string", - "example": null + "type": "string" }, "metrics": { "type": "array", - "example": null, "items": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } } }, "probableCause": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } }, "problem": { - "type": "string", - "example": null + "type": "string" }, "recentEvents": { "type": "array", - "example": null, "items": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } } }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "snapshotId": { - "type": "string", - "example": null + "type": "string" }, "start": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "state": { - "type": "string", - "example": null + "type": "string" }, "type": { - "type": "string", - "example": null + "type": "string" } } }, "EventSpecificationInfo": { "type": "object", - "example": null, "properties": { "description": { - "type": "string", - "example": null + "type": "string" }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "entityType": { - "type": "string", - "example": null + "type": "string" }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "invalid": { - "type": "boolean", - "example": null + "type": "boolean" }, "migrated": { - "type": "boolean", - "example": null + "type": "boolean" }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" }, "type": { "type": "string", "enum": [ "BUILT_IN", "CUSTOM" - ], - "example": null + ] } }, "required": [ @@ -27413,14 +26210,11 @@ }, "ExtendedService": { "type": "object", - "example": null, "properties": { "applications": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, @@ -27430,51 +26224,41 @@ "APPLICATION", "SERVICE", "ENDPOINT" - ], - "example": null + ] }, "id": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "maxSeverity": { "type": "number", "format": "double", - "example": null, "maximum": 10, "minimum": 0 }, "numberOfOpenIssues": { "type": "integer", "format": "int32", - "example": null, "minimum": 0 }, "snapshotIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, "technologies": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, "types": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ @@ -27492,8 +26276,7 @@ "MESSAGING", "PAGE", "PAGE_RESOURCE" - ], - "example": null + ] }, "uniqueItems": true } @@ -27514,34 +26297,27 @@ "$ref": "#/components/schemas/SyntheticAlertRule" } ], - "example": null, "required": [ "metricName" ] }, "Field": { "type": "object", - "example": null, "properties": { "description": { - "type": "string", - "example": null + "type": "string" }, "encoding": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" }, "secured": { - "type": "boolean", - "example": null + "type": "boolean" }, "value": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -27558,16 +26334,13 @@ }, { "type": "object", - "example": null, "properties": { "name": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "name", "type" @@ -27581,17 +26354,14 @@ }, { "type": "object", - "example": null, "properties": { "startTimestamp": { "type": "string", - "format": "date-time", - "example": null + "format": "date-time" } } } ], - "example": null, "required": [ "duration", "durationUnit", @@ -27600,11 +26370,9 @@ }, "FullTrace": { "type": "object", - "example": null, "properties": { "id": { - "type": "string", - "example": null + "type": "string" }, "rootSpan": { "$ref": "#/components/schemas/Span" @@ -27612,7 +26380,6 @@ "totalErrorCount": { "type": "integer", "format": "int32", - "example": null, "minimum": 0 } }, @@ -27628,7 +26395,6 @@ "$ref": "#/components/schemas/InfraAlertRule" } ], - "example": null, "required": [ "aggregation", "crossSeriesAggregation", @@ -27638,7 +26404,6 @@ }, "GeoLocationConfiguration": { "type": "object", - "example": null, "properties": { "geoDetailRemoval": { "type": "string", @@ -27647,12 +26412,10 @@ "REMOVE_COORDINATES", "REMOVE_CITY", "REMOVE_ALL" - ], - "example": null + ] }, "geoMappingRules": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/GeoMappingRule" }, @@ -27666,56 +26429,45 @@ }, "GeoMappingRule": { "type": "object", - "example": null, "properties": { "accuracyRadius": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "cidr": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "city": { - "type": "string", - "example": null + "type": "string" }, "continent": { - "type": "string", - "example": null + "type": "string" }, "continentCode": { - "type": "string", - "example": null + "type": "string" }, "country": { - "type": "string", - "example": null + "type": "string" }, "countryCode": { - "type": "string", - "example": null + "type": "string" }, "latitude": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "leastSpecificSubdivision": { "$ref": "#/components/schemas/GeoSubdivision" }, "longitude": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "subdivisions": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/GeoSubdivision" }, @@ -27730,17 +26482,14 @@ }, "GeoSubdivision": { "type": "object", - "example": null, "properties": { "code": { "type": "string", - "example": null, "maxLength": 32, "minLength": 0 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 } @@ -27751,7 +26500,6 @@ }, "GetActivities": { "type": "object", - "example": null, "properties": { "order": { "$ref": "#/components/schemas/Order" @@ -27777,21 +26525,17 @@ }, "GetApplicationMetrics": { "type": "object", - "example": null, "properties": { "includeInternal": { "type": "boolean", - "example": null, "writeOnly": true }, "includeSynthetic": { "type": "boolean", - "example": null, "writeOnly": true }, "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/AppDataMetricConfiguration" } @@ -27810,17 +26554,14 @@ }, "GetApplicationTopologyQuery": { "type": "object", - "example": null, "properties": { "appId": { "type": "string", - "description": "Application Id", - "example": null + "description": "Application Id" }, "extendedTraversal": { "type": "array", "description": "extended Traversal", - "example": null, "items": { "$ref": "#/components/schemas/ApplicationExtendedTraversal" } @@ -27832,31 +26573,26 @@ }, "GetApplications": { "type": "object", - "example": null, "properties": { "applicationBoundaryScope": { "type": "string", "enum": [ "ALL", "INBOUND" - ], - "example": null + ] }, "applicationId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "endpointId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "endpointTypes": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ @@ -27874,15 +26610,13 @@ "MESSAGING", "PAGE", "PAGE_RESOURCE" - ], - "example": null + ] }, "uniqueItems": true, "writeOnly": true }, "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/AppDataMetricConfiguration" }, @@ -27891,7 +26625,6 @@ }, "nameFilter": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -27903,16 +26636,13 @@ }, "serviceId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "technologies": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true, "writeOnly": true @@ -27927,11 +26657,9 @@ }, "GetAvailableMetricsQuery": { "type": "object", - "example": null, "properties": { "query": { - "type": "string", - "example": null + "type": "string" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -27940,8 +26668,7 @@ "$ref": "#/components/schemas/TimeFrame" }, "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -27951,7 +26678,6 @@ }, "GetAvailablePluginsQuery": { "type": "object", - "example": null, "properties": { "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -27967,22 +26693,18 @@ }, "GetCallGroups": { "type": "object", - "example": null, "properties": { "group": { "$ref": "#/components/schemas/Group" }, "includeInternal": { - "type": "boolean", - "example": null + "type": "boolean" }, "includeSynthetic": { - "type": "boolean", - "example": null + "type": "boolean" }, "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MetricConfig" }, @@ -28000,7 +26722,6 @@ }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/DeprecatedTagFilter" }, @@ -28018,38 +26739,30 @@ }, "GetCombinedMetrics": { "type": "object", - "example": null, "properties": { "metrics": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 5, "minItems": 1, "uniqueItems": true }, "plugin": { - "type": "string", - "example": null + "type": "string" }, "query": { - "type": "string", - "example": null + "type": "string" }, "rollup": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "snapshotIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 30, "minItems": 1, @@ -28066,23 +26779,19 @@ }, "GetDynamicParameterValues": { "type": "object", - "example": null, "properties": { "eventId": { - "type": "string", - "example": null + "type": "string" }, "parameters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/DynamicParameter" } }, "timestamp": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, "required": [ @@ -28093,31 +26802,26 @@ }, "GetEndpoints": { "type": "object", - "example": null, "properties": { "applicationBoundaryScope": { "type": "string", "enum": [ "ALL", "INBOUND" - ], - "example": null + ] }, "applicationId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "endpointId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "endpointTypes": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ @@ -28135,20 +26839,17 @@ "MESSAGING", "PAGE", "PAGE_RESOURCE" - ], - "example": null + ] }, "maxItems": 8, "minItems": 0, "uniqueItems": true }, "excludeSynthetic": { - "type": "boolean", - "example": null + "type": "boolean" }, "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/AppDataMetricConfiguration" }, @@ -28157,7 +26858,6 @@ }, "nameFilter": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -28169,7 +26869,6 @@ }, "serviceId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, @@ -28183,23 +26882,19 @@ }, "GetInfrastructureGroupsQuery": { "type": "object", - "example": null, "properties": { "groupBy": { "type": "array", "description": "Entity grouping tag. Use the Instana Analyze Infrastructure dashboard to determine the entity grouping tag name.", - "example": null, "items": { "type": "string", - "description": "Entity grouping tag. Use the Instana Analyze Infrastructure dashboard to determine the entity grouping tag name.", - "example": null + "description": "Entity grouping tag. Use the Instana Analyze Infrastructure dashboard to determine the entity grouping tag name." }, "maxItems": 5, "minItems": 0 }, "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/InfraMetricConfiguration" }, @@ -28207,8 +26902,7 @@ "minItems": 0 }, "missingPlaceholder": { - "type": "string", - "example": null + "type": "string" }, "order": { "$ref": "#/components/schemas/Order" @@ -28224,8 +26918,7 @@ }, "type": { "type": "string", - "description": "Type of entities", - "example": null + "description": "Type of entities" } }, "required": [ @@ -28237,11 +26930,9 @@ }, "GetInfrastructureQuery": { "type": "object", - "example": null, "properties": { "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/InfraMetricConfiguration" }, @@ -28249,8 +26940,7 @@ "minItems": 0 }, "missingPlaceholder": { - "type": "string", - "example": null + "type": "string" }, "order": { "$ref": "#/components/schemas/Order" @@ -28263,10 +26953,8 @@ }, "tags": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 5, "minItems": 0 @@ -28276,8 +26964,7 @@ }, "type": { "type": "string", - "description": "Type of entities", - "example": null + "description": "Type of entities" } }, "required": [ @@ -28288,14 +26975,12 @@ }, "GetMobileAppBeaconGroups": { "type": "object", - "example": null, "properties": { "group": { "$ref": "#/components/schemas/MobileAppBeaconTagGroup" }, "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MobileAppMonitoringMetricsConfiguration" }, @@ -28313,7 +26998,6 @@ }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/DeprecatedTagFilter" }, @@ -28331,8 +27015,7 @@ "CRASH", "CUSTOM", "VIEW_CHANGE" - ], - "example": null + ] } }, "required": [ @@ -28343,14 +27026,12 @@ }, "GetMobileAppBeacons": { "type": "object", - "example": null, "properties": { "pagination": { "$ref": "#/components/schemas/CursorPagination" }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/DeprecatedTagFilter" }, @@ -28368,8 +27049,7 @@ "CRASH", "CUSTOM", "VIEW_CHANGE" - ], - "example": null + ] } }, "required": [ @@ -28378,11 +27058,9 @@ }, "GetMobileAppMetrics": { "type": "object", - "example": null, "properties": { "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MobileAppMonitoringMetricsConfiguration" }, @@ -28391,7 +27069,6 @@ }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/DeprecatedTagFilter" }, @@ -28409,8 +27086,7 @@ "CRASH", "CUSTOM", "VIEW_CHANGE" - ], - "example": null + ] } }, "required": [ @@ -28420,11 +27096,9 @@ }, "GetMobileAppMetricsV2": { "type": "object", - "example": null, "properties": { "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MobileAppMonitoringMetricsConfiguration" }, @@ -28445,8 +27119,7 @@ "CRASH", "CUSTOM", "VIEW_CHANGE" - ], - "example": null + ] } }, "required": [ @@ -28456,35 +27129,29 @@ }, "GetPayloadKeysResult": { "type": "object", - "example": null, "properties": { "payloadKeys": { "type": "array", "description": "Keys that can be used to retrieve plugin payloads.", - "example": null, "items": { "type": "string", - "description": "Keys that can be used to retrieve plugin payloads.", - "example": null + "description": "Keys that can be used to retrieve plugin payloads." } } } }, "GetServices": { "type": "object", - "example": null, "properties": { "applicationBoundaryScope": { "type": "string", "enum": [ "ALL", "INBOUND" - ], - "example": null + ] }, "applicationId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, @@ -28494,12 +27161,10 @@ "NONE", "UPSTREAM", "DOWNSTREAM" - ], - "example": null + ] }, "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/AppDataMetricConfiguration" }, @@ -28508,7 +27173,6 @@ }, "nameFilter": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -28520,16 +27184,13 @@ }, "serviceId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "technologies": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 20, "minItems": 0, @@ -28545,16 +27206,13 @@ }, "GetSnapshotsQuery": { "type": "object", - "example": null, "properties": { "snapshotIds": { "type": "array", "description": "List of one or more snapshot ids.", - "example": null, "items": { "type": "string", - "description": "List of one or more snapshot ids.", - "example": null + "description": "List of one or more snapshot ids." }, "maxItems": 1000, "minItems": 0, @@ -28570,25 +27228,20 @@ }, "GetTestResult": { "type": "object", - "example": null, "properties": { "applicationId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "locationId": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SyntheticMetricConfiguration" } @@ -28601,7 +27254,6 @@ }, "serviceId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, @@ -28610,17 +27262,14 @@ }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagFilter" } }, "testId": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "timeFrame": { @@ -28633,7 +27282,6 @@ }, "GetTestResultBase": { "type": "object", - "example": null, "properties": { "order": { "$ref": "#/components/schemas/Order" @@ -28646,7 +27294,6 @@ }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagFilter" } @@ -28658,11 +27305,9 @@ }, "GetTestResultList": { "type": "object", - "example": null, "properties": { "applicationId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, @@ -28674,10 +27319,8 @@ }, "syntheticMetrics": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "tagFilterExpression": { @@ -28685,7 +27328,6 @@ }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagFilter" } @@ -28700,11 +27342,9 @@ }, "GetTestSummaryResult": { "type": "object", - "example": null, "properties": { "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SyntheticMetricConfiguration" } @@ -28720,7 +27360,6 @@ }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagFilter" } @@ -28735,12 +27374,10 @@ }, "GetTraceDownloadResultItem": { "type": "object", - "example": null, "properties": { "callCount": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "cursor": { "$ref": "#/components/schemas/IngestionOffsetCursor" @@ -28750,65 +27387,52 @@ }, "duration": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "errorCount": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "foreignParentId": { - "type": "string", - "example": null + "type": "string" }, "id": { - "type": "string", - "example": null + "type": "string" }, "minSelfTime": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "name": { - "type": "string", - "example": null + "type": "string" }, "networkTime": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "parentId": { - "type": "string", - "example": null + "type": "string" }, "timestamp": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } }, "GetTraceGroups": { "type": "object", - "example": null, "properties": { "group": { "$ref": "#/components/schemas/Group" }, "includeInternal": { - "type": "boolean", - "example": null + "type": "boolean" }, "includeSynthetic": { - "type": "boolean", - "example": null + "type": "boolean" }, "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MetricConfig" }, @@ -28826,7 +27450,6 @@ }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/DeprecatedTagFilter" }, @@ -28844,15 +27467,12 @@ }, "GetTraces": { "type": "object", - "example": null, "properties": { "includeInternal": { - "type": "boolean", - "example": null + "type": "boolean" }, "includeSynthetic": { - "type": "boolean", - "example": null + "type": "boolean" }, "pagination": { "$ref": "#/components/schemas/CursorPagination" @@ -28862,7 +27482,6 @@ }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/DeprecatedTagFilter" }, @@ -28876,14 +27495,12 @@ }, "GetWebsiteBeaconGroups": { "type": "object", - "example": null, "properties": { "group": { "$ref": "#/components/schemas/WebsiteBeaconTagGroup" }, "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/WebsiteMonitoringMetricsConfiguration" }, @@ -28901,7 +27518,6 @@ }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/DeprecatedTagFilter" }, @@ -28920,8 +27536,7 @@ "ERROR", "CUSTOM", "PAGE_CHANGE" - ], - "example": null + ] } }, "required": [ @@ -28932,14 +27547,12 @@ }, "GetWebsiteBeacons": { "type": "object", - "example": null, "properties": { "pagination": { "$ref": "#/components/schemas/CursorPagination" }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/DeprecatedTagFilter" }, @@ -28958,8 +27571,7 @@ "ERROR", "CUSTOM", "PAGE_CHANGE" - ], - "example": null + ] } }, "required": [ @@ -28968,11 +27580,9 @@ }, "GetWebsiteMetrics": { "type": "object", - "example": null, "properties": { "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/WebsiteMonitoringMetricsConfiguration" }, @@ -28981,7 +27591,6 @@ }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/DeprecatedTagFilter" }, @@ -29000,8 +27609,7 @@ "ERROR", "CUSTOM", "PAGE_CHANGE" - ], - "example": null + ] } }, "required": [ @@ -29011,11 +27619,9 @@ }, "GetWebsiteMetricsV2": { "type": "object", - "example": null, "properties": { "metrics": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/WebsiteMonitoringMetricsConfiguration" }, @@ -29037,8 +27643,7 @@ "ERROR", "CUSTOM", "PAGE_CHANGE" - ], - "example": null + ] } }, "required": [ @@ -29048,14 +27653,11 @@ }, "GlobalApplicationAlertConfigWithMetadata": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -29063,10 +27665,8 @@ }, "applicationIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, @@ -29074,30 +27674,25 @@ "type": "object", "additionalProperties": { "$ref": "#/components/schemas/ApplicationNode" - }, - "example": null + } }, "boundaryScope": { "type": "string", "enum": [ "ALL", "INBOUND" - ], - "example": null + ] }, "builtIn": { - "type": "boolean", - "example": null + "type": "boolean" }, "created": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -29106,13 +27701,11 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "evaluationType": { "type": "string", @@ -29120,8 +27713,7 @@ "PER_AP", "PER_AP_SERVICE", "PER_AP_ENDPOINT" - ], - "example": null + ] }, "granularity": { "type": "integer", @@ -29134,46 +27726,38 @@ 900000, 1200000, 1800000 - ], - "example": null + ] }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "includeInternal": { - "type": "boolean", - "example": null + "type": "boolean" }, "includeSynthetic": { - "type": "boolean", - "example": null + "type": "boolean" }, "initialCreated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "readOnly": { - "type": "boolean", - "example": null + "type": "boolean" }, "rule": { "$ref": "#/components/schemas/ApplicationAlertRule" }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -29185,8 +27769,7 @@ "$ref": "#/components/schemas/ApplicationTimeThreshold" }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -29207,14 +27790,11 @@ }, "GlobalApplicationsAlertConfig": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -29224,20 +27804,17 @@ "type": "object", "additionalProperties": { "$ref": "#/components/schemas/ApplicationNode" - }, - "example": null + } }, "boundaryScope": { "type": "string", "enum": [ "ALL", "INBOUND" - ], - "example": null + ] }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -29246,7 +27823,6 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, @@ -29256,8 +27832,7 @@ "PER_AP", "PER_AP_SERVICE", "PER_AP_ENDPOINT" - ], - "example": null + ] }, "granularity": { "type": "integer", @@ -29270,20 +27845,16 @@ 900000, 1200000, 1800000 - ], - "example": null + ] }, "includeInternal": { - "type": "boolean", - "example": null + "type": "boolean" }, "includeSynthetic": { - "type": "boolean", - "example": null + "type": "boolean" }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -29292,8 +27863,7 @@ }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -29305,8 +27875,7 @@ "$ref": "#/components/schemas/ApplicationTimeThreshold" }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -29332,16 +27901,13 @@ }, { "type": "object", - "example": null, "properties": { "webhookUrl": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "id", "kind", @@ -29351,58 +27917,46 @@ }, "GraphEdge": { "type": "object", - "example": null, "properties": { "destination": { - "type": "string", - "example": null + "type": "string" }, "relation": { - "type": "string", - "example": null + "type": "string" }, "source": { - "type": "string", - "example": null + "type": "string" } } }, "GraphNode": { "type": "object", - "example": null, "properties": { "data": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } }, "entityId": { "$ref": "#/components/schemas/EntityId" }, "id": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "plugin": { - "type": "string", - "example": null + "type": "string" } } }, "Group": { "type": "object", - "example": null, "properties": { "groupbyTag": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -29412,12 +27966,10 @@ "NOT_APPLICABLE", "DESTINATION", "SOURCE" - ], - "example": null + ] }, "groupbyTagSecondLevelKey": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 } @@ -29429,27 +27981,22 @@ }, "GroupMapping": { "type": "object", - "example": null, "properties": { "groupId": { - "type": "string", - "example": null + "type": "string" }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "key": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, "value": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 } @@ -29462,7 +28009,6 @@ }, "HealthState": { "type": "object", - "example": null, "properties": { "health": { "type": "string", @@ -29470,15 +28016,12 @@ "RED", "YELLOW", "GREEN" - ], - "example": null + ] }, "messages": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } @@ -29491,24 +28034,19 @@ }, { "type": "object", - "example": null, "properties": { "baseline": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } }, "deviationFactor": { "type": "number", "format": "double", - "example": null, "exclusiveMaximum": false, "exclusiveMinimum": false, "maximum": 16, @@ -29517,7 +28055,6 @@ "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "seasonality": { @@ -29525,13 +28062,11 @@ "enum": [ "WEEKLY", "DAILY" - ], - "example": null + ] } } } ], - "example": null, "required": [ "operator", "seasonality" @@ -29545,26 +28080,22 @@ }, { "type": "object", - "example": null, "properties": { "closeAfter": { "type": "integer", "format": "int64", - "example": null, "maximum": 86400000 }, "offlineDuration": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "tagFilter": { "$ref": "#/components/schemas/TagFilter" } } } - ], - "example": null + ] }, "HttpActionConfiguration": { "type": "object", @@ -29574,55 +28105,43 @@ }, { "type": "object", - "example": null, "properties": { "allowInsecure": { - "type": "boolean", - "example": null + "type": "boolean" }, "body": { - "type": "string", - "example": null + "type": "string" }, "expectExists": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "expectJson": { "$ref": "#/components/schemas/ContainerNode" }, "expectMatch": { - "type": "string", - "example": null + "type": "string" }, "expectNotEmpty": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "expectStatus": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "followRedirect": { - "type": "boolean", - "example": null + "type": "boolean" }, "headers": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "operation": { "type": "string", @@ -29634,23 +28153,19 @@ "PATCH", "POST", "PUT" - ], - "example": null + ] }, "url": { "type": "string", - "example": null, "maxLength": 2047, "minLength": 0 }, "validationString": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "markSyntheticCall", "syntheticType", @@ -29659,19 +28174,15 @@ }, "HttpEndpointConfig": { "type": "object", - "example": null, "properties": { "endpointNameByCollectedPathTemplateRuleEnabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "endpointNameByFirstPathSegmentRuleEnabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "rules": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/HttpEndpointRule" }, @@ -29679,8 +28190,7 @@ "minItems": 0 }, "serviceId": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -29690,15 +28200,12 @@ }, "HttpEndpointRule": { "type": "object", - "example": null, "properties": { "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "pathSegments": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/HttpPathSegmentMatchingRule" }, @@ -29707,10 +28214,8 @@ }, "testCases": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 32, "minItems": 0 @@ -29731,7 +28236,6 @@ }, "propertyName": "type" }, - "example": null, "properties": { "type": { "type": "string", @@ -29740,8 +28244,7 @@ "FIXED", "PARAMETER", "MATCH_ALL" - ], - "example": null + ] } }, "required": [ @@ -29756,11 +28259,9 @@ }, { "type": "object", - "example": null, "properties": { "script": { "type": "string", - "example": null, "maxLength": 1048576, "minLength": 0 }, @@ -29769,8 +28270,7 @@ "enum": [ "Basic", "Jest" - ], - "example": null + ] }, "scripts": { "$ref": "#/components/schemas/MultipleScriptsConfiguration" @@ -29778,7 +28278,6 @@ } } ], - "example": null, "required": [ "markSyntheticCall", "syntheticType" @@ -29786,38 +28285,31 @@ }, "HyperParam": { "type": "object", - "example": null, "properties": { "defaultValue": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "description": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "maxValue": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "minValue": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -29830,6 +28322,8 @@ "MEGA_BYTES", "PERCENTAGE", "PERCENTAGE_100", + "PERCENTAGE_NO_CAPPING", + "PERCENTAGE_100_NO_CAPPING", "LATENCY", "NANOS", "MILLIS", @@ -29838,8 +28332,7 @@ "RATE", "BYTE_RATE", "UNDEFINED" - ], - "example": null + ] } }, "required": [ @@ -29850,11 +28343,9 @@ }, "IdentityProviderPatch": { "type": "object", - "example": null, "properties": { "restrictEmptyIdpGroups": { - "type": "boolean", - "example": null + "type": "boolean" } } }, @@ -29866,48 +28357,38 @@ }, { "type": "object", - "example": null, "properties": { "distances": { "type": "object", "additionalProperties": { "$ref": "#/components/schemas/IssueDistance" - }, - "example": null + } }, "issues": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, "triggeringIssue": { "type": "string", - "example": null, "writeOnly": true }, "triggeringIssueId": { - "type": "string", - "example": null + "type": "string" } } } - ], - "example": null + ] }, "InfraAlertConfig": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -29915,7 +28396,6 @@ }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -29924,7 +28404,6 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, @@ -29939,22 +28418,18 @@ 900000, 1200000, 1800000 - ], - "example": null + ] }, "groupBy": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 5, "minItems": 0 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -29966,8 +28441,7 @@ }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -29994,14 +28468,11 @@ }, "InfraAlertConfigWithMetadata": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -30010,12 +28481,10 @@ "created": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -30024,13 +28493,11 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "granularity": { "type": "integer", @@ -30043,34 +28510,28 @@ 900000, 1200000, 1800000 - ], - "example": null + ] }, "groupBy": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 5, "minItems": 0 }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "initialCreated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -30078,16 +28539,14 @@ "$ref": "#/components/schemas/PredictiveTrigger" }, "readOnly": { - "type": "boolean", - "example": null + "type": "boolean" }, "rule": { "$ref": "#/components/schemas/InfraAlertRule" }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -30121,7 +28580,6 @@ }, "propertyName": "alertType" }, - "example": null, "properties": { "aggregation": { "type": "string", @@ -30139,16 +28597,13 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "alertType": { - "type": "string", - "example": null + "type": "string" }, "crossSeriesAggregation": { "type": "string", @@ -30166,24 +28621,19 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "entityType": { - "type": "string", - "example": null + "type": "string" }, "metricName": { - "type": "string", - "example": null + "type": "string" }, "regex": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -30199,42 +28649,33 @@ }, { "type": "object", - "example": null, "properties": { "ibmMqFileTransfer": { "type": "array", - "example": null, "items": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } } }, "probableRootCause": { "type": "object", "additionalProperties": { - "type": "object", - "example": null + "type": "object" }, - "example": null, "writeOnly": true } } } - ], - "example": null + ] }, "InfraExploreCursor": { "type": "object", - "description": "cursor to use between successive queries", - "example": null + "description": "cursor to use between successive queries" }, "InfraMetricConfiguration": { "type": "object", - "example": null, "properties": { "aggregation": { "type": "string", @@ -30252,12 +28693,10 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "crossSeriesAggregation": { "type": "string", @@ -30275,32 +28714,26 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "granularity": { "type": "integer", "format": "int64", "description": " * If granularity is not specified an aggregated value for the selected timeframe is returned.\n * If granularity is specified data points are returned with the specified granularity\n * The granularity should not be greater than the `windowSize` (important: `windowSize` is expressed in milliseconds)\n * The granularity should not be set too small relative to the `windowSize` to avoid creating an excessively large number of data points (max 600)\n", - "example": null, "title": "granularity in milliseconds" }, "metric": { - "type": "string", - "example": null + "type": "string" }, "regex": { - "type": "boolean", - "example": null + "type": "boolean" }, "required": { "type": "boolean", - "description": "When true, metric must be present with values", - "example": null + "description": "When true, metric must be present with values" } }, "required": [ @@ -30316,16 +28749,13 @@ }, "propertyName": "type" }, - "example": null, "properties": { "timeWindow": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -30334,18 +28764,15 @@ }, "InfrastructureEntitiesResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "canLoadMore": { - "type": "boolean", - "example": null + "type": "boolean" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/InfrastructureItem" } @@ -30357,7 +28784,6 @@ "type": "integer", "format": "int64", "description": "represents the total number of results", - "example": null, "minimum": 0 } }, @@ -30368,7 +28794,6 @@ "InfrastructureGroup": { "type": "object", "description": "group of infrastructure entities", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" @@ -30376,55 +28801,45 @@ "count": { "type": "integer", "format": "int64", - "description": "number of entities in this group", - "example": null + "description": "number of entities in this group" }, "metrics": { "type": "object", "additionalProperties": { "type": "array", "description": "map of metric keys to array of timestamp,value pairs", - "example": null, "items": { "type": "array", "description": "map of metric keys to array of timestamp,value pairs", - "example": null, "items": { "type": "number", - "description": "map of metric keys to array of timestamp,value pairs", - "example": null + "description": "map of metric keys to array of timestamp,value pairs" } } }, - "description": "map of metric keys to array of timestamp,value pairs", - "example": null + "description": "map of metric keys to array of timestamp,value pairs" }, "tags": { "type": "object", "additionalProperties": { "type": "object", - "description": "tag keys and values for this group", - "example": null + "description": "tag keys and values for this group" }, - "description": "tag keys and values for this group", - "example": null + "description": "tag keys and values for this group" } } }, "InfrastructureGroupsResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "canLoadMore": { - "type": "boolean", - "example": null + "type": "boolean" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/InfrastructureGroup" } @@ -30436,7 +28851,6 @@ "type": "integer", "format": "int64", "description": "represents the total number of results", - "example": null, "minimum": 0 } }, @@ -30446,7 +28860,6 @@ }, "InfrastructureItem": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" @@ -30455,56 +28868,44 @@ "$ref": "#/components/schemas/EntityHealthInfo" }, "label": { - "type": "string", - "example": null + "type": "string" }, "metrics": { "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } - }, - "example": null + } }, "plugin": { - "type": "string", - "example": null + "type": "string" }, "snapshotId": { - "type": "string", - "example": null + "type": "string" }, "tags": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "time": { "type": "integer", "format": "int64", - "description": "Epoch time in milliseconds if the snapshot is offline. Set to 9223372036854775807 if the snapshot is online.", - "example": null + "description": "Epoch time in milliseconds if the snapshot is offline. Set to 9223372036854775807 if the snapshot is online." } } }, "InfrastructureMetricResult": { "type": "object", - "example": null, "properties": { "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MetricItem" } @@ -30512,50 +28913,39 @@ } }, "IngestionOffsetCursor": { - "type": "object", - "example": null + "type": "object" }, "InstanaVersionInfo": { "type": "object", - "example": null, "properties": { "branch": { - "type": "string", - "example": null + "type": "string" }, "commit": { - "type": "string", - "example": null + "type": "string" }, "imageTag": { - "type": "string", - "example": null + "type": "string" } } }, "IntegrationOverview": { "type": "object", - "example": null, "properties": { "id": { - "type": "string", - "example": null + "type": "string" }, "kind": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" }, "properties": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } } }, "required": [ @@ -30566,15 +28956,12 @@ }, "Invitation": { "type": "object", - "example": null, "properties": { "email": { - "type": "string", - "example": null + "type": "string" }, "groupId": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -30584,11 +28971,9 @@ }, "InvitationResponse": { "type": "object", - "example": null, "properties": { "invitationResults": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/InvitationResult" } @@ -30597,7 +28982,6 @@ }, "InvitationResult": { "type": "object", - "example": null, "properties": { "invitationStatus": { "type": "string", @@ -30608,18 +28992,15 @@ "FAILURE_USER_ALREADY_INVITED", "FAILURE_ONLY_DEFAULT_GROUP_INVITATION_ALLOWED", "FAILURE_TENANT_IDP_CONFIGURED" - ], - "example": null + ] }, "userEmail": { - "type": "string", - "example": null + "type": "string" } } }, "IpMaskingConfiguration": { "type": "object", - "example": null, "properties": { "ipMasking": { "type": "string", @@ -30627,8 +29008,7 @@ "DEFAULT", "STRICT", "REMOVE_ALL_DETAILS" - ], - "example": null + ] } }, "required": [ @@ -30643,7 +29023,6 @@ }, { "type": "object", - "example": null, "properties": { "eventmode": { "type": "string", @@ -30658,88 +29037,70 @@ "synthetic", "mobile_app" ], - "example": null, "writeOnly": true }, "incidents": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } } } - ], - "example": null + ] }, "IssueDistance": { "type": "object", - "example": null, "properties": { "issueId": { - "type": "string", - "example": null + "type": "string" }, "logicalDistanceToTriggering": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "physicalDistanceToTriggering": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "temporalDistanceToTriggering": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "visible": { - "type": "boolean", - "example": null + "type": "boolean" } } }, "JsStackTraceLine": { "type": "object", - "example": null, "properties": { "column": { "type": "integer", "format": "int32", - "example": null, "minimum": -1 }, "file": { - "type": "string", - "example": null + "type": "string" }, "line": { "type": "integer", "format": "int32", - "example": null, "minimum": -1 }, "name": { - "type": "string", - "example": null + "type": "string" }, "translationExplanation": { - "type": "string", - "example": null + "type": "string" }, "translationStatus": { "type": "integer", "format": "int32", - "example": null, "minimum": -1 } }, @@ -30749,7 +29110,6 @@ }, "KubernetesPhysicalContext": { "type": "object", - "example": null, "properties": { "cluster": { "$ref": "#/components/schemas/SnapshotPreview" @@ -30773,7 +29133,6 @@ }, { "type": "object", - "example": null, "properties": { "badEventsFilter": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -30784,44 +29143,36 @@ "threshold": { "type": "number", "format": "double", - "example": null, "exclusiveMinimum": false, "minimum": 0 } } } ], - "example": null, "required": [ "type" ] }, "LocationStatus": { "type": "object", - "example": null, "properties": { "locationDisplayLabel": { - "type": "string", - "example": null + "type": "string" }, "locationId": { - "type": "string", - "example": null + "type": "string" }, "successRate": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "successRuns": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "totalTestRuns": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, "required": [ @@ -30830,19 +29181,15 @@ }, "LogEntryActor": { "type": "object", - "example": null, "properties": { "email": { - "type": "string", - "example": null + "type": "string" }, "id": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" }, "type": { "type": "string", @@ -30850,8 +29197,7 @@ "USER", "API_TOKEN", "POLICY" - ], - "example": null + ] } }, "required": [ @@ -30868,7 +29214,6 @@ }, { "type": "object", - "example": null, "properties": { "level": { "type": "string", @@ -30876,8 +29221,7 @@ "WARN", "ERROR", "ANY" - ], - "example": null + ] }, "loglevel": { "type": "string", @@ -30886,12 +29230,10 @@ "ERROR", "ANY" ], - "example": null, "writeOnly": true }, "message": { - "type": "string", - "example": null + "type": "string" }, "operator": { "type": "string", @@ -30912,13 +29254,11 @@ "ENDS_WITH", "NOT_STARTS_WITH", "NOT_ENDS_WITH" - ], - "example": null + ] } } } ], - "example": null, "required": [ "level", "metricName", @@ -30927,29 +29267,24 @@ }, "MaintenanceConfig": { "type": "object", - "example": null, "properties": { "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "query": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, "windows": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MaintenanceWindow" }, @@ -30973,7 +29308,6 @@ }, "propertyName": "type" }, - "example": null, "properties": { "duration": { "$ref": "#/components/schemas/Duration" @@ -30981,12 +29315,10 @@ "start": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "type": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 } @@ -30999,27 +29331,22 @@ }, "MaintenanceConfigV2": { "type": "object", - "example": null, "properties": { "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "paused": { - "type": "boolean", - "example": null + "type": "boolean" }, "query": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, @@ -31030,8 +29357,7 @@ "$ref": "#/components/schemas/TagFilterExpressionElement" }, "tagFilterExpressionEnabled": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -31043,23 +29369,19 @@ }, "MaintenanceConfigV2WithStateAndOccurrence": { "type": "object", - "example": null, "properties": { "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -31067,12 +29389,10 @@ "$ref": "#/components/schemas/Occurrence" }, "paused": { - "type": "boolean", - "example": null + "type": "boolean" }, "query": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, @@ -31087,15 +29407,13 @@ "ACTIVE", "PAUSED", "EXPIRED" - ], - "example": null + ] }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" }, "tagFilterExpressionEnabled": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -31108,35 +29426,29 @@ }, "MaintenanceConfigWithLastUpdated": { "type": "object", - "example": null, "properties": { "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "query": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, "windows": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MaintenanceWindow" }, @@ -31153,24 +29465,20 @@ }, "MaintenanceWindow": { "type": "object", - "example": null, "properties": { "end": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "start": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -31180,20 +29488,16 @@ }, "ManualCloseInfo": { "type": "object", - "example": null, "properties": { "closeTimestamp": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "reasonForClosing": { - "type": "string", - "example": null + "type": "string" }, "username": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 } @@ -31205,23 +29509,18 @@ }, "ManualServiceConfig": { "type": "object", - "example": null, "properties": { "description": { - "type": "string", - "example": null + "type": "string" }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "existingServiceId": { - "type": "string", - "example": null + "type": "string" }, "id": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 }, @@ -31229,8 +29528,7 @@ "$ref": "#/components/schemas/TagFilterExpressionElement" }, "unmonitoredServiceName": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -31245,7 +29543,6 @@ "$ref": "#/components/schemas/HttpPathSegmentMatchingRule" } ], - "example": null, "required": [ "type" ] @@ -31259,11 +29556,9 @@ }, "propertyName": "type" }, - "example": null, "properties": { "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -31272,37 +29567,29 @@ }, "MetaData": { "type": "object", - "example": null, "properties": { "ai": { "type": "array", - "example": null, "items": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } } }, "builtIn": { - "type": "boolean", - "example": null + "type": "boolean" }, "readOnly": { - "type": "boolean", - "example": null + "type": "boolean" }, "sensorImported": { - "type": "boolean", - "example": null + "type": "boolean" } } }, "MetricAPIResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" @@ -31311,17 +29598,13 @@ "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } - }, - "example": null + } } }, "required": [ @@ -31330,7 +29613,6 @@ }, "MetricConfig": { "type": "object", - "example": null, "properties": { "aggregation": { "type": "string", @@ -31348,21 +29630,17 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "granularity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "metric": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -31372,7 +29650,6 @@ }, "MetricConfiguration": { "type": "object", - "example": null, "properties": { "metricAggregation": { "type": "string", @@ -31390,21 +29667,17 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "metricName": { - "type": "string", - "example": null + "type": "string" }, "threshold": { "type": "number", "format": "double", - "example": null, "exclusiveMinimum": true, "minimum": 0 } @@ -31415,11 +29688,9 @@ }, "MetricDescription": { "type": "object", - "example": null, "properties": { "aggregations": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ @@ -31436,12 +29707,10 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "uniqueItems": true }, @@ -31461,28 +29730,22 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "description": { - "type": "string", - "example": null + "type": "string" }, "formatter": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "metricId": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -31494,15 +29757,12 @@ }, "MetricInstance": { "type": "object", - "example": null, "properties": { "custom": { - "type": "boolean", - "example": null + "type": "boolean" }, "description": { - "type": "string", - "example": null + "type": "string" }, "formatter": { "type": "string", @@ -31513,6 +29773,8 @@ "MEGA_BYTES", "PERCENTAGE", "PERCENTAGE_100", + "PERCENTAGE_NO_CAPPING", + "PERCENTAGE_100_NO_CAPPING", "LATENCY", "NANOS", "MILLIS", @@ -31521,20 +29783,16 @@ "RATE", "BYTE_RATE", "UNDEFINED" - ], - "example": null + ] }, "label": { - "type": "string", - "example": null + "type": "string" }, "metricId": { - "type": "string", - "example": null + "type": "string" }, "pluginId": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -31547,71 +29805,55 @@ }, "MetricItem": { "type": "object", - "example": null, "properties": { "from": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "host": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "metrics": { "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } - }, - "example": null + } }, "plugin": { - "type": "string", - "example": null + "type": "string" }, "snapshotId": { - "type": "string", - "example": null + "type": "string" }, "tags": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "to": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } }, "MetricMetadata": { "type": "object", - "example": null, "properties": { "category": { - "type": "string", - "example": null + "type": "string" }, "crossSeriesAggregations": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ @@ -31628,18 +29870,15 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "uniqueItems": true }, "description": { - "type": "string", - "example": null + "type": "string" }, "format": { "type": "string", @@ -31650,6 +29889,8 @@ "MEGA_BYTES", "PERCENTAGE", "PERCENTAGE_100", + "PERCENTAGE_NO_CAPPING", + "PERCENTAGE_100_NO_CAPPING", "LATENCY", "NANOS", "MILLIS", @@ -31658,12 +29899,10 @@ "RATE", "BYTE_RATE", "UNDEFINED" - ], - "example": null + ] }, "id": { - "type": "string", - "example": null + "type": "string" }, "infraTagCategory": { "type": "string", @@ -31703,16 +29942,13 @@ "TUXEDO", "VSHPERE", "WEBSPHERE" - ], - "example": null + ] }, "label": { - "type": "string", - "example": null + "type": "string" }, "ownerType": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -31724,7 +29960,6 @@ }, "MetricPattern": { "type": "object", - "example": null, "properties": { "operator": { "type": "string", @@ -31734,20 +29969,16 @@ "startsWith", "endsWith", "any" - ], - "example": null + ] }, "placeholder": { - "type": "string", - "example": null + "type": "string" }, "postfix": { - "type": "string", - "example": null + "type": "string" }, "prefix": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -31757,17 +29988,14 @@ }, "MobileApp": { "type": "object", - "example": null, "properties": { "id": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "name": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 } @@ -31779,14 +30007,11 @@ }, "MobileAppAlertConfig": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -31797,7 +30022,6 @@ }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -31806,7 +30030,6 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, @@ -31821,18 +30044,15 @@ 900000, 1200000, 1800000 - ], - "example": null + ] }, "mobileAppId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -31841,8 +30061,7 @@ }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -31854,8 +30073,7 @@ "$ref": "#/components/schemas/MobileAppTimeThreshold" }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -31882,7 +30100,6 @@ }, "propertyName": "alertType" }, - "example": null, "properties": { "aggregation": { "type": "string", @@ -31900,20 +30117,16 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "alertType": { - "type": "string", - "example": null + "type": "string" }, "metricName": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -31923,7 +30136,6 @@ }, "MobileAppBeaconGroupsItem": { "type": "object", - "example": null, "properties": { "cursor": { "$ref": "#/components/schemas/IngestionOffsetCursor" @@ -31931,28 +30143,22 @@ "earliestTimestamp": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "metrics": { "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } - }, - "example": null + } }, "name": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -31963,18 +30169,15 @@ }, "MobileAppBeaconGroupsResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "canLoadMore": { - "type": "boolean", - "example": null + "type": "boolean" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MobileAppBeaconGroupsItem" } @@ -31982,19 +30185,16 @@ "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRepresentedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRetainedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -32004,18 +30204,15 @@ }, "MobileAppBeaconResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "canLoadMore": { - "type": "boolean", - "example": null + "type": "boolean" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MobileAppBeaconsItem" } @@ -32023,19 +30220,16 @@ "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRepresentedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRetainedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -32045,11 +30239,9 @@ }, "MobileAppBeaconTagGroup": { "type": "object", - "example": null, "properties": { "groupbyTag": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -32059,12 +30251,10 @@ "NOT_APPLICABLE", "DESTINATION", "SOURCE" - ], - "example": null + ] }, "groupbyTagSecondLevelKey": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 } @@ -32076,7 +30266,6 @@ }, "MobileAppBeaconsItem": { "type": "object", - "example": null, "properties": { "beacon": { "$ref": "#/components/schemas/MobileAppMonitoringBeacon" @@ -32098,359 +30287,294 @@ }, { "type": "object", - "example": null, "properties": { "mobileAppId": { - "type": "string", - "example": null + "type": "string" }, "probableRootCause": { "type": "object", "additionalProperties": { - "type": "object", - "example": null + "type": "object" }, - "example": null, "writeOnly": true } } } - ], - "example": null + ] }, "MobileAppMetricResult": { "type": "object", - "example": null, "properties": { "empty": { - "type": "boolean", - "example": null + "type": "boolean" } } }, "MobileAppMonitoringBeacon": { "type": "object", - "example": null, "properties": { "accuracyRadius": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "agentVersion": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "appBuild": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "appVersion": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "backendTraceId": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "batchSize": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "beaconId": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "bundleIdentifier": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "carrier": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "city": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "clockSkew": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "connectionType": { "type": "string", - "example": null, "maxLength": 16, "minLength": 0 }, "continent": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "continentCode": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "country": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "countryCode": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "customEventName": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "customMetric": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "decodedBodySize": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "deviceHardware": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "deviceManufacturer": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "deviceModel": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "duration": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "effectiveConnectionType": { "type": "string", - "example": null, "maxLength": 16, "minLength": 0 }, "encodedBodySize": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "environment": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "errorCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "errorId": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "errorMessage": { "type": "string", - "example": null, "maxLength": 16384, "minLength": 0 }, "errorType": { "type": "string", - "example": null, "maxLength": 1024, "minLength": 0 }, "googlePlayServicesMissing": { - "type": "boolean", - "example": null + "type": "boolean" }, "httpCallHeaders": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "httpCallMethod": { "type": "string", - "example": null, "maxLength": 16, "minLength": 0 }, "httpCallOrigin": { "type": "string", - "example": null, "maxLength": 1024, "minLength": 0 }, "httpCallPath": { "type": "string", - "example": null, "maxLength": 4096, "minLength": 0 }, "httpCallStatus": { "type": "integer", "format": "int32", - "example": null, "maximum": 599, "minimum": -1 }, "httpCallUrl": { "type": "string", - "example": null, "maxLength": 4096, "minLength": 0 }, "ingestionTime": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "internalMeta": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "latitude": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "longitude": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "meta": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "mobileAppId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "mobileAppLabel": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "osName": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "osVersion": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "parentBeaconId": { - "type": "string", - "example": null + "type": "string" }, "parsedStackTrace": { "type": "string", - "example": null, "maxLength": 16384, "minLength": 0 }, "platform": { "type": "string", - "example": null, "maxLength": 32, "minLength": 0 }, "region": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "rooted": { - "type": "boolean", - "example": null + "type": "boolean" }, "sessionId": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "stackTrace": { "type": "string", - "example": null, "maxLength": 16384, "minLength": 0 }, "stackTraceLine": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/StackTraceLine" }, @@ -32460,117 +30584,97 @@ "stackTraceParsingStatus": { "type": "integer", "format": "int32", - "example": null, "minimum": -1 }, "subdivision": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "subdivisionCode": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "tenant": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "timestamp": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "transferSize": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "type": { "type": "string", - "example": null, "maxLength": 24, "minLength": 0 }, "unit": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "useFeatures": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 15, "minItems": 0 }, "userEmail": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "userId": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "userIp": { "type": "string", - "example": null, "maxLength": 45, "minLength": 0 }, "userLanguages": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 5, "minItems": 0 }, "userName": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "userSessionId": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "view": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "viewportHeight": { "type": "integer", "format": "int32", - "example": null, "minimum": -1 }, "viewportWidth": { "type": "integer", "format": "int32", - "example": null, "minimum": -1 } }, @@ -32583,11 +30687,9 @@ }, "MobileAppMonitoringMetricDescription": { "type": "object", - "example": null, "properties": { "aggregations": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ @@ -32604,21 +30706,17 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "uniqueItems": true }, "beaconTypes": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, @@ -32638,42 +30736,33 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "description": { - "type": "string", - "example": null + "type": "string" }, "formatter": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "metricId": { - "type": "string", - "example": null + "type": "string" }, "pathToValueInBeacon": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 2147483647, "minItems": 1 }, "tagName": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -32686,7 +30775,6 @@ }, "MobileAppMonitoringMetricsConfiguration": { "type": "object", - "example": null, "properties": { "aggregation": { "type": "string", @@ -32704,21 +30792,17 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "granularity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "metric": { - "type": "string", - "example": null + "type": "string" }, "numeratorTagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -32739,16 +30823,13 @@ }, "propertyName": "type" }, - "example": null, "properties": { "timeWindow": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -32757,45 +30838,36 @@ }, "MonitoringState": { "type": "object", - "example": null, "properties": { "hasEntities": { - "type": "boolean", - "example": null + "type": "boolean" }, "hostCount": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "serverlessCount": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } }, "MultipleScriptsConfiguration": { "type": "object", - "example": null, "properties": { "bundle": { - "type": "string", - "example": null + "type": "string" }, "scriptFile": { - "type": "string", - "example": null + "type": "string" } } }, "NewApplicationConfig": { "type": "object", - "example": null, "properties": { "accessRules": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/AccessRule" }, @@ -32808,12 +30880,10 @@ "ALL", "INBOUND", "DEFAULT" - ], - "example": null + ] }, "label": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 }, @@ -32826,8 +30896,7 @@ "INCLUDE_NO_DOWNSTREAM", "INCLUDE_IMMEDIATE_DOWNSTREAM_DATABASE_AND_MESSAGING", "INCLUDE_ALL_DOWNSTREAM" - ], - "example": null + ] }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -32842,26 +30911,21 @@ }, "NewManualServiceConfig": { "type": "object", - "example": null, "properties": { "description": { - "type": "string", - "example": null + "type": "string" }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "existingServiceId": { - "type": "string", - "example": null + "type": "string" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" }, "unmonitoredServiceName": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -32870,18 +30934,15 @@ }, "Occurrence": { "type": "object", - "example": null, "properties": { "end": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "start": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } } @@ -32894,16 +30955,13 @@ }, { "type": "object", - "example": null, "properties": { "webhookUrl": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "id", "kind", @@ -32918,7 +30976,6 @@ "$ref": "#/components/schemas/MaintenanceConfigScheduling" } ], - "example": null, "required": [ "duration", "start", @@ -32933,32 +30990,26 @@ }, { "type": "object", - "example": null, "properties": { "alias": { - "type": "string", - "example": null + "type": "string" }, "apiKey": { - "type": "string", - "example": null + "type": "string" }, "region": { "type": "string", "enum": [ "US", "EU" - ], - "example": null + ] }, "tags": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "apiKey", "id", @@ -32969,24 +31020,20 @@ }, "Order": { "type": "object", - "example": null, "properties": { "by": { - "type": "string", - "example": null + "type": "string" }, "collation": { "type": "string", - "description": "language code used for sorting. Ignored for infrastructure queries.", - "example": null + "description": "language code used for sorting. Ignored for infrastructure queries." }, "direction": { "type": "string", "enum": [ "ASC", "DESC" - ], - "example": null + ] } }, "required": [ @@ -33002,16 +31049,13 @@ }, { "type": "object", - "example": null, "properties": { "serviceIntegrationKey": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "id", "kind", @@ -33021,32 +31065,26 @@ }, "PaginatedResult": { "type": "object", - "example": null, "properties": { "items": { "type": "array", - "example": null, "items": { - "type": "object", - "example": null + "type": "object" } }, "page": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "pageSize": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -33056,18 +31094,15 @@ }, "Pagination": { "type": "object", - "example": null, "properties": { "page": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "pageSize": { "type": "integer", "format": "int32", - "example": null, "maximum": 200, "minimum": 1 } @@ -33075,43 +31110,33 @@ }, "Parameter": { "type": "object", - "example": null, "properties": { "description": { - "type": "string", - "example": null + "type": "string" }, "hidden": { - "type": "boolean", - "example": null + "type": "boolean" }, "label": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" }, "required": { - "type": "boolean", - "example": null + "type": "boolean" }, "secured": { - "type": "boolean", - "example": null + "type": "boolean" }, "type": { - "type": "string", - "example": null + "type": "string" }, "value": { - "type": "string", - "example": null + "type": "string" }, "valueType": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -33123,15 +31148,12 @@ }, "ParameterValue": { "type": "object", - "example": null, "properties": { "name": { - "type": "string", - "example": null + "type": "string" }, "value": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -33147,16 +31169,13 @@ }, { "type": "object", - "example": null, "properties": { "name": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "name", "type" @@ -33164,7 +31183,6 @@ }, "PhysicalContext": { "type": "object", - "example": null, "properties": { "cloudfoundry": { "$ref": "#/components/schemas/CloudfoundryPhysicalContext" @@ -33188,46 +31206,37 @@ }, "PluginResult": { "type": "object", - "example": null, "properties": { "label": { - "type": "string", - "example": null + "type": "string" }, "plugin": { - "type": "string", - "example": null + "type": "string" } } }, "Policy": { "type": "object", - "example": null, "properties": { "description": { "type": "string", - "example": null, "maxLength": 512, "minLength": 0 }, "id": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 }, "name": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 }, "tags": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "trigger": { @@ -33235,7 +31244,6 @@ }, "typeConfigurations": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TypeConfiguration" } @@ -33250,11 +31258,9 @@ }, "PolicyRunnable": { "type": "object", - "example": null, "properties": { "id": { - "type": "string", - "example": null + "type": "string" }, "runConfiguration": { "$ref": "#/components/schemas/RunConfiguration" @@ -33264,8 +31270,7 @@ "enum": [ "action", "workflow" - ], - "example": null + ] } }, "required": [ @@ -33276,12 +31281,10 @@ }, "PostSnapshotsResult": { "type": "object", - "example": null, "properties": { "items": { "type": "array", "description": "Detail information for requested snapshots.", - "example": null, "items": { "$ref": "#/components/schemas/SnapshotItem" } @@ -33289,52 +31292,43 @@ "notFoundSnapshotsIds": { "type": "array", "description": "Snapshot ids for snapshots that could not be retrieved.", - "example": null, "items": { "type": "string", - "description": "Snapshot ids for snapshots that could not be retrieved.", - "example": null + "description": "Snapshot ids for snapshots that could not be retrieved." } } } }, "PredictiveTrigger": { "type": "object", - "example": null, "properties": { "timeToFailure": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } }, "Problem": { "type": "object", - "example": null, "properties": { "fixSuggestion": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "problemText": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, "required": [ @@ -33349,20 +31343,16 @@ }, { "type": "object", - "example": null, "properties": { "receiver": { - "type": "string", - "example": null + "type": "string" }, "webhookUrl": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "id", "kind", @@ -33372,21 +31362,17 @@ }, "RCAFeedback": { "type": "object", - "example": null, "properties": { "eventId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "feedback": { - "type": "boolean", - "example": null + "type": "boolean" }, "snapshotId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 } @@ -33405,20 +31391,16 @@ }, { "type": "object", - "example": null, "properties": { "rrule": { - "type": "string", - "example": null + "type": "string" }, "timezoneId": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "duration", "rrule", @@ -33428,11 +31410,9 @@ }, "Release": { "type": "object", - "example": null, "properties": { "applications": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApplicationScope" }, @@ -33441,13 +31421,11 @@ }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "services": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ServiceScope" }, @@ -33457,7 +31435,6 @@ "start": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 } }, @@ -33468,33 +31445,26 @@ }, "ReleaseScope": { "type": "object", - "example": null, "properties": { "applicationId": { - "type": "string", - "example": null + "type": "string" }, "applicationName": { - "type": "string", - "example": null + "type": "string" }, "serviceId": { - "type": "string", - "example": null + "type": "string" }, "serviceName": { - "type": "string", - "example": null + "type": "string" } } }, "ReleaseWithMetadata": { "type": "object", - "example": null, "properties": { "applications": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApplicationScopeWithMetadata" }, @@ -33503,25 +31473,21 @@ }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "scopes": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ReleaseScope" }, @@ -33529,7 +31495,6 @@ }, "services": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ServiceScopeWithMetadata" }, @@ -33539,7 +31504,6 @@ "start": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 } }, @@ -33555,7 +31519,6 @@ "$ref": "#/components/schemas/TimeWindow" } ], - "example": null, "required": [ "duration", "durationUnit" @@ -33563,7 +31526,6 @@ }, "RuleInput": { "type": "object", - "example": null, "properties": { "inputKind": { "type": "string", @@ -33573,12 +31535,10 @@ "EVENT", "DERIVED_METRIC", "METRIC_PATTERN" - ], - "example": null + ] }, "inputName": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 } @@ -33590,11 +31550,9 @@ }, "RunConfiguration": { "type": "object", - "example": null, "properties": { "actions": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ActionConfiguration" } @@ -33612,30 +31570,25 @@ }, { "type": "object", - "example": null, "properties": { "daysRemainingCheck": { "type": "integer", "format": "int32", - "example": null, "maximum": 365, "minimum": 1 }, "hostname": { "type": "string", - "example": null, "maxLength": 2047, "minLength": 0 }, "port": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } } ], - "example": null, "required": [ "daysRemainingCheck", "hostname", @@ -33651,28 +31604,22 @@ }, { "type": "object", - "example": null, "properties": { "bearerToken": { - "type": "string", - "example": null + "type": "string" }, "clientId": { - "type": "string", - "example": null + "type": "string" }, "clientSecret": { - "type": "string", - "example": null + "type": "string" }, "salesforceUrl": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "clientId", "clientSecret", @@ -33684,17 +31631,14 @@ }, "ScopeBinding": { "type": "object", - "example": null, "properties": { "scopeId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "scopeRoleId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 } @@ -33702,37 +31646,29 @@ }, "SearchFieldResult": { "type": "object", - "example": null, "properties": { "context": { - "type": "string", - "example": null + "type": "string" }, "description": { - "type": "string", - "example": null + "type": "string" }, "fixedValues": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "keyword": { - "type": "string", - "example": null + "type": "string" }, "termType": { - "type": "string", - "example": null + "type": "string" } } }, "Service": { "type": "object", - "example": null, "properties": { "entityType": { "type": "string", @@ -33740,38 +31676,30 @@ "APPLICATION", "SERVICE", "ENDPOINT" - ], - "example": null + ] }, "id": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "snapshotIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, "technologies": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, "types": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ @@ -33789,8 +31717,7 @@ "MESSAGING", "PAGE", "PAGE_RESOURCE" - ], - "example": null + ] }, "uniqueItems": true } @@ -33805,29 +31732,23 @@ }, "ServiceConfig": { "type": "object", - "example": null, "properties": { "comment": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "id": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "matchSpecification": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ServiceMatchingRule" }, @@ -33836,7 +31757,6 @@ }, "name": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 } @@ -33857,49 +31777,38 @@ }, { "type": "object", - "example": null, "properties": { "applicationId": { - "type": "string", - "example": null + "type": "string" }, "probableRootCause": { "type": "object", "additionalProperties": { - "type": "object", - "example": null + "type": "object" }, - "example": null, "writeOnly": true }, "serviceId": { - "type": "string", - "example": null + "type": "string" } } } - ], - "example": null + ] }, "ServiceItem": { "type": "object", - "example": null, "properties": { "metrics": { "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } - }, - "example": null + } }, "service": { "$ref": "#/components/schemas/Service" @@ -33920,7 +31829,6 @@ }, "propertyName": "blueprint" }, - "example": null, "properties": { "aggregation": { "type": "string", @@ -33938,12 +31846,10 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "blueprint": { "type": "string", @@ -33951,21 +31857,18 @@ "latency", "availability", "custom" - ], - "example": null + ] }, "threshold": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "type": { "type": "string", "enum": [ "eventBased", "timeBased" - ], - "example": null + ] } } }, @@ -33977,35 +31880,29 @@ }, { "type": "object", - "example": null, "properties": { "metric": { "type": "string", "enum": [ "STATUS" - ], - "example": null + ] } } } - ], - "example": null + ] }, "ServiceLevelObjectiveConfiguration": { "type": "object", - "example": null, "properties": { "createdDate": { "type": "string", - "format": "date-time", - "example": null + "format": "date-time" }, "entity": { "$ref": "#/components/schemas/SloEntity" }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, @@ -34014,25 +31911,20 @@ }, "lastUpdated": { "type": "string", - "format": "date-time", - "example": null + "format": "date-time" }, "name": { - "type": "string", - "example": null + "type": "string" }, "tags": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "target": { "type": "number", "format": "double", - "example": null, "exclusiveMaximum": false, "exclusiveMinimum": true, "maximum": 0.9999, @@ -34053,14 +31945,11 @@ }, "ServiceLevelsAlertConfig": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -34068,7 +31957,6 @@ }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -34077,13 +31965,11 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -34092,15 +31978,12 @@ }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "sloIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -34113,8 +31996,7 @@ "$ref": "#/components/schemas/ServiceLevelsTimeThreshold" }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -34137,11 +32019,9 @@ }, "propertyName": "alertType" }, - "example": null, "properties": { "alertType": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -34150,25 +32030,24 @@ }, "ServiceLevelsTimeThreshold": { "type": "object", - "example": null, "properties": { + "expiry": { + "type": "integer", + "format": "int64" + }, "timeWindow": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } }, "ServiceLevelseAlertConfigWithMetadata": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -34177,12 +32056,10 @@ "created": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -34191,50 +32068,41 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "initialCreated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "readOnly": { - "type": "boolean", - "example": null + "type": "boolean" }, "rule": { "$ref": "#/components/schemas/ServiceLevelsAlertRule" }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "sloIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -34247,8 +32115,7 @@ "$ref": "#/components/schemas/ServiceLevelsTimeThreshold" }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -34265,11 +32132,9 @@ }, "ServiceMap": { "type": "object", - "example": null, "properties": { "connections": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ServiceMapConnection" }, @@ -34277,7 +32142,6 @@ }, "services": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ExtendedService" }, @@ -34291,34 +32155,28 @@ }, "ServiceMapConnection": { "type": "object", - "example": null, "properties": { "calls": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "errorRate": { "type": "number", "format": "double", - "example": null, "maximum": 1, "minimum": 0 }, "from": { - "type": "string", - "example": null + "type": "string" }, "latency": { "type": "number", "format": "double", - "example": null, "minimum": 0 }, "to": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -34328,15 +32186,12 @@ }, "ServiceMatchingRule": { "type": "object", - "example": null, "properties": { "key": { - "type": "string", - "example": null + "type": "string" }, "value": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -34346,14 +32201,12 @@ }, "ServiceMetricResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ServiceItem" } @@ -34361,19 +32214,16 @@ "page": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "pageSize": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -34383,22 +32233,18 @@ }, "ServiceNode": { "type": "object", - "example": null, "properties": { "endpoints": { "type": "object", "additionalProperties": { "$ref": "#/components/schemas/EndpointNode" - }, - "example": null + } }, "inclusive": { - "type": "boolean", - "example": null + "type": "boolean" }, "serviceId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 } @@ -34416,28 +32262,22 @@ }, { "type": "object", - "example": null, "properties": { "autoCloseIncidents": { - "type": "boolean", - "example": null + "type": "boolean" }, "password": { - "type": "string", - "example": null + "type": "string" }, "serviceNowUrl": { - "type": "string", - "example": null + "type": "string" }, "username": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "id", "kind", @@ -34449,39 +32289,32 @@ }, "ServiceResult": { "type": "object", - "example": null, "properties": { "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Service" } }, "page": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "pageSize": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "totalHits": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } } }, "ServiceScope": { "type": "object", - "example": null, "properties": { "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -34495,15 +32328,12 @@ }, "ServiceScopeWithMetadata": { "type": "object", - "example": null, "properties": { "id": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" }, "scopedTo": { "$ref": "#/components/schemas/ServiceScopedToWithMetadata" @@ -34515,11 +32345,9 @@ }, "ServiceScopedTo": { "type": "object", - "example": null, "properties": { "applications": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApplicationScope" }, @@ -34533,11 +32361,9 @@ }, "ServiceScopedToWithMetadata": { "type": "object", - "example": null, "properties": { "applications": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/ApplicationScopeWithMetadata" }, @@ -34551,33 +32377,27 @@ }, "ServiceSimple": { "type": "object", - "example": null, "properties": { "id": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" } } }, "SessionSettings": { "type": "object", - "example": null, "properties": { "idleTimeInMillis": { "type": "integer", "format": "int64", - "example": null, "maximum": 28800000, "minimum": 60000 }, "tokenLifeTimeInMillis": { "type": "integer", "format": "int64", - "example": null, "maximum": 604800000, "minimum": 900000 } @@ -34591,24 +32411,19 @@ }, { "type": "object", - "example": null, "properties": { "channel": { - "type": "string", - "example": null + "type": "string" }, "iconUrl": { - "type": "string", - "example": null + "type": "string" }, "webhookUrl": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "id", "kind", @@ -34618,18 +32433,15 @@ }, "SliConfiguration": { "type": "object", - "example": null, "properties": { "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "initialEvaluationTimestamp": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "metricConfiguration": { "$ref": "#/components/schemas/MetricConfiguration" @@ -34639,7 +32451,6 @@ }, "sliName": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 } @@ -34652,23 +32463,19 @@ }, "SliConfigurationWithLastUpdated": { "type": "object", - "example": null, "properties": { "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "initialEvaluationTimestamp": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "metricConfiguration": { @@ -34679,7 +32486,6 @@ }, "sliName": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 } @@ -34701,11 +32507,9 @@ }, "propertyName": "sliType" }, - "example": null, "properties": { "sliType": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -34714,46 +32518,37 @@ }, "SliReport": { "type": "object", - "example": null, "properties": { "errorBudgetRemaining": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "fromTimestamp": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "sli": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "slo": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "toTimestamp": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "totalErrorBudget": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "violationDistribution": { "type": "object", "additionalProperties": { "type": "integer", - "format": "int32", - "example": null - }, - "example": null + "format": "int32" + } } } }, @@ -34766,14 +32561,12 @@ }, "propertyName": "type" }, - "example": null, "properties": { "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" }, "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -34782,78 +32575,62 @@ }, "SloReport": { "type": "object", - "example": null, "properties": { "errorAccumulationChart": { "type": "object", "additionalProperties": { "type": "integer", - "format": "int32", - "example": null - }, - "example": null + "format": "int32" + } }, "errorBudgetRemainChart": { "type": "object", "additionalProperties": { "type": "integer", - "format": "int32", - "example": null - }, - "example": null + "format": "int32" + } }, "errorBudgetRemaining": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "errorBudgetSpent": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "errorChart": { "type": "object", "additionalProperties": { "type": "integer", - "format": "int32", - "example": null - }, - "example": null + "format": "int32" + } }, "fromTimestamp": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "sli": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "slo": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "toTimestamp": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "totalErrorBudget": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "violationDistribution": { "type": "object", "additionalProperties": { "type": "integer", - "format": "int32", - "example": null - }, - "example": null + "format": "int32" + } } } }, @@ -34864,7 +32641,6 @@ "$ref": "#/components/schemas/ApplicationAlertRule" } ], - "example": null, "required": [ "aggregation", "metricName" @@ -34877,7 +32653,6 @@ "$ref": "#/components/schemas/WebsiteAlertRule" } ], - "example": null, "required": [ "aggregation", "metricName" @@ -34886,80 +32661,62 @@ "SnapshotItem": { "type": "object", "description": "Detail information for requested snapshots.", - "example": null, "properties": { "data": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } }, "from": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "host": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "plugin": { - "type": "string", - "example": null + "type": "string" }, "snapshotId": { - "type": "string", - "example": null + "type": "string" }, "tags": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "to": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } }, "SnapshotPreview": { "type": "object", - "example": null, "properties": { "data": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } }, "id": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "plugin": { - "type": "string", - "example": null + "type": "string" }, "time": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 } }, @@ -34969,11 +32726,9 @@ }, "SnapshotResult": { "type": "object", - "example": null, "properties": { "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SnapshotItem" } @@ -34982,65 +32737,51 @@ }, "SoftwareUser": { "type": "object", - "example": null, "properties": { "container": { - "type": "string", - "example": null + "type": "string" }, "host": { - "type": "string", - "example": null + "type": "string" }, "process": { - "type": "string", - "example": null + "type": "string" }, "snapshotId": { - "type": "string", - "example": null + "type": "string" } } }, "SoftwareVersion": { "type": "object", - "example": null, "properties": { "metadata": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "name": { - "type": "string", - "example": null + "type": "string" }, "origin": { - "type": "string", - "example": null + "type": "string" }, "type": { - "type": "string", - "example": null + "type": "string" }, "usedBy": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SoftwareUser" }, "uniqueItems": true }, "vendor": { - "type": "string", - "example": null + "type": "string" }, "version": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -35054,53 +32795,43 @@ }, "SourceMapFileBlob": { "type": "object", - "example": null, "properties": { "blobIndex": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "size": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "sizeOnDisk": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } }, "SourceMapFileMeta": { "type": "object", - "example": null, "properties": { "blobs": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SourceMapFileBlob" } }, "format": { - "type": "string", - "example": null + "type": "string" }, "meta": { - "type": "string", - "example": null + "type": "string" }, "size": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "sizeOnDisk": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "type": { "type": "string", @@ -35109,12 +32840,10 @@ "JS", "R8PG_MAP", "DWARF" - ], - "example": null + ] }, "url": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -35125,24 +32854,19 @@ }, "SourceMapUploadConfig": { "type": "object", - "example": null, "properties": { "createdAt": { "type": "string", - "format": "date-time", - "example": null + "format": "date-time" }, "description": { - "type": "string", - "example": null + "type": "string" }, "id": { - "type": "string", - "example": null + "type": "string" }, "metadata": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SourceMapFileMeta" }, @@ -35151,8 +32875,7 @@ }, "modifiedAt": { "type": "string", - "format": "date-time", - "example": null + "format": "date-time" } }, "required": [ @@ -35162,32 +32885,26 @@ }, "Span": { "type": "object", - "example": null, "properties": { "batchSelfTime": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "batchSize": { "type": "integer", "format": "int32", - "example": null, "minimum": 0 }, "calculatedSelfTime": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "callId": { - "type": "string", - "example": null + "type": "string" }, "childSpans": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Span" } @@ -35195,10 +32912,8 @@ "data": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } }, "destination": { "$ref": "#/components/schemas/SpanRelation" @@ -35206,26 +32921,21 @@ "duration": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "errorCount": { "type": "integer", "format": "int32", - "example": null, "minimum": 0 }, "foreignParentId": { - "type": "string", - "example": null + "type": "string" }, "id": { - "type": "string", - "example": null + "type": "string" }, "isSynthetic": { - "type": "boolean", - "example": null + "type": "boolean" }, "kind": { "type": "string", @@ -35234,29 +32944,24 @@ "ENTRY", "EXIT", "INTERMEDIATE" - ], - "example": null + ] }, "label": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "name": { - "type": "string", - "example": null + "type": "string" }, "parentId": { - "type": "string", - "example": null + "type": "string" }, "source": { "$ref": "#/components/schemas/SpanRelation" }, "stackTrace": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/StackTraceItem" } @@ -35264,7 +32969,6 @@ "start": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 } }, @@ -35281,35 +32985,28 @@ }, "SpanExcerpt": { "type": "object", - "example": null, "properties": { "data": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } }, "duration": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "errorCount": { "type": "integer", "format": "int32", - "example": null, "minimum": 0 }, "foreignParentId": { - "type": "string", - "example": null + "type": "string" }, "id": { - "type": "string", - "example": null + "type": "string" }, "kind": { "type": "string", @@ -35318,20 +33015,16 @@ "ENTRY", "EXIT", "INTERMEDIATE" - ], - "example": null + ] }, "name": { - "type": "string", - "example": null + "type": "string" }, "parentId": { - "type": "string", - "example": null + "type": "string" }, "stackTrace": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/StackTraceItem" } @@ -35339,7 +33032,6 @@ "start": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 } }, @@ -35353,11 +33045,9 @@ }, "SpanRelation": { "type": "object", - "example": null, "properties": { "applications": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Application" }, @@ -35385,7 +33075,6 @@ }, { "type": "object", - "example": null, "properties": { "operator": { "type": "string", @@ -35406,17 +33095,14 @@ "ENDS_WITH", "NOT_STARTS_WITH", "NOT_ENDS_WITH" - ], - "example": null + ] }, "value": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "metricName", "operator" @@ -35430,20 +33116,16 @@ }, { "type": "object", - "example": null, "properties": { "token": { - "type": "string", - "example": null + "type": "string" }, "url": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "id", "kind", @@ -35454,54 +33136,43 @@ }, "StackTraceItem": { "type": "object", - "example": null, "properties": { "file": { - "type": "string", - "example": null + "type": "string" }, "line": { - "type": "string", - "example": null + "type": "string" }, "method": { - "type": "string", - "example": null + "type": "string" } } }, "StackTraceLine": { "type": "object", - "example": null, "properties": { "column": { "type": "integer", "format": "int32", - "example": null, "minimum": -1 }, "file": { - "type": "string", - "example": null + "type": "string" }, "line": { "type": "integer", "format": "int32", - "example": null, "minimum": -1 }, "name": { - "type": "string", - "example": null + "type": "string" }, "translationExplanation": { - "type": "string", - "example": null + "type": "string" }, "translationStatus": { "type": "integer", "format": "int32", - "example": null, "minimum": -1 } }, @@ -35517,16 +33188,13 @@ }, { "type": "object", - "example": null, "properties": { "value": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "key", "value" @@ -35540,24 +33208,20 @@ }, { "type": "object", - "example": null, "properties": { "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "value": { "type": "number", "format": "double", - "example": null, "minimum": 0 } } } ], - "example": null, "required": [ "operator" ] @@ -35570,24 +33234,20 @@ }, { "type": "object", - "example": null, "properties": { "statusCodeEnd": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "statusCodeStart": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 } } } ], - "example": null, "required": [ "metricName" ] @@ -35600,7 +33260,6 @@ }, { "type": "object", - "example": null, "properties": { "operator": { "type": "string", @@ -35621,17 +33280,14 @@ "ENDS_WITH", "NOT_STARTS_WITH", "NOT_ENDS_WITH" - ], - "example": null + ] }, "value": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "metricName", "operator", @@ -35646,7 +33302,6 @@ }, { "type": "object", - "example": null, "properties": { "operator": { "type": "string", @@ -35667,17 +33322,14 @@ "ENDS_WITH", "NOT_STARTS_WITH", "NOT_ENDS_WITH" - ], - "example": null + ] }, "value": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "metricName", "operator", @@ -35686,14 +33338,11 @@ }, "SyntheticAlertConfig": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -35701,7 +33350,6 @@ }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -35710,13 +33358,11 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -35725,15 +33371,12 @@ }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "syntheticTestIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, @@ -35757,14 +33400,11 @@ }, "SyntheticAlertConfigWithMetadata": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -35773,12 +33413,10 @@ "created": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -35787,50 +33425,41 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "initialCreated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "readOnly": { - "type": "boolean", - "example": null + "type": "boolean" }, "rule": { "$ref": "#/components/schemas/SyntheticAlertRule" }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "syntheticTestIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, @@ -35861,7 +33490,6 @@ }, "propertyName": "alertType" }, - "example": null, "properties": { "aggregation": { "type": "string", @@ -35879,20 +33507,16 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "alertType": { - "type": "string", - "example": null + "type": "string" }, "metricName": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -35902,11 +33526,9 @@ }, "SyntheticCallConfig": { "type": "object", - "example": null, "properties": { "customRules": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SyntheticCallRule" }, @@ -35914,8 +33536,7 @@ "minItems": 0 }, "defaultRulesEnabled": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -35924,24 +33545,20 @@ }, "SyntheticCallRule": { "type": "object", - "example": null, "properties": { "description": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "matchSpecification": { "$ref": "#/components/schemas/MatchExpressionDTO" }, "name": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 } @@ -35953,11 +33570,9 @@ }, "SyntheticCallWithDefaultsConfig": { "type": "object", - "example": null, "properties": { "customRules": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SyntheticCallRule" }, @@ -35966,14 +33581,12 @@ }, "defaultRules": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SyntheticCallRule" } }, "defaultRulesEnabled": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -35983,15 +33596,12 @@ }, "SyntheticCredentials": { "type": "object", - "example": null, "properties": { "credentialName": { - "type": "string", - "example": null + "type": "string" }, "credentialValue": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -36001,25 +33611,20 @@ }, "SyntheticGeoPoint": { "type": "object", - "example": null, "properties": { "cityName": { - "type": "string", - "example": null + "type": "string" }, "countryName": { - "type": "string", - "example": null + "type": "string" }, "latitude": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "longitude": { "type": "number", - "format": "double", - "example": null + "format": "double" } }, "required": [ @@ -36031,33 +33636,27 @@ }, "SyntheticLocation": { "type": "object", - "example": null, "properties": { "configuration": { "$ref": "#/components/schemas/SyntheticLocationConfiguration" }, "createdAt": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "customProperties": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "description": { "type": "string", - "example": null, "maxLength": 512, "minLength": 0 }, "displayLabel": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 }, @@ -36066,47 +33665,39 @@ }, "id": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "label": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 }, "locationType": { - "type": "string", - "example": null + "type": "string" }, "modifiedAt": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "observedAt": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "playbackCapabilities": { "$ref": "#/components/schemas/SyntheticPlaybackCapabilities" }, "popVersion": { "type": "string", - "example": null, "maxLength": 64, "minLength": 1 }, "status": { - "type": "string", - "example": null + "type": "string" }, "totalTests": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" } }, "required": [ @@ -36118,21 +33709,17 @@ }, "SyntheticLocationConfiguration": { "type": "object", - "example": null, "properties": { "clusterName": { - "type": "string", - "example": null + "type": "string" }, "namespace": { - "type": "string", - "example": null + "type": "string" } } }, "SyntheticMetricConfiguration": { "type": "object", - "example": null, "properties": { "aggregation": { "type": "string", @@ -36150,21 +33737,17 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "granularity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "metric": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -36174,26 +33757,21 @@ }, "SyntheticPlaybackCapabilities": { "type": "object", - "example": null, "properties": { "browserType": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ "chrome", "firefox" - ], - "example": null + ] } }, "syntheticType": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } }, @@ -36204,21 +33782,17 @@ }, "SyntheticTest": { "type": "object", - "example": null, "properties": { "active": { - "type": "boolean", - "example": null + "type": "boolean" }, "applicationId": { "type": "string", - "example": null, "maxLength": 512, "minLength": 0 }, "applicationLabel": { "type": "string", - "example": null, "maxLength": 512, "minLength": 0 }, @@ -36227,73 +33801,58 @@ }, "createdAt": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "createdBy": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "customProperties": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "description": { "type": "string", - "example": null, "maxLength": 512, "minLength": 0 }, "id": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 }, "label": { "type": "string", - "example": null, "maxLength": 128, "minLength": 1 }, "locationDisplayLabels": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "locationLabels": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "locations": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "modifiedAt": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "modifiedBy": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, @@ -36302,17 +33861,14 @@ "enum": [ "Simultaneous", "Staggered" - ], - "example": null + ] }, "tenantId": { - "type": "string", - "example": null + "type": "string" }, "testFrequency": { "type": "integer", "format": "int32", - "example": null, "maximum": 1440, "minimum": 1 } @@ -36333,16 +33889,13 @@ }, "propertyName": "type" }, - "example": null, "properties": { "type": { - "type": "string", - "example": null + "type": "string" }, "violationsCount": { "type": "integer", "format": "int32", - "example": null, "maximum": 12, "minimum": 1 } @@ -36367,23 +33920,19 @@ }, "propertyName": "syntheticType" }, - "example": null, "properties": { "markSyntheticCall": { - "type": "boolean", - "example": null + "type": "boolean" }, "retries": { "type": "integer", "format": "int32", - "example": null, "maximum": 2, "minimum": 0 }, "retryInterval": { "type": "integer", "format": "int32", - "example": null, "maximum": 10, "minimum": 1 }, @@ -36398,12 +33947,10 @@ "WebpageAction", "WebpageScript", "NotConfigured" - ], - "example": null + ] }, "timeout": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -36419,33 +33966,26 @@ }, { "type": "object", - "example": null, "properties": { "locationIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "probableRootCause": { "type": "object", "additionalProperties": { - "type": "object", - "example": null + "type": "object" }, - "example": null, "writeOnly": true }, "syntheticTestId": { - "type": "string", - "example": null + "type": "string" } } } - ], - "example": null + ] }, "SystemRule": { "type": "object", @@ -36455,31 +33995,25 @@ }, { "type": "object", - "example": null, "properties": { "systemRuleId": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "systemRuleId" ] }, "SystemRuleLabel": { "type": "object", - "example": null, "properties": { "id": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -36489,33 +34023,26 @@ }, "Tag": { "type": "object", - "example": null, "properties": { "canApplyToDestination": { - "type": "boolean", - "example": null + "type": "boolean" }, "canApplyToSource": { - "type": "boolean", - "example": null + "type": "boolean" }, "description": { - "type": "string", - "example": null + "type": "string" }, "idTag": { - "type": "boolean", - "example": null + "type": "boolean" }, "label": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "name": { - "type": "string", - "example": null + "type": "string" }, "type": { "type": "string", @@ -36527,8 +34054,7 @@ "STRING_LIST", "KEY_VALUE_PAIR", "KEY_NUMBER_PAIR" - ], - "example": null + ] } }, "required": [ @@ -36538,18 +34064,15 @@ }, "TagCatalog": { "type": "object", - "example": null, "properties": { "tagTree": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagTreeLevel" } }, "tags": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/Tag" } @@ -36568,7 +34091,6 @@ }, { "type": "object", - "example": null, "properties": { "entity": { "type": "string", @@ -36577,20 +34099,17 @@ "NOT_APPLICABLE", "DESTINATION", "SOURCE" - ], - "example": null + ] }, "key": { "type": "string", "description": "Tag key in case of a key/value tag.", - "example": null, "maxLength": 512, "minLength": 0 }, "name": { "type": "string", "description": "Name of the tag.", - "example": null, "maxLength": 128, "minLength": 0 }, @@ -36613,18 +34132,15 @@ "ENDS_WITH", "NOT_STARTS_WITH", "NOT_ENDS_WITH" - ], - "example": null + ] }, "value": { "type": "object", - "description": "Tag value to filter on. Can be a string, number, or boolean value.", - "example": null + "description": "Tag value to filter on. Can be a string, number, or boolean value." } } } ], - "example": null, "required": [ "entity", "name", @@ -36639,11 +34155,9 @@ }, { "type": "object", - "example": null, "properties": { "elements": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagFilterExpressionElement" } @@ -36653,13 +34167,11 @@ "enum": [ "AND", "OR" - ], - "example": null + ] } } } ], - "example": null, "required": [ "elements", "logicalOperator" @@ -36674,11 +34186,9 @@ }, "propertyName": "type" }, - "example": null, "properties": { "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -36693,7 +34203,6 @@ }, { "type": "object", - "example": null, "properties": { "entity": { "type": "string", @@ -36701,12 +34210,10 @@ "NOT_APPLICABLE", "DESTINATION", "SOURCE" - ], - "example": null + ] }, "key": { - "type": "string", - "example": null + "type": "string" }, "operator": { "type": "string", @@ -36727,17 +34234,14 @@ "LESS_OR_EQUAL_THAN", "LESS_THAN", "GREATER_THAN" - ], - "example": null + ] }, "value": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "entity", "key", @@ -36746,45 +34250,37 @@ }, "TagTreeLevel": { "type": "object", - "example": null, "properties": { "children": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagTreeNode" } }, "description": { "type": "string", - "example": null, "maxLength": 512, "minLength": 0 }, "icon": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "label": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "queryable": { - "type": "boolean", - "example": null + "type": "boolean" }, "scoreBoost": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -36801,19 +34297,15 @@ }, "propertyName": "type" }, - "example": null, "properties": { "icon": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "type": { - "type": "string", - "example": null + "type": "string" } } }, @@ -36825,49 +34317,40 @@ }, { "type": "object", - "example": null, "properties": { "description": { "type": "string", - "example": null, "maxLength": 512, "minLength": 0 }, "hidden": { - "type": "boolean", - "example": null + "type": "boolean" }, "icon": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "label": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "queryable": { - "type": "boolean", - "example": null + "type": "boolean" }, "scoreBoost": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "tagName": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 } } } ], - "example": null, "required": [ "label", "tagName" @@ -36875,81 +34358,63 @@ }, "TestCommonProperties": { "type": "object", - "example": null, "properties": { "active": { - "type": "boolean", - "example": null + "type": "boolean" }, "applicationId": { - "type": "string", - "example": null + "type": "string" }, "applicationLabel": { - "type": "string", - "example": null + "type": "string" }, "createdAt": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "frequency": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "id": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "locationDisplayLabels": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "locationIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "locationLabels": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "locationStatusList": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/LocationStatus" } }, "modifiedAt": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "serviceId": { - "type": "string", - "example": null + "type": "string" }, "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -36962,18 +34427,15 @@ }, "TestResult": { "type": "object", - "example": null, "properties": { "testResult": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TestResultItem" } }, "testResultItems": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TestResultItem" }, @@ -36983,50 +34445,39 @@ }, "TestResultCommonProperties": { "type": "object", - "example": null, "properties": { "clientId": { - "type": "string", - "example": null + "type": "string" }, "customTags": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "errors": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "id": { - "type": "string", - "example": null + "type": "string" }, "locationDisplayLabel": { - "type": "string", - "example": null + "type": "string" }, "locationId": { - "type": "string", - "example": null + "type": "string" }, "testCommonProperties": { "$ref": "#/components/schemas/TestCommonProperties" }, "testId": { - "type": "string", - "example": null + "type": "string" }, "testName": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -37036,122 +34487,94 @@ }, "TestResultDetailData": { "type": "object", - "example": null, "properties": { "har": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } }, "imageFiles": { "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "string", - "format": "byte", - "example": null + "format": "byte" } - }, - "example": null + } }, "logFiles": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "logs": { - "type": "string", - "example": null + "type": "string" }, "subtransactionAvgMetrics": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } }, "subtransactions": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TestResultSubtransaction" } }, "testId": { - "type": "string", - "example": null + "type": "string" }, "testResultId": { - "type": "string", - "example": null + "type": "string" }, "videos": { "type": "array", - "example": null, "items": { "type": "string", - "format": "byte", - "example": null + "format": "byte" } } } }, "TestResultItem": { "type": "object", - "example": null, "properties": { "applicationId": { - "type": "string", - "example": null + "type": "string" }, "customTags": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "locationId": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "metrics": { "type": "array", - "example": null, "items": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } } }, "serviceId": { - "type": "string", - "example": null + "type": "string" }, "testId": { - "type": "string", - "example": null + "type": "string" }, "testName": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -37160,23 +34583,18 @@ }, "TestResultListItem": { "type": "object", - "example": null, "properties": { "metrics": { "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } - }, - "example": null + } }, "testResultCommonProperties": { "$ref": "#/components/schemas/TestResultCommonProperties" @@ -37189,11 +34607,9 @@ }, "TestResultListResult": { "type": "object", - "example": null, "properties": { "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TestResultListItem" } @@ -37201,19 +34617,16 @@ "page": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "pageSize": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -37223,23 +34636,22 @@ }, "TestResultMetadata": { "type": "object", - "example": null, "properties": { "metadata": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } + }, + "startTime": { + "type": "integer", + "format": "int64" }, "testId": { - "type": "string", - "example": null + "type": "string" }, "testResultId": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -37248,23 +34660,18 @@ }, "TestResultSubtransaction": { "type": "object", - "example": null, "properties": { "metrics": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } }, "properties": { "type": "object", "additionalProperties": { - "type": "object", - "example": null - }, - "example": null + "type": "object" + } } }, "required": [ @@ -37282,7 +34689,6 @@ }, "propertyName": "type" }, - "example": null, "properties": { "operator": { "type": "string", @@ -37291,12 +34697,10 @@ ">=", "<", "<=" - ], - "example": null + ] }, "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -37312,7 +34716,6 @@ }, { "type": "object", - "example": null, "properties": { "aggregation": { "type": "string", @@ -37323,8 +34726,7 @@ "max", "absolute_diff", "relative_diff" - ], - "example": null + ] }, "conditionOperator": { "type": "string", @@ -37335,17 +34737,14 @@ "<=", "=", "!=" - ], - "example": null + ] }, "conditionValue": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "metricName": { "type": "string", - "example": null, "maxLength": 512, "minLength": 0 }, @@ -37354,18 +34753,15 @@ }, "rollup": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "window": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } } ], - "example": null, "required": [ "conditionOperator" ] @@ -37377,7 +34773,6 @@ "$ref": "#/components/schemas/ApplicationAlertRule" } ], - "example": null, "required": [ "metricName" ] @@ -37389,7 +34784,6 @@ "$ref": "#/components/schemas/MobileAppAlertRule" } ], - "example": null, "required": [ "metricName" ] @@ -37401,26 +34795,22 @@ "$ref": "#/components/schemas/WebsiteAlertRule" } ], - "example": null, "required": [ "metricName" ] }, "TimeFrame": { "type": "object", - "example": null, "properties": { "to": { "type": "integer", "format": "int64", - "description": "end of timeframe expressed as the Unix epoch time in milliseconds", - "example": null + "description": "end of timeframe expressed as the Unix epoch time in milliseconds" }, "windowSize": { "type": "integer", "format": "int64", "description": "windowSize in milliseconds", - "example": null, "maximum": 2678400000, "minimum": 0 } @@ -37435,12 +34825,10 @@ }, "propertyName": "type" }, - "example": null, "properties": { "duration": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "durationUnit": { "type": "string", @@ -37452,12 +34840,10 @@ "day", "week", "month" - ], - "example": null + ] }, "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -37468,18 +34854,15 @@ }, "Topology": { "type": "object", - "example": null, "properties": { "edges": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/GraphEdge" } }, "nodes": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/GraphNode" } @@ -37488,28 +34871,23 @@ }, "Trace": { "type": "object", - "example": null, "properties": { "duration": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "endpoint": { "$ref": "#/components/schemas/Endpoint" }, "erroneous": { - "type": "boolean", - "example": null + "type": "boolean" }, "id": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "service": { "$ref": "#/components/schemas/Service" @@ -37517,7 +34895,6 @@ "startTime": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 } }, @@ -37528,17 +34905,14 @@ }, "TraceActivityTreeNodeDetails": { "type": "object", - "example": null, "properties": { "batchSelfTime": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "batchSize": { "type": "integer", "format": "int32", - "example": null, "minimum": 0 }, "destination": { @@ -37547,33 +34921,27 @@ "duration": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "errorCount": { "type": "integer", "format": "int32", - "example": null, "minimum": 0 }, "id": { - "type": "string", - "example": null + "type": "string" }, "isSynthetic": { "type": "boolean", - "example": null, "writeOnly": true }, "label": { "type": "string", - "example": null, "maxLength": 128, "minLength": 0 }, "logs": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SpanExcerpt" }, @@ -37581,20 +34949,17 @@ }, "minSelfTime": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "networkTime": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "source": { "$ref": "#/components/schemas/SpanRelation" }, "spans": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/SpanExcerpt" }, @@ -37605,12 +34970,10 @@ "start": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "synthetic": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -37622,18 +34985,15 @@ }, "TraceDownloadResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "canLoadMore": { - "type": "boolean", - "example": null + "type": "boolean" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/GetTraceDownloadResultItem" } @@ -37641,19 +35001,16 @@ "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRepresentedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRetainedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -37663,7 +35020,6 @@ }, "TraceGroupsItem": { "type": "object", - "example": null, "properties": { "cursor": { "$ref": "#/components/schemas/IngestionOffsetCursor" @@ -37672,26 +35028,20 @@ "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } - }, - "example": null + } }, "name": { - "type": "string", - "example": null + "type": "string" }, "timestamp": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -37703,18 +35053,15 @@ }, "TraceGroupsResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "canLoadMore": { - "type": "boolean", - "example": null + "type": "boolean" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TraceGroupsItem" } @@ -37722,19 +35069,16 @@ "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRepresentedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRetainedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -37750,22 +35094,18 @@ }, { "type": "object", - "example": null, "properties": { "requests": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 } } } - ], - "example": null + ] }, "TraceItem": { "type": "object", - "example": null, "properties": { "cursor": { "$ref": "#/components/schemas/IngestionOffsetCursor" @@ -37781,18 +35121,15 @@ }, "TraceResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "canLoadMore": { - "type": "boolean", - "example": null + "type": "boolean" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TraceItem" } @@ -37800,19 +35137,16 @@ "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRepresentedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRetainedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -37822,15 +35156,12 @@ }, "Trigger": { "type": "object", - "example": null, "properties": { "id": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" }, "type": { "type": "string", @@ -37844,8 +35175,7 @@ "mobileAppSmartAlert", "syntheticsSmartAlert", "logSmartAlert" - ], - "example": null + ] } }, "required": [ @@ -37855,7 +35185,6 @@ }, "TypeConfiguration": { "type": "object", - "example": null, "properties": { "condition": { "$ref": "#/components/schemas/Condition" @@ -37865,8 +35194,7 @@ "enum": [ "automatic", "manual" - ], - "example": null + ] }, "runnable": { "$ref": "#/components/schemas/PolicyRunnable" @@ -37885,68 +35213,55 @@ }, { "type": "object", - "example": null, "properties": { "unsupportedType": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "type" ] }, "UsageResult": { "type": "object", - "example": null, "properties": { "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/UsageResultItems" } }, "time": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } }, "UsageResultItems": { "type": "object", - "example": null, "properties": { "name": { - "type": "string", - "example": null + "type": "string" }, "sims": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } } }, "UserBasicResult": { "type": "object", - "example": null, "properties": { "email": { - "type": "string", - "example": null + "type": "string" }, "fullName": { - "type": "string", - "example": null + "type": "string" }, "id": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -37963,20 +35278,17 @@ }, { "type": "object", - "example": null, "properties": { "impactMeasurementMethod": { "type": "string", "enum": [ "AGGREGATED", "PER_WINDOW" - ], - "example": null + ] }, "userPercentage": { "type": "number", "format": "double", - "example": null, "exclusiveMaximum": false, "exclusiveMinimum": true, "maximum": 1, @@ -37985,13 +35297,11 @@ "users": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 } } } ], - "example": null, "required": [ "impactMeasurementMethod" ] @@ -38004,20 +35314,17 @@ }, { "type": "object", - "example": null, "properties": { "impactMeasurementMethod": { "type": "string", "enum": [ "AGGREGATED", "PER_WINDOW" - ], - "example": null + ] }, "userPercentage": { "type": "number", "format": "double", - "example": null, "exclusiveMaximum": false, "exclusiveMinimum": true, "maximum": 1, @@ -38026,46 +35333,37 @@ "users": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 } } } ], - "example": null, "required": [ "impactMeasurementMethod" ] }, "UserResult": { "type": "object", - "example": null, "properties": { "email": { - "type": "string", - "example": null + "type": "string" }, "fullName": { - "type": "string", - "example": null + "type": "string" }, "groupCount": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "id": { - "type": "string", - "example": null + "type": "string" }, "lastLoggedIn": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "tfaEnabled": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -38076,11 +35374,9 @@ }, "UsersResult": { "type": "object", - "example": null, "properties": { "invitations": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/InvitationResult" }, @@ -38088,7 +35384,6 @@ }, "users": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/UserResult" }, @@ -38098,19 +35393,15 @@ }, "ValidatedAlertingChannelInputInfo": { "type": "object", - "example": null, "properties": { "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "entityId": { - "type": "string", - "example": null + "type": "string" }, "eventTypes": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ @@ -38122,8 +35413,7 @@ "offline", "agent_monitoring_issue", "none" - ], - "example": null + ] }, "maxItems": 6, "minItems": 0, @@ -38131,30 +35421,25 @@ }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "invalid": { - "type": "boolean", - "example": null + "type": "boolean" }, "label": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "query": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, "selectedEvents": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "type": { "type": "string", @@ -38166,8 +35451,7 @@ "GlobalApplicationSmartAlert", "SyntheticSmartAlert", "InfraSmartAlert" - ], - "example": null + ] } }, "required": [ @@ -38178,35 +35462,28 @@ }, "ValidatedAlertingConfiguration": { "type": "object", - "example": null, "properties": { "alertChannelNames": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, "alertName": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "applicationNames": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/StaticStringField" }, @@ -38218,35 +35495,29 @@ }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "integrationIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, "uniqueItems": true }, "invalid": { - "type": "boolean", - "example": null + "type": "boolean" }, "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "muteUntil": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" } }, "required": [ @@ -38259,36 +35530,29 @@ }, "ValidatedMaintenanceConfigV2WithStateAndOccurrence": { "type": "object", - "example": null, "properties": { "applicationNames": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "invalid": { - "type": "boolean", - "example": null + "type": "boolean" }, "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -38296,12 +35560,10 @@ "$ref": "#/components/schemas/Occurrence" }, "paused": { - "type": "boolean", - "example": null + "type": "boolean" }, "query": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, @@ -38316,15 +35578,13 @@ "ACTIVE", "PAUSED", "EXPIRED" - ], - "example": null + ] }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" }, "tagFilterExpressionEnabled": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -38337,33 +35597,27 @@ }, "ValidatedMaintenanceConfigWithStatus": { "type": "object", - "example": null, "properties": { "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "invalid": { - "type": "boolean", - "example": null + "type": "boolean" }, "lastUpdated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "query": { "type": "string", - "example": null, "maxLength": 2048, "minLength": 0 }, @@ -38375,12 +35629,10 @@ "ACTIVE", "FINISHED", "PAUSED" - ], - "example": null + ] }, "windows": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/MaintenanceWindow" }, @@ -38404,20 +35656,16 @@ }, { "type": "object", - "example": null, "properties": { "apiKey": { - "type": "string", - "example": null + "type": "string" }, "routingKey": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "apiKey", "id", @@ -38434,19 +35682,16 @@ }, { "type": "object", - "example": null, "properties": { "violations": { "type": "integer", "format": "int32", - "example": null, "maximum": 12, "minimum": 1 } } } - ], - "example": null + ] }, "ViolationsInPeriodMobileAppTimeThreshold": { "type": "object", @@ -38456,19 +35701,16 @@ }, { "type": "object", - "example": null, "properties": { "violations": { "type": "integer", "format": "int32", - "example": null, "maximum": 12, "minimum": 1 } } } - ], - "example": null + ] }, "ViolationsInPeriodWebsiteTimeThreshold": { "type": "object", @@ -38478,19 +35720,16 @@ }, { "type": "object", - "example": null, "properties": { "violations": { "type": "integer", "format": "int32", - "example": null, "maximum": 12, "minimum": 1 } } } - ], - "example": null + ] }, "ViolationsInSequenceApplicationTimeThreshold": { "type": "object", @@ -38498,8 +35737,7 @@ { "$ref": "#/components/schemas/ApplicationTimeThreshold" } - ], - "example": null + ] }, "ViolationsInSequenceInfraTimeThreshold": { "type": "object", @@ -38507,8 +35745,7 @@ { "$ref": "#/components/schemas/InfraTimeThreshold" } - ], - "example": null + ] }, "ViolationsInSequenceMobileAppTimeThreshold": { "type": "object", @@ -38516,8 +35753,7 @@ { "$ref": "#/components/schemas/MobileAppTimeThreshold" } - ], - "example": null + ] }, "ViolationsInSequenceSyntheticTimeThreshold": { "type": "object", @@ -38525,8 +35761,7 @@ { "$ref": "#/components/schemas/SyntheticTimeThreshold" } - ], - "example": null + ] }, "ViolationsInSequenceWebsiteTimeThreshold": { "type": "object", @@ -38534,8 +35769,7 @@ { "$ref": "#/components/schemas/WebsiteTimeThreshold" } - ], - "example": null + ] }, "WatsonAIOpsWebhookIntegration": { "type": "object", @@ -38545,24 +35779,19 @@ }, { "type": "object", - "example": null, "properties": { "headers": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "webhookUrl": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "id", "kind", @@ -38578,16 +35807,13 @@ }, { "type": "object", - "example": null, "properties": { "webhookUrl": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "id", "kind", @@ -38603,28 +35829,22 @@ }, { "type": "object", - "example": null, "properties": { "headers": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } }, "webhookUrls": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" } } } } ], - "example": null, "required": [ "id", "kind", @@ -38640,30 +35860,25 @@ }, { "type": "object", - "example": null, "properties": { "browser": { "type": "string", "enum": [ "chrome", "firefox" - ], - "example": null + ] }, "recordVideo": { - "type": "boolean", - "example": null + "type": "boolean" }, "url": { "type": "string", - "example": null, "maxLength": 2047, "minLength": 0 } } } ], - "example": null, "required": [ "markSyntheticCall", "syntheticType", @@ -38678,30 +35893,25 @@ }, { "type": "object", - "example": null, "properties": { "browser": { "type": "string", "enum": [ "chrome", "firefox" - ], - "example": null + ] }, "recordVideo": { - "type": "boolean", - "example": null + "type": "boolean" }, "script": { "type": "string", - "example": null, "maxLength": 1048576, "minLength": 0 } } } ], - "example": null, "required": [ "markSyntheticCall", "script", @@ -38710,19 +35920,15 @@ }, "Website": { "type": "object", - "example": null, "properties": { "appName": { - "type": "string", - "example": null + "type": "string" }, "id": { - "type": "string", - "example": null + "type": "string" }, "name": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -38732,14 +35938,11 @@ }, "WebsiteAlertConfig": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -38747,7 +35950,6 @@ }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -38756,7 +35958,6 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, @@ -38771,12 +35972,10 @@ 900000, 1200000, 1800000 - ], - "example": null + ] }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -38785,15 +35984,13 @@ }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagFilter" }, @@ -38807,12 +36004,10 @@ "$ref": "#/components/schemas/WebsiteTimeThreshold" }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" }, "websiteId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 } @@ -38832,14 +36027,11 @@ }, "WebsiteAlertConfigWithMetadata": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -38848,12 +36040,10 @@ "created": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -38862,13 +36052,11 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "granularity": { "type": "integer", @@ -38881,45 +36069,38 @@ 900000, 1200000, 1800000 - ], - "example": null + ] }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "initialCreated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "readOnly": { - "type": "boolean", - "example": null + "type": "boolean" }, "rule": { "$ref": "#/components/schemas/WebsiteAlertRule" }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" }, "tagFilters": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/TagFilter" }, @@ -38933,12 +36114,10 @@ "$ref": "#/components/schemas/WebsiteTimeThreshold" }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" }, "websiteId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 } @@ -38969,7 +36148,6 @@ }, "propertyName": "alertType" }, - "example": null, "properties": { "aggregation": { "type": "string", @@ -38987,20 +36165,16 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "alertType": { - "type": "string", - "example": null + "type": "string" }, "metricName": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -39016,7 +36190,6 @@ }, { "type": "object", - "example": null, "properties": { "beaconType": { "type": "string", @@ -39027,13 +36200,11 @@ "error", "custom", "pageChange" - ], - "example": null + ] } } } ], - "example": null, "required": [ "beaconType", "entityId", @@ -39042,7 +36213,6 @@ }, "WebsiteBeaconGroupsItem": { "type": "object", - "example": null, "properties": { "cursor": { "$ref": "#/components/schemas/IngestionOffsetCursor" @@ -39050,28 +36220,22 @@ "earliestTimestamp": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "metrics": { "type": "object", "additionalProperties": { "type": "array", - "example": null, "items": { "type": "array", - "example": null, "items": { - "type": "number", - "example": null + "type": "number" } } - }, - "example": null + } }, "name": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -39082,18 +36246,15 @@ }, "WebsiteBeaconGroupsResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "canLoadMore": { - "type": "boolean", - "example": null + "type": "boolean" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/WebsiteBeaconGroupsItem" } @@ -39101,19 +36262,16 @@ "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRepresentedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRetainedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -39123,18 +36281,15 @@ }, "WebsiteBeaconResult": { "type": "object", - "example": null, "properties": { "adjustedTimeframe": { "$ref": "#/components/schemas/AdjustedTimeframe" }, "canLoadMore": { - "type": "boolean", - "example": null + "type": "boolean" }, "items": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/WebsiteBeaconsItem" } @@ -39142,19 +36297,16 @@ "totalHits": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRepresentedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "totalRetainedItemCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 } }, @@ -39164,11 +36316,9 @@ }, "WebsiteBeaconTagGroup": { "type": "object", - "example": null, "properties": { "groupbyTag": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, @@ -39178,12 +36328,10 @@ "NOT_APPLICABLE", "DESTINATION", "SOURCE" - ], - "example": null + ] }, "groupbyTagSecondLevelKey": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 } @@ -39195,7 +36343,6 @@ }, "WebsiteBeaconsItem": { "type": "object", - "example": null, "properties": { "beacon": { "$ref": "#/components/schemas/WebsiteMonitoringBeacon" @@ -39217,7 +36364,6 @@ }, { "type": "object", - "example": null, "properties": { "badEventFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -39231,20 +36377,17 @@ "error", "custom", "pageChange" - ], - "example": null + ] }, "goodEventFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" }, "websiteId": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "badEventFilterExpression", "beaconType", @@ -39259,396 +36402,311 @@ }, { "type": "object", - "example": null, "properties": { "probableRootCause": { "type": "object", "additionalProperties": { - "type": "object", - "example": null + "type": "object" }, - "example": null, "writeOnly": true }, "websiteId": { - "type": "string", - "example": null + "type": "string" } } } - ], - "example": null + ] }, "WebsiteMetricResult": { "type": "object", - "example": null, "properties": { "empty": { - "type": "boolean", - "example": null + "type": "boolean" } } }, "WebsiteMonitoringBeacon": { "type": "object", - "example": null, "properties": { "accuracyRadius": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "accurateTimingsAvailable": { - "type": "boolean", - "example": null + "type": "boolean" }, "agentVersion": { - "type": "string", - "example": null + "type": "string" }, "appCacheTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "backendTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "backendTraceId": { - "type": "string", - "example": null + "type": "string" }, "batchSize": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "beaconId": { - "type": "string", - "example": null + "type": "string" }, "browserName": { - "type": "string", - "example": null + "type": "string" }, "browserVersion": { - "type": "string", - "example": null + "type": "string" }, "cacheInteraction": { - "type": "string", - "example": null + "type": "string" }, "childrenTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "city": { - "type": "string", - "example": null + "type": "string" }, "clockSkew": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "componentStack": { - "type": "string", - "example": null + "type": "string" }, "connectionType": { - "type": "string", - "example": null + "type": "string" }, "continent": { - "type": "string", - "example": null + "type": "string" }, "continentCode": { - "type": "string", - "example": null + "type": "string" }, "country": { - "type": "string", - "example": null + "type": "string" }, "countryCode": { - "type": "string", - "example": null + "type": "string" }, "cspBlockedUri": { - "type": "string", - "example": null + "type": "string" }, "cspColumnNumber": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "cspDisposition": { - "type": "string", - "example": null + "type": "string" }, "cspEffectiveDirective": { - "type": "string", - "example": null + "type": "string" }, "cspLineNumber": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "cspOriginalPolicy": { - "type": "string", - "example": null + "type": "string" }, "cspSample": { - "type": "string", - "example": null + "type": "string" }, "cspSourceFile": { - "type": "string", - "example": null + "type": "string" }, "cumulativeLayoutShift": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "customEventName": { - "type": "string", - "example": null + "type": "string" }, "customMetric": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "decodedBodySize": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "deprecations": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 16, "minItems": 0, "uniqueItems": true }, "deviceType": { - "type": "string", - "example": null + "type": "string" }, "dnsTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "domTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "duration": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "encodedBodySize": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "errorCount": { "type": "integer", "format": "int64", - "example": null, "minimum": 0 }, "errorId": { - "type": "string", - "example": null + "type": "string" }, "errorMessage": { - "type": "string", - "example": null + "type": "string" }, "errorType": { - "type": "string", - "example": null + "type": "string" }, "firstContentfulPaintTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "firstInputDelayTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "firstPaintTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "frontendTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "graphqlOperationName": { - "type": "string", - "example": null + "type": "string" }, "graphqlOperationType": { - "type": "string", - "example": null + "type": "string" }, "httpCallAsynchronous": { - "type": "boolean", - "example": null + "type": "boolean" }, "httpCallCorrelationAttempted": { - "type": "boolean", - "example": null + "type": "boolean" }, "httpCallHeaders": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "httpCallMethod": { - "type": "string", - "example": null + "type": "string" }, "httpCallOrigin": { - "type": "string", - "example": null + "type": "string" }, "httpCallPath": { - "type": "string", - "example": null + "type": "string" }, "httpCallStatus": { "type": "integer", "format": "int32", - "example": null, "maximum": 599, "minimum": -1 }, "httpCallUrl": { - "type": "string", - "example": null + "type": "string" }, "initiator": { - "type": "string", - "example": null + "type": "string" }, "interactionNextPaint": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "internalMeta": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "largestContentfulPaintTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "latitude": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "locationOrigin": { - "type": "string", - "example": null + "type": "string" }, "locationPath": { - "type": "string", - "example": null + "type": "string" }, "locationUrl": { - "type": "string", - "example": null + "type": "string" }, "longitude": { "type": "number", - "format": "double", - "example": null + "format": "double" }, "meta": { "type": "object", "additionalProperties": { - "type": "string", - "example": null - }, - "example": null + "type": "string" + } }, "onLoadTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "osName": { - "type": "string", - "example": null + "type": "string" }, "osVersion": { - "type": "string", - "example": null + "type": "string" }, "page": { - "type": "string", - "example": null + "type": "string" }, "pageLoadId": { - "type": "string", - "example": null + "type": "string" }, "parentBeaconId": { - "type": "string", - "example": null + "type": "string" }, "parsedStackTrace": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/JsStackTraceLine" }, @@ -39656,151 +36714,121 @@ "minItems": 0 }, "phase": { - "type": "string", - "example": null + "type": "string" }, "processingTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "redirectTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "requestTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "resourceType": { - "type": "string", - "example": null + "type": "string" }, "responseTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "sessionId": { - "type": "string", - "example": null + "type": "string" }, "snippetVersion": { - "type": "string", - "example": null + "type": "string" }, "sslTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "stackTrace": { - "type": "string", - "example": null + "type": "string" }, "stackTraceParsingStatus": { "type": "integer", "format": "int32", - "example": null, "minimum": -1 }, "stackTraceReadability": { "type": "integer", "format": "int32", - "example": null, "minimum": 0 }, "subdivision": { - "type": "string", - "example": null + "type": "string" }, "subdivisionCode": { - "type": "string", - "example": null + "type": "string" }, "tcpTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "timestamp": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "transferSize": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "type": { - "type": "string", - "example": null + "type": "string" }, "unloadTime": { "type": "integer", "format": "int64", - "example": null, "minimum": -1 }, "userEmail": { - "type": "string", - "example": null + "type": "string" }, "userId": { - "type": "string", - "example": null + "type": "string" }, "userIp": { - "type": "string", - "example": null + "type": "string" }, "userLanguages": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 5, "minItems": 0 }, "userName": { - "type": "string", - "example": null + "type": "string" }, "websiteId": { - "type": "string", - "example": null + "type": "string" }, "websiteLabel": { - "type": "string", - "example": null + "type": "string" }, "windowHeight": { "type": "integer", "format": "int32", - "example": null, "minimum": -1 }, "windowHidden": { - "type": "boolean", - "example": null + "type": "boolean" }, "windowWidth": { "type": "integer", "format": "int32", - "example": null, "minimum": -1 } }, @@ -39816,11 +36844,9 @@ }, "WebsiteMonitoringMetricDescription": { "type": "object", - "example": null, "properties": { "aggregations": { "type": "array", - "example": null, "items": { "type": "string", "enum": [ @@ -39837,21 +36863,17 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "uniqueItems": true }, "beaconTypes": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "uniqueItems": true }, @@ -39871,42 +36893,33 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "description": { - "type": "string", - "example": null + "type": "string" }, "formatter": { - "type": "string", - "example": null + "type": "string" }, "label": { - "type": "string", - "example": null + "type": "string" }, "metricId": { - "type": "string", - "example": null + "type": "string" }, "pathToValueInBeacon": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 2147483647, "minItems": 1 }, "tagName": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -39919,7 +36932,6 @@ }, "WebsiteMonitoringMetricsConfiguration": { "type": "object", - "example": null, "properties": { "aggregation": { "type": "string", @@ -39937,21 +36949,17 @@ "P99", "P99_9", "P99_99", - "DISTRIBUTION", "DISTINCT_COUNT", "SUM_POSITIVE", "PER_SECOND" - ], - "example": null + ] }, "granularity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "metric": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -39967,7 +36975,6 @@ }, { "type": "object", - "example": null, "properties": { "beaconType": { "type": "string", @@ -39978,17 +36985,14 @@ "error", "custom", "pageChange" - ], - "example": null + ] }, "websiteId": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "beaconType", "websiteId" @@ -40002,7 +37006,6 @@ }, { "type": "object", - "example": null, "properties": { "beaconType": { "type": "string", @@ -40013,20 +37016,17 @@ "error", "custom", "pageChange" - ], - "example": null + ] }, "filterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" }, "websiteId": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "beaconType" ] @@ -40041,16 +37041,13 @@ }, "propertyName": "type" }, - "example": null, "properties": { "timeWindow": { "type": "integer", - "format": "int64", - "example": null + "format": "int64" }, "type": { - "type": "string", - "example": null + "type": "string" } }, "required": [ @@ -40059,50 +37056,41 @@ }, "Widget": { "type": "object", - "example": null, "properties": { "config": { - "type": "object", - "example": null + "type": "object" }, "height": { "type": "integer", "format": "int32", - "example": null, "minimum": 1 }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "title": { - "type": "string", - "example": null + "type": "string" }, "type": { - "type": "string", - "example": null + "type": "string" }, "width": { "type": "integer", "format": "int32", - "example": null, "maximum": 12, "minimum": 1 }, "x": { "type": "integer", "format": "int32", - "example": null, "maximum": 11, "minimum": 0 }, "y": { "type": "integer", "format": "int32", - "example": null, "minimum": 0 } }, @@ -40114,14 +37102,11 @@ }, "WithMetadata": { "type": "object", - "example": null, "properties": { "alertChannelIds": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1024, "minItems": 0, @@ -40133,12 +37118,10 @@ "created": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "customPayloadFields": { "type": "array", - "example": null, "items": { "$ref": "#/components/schemas/CustomPayloadField" }, @@ -40147,13 +37130,11 @@ }, "description": { "type": "string", - "example": null, "maxLength": 65536, "minLength": 0 }, "enabled": { - "type": "boolean", - "example": null + "type": "boolean" }, "granularity": { "type": "integer", @@ -40166,44 +37147,37 @@ 900000, 1200000, 1800000 - ], - "example": null + ] }, "id": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "initialCreated": { "type": "integer", "format": "int64", - "example": null, "minimum": 1 }, "mobileAppId": { "type": "string", - "example": null, "maxLength": 64, "minLength": 0 }, "name": { "type": "string", - "example": null, "maxLength": 256, "minLength": 0 }, "readOnly": { - "type": "boolean", - "example": null + "type": "boolean" }, "rule": { "$ref": "#/components/schemas/MobileAppAlertRule" }, "severity": { "type": "integer", - "format": "int32", - "example": null + "format": "int32" }, "tagFilterExpression": { "$ref": "#/components/schemas/TagFilterExpressionElement" @@ -40215,8 +37189,7 @@ "$ref": "#/components/schemas/MobileAppTimeThreshold" }, "triggering": { - "type": "boolean", - "example": null + "type": "boolean" } }, "required": [ @@ -40241,16 +37214,13 @@ }, { "type": "object", - "example": null, "properties": { "fullName": { - "type": "string", - "example": null + "type": "string" } } } - ], - "example": null + ] }, "ZChatOpsIntegration": { "type": "object", @@ -40260,30 +37230,24 @@ }, { "type": "object", - "example": null, "properties": { "bearerAuthToken": { - "type": "string", - "example": null + "type": "string" }, "channels": { "type": "array", - "example": null, "items": { - "type": "string", - "example": null + "type": "string" }, "maxItems": 1, "minItems": 0 }, "zchatOpsIncidentsUrl": { - "type": "string", - "example": null + "type": "string" } } } ], - "example": null, "required": [ "bearerAuthToken", "id", diff --git a/openapi.yaml b/openapi.yaml index 740c5f0..b3291bf 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -6,7 +6,7 @@ info: url: 'http://instana.com' termsOfService: 'https://www.instana.com/terms-of-use/' title: Introduction to Instana public APIs - version: 1.273.888 + version: 1.274.928 x-logo: altText: instana logo backgroundColor: '#FAFBFC' @@ -286,7 +286,7 @@ tags: - **playbackCapability** The playback capabilities provided by this location resource. The playbackCapability object has the following properties: - **syntheticType** Different types of synthetic tests that can be executed at this location. - Possible values are HTTPAction, HTTPScript, BrowserScript (Beta), WebpageAction (Beta), and WebpageScript (Beta). + Possible values are HTTPAction, HTTPScript, BrowserScript, WebpageAction, WebpageScript, and SSLCertificate. The values are corresponding to the syntheticType parameter available in the createSyntheticTest endpoint. - **browserType** Different types of supported Web browsers when creating synthetic tests for BrowserScript, WebpageAction and WebpageScript. Right now, only Chrome and Firefox are supported. @@ -304,8 +304,8 @@ tags: - **active** Indicates if the Synthetic test is started or not. The default is true. - **applicationId** Unique identifier of the Application Perspective. - **configuration** An object which has two properties: syntheticType and the corresponding configuration object: - - **syntheticType** The type of the Synthetic test. Supported values are HTTPAction, HTTScript, BrowserScript (Beta), WebpageAction (Beta), - and WebpageScript (Beta). The locations assigned to execute this Synthetic + - **syntheticType** The type of the Synthetic test. Supported values are HTTPAction, HTTScript, BrowserScript, WebpageAction, + WebpageScript, and SSLCertificate. The locations assigned to execute this Synthetic test must support this syntheticType, i.e. the location's playbackCapabilities property. - **markSyntheticCall** Flag used to control if HTTP calls will be marked as synthetic calls/endpoints in Instana backend, so they can be ignored when calculating service and application KPIs, users can also check "Hide Synthetic Calls" checkbox to hide/show them in UI. - **retries** An integer type from 0 to 2, 0 by default. @@ -321,7 +321,7 @@ tags: - If timeout value in test configuration is not provided, the default value is **1m** for HTTPAction and HTTPScript tests. BrowserScript, WebpageAction, and WebpageScript tests use the smaller one of `maxTimeout` and `testFrequency` as the actual timeout value. - **XXXConfiguration** The configuration corresponding to the syntheticType. Configuration types are HTTPActionConfiguration, HTTPScriptConfiguration, - BrowserScriptConfiguration (Beta), WebpageActionConfiguration (Beta), and WebpageScriptConfiguration (Beta). + BrowserScriptConfiguration, WebpageActionConfiguration, WebpageScriptConfiguration, and SSLCertificateConfiguration. - **HTTPActionConfiguration** has the following properties: - **url** The URL is being tested. It is required. - **syntheticType** Its value is HTTPAction. It is required. @@ -366,6 +366,10 @@ tags: - **browser** The type of the browser: chrome or firefox, chrome by default. - **recordVideo** A boolean type, false by default. - **syntheticType** Its value is WebpageScript. It is required. + - **SSLCertificateConfiguration** has the following properties: + - **hostname** The hostname of the SSL enabled website. + - **port** The SSL port, set to 443 by default. + - **daysRemainingCheck** The number of days to use on the validation check. The test will fail when the certificate validity has less than this number of days remaining until expiration. - **createdAt** The test created time, following RFC3339 standard. - **createdBy** The user identifier who created the test resource. - **customProperties** An object with name/value pairs to provide additional information of the Synthetic test. @@ -376,7 +380,8 @@ tags: PoPs. This property is optional, and its default value is Simultaneous, and only Simultaneous is supported, i.e., Synthetic tests run at all locations simultaneously. - **testFrequency** How often the playback for a Synthetic test is scheduled. The unit of the testFrequency parameter is minute. - The default is every 15 minutes. The range is from 1 minute to 120 minutes. + The default is every 15 minutes. The range is from 1 minute to 120 minutes. + For SSLCertificate tests, the default is every 24 hours and the range is from 60 minute to 1440 minutes. ## Synthetic Credentials: @@ -394,7 +399,7 @@ tags: 2. The credentials or secrets used in the test must exist. Requests to create or update a test referencing credentials that do not exist will fail with return code `Bad Request`. - name: Synthetic Test Playback Results - description: "The endpoints of this group retrieve the results for defined Synthetic tests.\n\n**Note on names in TagFilter/TagFilterExpression**: From R243, the name used in a TagFilter or a TagFilterExpression has the format: synthetic.\\.\nIt can be one of the following: synthetic.id (id is the test result id), synthetic.testId,\nsynthetic.testName, synthetic.locationId, synthetic.applicationId, synthetic.serviceId, synthetic.syntheticType,\nsynthetic.locationName, and synthetic.locationLabel. If it is a metric name, then the format is: synthetic.metrics\\.\nFor example, synthetic.metricsResponseTime, synthetic.metricsStatus.\n\nThe names used prior to R243 should be considered as deprecated. They will be accepted temporarily and will be removed in an upcoming release.\n\n## Get Synthetic test playback results \nThe endpoint returns the aggregated Synthetic test result data\n\n### Mandatory Parameters \n\n**testId** An array of the unique identifiers of Synthetic tests\n\n**metrics** A list of metric objects that define which metric should be returned, with the defined aggregation. Each metrics objects consists of minimum two items:\n1. *metric* select a particular metric. This is the list of available metrics for all types of Synthetic Tests: \n synthetic.metricsResponseTime (ms), synthetic.metricsResponseSize (bytes), synthetic.metricsStatusCode (an integer represents an HTTP response code, e.g., 200, 401, 500), synthetic.metricsRequestSize (bytes), \n synthetic.metricsUploadSpeed (bytes per second), synthetic.metricsDownloadSpeed (bytes per second), \n synthetic.metricsRedirectTime (ms), synthetic.metricsRedirectCount, synthetic.metricsConnectCount, synthetic.metricsStatus (an integer, 1-success or 0-failure), and synthetic.tags (list of custom properties and values). \n \n The following metrics are only available for the HTTPAction type Synthetic Tests: synthetic.metricsBlocking (bytes), synthetic.metricsDns (bytes), synthetic.metricsConnect (bytes), synthetic.metricsSsl (bytes), \n synthetic.metricsSending (bytes), synthetic.metricsWaiting (bytes), and synthetic.metricsReceiving (bytes).\n\n The metric synthetic.tags adds the latest list of custom properties to the response.\n\n2. *aggregation* Depending on the selected metric, different aggregations are available e.g., SUM, MEAN, P90 (90th percentile), DISTINCT_COUNT, and MAX. MAX is only allowed for synthetic.tags.\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n```\nThe timeFrame might be adjusted to fit the metric granularity so that there is no partial bucket. For example, if the query timeFrame is 08:02 - 09:02 and the metric granularity is 5 minutes, the timeFrame will be adjusted to 08:05 - 09:00. The adjusted timeFrame will be returned in the response payload. If the query does not have any metric with granularity, a default granularity will be used for adjustment.\n\n### Optional Parameters\n\n**metrics** By default you will get an aggregated metric for the selected timeframe\n\n* *granularity*\n * If it is not set you will get an aggregated value for the selected timeframe\n * If the granularity is set you will get data points with the specified granularity **in seconds**\n * The granularity should not be greater than the `windowSize` (important: `windowSize` is expressed in **milliseconds**)\n * The granularity should not be set too small relative to the `windowSize` to avoid creating an excessively large number of data points (max 600)\n * The granularity values are the same for all metrics\n\n**pagination** if you use pagination you most probably want to fix the timeFrame for the retrieved metrics\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic test results you want to return with one query\n\n**order** You can order the returned items alphanumerical by label, either ascending or descending\n1. *by* Use the metric name, e.g. \"synthetic.metricsResponseTime\", to order by its value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n**tagFilters** It serves as a filter to narrow down return results.\nIt will be replaced by **tagFilterExpression**.\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with\nlogical operators AND or OR.\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\nEither tagFilters or tagFilterExpression can specify a custom property by its key and value.\n```\n\"tagFilters\":[{\n \"name\":\"synthetic.tags\",\n \"key\":\"location\",\n \"value\":\"Denver\",\n \"operator\":\"EQUALS\"\n}]\n```\n\nTo narrow down the result set you have two options to search for a test.\n\n**locationId | applicationId**\n\n* *synthetic.locationId:* filter by locationId\n\n* *synthetic.applicationId:* filter by applicationId\n\n### Defaults\n\n**metrics**\n* *granularity:* 0\n\n**timeFrame**\n```\n\"timeFrame\": {\n\t\"windowSize\": 60000,\n\t\"to\": {current timestamp}\n}\n```\n**locationId | applicationId**\n* no filters are applied in the default call\n\n### Sample payload to get a Synthetic test result\n```\n{\n \"testId\": [\"tUmWgvzdo1Q1vpVRpzR5\", \"Pg0Q1UqHRd7OMysohVLd\"],\n \"//comment1\": \"Get test results from last 30 minutes (windowSize), data are aggregated every 10 minutes (granularity)\",\n \"//comment2\": \"The granularity values for responseTime and responseSize must be the same\"\n \"metrics\": [\n {\n \"aggregation\": \"MEAN\",\n \"granularity\": 600, \n \"metric\": \"synthetic.metricsResponseTime\"\n },\n {\n \"aggregation\": \"MEAN\",\n \"granularity\": 600, \n \"metric\": \"synthetic.metricsResponseSize\"\n }],\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 1800000 \n }\n}\n```\n\n## Get a list of Synthetic test playback results (no aggregation)\n### Mandatory Parameters\n**syntheticMetrics** It is an array of metrics. The available metrics for all types of Synthetic Tests: synthetic.id (a string representing the test result ID), \nsynthetic.metricsResponseTime (ms), synthetic.metricsResponseSize (bytes), synthetic.metricsStatusCode (an integer represents an HTTP response code, e.g., 200, 401, 500), synthetic.metricsRequestSize (bytes),\nsynthetic.metricsUploadSpeed (bytes per second), synthetic.metricsDownloadSpeed (bytes per second),\nsynthetic.metricsRedirectTime (ms), synthetic.metricsRedirectCount, synthetic.metricsConnectCount, synthetic.metricsStatus (an integer, 1-success or 0-failure), and synthetic.tags (list of custom properties and values).\n\nThe following metrics are only available for the HTTPAction type Synthetic Tests: synthetic.metricsBlocking (bytes), synthetic.metricsDns (bytes), synthetic.metricsConnect (bytes), synthetic.metricsSsl (bytes),\nsynthetic.metricsSending (bytes), synthetic.metricsWaiting (bytes), and synthetic.metricsReceiving (bytes).\n\nThe metric synthetic.tags adds the latest list of custom properties to the response.\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n```\n\n### Optional Parameters\n**pagination** if you use pagination you most probably want to fix the timeFrame for the retrieved metrics\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic test results you want to return with one query\n\n**order** You can order the returned items alphanumerical by label, either ascending or descending\n1. *by* Use the metric name, e.g. \"synthetic.metricsResponseTime\" to order by that value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n**tagFilters** It serves as a filter to narrow down return results. \nIt will be replaced by **tagFilterExpression**.\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with \nlogical operators AND or OR.\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\nEither tagFilters or tagFilterExpression can specify a custom property by its key and value.\n```\n\"tagFilters\":[{\n \"name\":\"synthetic.tags\",\n \"key\":\"location\",\n \"value\":\"Denver\",\n \"operator\":\"EQUALS\"\n}]\n```\n\n### Sample payload to get a list of Synthetic test results with tagFilters\n```json\n{\n \"syntheticMetrics\":[\"synthetic.metricsResponseTime\",\"synthetic.metricsResponseSize\"],\n \"order\":{\n \"by\":\"synthetic.metricsResponseTime\",\n \"direction\":\"DESC\"\n },\n \"tagFilters\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.testId\",\n \"operator\":\"EQUALS\"\n }],\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 1800000\n }\n}\n```\n\n### Sample payload to get a list of Synthetic test results with tagFilterExpression\n```json\n{\n \"syntheticMetrics\":[\"synthetic.metricsResponseTime\",\"synthetic.metricsResponseSize\"],\n \"order\":{\n \"by\":\"synthetic.metricsResponseTime\",\n \"direction\":\"DESC\"\n },\n \"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"AND\",\n \"elements\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.testId\",\n \"operator\":\"EQUALS\"\n }, {\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\": \"abcdefgXSJmQsehOWg1S\"\n }]\n },\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 1800000\n }\n}\n```\n\n## Get a list of Synthetic tests with Success Rate and Average Response Time data\nThe endpoint returns a list of Synthetic tests with Success Rate and Average Response Time result data\n\n### Mandatory Parameters\n\n**metrics**\n1. *metric* select a particular metric. Right now, only synthetic.metricsResponseTime (ms) is supported.\n2. *aggregation* MEAN\n3. *granularity* 60\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n\n\"timeFrame\": {\n\t\"windowSize\": 60000,\n\t\"to\": {current timestamp}\n}\n```\n\n### Optional Parameters\n\n**pagination** if you use pagination you most probably want to fix the timeFrame for the retrieved metrics\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic test results you want to return with one query\n\n**order** You can order the returned items alphanumerical by label, either ascending or descending\n1. *by* Use the metric name, \"synthetic.metricsResponseTime\", to order by its value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n**tagFilters** It serves as a filter to narrow down return results. The name of a tagFilter is one of the following: \nsynthetic.syntheticType, synthetic.locationId, and synthetic.applicationId.\nIt will be replaced by **tagFilterExpression**.\n```\n\"tagFilters\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.applicationId\",\n \"operator\":\"EQUALS\"\n}]\n```\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with\nlogical operators AND or OR.\n```\n\"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"AND\",\n \"elements\":[{\n \"name\": \"synthetic.metricsStatus\", \n \"operator\": \"EQUALS\", \n \"numberValue\": 1\n }, {\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\":\"WnjlKKbgzLDnyGra6PAs\"\n }]\n}\n```\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\nEither tagFilters or tagFilterExpression can specify a custom property by its key and value.\n```\n\"tagFilters\":[{\n \"name\":\"synthetic.tags\",\n \"key\":\"location\",\n \"value\":\"Denver\",\n \"operator\":\"EQUALS\"\n}]\n```\n\nTo narrow down the result set you have three options to search for a test.\n\n**syntheticType | locationId | applicationId**\n\n* *synthetic.syntheticType:* filter by syntheticType, either HTTPAction or HTTPScript\n\n* *synthetic.locationId:* filter by locationId\n\n* *synthetic.applicationId:* filter by applicationId\n\n\nTests can also be filtered by their active state (`true`/`false`) using the custom property label `synthetic.testActive`.\n```\n\"tagFilters\": [{ \n \"name\":\"synthetic.testActive\", \n \"operator\":\"EQUALS\",\n \"booleanValue\": false \n}]\n```\n\n### Defaults\n\n**syntheticType | locationId | applicationId**\n* no filters are applied in the default call\n\n### Sample payload to get a list of active Synthetic tests with SuccessRate and Average Response Time results\n```\n{\n \"metrics\": [\n {\n \"aggregation\": \"MEAN\",\n \"granularity\": 60, \n \"metric\": \"synthetic.metricsResponseTime\"\n }],\n \"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"AND\",\n \"elements\":[{\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\": \"abcdefgXSJmQsehOWg1S\"\n }, {\n \"name\": \"synthetic.testActive\",\n \"operator\": \"EQUALS\",\n \"booleanValue\": true\n }]\n },\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 3600000 \n }\n}\n```\n\n## Get a list of Synthetic locations with Last Test Run on (each location) data\nThe endpoint returns a list of Synthetic locations with Last Test Run on (each location) result data\n\n### Mandatory Parameters\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n\n\"timeFrame\": {\n\t\"windowSize\": 60000,\n\t\"to\": {current timestamp}\n}\n```\n\n### Optional Parameters\n\n**pagination** if you use pagination you should use the same timeFrame for all of the pages you want to query\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic locations you want to return with one query\n\n**order** You can order the returned items alphanumerically by label, either ascending or descending\n1. *by* Use the metric name, e.g., \"location_name\", to order by its value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n The sorting can be done on the following metrics: location_name, location_label, status, type, total_tests,\n last_test_run, and namespace\n\n**tagFilters** It serves as a filter to narrow down return results. The name of a tagFilter is one of the following: \nsynthetic.locationName, synthetic.locationLabel, and synthetic.locationId.\nIt will be replaced by **tagFilterExpression**.\n```\n\"tagFilters\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.locationId\",\n \"operator\":\"EQUALS\"\n}]\n```\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with\nlogical operators AND or OR.\n```\n\"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"OR\",\n \"elements\":[{\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\":\"WnjlKKbgzLDnyGra6PAs\"\n }]\n}\n```\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\n### Sample payload to get a list of Synthetic locations with Last Test Run on (each location) data\n```\n{\n \"order\": {\n \t\"by\": \"status\", \n \t\"direction\": \"Desc\"\n },\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 3600000 \n }\n}\n```\n\n## Get Synthetic test playback result detail data\n\n### Query Parameters\n**type** The type of the detailed data. Its value is one of these types: SUBTRANSACTIONS, LOGS, and HAR.\n\n**name** The name of the file to be retrieved, if more than one file available for the same type. Used when the type equals to LOGS or IMAGES\n\n## Download a Synthetic test playback result detail data file\n\n### Query Parameter\n**type** The type of a single compressed file. Its value is one of these types: SUBTRANSACTIONS, LOGS, IMAGES, VIDEOS, and HAR." + description: "The endpoints of this group retrieve the results for defined Synthetic tests.\n\n**Note on names in TagFilter/TagFilterExpression**: From R243, the name used in a TagFilter or a TagFilterExpression has the format: synthetic.\\.\nIt can be one of the following: synthetic.id (id is the test result id), synthetic.testId,\nsynthetic.testName, synthetic.locationId, synthetic.applicationId, synthetic.serviceId, synthetic.syntheticType,\nsynthetic.locationName, and synthetic.locationLabel. If it is a metric name, then the format is: synthetic.metrics\\.\nFor example, synthetic.metricsResponseTime, synthetic.metricsStatus.\n\nThe names used prior to R243 should be considered as deprecated. They will be accepted temporarily and will be removed in an upcoming release.\n\n## Get Synthetic test playback results \nThe endpoint returns the aggregated Synthetic test result data\n\n### Mandatory Parameters \n\n**testId** An array of the unique identifiers of Synthetic tests\n\n**metrics** A list of metric objects that define which metric should be returned, with the defined aggregation. Each metrics objects consists of minimum two items:\n1. *metric* select a particular metric. This is the list of available metrics for all types of Synthetic Tests: \n synthetic.metricsResponseTime (ms), synthetic.metricsResponseSize (bytes), synthetic.metricsStatusCode (an integer represents an HTTP response code, e.g., 200, 401, 500), synthetic.metricsRequestSize (bytes), \n synthetic.metricsUploadSpeed (bytes per second), synthetic.metricsDownloadSpeed (bytes per second), \n synthetic.metricsRedirectTime (ms), synthetic.metricsRedirectCount, synthetic.metricsConnectCount, synthetic.metricsStatus (an integer, 1-success or 0-failure), and synthetic.tags (list of custom properties and values). \n \n The following metrics are only available for the HTTPAction type Synthetic Tests: synthetic.metricsBlocking (bytes), synthetic.metricsDns (bytes), synthetic.metricsConnect (bytes), synthetic.metricsSsl (bytes), \n synthetic.metricsSending (bytes), synthetic.metricsWaiting (bytes), and synthetic.metricsReceiving (bytes).\n\n The metric synthetic.customMetrics (list of custom metrics and values) is only available for SSLCertificate tests.\n\n The metric synthetic.tags adds the latest list of custom properties to the response.\n\n2. *aggregation* Depending on the selected metric, different aggregations are available e.g., SUM, MEAN, P90 (90th percentile), DISTINCT_COUNT, and MAX. MAX is only allowed for synthetic.tags.\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n```\nThe timeFrame might be adjusted to fit the metric granularity so that there is no partial bucket. For example, if the query timeFrame is 08:02 - 09:02 and the metric granularity is 5 minutes, the timeFrame will be adjusted to 08:05 - 09:00. The adjusted timeFrame will be returned in the response payload. If the query does not have any metric with granularity, a default granularity will be used for adjustment.\n\n### Optional Parameters\n\n**metrics** By default you will get an aggregated metric for the selected timeframe\n\n* *granularity*\n * If it is not set you will get an aggregated value for the selected timeframe\n * If the granularity is set you will get data points with the specified granularity **in seconds**\n * The granularity should not be greater than the `windowSize` (important: `windowSize` is expressed in **milliseconds**)\n * The granularity should not be set too small relative to the `windowSize` to avoid creating an excessively large number of data points (max 600)\n * The granularity values are the same for all metrics\n\n**pagination** if you use pagination you most probably want to fix the timeFrame for the retrieved metrics\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic test results you want to return with one query\n\n**order** You can order the returned items alphanumerical by label, either ascending or descending\n1. *by* Use the metric name, e.g. \"synthetic.metricsResponseTime\", to order by its value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n**tagFilters** It serves as a filter to narrow down return results.\nIt will be replaced by **tagFilterExpression**.\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with\nlogical operators AND or OR.\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\nEither tagFilters or tagFilterExpression can specify a custom property by its key and value.\n```\n\"tagFilters\":[{\n \"name\":\"synthetic.tags\",\n \"key\":\"location\",\n \"value\":\"Denver\",\n \"operator\":\"EQUALS\"\n}]\n```\n\nTo narrow down the result set you have two options to search for a test.\n\n**locationId | applicationId**\n\n* *synthetic.locationId:* filter by locationId\n\n* *synthetic.applicationId:* filter by applicationId\n\n### Defaults\n\n**metrics**\n* *granularity:* 0\n\n**timeFrame**\n```\n\"timeFrame\": {\n\t\"windowSize\": 60000,\n\t\"to\": {current timestamp}\n}\n```\n**locationId | applicationId**\n* no filters are applied in the default call\n\n### Sample payload to get a Synthetic test result\n```\n{\n \"testId\": [\"tUmWgvzdo1Q1vpVRpzR5\", \"Pg0Q1UqHRd7OMysohVLd\"],\n \"//comment1\": \"Get test results from last 30 minutes (windowSize), data are aggregated every 10 minutes (granularity)\",\n \"//comment2\": \"The granularity values for responseTime and responseSize must be the same\"\n \"metrics\": [\n {\n \"aggregation\": \"MEAN\",\n \"granularity\": 600, \n \"metric\": \"synthetic.metricsResponseTime\"\n },\n {\n \"aggregation\": \"MEAN\",\n \"granularity\": 600, \n \"metric\": \"synthetic.metricsResponseSize\"\n }],\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 1800000 \n }\n}\n```\n\n## Get a list of Synthetic test playback results (no aggregation)\n### Mandatory Parameters\n**syntheticMetrics** It is an array of metrics. The available metrics for all types of Synthetic Tests: synthetic.id (a string representing the test result ID), \nsynthetic.metricsResponseTime (ms), synthetic.metricsResponseSize (bytes), synthetic.metricsStatusCode (an integer represents an HTTP response code, e.g., 200, 401, 500), synthetic.metricsRequestSize (bytes),\nsynthetic.metricsUploadSpeed (bytes per second), synthetic.metricsDownloadSpeed (bytes per second),\nsynthetic.metricsRedirectTime (ms), synthetic.metricsRedirectCount, synthetic.metricsConnectCount, synthetic.metricsStatus (an integer, 1-success or 0-failure), and synthetic.tags (list of custom properties and values).\n\nThe following metrics are only available for the HTTPAction type Synthetic Tests: synthetic.metricsBlocking (bytes), synthetic.metricsDns (bytes), synthetic.metricsConnect (bytes), synthetic.metricsSsl (bytes),\nsynthetic.metricsSending (bytes), synthetic.metricsWaiting (bytes), and synthetic.metricsReceiving (bytes).\n\nThe metric synthetic.customMetrics (list of custom metrics and values) is only available for SSLCertificate tests.\n\nThe metric synthetic.tags adds the latest list of custom properties to the response.\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n```\n\n### Optional Parameters\n**pagination** if you use pagination you most probably want to fix the timeFrame for the retrieved metrics\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic test results you want to return with one query\n\n**order** You can order the returned items alphanumerical by label, either ascending or descending\n1. *by* Use the metric name, e.g. \"synthetic.metricsResponseTime\" to order by that value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n**tagFilters** It serves as a filter to narrow down return results. \nIt will be replaced by **tagFilterExpression**.\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with \nlogical operators AND or OR.\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\nEither tagFilters or tagFilterExpression can specify a custom property by its key and value.\n```\n\"tagFilters\":[{\n \"name\":\"synthetic.tags\",\n \"key\":\"location\",\n \"value\":\"Denver\",\n \"operator\":\"EQUALS\"\n}]\n```\n\n### Sample payload to get a list of Synthetic test results with tagFilters\n```json\n{\n \"syntheticMetrics\":[\"synthetic.metricsResponseTime\",\"synthetic.metricsResponseSize\"],\n \"order\":{\n \"by\":\"synthetic.metricsResponseTime\",\n \"direction\":\"DESC\"\n },\n \"tagFilters\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.testId\",\n \"operator\":\"EQUALS\"\n }],\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 1800000\n }\n}\n```\n\n### Sample payload to get a list of Synthetic test results with tagFilterExpression\n```json\n{\n \"syntheticMetrics\":[\"synthetic.metricsResponseTime\",\"synthetic.metricsResponseSize\"],\n \"order\":{\n \"by\":\"synthetic.metricsResponseTime\",\n \"direction\":\"DESC\"\n },\n \"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"AND\",\n \"elements\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.testId\",\n \"operator\":\"EQUALS\"\n }, {\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\": \"abcdefgXSJmQsehOWg1S\"\n }]\n },\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 1800000\n }\n}\n```\n\n### Sample payload to get the custom metrics of a Synthetic SSLCertificate test\n```json\n{\n \"syntheticMetrics\":[\"synthetic.customMetrics\"],\n \"tagFilters\":[{\n \"stringValue\":\"dk6yzb9fxCDlB6axIhUu\",\n \"name\":\"synthetic.testId\",\n \"operator\":\"EQUALS\"\n }],\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 172800000\n }\n}\n```\n\n## Get a list of Synthetic tests with Success Rate and Average Response Time data\nThe endpoint returns a list of Synthetic tests with Success Rate and Average Response Time result data\n\n### Mandatory Parameters\n\n**metrics**\n1. *metric* select a particular metric. Right now, only synthetic.metricsResponseTime (ms) is supported.\n2. *aggregation* MEAN\n3. *granularity* 60\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n\n\"timeFrame\": {\n\t\"windowSize\": 60000,\n\t\"to\": {current timestamp}\n}\n```\n\n### Optional Parameters\n\n**pagination** if you use pagination you most probably want to fix the timeFrame for the retrieved metrics\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic test results you want to return with one query\n\n**order** You can order the returned items alphanumerical by label, either ascending or descending\n1. *by* Use the metric name, \"synthetic.metricsResponseTime\", to order by its value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n**tagFilters** It serves as a filter to narrow down return results. The name of a tagFilter is one of the following: \nsynthetic.syntheticType, synthetic.locationId, and synthetic.applicationId.\nIt will be replaced by **tagFilterExpression**.\n```\n\"tagFilters\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.applicationId\",\n \"operator\":\"EQUALS\"\n}]\n```\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with\nlogical operators AND or OR.\n```\n\"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"AND\",\n \"elements\":[{\n \"name\": \"synthetic.metricsStatus\", \n \"operator\": \"EQUALS\", \n \"numberValue\": 1\n }, {\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\":\"WnjlKKbgzLDnyGra6PAs\"\n }]\n}\n```\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\nEither tagFilters or tagFilterExpression can specify a custom property by its key and value.\n```\n\"tagFilters\":[{\n \"name\":\"synthetic.tags\",\n \"key\":\"location\",\n \"value\":\"Denver\",\n \"operator\":\"EQUALS\"\n}]\n```\n\nTo narrow down the result set you have three options to search for a test.\n\n**syntheticType | locationId | applicationId**\n\n* *synthetic.syntheticType:* filter by syntheticType, either HTTPAction or HTTPScript\n\n* *synthetic.locationId:* filter by locationId\n\n* *synthetic.applicationId:* filter by applicationId\n\n\nTests can also be filtered by their active state (`true`/`false`) using the custom property label `synthetic.testActive`.\n```\n\"tagFilters\": [{ \n \"name\":\"synthetic.testActive\", \n \"operator\":\"EQUALS\",\n \"booleanValue\": false \n}]\n```\n\n### Defaults\n\n**syntheticType | locationId | applicationId**\n* no filters are applied in the default call\n\n### Sample payload to get a list of active Synthetic tests with SuccessRate and Average Response Time results\n```\n{\n \"metrics\": [\n {\n \"aggregation\": \"MEAN\",\n \"granularity\": 60, \n \"metric\": \"synthetic.metricsResponseTime\"\n }],\n \"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"AND\",\n \"elements\":[{\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\": \"abcdefgXSJmQsehOWg1S\"\n }, {\n \"name\": \"synthetic.testActive\",\n \"operator\": \"EQUALS\",\n \"booleanValue\": true\n }]\n },\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 3600000 \n }\n}\n```\n\n## Get a list of Synthetic locations with Last Test Run on (each location) data\nThe endpoint returns a list of Synthetic locations with Last Test Run on (each location) result data\n\n### Mandatory Parameters\n\n**timeFrame** As in our UI you can specify the timeframe for metrics retrieval.\n```\n windowSize to\n (ms) (unix-timestamp)\n<----------------------|\n\n\"timeFrame\": {\n\t\"windowSize\": 60000,\n\t\"to\": {current timestamp}\n}\n```\n\n### Optional Parameters\n\n**pagination** if you use pagination you should use the same timeFrame for all of the pages you want to query\n1. *page* select the page number you want to retrieve\n2. *pageSize* set the number of Synthetic locations you want to return with one query\n\n**order** You can order the returned items alphanumerically by label, either ascending or descending\n1. *by* Use the metric name, e.g., \"location_name\", to order by its value\n2. *direction* either ascending (ASC) or descending (DESC)\n\n The sorting can be done on the following metrics: location_name, location_label, status, type, total_tests,\n last_test_run, and namespace\n\n**tagFilters** It serves as a filter to narrow down return results. The name of a tagFilter is one of the following: \nsynthetic.locationName, synthetic.locationLabel, and synthetic.locationId.\nIt will be replaced by **tagFilterExpression**.\n```\n\"tagFilters\":[{\n \"stringValue\":\"hYziqsaXSJmQsehOWg1S\",\n \"name\":\"synthetic.locationId\",\n \"operator\":\"EQUALS\"\n}]\n```\n\n**tagFilterExpression** It serves as a filter to narrow down return results. Its type can be either EXPRESSION or TAG_FILTER with\nlogical operators AND or OR.\n```\n\"tagFilterExpression\": { \n \"type\":\"EXPRESSION\",\n \"logicalOperator\":\"OR\",\n \"elements\":[{\n \"name\": \"synthetic.locationId\", \n \"operator\": \"EQUALS\", \n \"stringValue\":\"WnjlKKbgzLDnyGra6PAs\"\n }]\n}\n```\n\nA payload only needs either tagFilters or tagFilterExpression as a filter, not both.\n\n### Sample payload to get a list of Synthetic locations with Last Test Run on (each location) data\n```\n{\n \"order\": {\n \t\"by\": \"status\", \n \t\"direction\": \"Desc\"\n },\n \"timeFrame\": {\n \"to\": 0,\n \"windowSize\": 3600000 \n }\n}\n```\n\n## Get Synthetic test playback result detail data\n\n### Query Parameters\n**type** The type of the detailed data. Its value is one of these types: SUBTRANSACTIONS, LOGS, and HAR.\n\n**name** The name of the file to be retrieved, if more than one file available for the same type. Used when the type equals to LOGS or IMAGES\n\n## Download a Synthetic test playback result detail data file\n\n### Query Parameter\n**type** The type of a single compressed file. Its value is one of these types: SUBTRANSACTIONS, LOGS, IMAGES, VIDEOS, and HAR." - name: Action Catalog - name: Action History - name: Policies @@ -412,7 +417,6 @@ paths: required: true schema: type: string - example: null - description: Unix Timestamp milliseconds (13-digit) example: 1706713140000 in: query @@ -421,7 +425,6 @@ paths: schema: type: integer format: int64 - example: null - description: Unix Timestamp milliseconds (13-digit) example: 1706813100000 in: query @@ -430,7 +433,6 @@ paths: schema: type: integer format: int64 - example: null responses: '200': content: @@ -446,7 +448,6 @@ paths: - 0.5 schema: type: array - example: null items: $ref: '#/components/schemas/ApdexReport' description: OK @@ -464,7 +465,6 @@ paths: required: true schema: type: string - example: null maxLength: 128 minLength: 0 responses: @@ -475,7 +475,6 @@ paths: - traceId: c606ccf3578135c6 schema: type: array - example: null items: $ref: '#/components/schemas/BackendTraceReference' security: @@ -492,7 +491,6 @@ paths: name: fillTimeSeries schema: type: boolean - example: null requestBody: content: application/json: @@ -501,13 +499,15 @@ paths: groupbyTag: service.name groupbyTagEntity: DESTINATION metrics: + - aggregation: SUM + metric: calls - aggregation: P75 metric: latency granularity: 360 includeInternal: false includeSynthetic: false order: - by: calls_SUM + by: calls direction: DESC pagination: retrievalSize: 20 @@ -570,7 +570,6 @@ paths: name: fillTimeSeries schema: type: boolean - example: null requestBody: content: application/json: @@ -587,7 +586,7 @@ paths: } ], "order": { - "by": "traces_SUM", + "by": "latency", "direction": "ASC" }, "pagination": { @@ -753,7 +752,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -872,35 +870,30 @@ paths: name: nameFilter schema: type: string - example: null - description: Size of time window in milliseconds in: query name: windowSize schema: type: integer format: int64 - example: null - description: Timestamp since Unix Epoch in milliseconds of the end of the time window in: query name: to schema: type: integer format: int64 - example: null - description: Page number from results in: query name: page schema: type: integer format: int32 - example: null - description: Number of items per page in: query name: pageSize schema: type: integer format: int32 - example: null - description: 'Filter for application scope, i.e: INBOUND or ALL' in: query name: applicationBoundaryScope @@ -909,7 +902,6 @@ paths: enum: - ALL - INBOUND - example: null responses: default: content: @@ -940,35 +932,30 @@ paths: name: nameFilter schema: type: string - example: null - description: Size of time window in milliseconds in: query name: windowSize schema: type: integer format: int64 - example: null - description: Timestamp since Unix Epoch in milliseconds of the end of the time window in: query name: to schema: type: integer format: int64 - example: null - description: Page number from results in: query name: page schema: type: integer format: int32 - example: null - description: Number of items per page in: query name: pageSize schema: type: integer format: int32 - example: null - description: 'Filter for application scope, i.e: INBOUND or ALL' in: query name: applicationBoundaryScope @@ -977,13 +964,11 @@ paths: enum: - ALL - INBOUND - example: null - description: Include snapshot ids in the results in: query name: includeSnapshotIds schema: type: boolean - example: null responses: default: content: @@ -1019,26 +1004,21 @@ paths: name: nameFilter schema: type: string - example: null - description: Type of Endpoint in: query name: types schema: type: array - example: null items: type: string - example: null uniqueItems: true - description: List of technologies in: query name: technologies schema: type: array - example: null items: type: string - example: null uniqueItems: true - description: Size of time window in milliseconds in: query @@ -1046,28 +1026,24 @@ paths: schema: type: integer format: int64 - example: null - description: Timestamp since Unix Epoch in milliseconds of the end of the time window in: query name: to schema: type: integer format: int64 - example: null - description: Page number from results in: query name: page schema: type: integer format: int32 - example: null - description: Number of items per page in: query name: pageSize schema: type: integer format: int32 - example: null - description: 'Filter for application scope, i.e: INBOUND or ALL' in: query name: applicationBoundaryScope @@ -1076,7 +1052,6 @@ paths: enum: - ALL - INBOUND - example: null responses: default: content: @@ -1112,7 +1087,6 @@ paths: schema: type: integer format: int64 - example: null - in: query name: dataSource schema: @@ -1120,7 +1094,6 @@ paths: enum: - CALLS - TRACES - example: null - in: query name: useCase schema: @@ -1136,7 +1109,6 @@ paths: - APPLICATION_CONFIG - APPLICATION_CONFIG_BLUEPRINT - MAINTENANCE_WINDOWS - example: null responses: default: content: @@ -1188,7 +1160,6 @@ paths: defaultAggregation: null schema: type: array - example: null items: $ref: '#/components/schemas/MetricDescription' security: @@ -1209,7 +1180,6 @@ paths: schema: type: integer format: int64 - example: null - in: query name: dataSource schema: @@ -1217,7 +1187,6 @@ paths: enum: - CALLS - TRACES - example: null - in: query name: useCase schema: @@ -1233,14 +1202,12 @@ paths: - APPLICATION_CONFIG - APPLICATION_CONFIG_BLUEPRINT - MAINTENANCE_WINDOWS - example: null responses: default: content: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/Tag' security: @@ -1258,7 +1225,6 @@ paths: name: fillTimeSeries schema: type: boolean - example: null requestBody: content: application/json: @@ -1319,7 +1285,6 @@ paths: name: fillTimeSeries schema: type: boolean - example: null requestBody: content: application/json: @@ -1388,12 +1353,10 @@ paths: name: fillTimeSeries schema: type: boolean - example: null - in: query name: includeSnapshotIds schema: type: boolean - example: null requestBody: content: application/json: @@ -1464,41 +1427,35 @@ paths: name: nameFilter schema: type: string - example: null - description: Size of time window in milliseconds in: query name: windowSize schema: type: integer format: int64 - example: null - description: Timestamp since Unix Epoch in milliseconds of the end of the time window in: query name: to schema: type: integer format: int64 - example: null - description: Page number from results in: query name: page schema: type: integer format: int32 - example: null - description: Number of items per page in: query name: pageSize schema: type: integer format: int32 - example: null - description: Include snapshot ids in the results in: query name: includeSnapshotIds schema: type: boolean - example: null responses: default: content: @@ -1575,7 +1532,6 @@ paths: relatedId: null schema: type: array - example: null items: $ref: '#/components/schemas/ApplicationConfig' security: @@ -1698,7 +1654,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -1718,7 +1673,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -1780,7 +1734,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -1904,7 +1857,6 @@ paths: rules: null schema: type: array - example: null items: $ref: '#/components/schemas/EndpointConfig' security: @@ -1954,7 +1906,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -1974,7 +1925,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -2001,7 +1951,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -2072,7 +2021,6 @@ paths: - /api/v2/users schema: type: array - example: null items: $ref: '#/components/schemas/HttpEndpointConfig' security: @@ -2132,7 +2080,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -2153,7 +2100,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -2189,7 +2135,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -2261,7 +2206,6 @@ paths: enabled: true schema: type: array - example: null items: $ref: '#/components/schemas/ManualServiceConfig' security: @@ -2369,7 +2313,6 @@ paths: unmonitoredServiceName: null schema: type: array - example: null items: $ref: '#/components/schemas/NewManualServiceConfig' required: true @@ -2395,7 +2338,6 @@ paths: enabled: true schema: type: array - example: null items: $ref: '#/components/schemas/ManualServiceConfig' security: @@ -2435,7 +2377,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -2459,7 +2400,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -2550,7 +2490,6 @@ paths: value: .* schema: type: array - example: null items: $ref: '#/components/schemas/ServiceConfig' security: @@ -2616,7 +2555,6 @@ paths: name: Rule schema: type: array - example: null items: $ref: '#/components/schemas/ServiceConfig' required: true @@ -2635,7 +2573,6 @@ paths: value: .* schema: type: array - example: null items: $ref: '#/components/schemas/ServiceConfig' security: @@ -2655,10 +2592,8 @@ paths: - oMsVfR0fSCuTKF2TFdYRmQ schema: type: array - example: null items: type: string - example: null required: true responses: default: @@ -2680,7 +2615,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -2700,7 +2634,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -2730,7 +2663,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -2781,20 +2713,17 @@ paths: schema: type: integer format: int64 - example: null - description: Timestamp since Unix Epoch in milliseconds of the end of the time window in: query name: to schema: type: integer format: int64 - example: null - description: Filter by application ID in: query name: applicationId schema: type: string - example: null - description: 'Filter by application scope, i.e., INBOUND or ALL. The default value is INBOUND. Applies only if application ID filter is specified.' in: query name: applicationBoundaryScope @@ -2803,7 +2732,6 @@ paths: enum: - ALL - INBOUND - example: null responses: default: content: @@ -2842,13 +2770,11 @@ paths: required: true schema: type: string - example: null - in: query name: retrievalSize schema: type: integer format: int32 - example: null maximum: 10000 minimum: 1 - in: query @@ -2856,13 +2782,11 @@ paths: schema: type: integer format: int32 - example: null - in: query name: ingestionTime schema: type: integer format: int64 - example: null responses: default: content: @@ -2913,13 +2837,11 @@ paths: required: true schema: type: string - example: null - in: path name: callId required: true schema: type: string - example: null responses: default: content: @@ -3042,71 +2964,57 @@ paths: schema: type: integer format: int64 - example: null - in: query name: to schema: type: integer format: int64 - example: null - in: query name: page schema: type: integer format: int32 - example: null - in: query name: pageSize schema: type: integer format: int32 - example: null - in: query name: targetSnapshotId schema: type: string - example: null - in: query name: eventId schema: type: string - example: null - in: query name: eventSpecificationId schema: type: string - example: null - in: query name: search schema: type: string - example: null - in: query name: types schema: type: array - example: null items: type: string - example: null - in: query name: actionStatuses schema: type: array - example: null items: type: string - example: null - in: query name: orderBy schema: type: string - example: null - in: query name: orderDirection schema: type: string - example: null responses: default: content: @@ -3132,14 +3040,11 @@ paths: totalHits: 1 schema: type: array - example: null items: $ref: '#/components/schemas/ActionInstance' security: - ApiKeyAuth: - Default - - ApiKeyAuth: - - canViewAutomationActionInstances summary: Get all automation action instances tags: - Action History @@ -3161,7 +3066,6 @@ paths: timeout: '600' schema: type: string - example: null required: true responses: default: @@ -3208,19 +3112,16 @@ paths: required: true schema: type: string - example: null - in: query name: windowSize schema: type: integer format: int64 - example: null - in: query name: to schema: type: integer format: int64 - example: null responses: default: content: @@ -3257,8 +3158,6 @@ paths: security: - ApiKeyAuth: - Default - - ApiKeyAuth: - - canViewAutomationActionInstances summary: Get action instance details tags: - Action History @@ -3271,19 +3170,16 @@ paths: required: true schema: type: string - example: null - in: query name: windowSize schema: type: integer format: int64 - example: null - in: query name: to schema: type: integer format: int64 - example: null requestBody: content: application/json: @@ -3292,7 +3188,6 @@ paths: comment: The action remediated the issue schema: type: string - example: null required: true responses: default: @@ -3374,7 +3269,6 @@ paths: modifiedAt: 1703191040.321448 schema: type: array - example: null items: $ref: '#/components/schemas/Action' security: @@ -3392,7 +3286,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -3439,7 +3332,6 @@ paths: name: targetSnapshotId schema: type: string - example: null requestBody: content: application/json: @@ -3615,7 +3507,6 @@ paths: modifiedAt: 1703191040.321448 schema: type: array - example: null items: $ref: '#/components/schemas/Policy' security: @@ -3710,7 +3601,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/Policy' required: true @@ -3720,7 +3610,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/Policy' security: @@ -3740,7 +3629,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -3762,7 +3650,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -3824,7 +3711,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -3950,7 +3836,6 @@ paths: schema: type: integer format: int64 - example: null - in: query name: dataSource schema: @@ -3958,7 +3843,6 @@ paths: enum: - CALLS - TRACES - example: null - in: query name: useCase schema: @@ -3974,7 +3858,6 @@ paths: - APPLICATION_CONFIG - APPLICATION_CONFIG_BLUEPRINT - MAINTENANCE_WINDOWS - example: null responses: default: content: @@ -4145,7 +4028,6 @@ paths: name: query schema: type: string - example: null - description: pageSize example: 2 in: query @@ -4153,7 +4035,6 @@ paths: schema: type: integer format: int32 - example: null - description: page example: 1 in: query @@ -4161,7 +4042,6 @@ paths: schema: type: integer format: int32 - example: null responses: '200': content: @@ -4177,7 +4057,6 @@ paths: - SHARED schema: type: array - example: null items: $ref: '#/components/schemas/CustomDashboardPreview' description: OK @@ -4225,7 +4104,6 @@ paths: name: New API Token schema: type: array - example: null items: $ref: '#/components/schemas/ApiToken' security: @@ -4253,7 +4131,6 @@ paths: fullName: Hans Gruber schema: type: array - example: null items: $ref: '#/components/schemas/UserBasicResult' description: OK @@ -4274,7 +4151,6 @@ paths: required: true schema: type: string - example: null responses: '204': description: Custom dashboard successfully removed @@ -4295,7 +4171,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -4353,7 +4228,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -4384,7 +4258,6 @@ paths: schema: type: integer format: int64 - example: null - description: from example: 120000 in: query @@ -4392,7 +4265,6 @@ paths: schema: type: integer format: int64 - example: null - description: to example: 1800000 in: query @@ -4400,49 +4272,42 @@ paths: schema: type: integer format: int64 - example: null - description: excludeTriggeredBefore example: true in: query name: excludeTriggeredBefore schema: type: boolean - example: null - description: filterEventUpdates example: true in: query name: filterEventUpdates schema: type: boolean - example: null - description: includeAgentMonitoringIssues example: true in: query name: includeAgentMonitoringIssues schema: type: boolean - example: null - description: includeKubernetesInfoEvents example: true in: query name: includeKubernetesInfoEvents schema: type: boolean - example: null - description: eventTypeFilters in: query name: eventTypeFilters required: true schema: type: array - example: null items: type: string enum: - INCIDENT - ISSUE - CHANGE - example: null uniqueItems: true responses: '200': @@ -4487,7 +4352,6 @@ paths: probableCauseMetadata: {} schema: type: array - example: null items: $ref: '#/components/schemas/EventResult' description: OK @@ -4536,10 +4400,8 @@ paths: application/json: schema: type: array - example: null items: type: string - example: null required: true responses: default: @@ -4547,7 +4409,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/EventResult' security: @@ -4573,7 +4434,6 @@ paths: schema: type: integer format: int64 - example: null - description: from example: 120000 in: query @@ -4581,7 +4441,6 @@ paths: schema: type: integer format: int64 - example: null - description: to example: 1800000 in: query @@ -4589,21 +4448,18 @@ paths: schema: type: integer format: int64 - example: null - description: excludeTriggeredBefore example: true in: query name: excludeTriggeredBefore schema: type: boolean - example: null - description: filterEventUpdates example: true in: query name: filterEventUpdates schema: type: boolean - example: null responses: '200': content: @@ -4624,7 +4480,6 @@ paths: snapshotId: 2fDFOytDpF4FYKrTdfwdlklDOPY schema: type: array - example: null items: $ref: '#/components/schemas/EventResult' description: OK @@ -4657,7 +4512,6 @@ paths: schema: type: integer format: int64 - example: null - description: from example: 120000 in: query @@ -4665,7 +4519,6 @@ paths: schema: type: integer format: int64 - example: null - description: to example: 1800000 in: query @@ -4673,21 +4526,18 @@ paths: schema: type: integer format: int64 - example: null - description: excludeTriggeredBefore example: true in: query name: excludeTriggeredBefore schema: type: boolean - example: null - description: filterEventUpdates example: true in: query name: filterEventUpdates schema: type: boolean - example: null responses: '200': content: @@ -4708,7 +4558,6 @@ paths: snapshotId: wTRNW3DaFeQhk7G3Cx5bKC5Psgk schema: type: array - example: null items: $ref: '#/components/schemas/EventResult' description: OK @@ -4738,10 +4587,8 @@ paths: name: ids schema: type: array - example: null items: type: string - example: null uniqueItems: true responses: default: @@ -4749,7 +4596,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/AbstractIntegration' security: @@ -4766,10 +4612,8 @@ paths: name: ids schema: type: array - example: null items: type: string - example: null uniqueItems: true responses: default: @@ -4777,7 +4621,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/IntegrationOverview' security: @@ -4816,7 +4659,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -4836,7 +4678,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -4857,7 +4698,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -4884,7 +4724,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/ValidatedAlertingConfiguration' security: @@ -4901,14 +4740,12 @@ paths: name: integrationId schema: type: string - example: null responses: default: content: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/ValidatedAlertingChannelInputInfo' security: @@ -4926,7 +4763,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -4946,7 +4782,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -4967,7 +4802,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -4997,7 +4831,6 @@ paths: name: applicationId schema: type: string - example: null - description: Alert Ids example: - 5GJXiK9aciVaBPnu @@ -5006,10 +4839,8 @@ paths: name: alertIds schema: type: array - example: null items: type: string - example: null maxItems: 1000 minItems: 0 uniqueItems: true @@ -5059,7 +4890,6 @@ paths: derivedFromGlobalAlert: false schema: type: array - example: null items: $ref: '#/components/schemas/ApplicationAlertConfigWithMetadata' description: OK @@ -5100,7 +4930,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -5123,7 +4952,6 @@ paths: required: true schema: type: string - example: null - description: Timestamp for each Id example: 1706617456952 in: query @@ -5131,7 +4959,6 @@ paths: schema: type: integer format: int64 - example: null responses: '200': content: @@ -5207,7 +5034,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -5244,13 +5070,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -5272,13 +5096,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -5300,20 +5122,17 @@ paths: required: true schema: type: string - example: null - in: path name: created required: true schema: type: integer format: int64 - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -5336,7 +5155,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -5357,7 +5175,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -5375,7 +5192,6 @@ paths: fullName: Stan schema: type: array - example: null items: $ref: '#/components/schemas/ConfigVersion' security: @@ -5414,7 +5230,6 @@ paths: - MOBILE_APP - INFRA - LOG - example: null responses: default: content: @@ -5441,7 +5256,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadWithLastUpdated' security: @@ -5473,10 +5287,8 @@ paths: name: ids schema: type: array - example: null items: type: string - example: null uniqueItems: true responses: default: @@ -5484,7 +5296,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/BuiltInEventSpecificationWithLastUpdated' security: @@ -5502,7 +5313,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -5522,7 +5332,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -5544,13 +5353,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -5573,13 +5380,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -5629,7 +5434,6 @@ paths: deleted: false schema: type: array - example: null items: $ref: '#/components/schemas/CustomEventSpecificationWithLastUpdated' description: OK @@ -5756,7 +5560,6 @@ paths: name: Offline event detection (System Rule) schema: type: array - example: null items: $ref: '#/components/schemas/SystemRuleLabel' description: OK @@ -5775,7 +5578,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -5817,7 +5619,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -5867,12 +5668,10 @@ paths: required: true schema: type: string - example: null - in: query name: allowRestore schema: type: boolean - example: null requestBody: content: application/json: @@ -5990,13 +5789,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -6019,13 +5816,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -6060,7 +5855,6 @@ paths: migrated: false schema: type: array - example: null items: $ref: '#/components/schemas/EventSpecificationInfo' description: OK @@ -6078,10 +5872,8 @@ paths: application/json: schema: type: array - example: null items: type: string - example: null required: true responses: default: @@ -6089,7 +5881,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/EventSpecificationInfo' security: @@ -6109,17 +5900,14 @@ paths: name: applicationId schema: type: string - example: null - description: alertIds example: '[ 0 .. 1000]' in: query name: alertIds schema: type: array - example: null items: type: string - example: null maxItems: 1000 minItems: 0 uniqueItems: true @@ -6170,7 +5958,6 @@ paths: builtIn: false schema: type: array - example: null items: $ref: '#/components/schemas/GlobalApplicationAlertConfigWithMetadata' description: OK @@ -6209,7 +5996,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -6232,7 +6018,6 @@ paths: required: true schema: type: string - example: null - description: validOn example: 0 in: query @@ -6240,7 +6025,6 @@ paths: schema: type: integer format: int64 - example: null responses: '200': content: @@ -6303,7 +6087,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -6334,13 +6117,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -6362,13 +6143,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -6390,20 +6169,17 @@ paths: required: true schema: type: string - example: null - in: path name: created required: true schema: type: integer format: int64 - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -6428,7 +6204,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -6446,7 +6221,6 @@ paths: fullName: Stan schema: type: array - example: null items: $ref: '#/components/schemas/ConfigVersion' description: OK @@ -6465,15 +6239,12 @@ paths: name: sloId schema: type: string - example: null - in: query name: alertIds schema: type: array - example: null items: type: string - example: null maxItems: 1000 minItems: 0 uniqueItems: true @@ -6501,7 +6272,6 @@ paths: customPayloadFields: [] schema: type: array - example: null items: $ref: '#/components/schemas/ServiceLevelseAlertConfigWithMetadata' description: OK @@ -6540,7 +6310,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -6561,13 +6330,11 @@ paths: required: true schema: type: string - example: null - in: query name: validOn schema: type: integer format: int64 - example: null responses: '200': content: @@ -6607,7 +6374,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -6638,13 +6404,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -6666,13 +6430,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -6694,20 +6456,17 @@ paths: required: true schema: type: string - example: null - in: path name: created required: true schema: type: integer format: int64 - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -6730,7 +6489,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -6755,7 +6513,6 @@ paths: customPayloadFields: [] schema: type: array - example: null items: $ref: '#/components/schemas/ConfigVersion' description: OK @@ -6774,15 +6531,12 @@ paths: name: syntheticTestId schema: type: string - example: null - in: query name: alertIds schema: type: array - example: null items: type: string - example: null maxItems: 1000 minItems: 0 uniqueItems: true @@ -6835,7 +6589,6 @@ paths: enabled: true schema: type: array - example: null items: $ref: '#/components/schemas/SyntheticAlertConfigWithMetadata' description: OK @@ -6893,7 +6646,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -6914,13 +6666,11 @@ paths: required: true schema: type: string - example: null - in: query name: validOn schema: type: integer format: int64 - example: null responses: '200': content: @@ -6974,7 +6724,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -7025,13 +6774,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -7053,13 +6800,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -7081,20 +6826,17 @@ paths: required: true schema: type: string - example: null - in: path name: created required: true schema: type: integer format: int64 - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -7117,7 +6859,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -7145,7 +6886,6 @@ paths: fullName: John Doe schema: type: array - example: null items: $ref: '#/components/schemas/ConfigVersion' description: OK @@ -7164,10 +6904,8 @@ paths: name: alertIds schema: type: array - example: null items: type: string - example: null maxItems: 1000 minItems: 0 uniqueItems: true @@ -7177,7 +6915,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/InfraAlertConfigWithMetadata' security: @@ -7215,7 +6952,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -7236,13 +6972,11 @@ paths: required: true schema: type: string - example: null - in: query name: validOn schema: type: integer format: int64 - example: null responses: default: content: @@ -7263,7 +6997,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -7294,13 +7027,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -7322,13 +7053,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -7350,20 +7079,17 @@ paths: required: true schema: type: string - example: null - in: path name: created required: true schema: type: integer format: int64 - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -7386,14 +7112,12 @@ paths: required: true schema: type: string - example: null responses: default: content: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/ConfigVersion' security: @@ -7413,7 +7137,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -7432,7 +7155,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/Event' security: @@ -7452,17 +7174,14 @@ paths: name: mobileAppId schema: type: string - example: null - description: alertIds example: '[...]' in: query name: alertIds schema: type: array - example: null items: type: string - example: null maxItems: 1000 minItems: 0 uniqueItems: true @@ -7526,7 +7245,6 @@ paths: entity: NOT_APPLICABLE schema: type: array - example: null items: $ref: '#/components/schemas/WithMetadata' description: OK @@ -7559,7 +7277,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -7579,7 +7296,6 @@ paths: required: true schema: type: string - example: null - description: validOn example: 0 in: query @@ -7587,7 +7303,6 @@ paths: schema: type: integer format: int64 - example: null responses: '200': content: @@ -7660,7 +7375,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -7692,13 +7406,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -7717,13 +7429,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -7742,20 +7452,17 @@ paths: required: true schema: type: string - example: null - in: path name: created required: true schema: type: integer format: int64 - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -7775,7 +7482,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -7796,7 +7502,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -7814,7 +7519,6 @@ paths: fullName: Stan schema: type: array - example: null items: $ref: '#/components/schemas/ConfigVersion' description: OK @@ -7832,17 +7536,14 @@ paths: name: websiteId schema: type: string - example: null - description: alertIds example: '[...]' in: query name: alertIds schema: type: array - example: null items: type: string - example: null maxItems: 1000 minItems: 0 uniqueItems: true @@ -7904,7 +7605,6 @@ paths: enabled: true schema: type: array - example: null items: $ref: '#/components/schemas/WebsiteAlertConfigWithMetadata' description: OK @@ -7969,7 +7669,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -7992,7 +7691,6 @@ paths: required: true schema: type: string - example: null - description: validOn example: 0 in: query @@ -8000,7 +7698,6 @@ paths: schema: type: integer format: int64 - example: null responses: '200': content: @@ -8063,7 +7760,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -8126,13 +7822,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -8154,13 +7848,11 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -8182,20 +7874,17 @@ paths: required: true schema: type: string - example: null - in: path name: created required: true schema: type: integer format: int64 - example: null requestBody: content: application/json: schema: type: string - example: null nullable: true responses: default: @@ -8218,7 +7907,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -8242,7 +7930,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -8260,7 +7947,6 @@ paths: fullName: Stan schema: type: array - example: null items: $ref: '#/components/schemas/ConfigVersion' description: OK @@ -8281,7 +7967,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -8323,30 +8008,25 @@ paths: name: query schema: type: string - example: null - in: query name: to schema: type: integer format: int64 - example: null - in: query name: windowSize schema: type: integer format: int64 - example: null - in: query name: size schema: type: integer format: int32 - example: null - in: query name: offline schema: type: boolean - example: null responses: '200': content: @@ -8382,30 +8062,25 @@ paths: name: query schema: type: string - example: null - in: query name: to schema: type: integer format: int64 - example: null - in: query name: windowSize schema: type: integer format: int64 - example: null - in: query name: size schema: type: integer format: int32 - example: null - in: query name: offline schema: type: boolean - example: null requestBody: content: application/json: @@ -8436,7 +8111,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -8467,21 +8141,17 @@ paths: required: true schema: type: string - example: null - in: query name: download schema: type: boolean - example: null - in: query name: file required: true schema: type: array - example: null items: type: string - example: null uniqueItems: true responses: default: @@ -8505,13 +8175,11 @@ paths: required: true schema: type: string - example: null - in: query name: supportInfoId required: true schema: type: string - example: null responses: default: content: @@ -8534,7 +8202,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -8557,19 +8224,16 @@ paths: required: true schema: type: string - example: null - in: query name: to schema: type: integer format: int64 - example: null - in: query name: windowSize schema: type: integer format: int64 - example: null responses: '200': content: @@ -8841,19 +8505,16 @@ paths: required: true schema: type: string - example: null - in: query name: filter schema: type: string - example: null responses: default: content: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/MetricInstance' security: @@ -8886,14 +8547,12 @@ paths: required: true schema: type: string - example: null responses: default: content: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/GetPayloadKeysResult' security: @@ -8911,7 +8570,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/PluginResult' security: @@ -8931,7 +8589,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/PluginResult' security: @@ -8949,7 +8606,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/SearchFieldResult' security: @@ -8994,7 +8650,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -9015,7 +8670,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -9024,10 +8678,8 @@ paths: - ZoKkksp277FMLSXIghPKdjZcvfE schema: type: array - example: null items: type: string - example: null description: OK security: - ApiKeyAuth: @@ -9043,7 +8695,6 @@ paths: name: offline schema: type: boolean - example: null requestBody: content: application/json: @@ -9092,7 +8743,6 @@ paths: required: true schema: type: string - example: null - description: Payload key. Use `/api/infrastructure-monitoring/catalog/payloads` to retrieve the list of possible keys. example: topqueries in: path @@ -9100,7 +8750,6 @@ paths: required: true schema: type: string - example: null - description: End of timeframe expressed as the Unix epoch time in milliseconds. example: 1689018652000 in: query @@ -9108,7 +8757,6 @@ paths: schema: type: integer format: int64 - example: null - description: Window size in milliseconds. example: 3600000 in: query @@ -9116,7 +8764,6 @@ paths: schema: type: integer format: int64 - example: null responses: '200': content: @@ -9146,7 +8793,6 @@ paths: name: query schema: type: string - example: null - description: end of timeframe expressed as the Unix epoch time in milliseconds example: 1689018652000 in: query @@ -9154,7 +8800,6 @@ paths: schema: type: integer format: int64 - example: null - description: windowSize in milliseconds example: 3600000 in: query @@ -9162,7 +8807,6 @@ paths: schema: type: integer format: int64 - example: null - description: maximum number of snapshots to retrieve example: 100 in: query @@ -9170,21 +8814,18 @@ paths: schema: type: integer format: int32 - example: null - description: entity type example: host in: query name: plugin schema: type: string - example: null - description: 'retrieve snapshots which were online during the timeframe, otherwise, return only snapshot which were online at the end of the timeframe' example: false in: query name: offline schema: type: boolean - example: null responses: '200': content: @@ -9262,7 +8903,6 @@ paths: required: true schema: type: string - example: null - description: end of timeframe expressed as the Unix epoch time in milliseconds example: 1689018652000 in: query @@ -9270,7 +8910,6 @@ paths: schema: type: integer format: int64 - example: null - description: windowSize in milliseconds example: 3600000 in: query @@ -9278,7 +8917,6 @@ paths: schema: type: integer format: int64 - example: null responses: '200': content: @@ -9359,32 +8997,26 @@ paths: schema: type: integer format: int64 - example: null - in: query name: origin schema: type: string - example: null - in: query name: type schema: type: string - example: null - in: query name: name schema: type: string - example: null - in: query name: version schema: type: string - example: null - in: query name: vendor schema: type: string - example: null responses: '200': content: @@ -9415,7 +9047,6 @@ paths: snapshotId: cn06irROoHrvrDEa4fWw9vD6yhc schema: type: array - example: null items: $ref: '#/components/schemas/SoftwareVersion' description: OK @@ -9433,7 +9064,6 @@ paths: name: includeData schema: type: boolean - example: null responses: '200': content: @@ -9481,6 +9111,7 @@ paths: related: - vsphereVM - vsphereHost + - vsphereDatacenter schema: $ref: '#/components/schemas/GetApplicationTopologyQuery' responses: @@ -9531,7 +9162,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/UsageResult' security: @@ -9550,28 +9180,24 @@ paths: schema: type: integer format: int32 - example: null - in: path name: month required: true schema: type: integer format: int32 - example: null - in: path name: year required: true schema: type: integer format: int32 - example: null responses: default: content: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/UsageResult' security: @@ -9590,21 +9216,18 @@ paths: schema: type: integer format: int32 - example: null - in: path name: year required: true schema: type: integer format: int32 - example: null responses: default: content: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/UsageResult' security: @@ -9623,28 +9246,24 @@ paths: schema: type: integer format: int32 - example: null - in: path name: month required: true schema: type: integer format: int32 - example: null - in: path name: year required: true schema: type: integer format: int32 - example: null responses: default: content: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/UsageResult' security: @@ -9663,21 +9282,18 @@ paths: schema: type: integer format: int32 - example: null - in: path name: year required: true schema: type: integer format: int32 - example: null responses: default: content: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/UsageResult' security: @@ -9714,7 +9330,6 @@ paths: name: fillTimeSeries schema: type: boolean - example: null requestBody: content: application/json: @@ -9892,7 +9507,6 @@ paths: required: true schema: type: string - example: null - in: query name: useCase required: true @@ -9909,7 +9523,6 @@ paths: - APPLICATION_CONFIG - APPLICATION_CONFIG_BLUEPRINT - MAINTENANCE_WINDOWS - example: null responses: '400': description: When the combination of beaconType and useCase is unsupported/unknown. @@ -9956,7 +9569,6 @@ paths: tagName: null schema: type: array - example: null items: $ref: '#/components/schemas/MobileAppMonitoringMetricDescription' security: @@ -9981,7 +9593,6 @@ paths: sourceValueAvailableFrom: 0 schema: type: array - example: null items: $ref: '#/components/schemas/Tag' security: @@ -10002,7 +9613,6 @@ paths: name: example_mobile_app schema: type: array - example: null items: $ref: '#/components/schemas/MobileApp' security: @@ -10018,7 +9628,6 @@ paths: name: name schema: type: string - example: null responses: '200': content: @@ -10046,7 +9655,6 @@ paths: required: true schema: type: string - example: null responses: '204': description: Mobile app successfully removed @@ -10064,12 +9672,10 @@ paths: required: true schema: type: string - example: null - in: query name: name schema: type: string - example: null responses: '200': content: @@ -10099,7 +9705,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -10124,7 +9729,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -10153,7 +9757,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -10173,13 +9776,11 @@ paths: required: true schema: type: string - example: null requestBody: content: text/csv: schema: type: string - example: null responses: '200': content: @@ -10201,7 +9802,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -10225,7 +9825,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -10273,7 +9872,6 @@ paths: required: true schema: type: string - example: null style: matrix - in: path name: timestamp @@ -10281,7 +9879,6 @@ paths: schema: type: integer format: int64 - example: null style: matrix responses: '400': @@ -10355,7 +9952,6 @@ paths: parsedStackTrace: '' schema: type: array - example: null items: $ref: '#/components/schemas/MobileAppMonitoringBeacon' security: @@ -10426,19 +10022,16 @@ paths: schema: type: integer format: int64 - example: null - in: query name: to schema: type: integer format: int64 - example: null - in: query name: maxResults schema: type: integer format: int32 - example: null responses: '200': content: @@ -10450,7 +10043,6 @@ paths: lastUpdated: 1709091782533 schema: type: array - example: null items: $ref: '#/components/schemas/ReleaseWithMetadata' description: OK @@ -10513,7 +10105,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -10535,7 +10126,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -10562,7 +10152,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -10590,18 +10179,15 @@ paths: schema: type: integer format: int32 - example: null - in: query name: query schema: type: string - example: null - in: query name: pageSize schema: type: integer format: int32 - example: null responses: default: content: @@ -10651,7 +10237,6 @@ paths: includeSynthetic: false schema: type: array - example: null items: $ref: '#/components/schemas/ApdexConfiguration' description: OK @@ -10694,7 +10279,6 @@ paths: enum: - APPLICATION - WEBSITE - example: null - description: entityId example: XIZGGVT1TX2O-0OFeT2Yig in: path @@ -10702,7 +10286,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -10734,7 +10317,6 @@ paths: beaconType: httpRequest schema: type: array - example: null items: $ref: '#/components/schemas/ApdexConfiguration' description: OK @@ -10752,7 +10334,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -10774,7 +10355,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -10809,7 +10389,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/ApiToken' security: @@ -10849,7 +10428,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -10869,7 +10447,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -10890,7 +10467,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -10920,18 +10496,15 @@ paths: schema: type: integer format: int32 - example: null - in: query name: query schema: type: string - example: null - in: query name: pageSize schema: type: integer format: int32 - example: null responses: default: content: @@ -11009,7 +10582,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -11031,7 +10603,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/InvitationResult' security: @@ -11053,7 +10624,6 @@ paths: groupId: '-1' schema: type: array - example: null items: $ref: '#/components/schemas/Invitation' required: true @@ -11067,7 +10637,6 @@ paths: invitationStatus: SUCCESS schema: type: array - example: null items: $ref: '#/components/schemas/InvitationResponse' '400': @@ -11078,7 +10647,6 @@ paths: - Please set at least one email schema: type: string - example: null security: - ApiKeyAuth: - ConfigureUsers @@ -11103,7 +10671,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/ValidatedMaintenanceConfigWithStatus' security: @@ -11122,7 +10689,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -11143,7 +10709,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -11165,7 +10730,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -11217,7 +10781,6 @@ paths: email: username3@instana.com schema: type: array - example: null items: $ref: '#/components/schemas/ApiGroup' description: OK @@ -11358,7 +10921,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -11401,7 +10963,6 @@ paths: scopeRoleId: '-1' schema: type: array - example: null items: $ref: '#/components/schemas/ApiGroup' description: OK @@ -11421,16 +10982,13 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: array - example: null items: type: string - example: null required: true responses: default: @@ -11496,16 +11054,13 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: array - example: null items: type: string - example: null required: true responses: default: @@ -11529,7 +11084,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -11549,7 +11103,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -11631,7 +11184,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -11702,13 +11254,11 @@ paths: required: true schema: type: string - example: null - in: path name: userId required: true schema: type: string - example: null responses: default: content: @@ -11734,7 +11284,6 @@ paths: groupId: '-3' schema: type: array - example: null items: $ref: '#/components/schemas/GroupMapping' description: OK @@ -11824,7 +11373,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -11844,7 +11392,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -11888,16 +11435,13 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: schema: type: array - example: null items: type: string - example: null required: true responses: default: @@ -11905,7 +11449,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/RCAFeedback' security: @@ -11971,7 +11514,6 @@ paths: application/json: schema: type: array - example: null items: $ref: '#/components/schemas/SliConfigurationWithLastUpdated' security: @@ -12060,7 +11602,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -12081,7 +11622,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -12103,7 +11643,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -12131,26 +11670,21 @@ paths: schema: type: integer format: int32 - example: null - in: query name: page schema: type: integer format: int32 - example: null - in: query name: query schema: type: string - example: null - in: query name: tag schema: type: array - example: null items: type: string - example: null uniqueItems: true - in: query name: entityType @@ -12159,7 +11693,6 @@ paths: enum: - application - website - example: null - in: query name: orderBy schema: @@ -12167,7 +11700,6 @@ paths: enum: - name - entityType - example: null - in: query name: orderDirection schema: @@ -12175,7 +11707,16 @@ paths: enum: - ASC - DESC - example: null + - in: query + name: sloIds + schema: + type: array + items: + type: string + - in: query + name: refresh + schema: + type: boolean responses: '200': content: @@ -12328,15 +11869,12 @@ paths: name: query schema: type: string - example: null - in: query name: tag schema: type: array - example: null items: type: string - example: null uniqueItems: true - in: query name: entityType @@ -12345,7 +11883,6 @@ paths: enum: - application - website - example: null responses: '200': content: @@ -12371,10 +11908,8 @@ paths: - robert-creates-a-new-sli schema: type: array - example: null items: type: string - example: null description: List of SLO setting tags security: - ApiKeyAuth: @@ -12391,7 +11926,6 @@ paths: required: true schema: type: string - example: null responses: '200': description: Specified SLO seeting is deleted. @@ -12403,7 +11937,6 @@ paths: - The sloConfiguration you are looking for does not exist. schema: type: string - example: null description: SLO setting is not found security: - ApiKeyAuth: @@ -12419,7 +11952,10 @@ paths: required: true schema: type: string - example: null + - in: query + name: refresh + schema: + type: boolean responses: '200': content: @@ -12462,7 +11998,6 @@ paths: - The sloConfiguration you are looking for does not exist. schema: type: string - example: null description: SLO setting is not found security: - ApiKeyAuth: @@ -12478,7 +12013,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -12551,7 +12085,6 @@ paths: - The sloConfiguration you are looking for does not exist. schema: type: string - example: null description: SLO setting is not found security: - ApiKeyAuth: @@ -12622,7 +12155,6 @@ paths: tfaEnabled: false schema: type: array - example: null items: $ref: '#/components/schemas/UserResult' security: @@ -12667,7 +12199,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -12695,7 +12226,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -12719,7 +12249,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -12747,7 +12276,6 @@ paths: role: null schema: type: array - example: null items: $ref: '#/components/schemas/UserResult' security: @@ -12849,7 +12377,6 @@ paths: end: 1699129644000 schema: type: array - example: null items: $ref: '#/components/schemas/ValidatedMaintenanceConfigV2WithStateAndOccurrence' security: @@ -12869,7 +12396,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -12896,7 +12422,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -12941,7 +12466,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -13127,7 +12651,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -13174,7 +12697,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -13235,7 +12757,6 @@ paths: lastUpdated: 1637758839104 schema: type: array - example: null items: $ref: '#/components/schemas/SliConfigurationWithLastUpdated' description: OK @@ -13326,13 +12847,11 @@ paths: enum: - APPLICATION - WEBSITE - example: null - in: path name: entityId required: true schema: type: string - example: null responses: '200': content: @@ -13354,7 +12873,6 @@ paths: lastUpdated: 1648133508938 schema: type: array - example: null items: $ref: '#/components/schemas/SliConfigurationWithLastUpdated' description: OK @@ -13373,7 +12891,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -13393,7 +12910,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -13433,7 +12949,6 @@ paths: required: true schema: type: string - example: null - description: slo target example: 0.99 in: query @@ -13442,7 +12957,6 @@ paths: schema: type: number format: double - example: null - description: Timestamp milliseconds (13-digit) example: 1706713140000 in: query @@ -13451,7 +12965,6 @@ paths: schema: type: integer format: int64 - example: null - description: Timestamp milliseconds (13-digit) example: 1706713140000 in: query @@ -13460,7 +12973,6 @@ paths: schema: type: integer format: int64 - example: null responses: '200': content: @@ -13475,14 +12987,13 @@ paths: violationDistribution: null schema: type: array - example: null items: $ref: '#/components/schemas/SliReport' description: OK security: - ApiKeyAuth: - canConfigureServiceLevelIndicators - summary: Generate SLI report + summary: 'Generate SLI report (Limitation: the Classic Edition API report can be available one hour after the SLI configuration created; other editions are around one minute.)' tags: - SLI Report '/api/slo/report/{sloId}': @@ -13494,17 +13005,14 @@ paths: required: true schema: type: string - example: null - in: query name: from schema: type: string - example: null - in: query name: to schema: type: string - example: null responses: '200': content: @@ -14195,7 +13703,6 @@ paths: '167': 12 schema: type: array - example: null items: $ref: '#/components/schemas/SloReport' description: Service Level report @@ -14225,7 +13732,6 @@ paths: - APPLICATION_CONFIG - APPLICATION_CONFIG_BLUEPRINT - MAINTENANCE_WINDOWS - example: null responses: default: content: @@ -14800,19 +14306,16 @@ paths: required: true schema: type: string - example: null - in: path name: testresultid required: true schema: type: string - example: null - in: query name: startTime schema: type: integer format: int64 - example: null responses: default: content: @@ -14840,33 +14343,27 @@ paths: required: true schema: type: string - example: null - in: path name: testresultid required: true schema: type: string - example: null - in: query name: type required: true schema: type: string - example: null - in: query name: name schema: type: array - example: null items: type: string - example: null - in: query name: startTime schema: type: integer format: int64 - example: null responses: default: content: @@ -14906,25 +14403,21 @@ paths: required: true schema: type: string - example: null - in: path name: testresultid required: true schema: type: string - example: null - in: query name: type required: true schema: type: string - example: null - in: query name: startTime schema: type: integer format: int64 - example: null responses: default: content: @@ -14959,10 +14452,8 @@ paths: - USER_NAME_TEST schema: type: array - example: null items: type: string - example: null security: - ApiKeyAuth: - canUseSyntheticCredentials @@ -15001,7 +14492,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -15021,25 +14511,20 @@ paths: name: sort schema: type: string - example: null - in: query name: offset schema: type: string - example: null - in: query name: limit schema: type: string - example: null - in: query name: filter schema: type: array - example: null items: type: string - example: null responses: default: content: @@ -15103,7 +14588,6 @@ paths: status: Offline schema: type: array - example: null items: $ref: '#/components/schemas/SyntheticLocation' security: @@ -15121,7 +14605,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -15141,7 +14624,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -15191,12 +14673,10 @@ paths: name: applicationId schema: type: string - example: null - in: query name: locationId schema: type: string - example: null responses: default: content: @@ -15299,7 +14779,6 @@ paths: modifiedBy: Internal schema: type: array - example: null items: $ref: '#/components/schemas/SyntheticTest' security: @@ -15425,7 +14904,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -15445,7 +14923,6 @@ paths: required: true schema: type: string - example: null responses: default: content: @@ -15520,7 +14997,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -15573,7 +15049,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -15620,7 +15095,6 @@ paths: name: fillTimeSeries schema: type: boolean - example: null requestBody: content: application/json: @@ -15833,7 +15307,6 @@ paths: required: true schema: type: string - example: null - description: useCase example: GROUPING in: query @@ -15852,7 +15325,6 @@ paths: - APPLICATION_CONFIG - APPLICATION_CONFIG_BLUEPRINT - MAINTENANCE_WINDOWS - example: null responses: '200': content: @@ -15921,7 +15393,6 @@ paths: tagName: beacon.duration schema: type: array - example: null items: $ref: '#/components/schemas/WebsiteMonitoringMetricDescription' description: OK @@ -15949,7 +15420,6 @@ paths: sourceValueAvailableFrom: 0 schema: type: array - example: null items: $ref: '#/components/schemas/Tag' description: OK @@ -15974,7 +15444,6 @@ paths: appName: example_website schema: type: array - example: null items: $ref: '#/components/schemas/Website' description: OK @@ -15988,7 +15457,6 @@ paths: name: name schema: type: string - example: null responses: '200': content: @@ -16017,7 +15485,6 @@ paths: required: true schema: type: string - example: null responses: '204': description: Website successfully removed @@ -16038,7 +15505,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -16061,12 +15527,10 @@ paths: required: true schema: type: string - example: null - in: query name: name schema: type: string - example: null responses: '200': content: @@ -16098,7 +15562,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -16123,7 +15586,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -16150,7 +15612,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -16169,13 +15630,11 @@ paths: required: true schema: type: string - example: null requestBody: content: text/csv: schema: type: string - example: null responses: '200': content: @@ -16198,7 +15657,6 @@ paths: required: true schema: type: string - example: null responses: '200': content: @@ -16222,7 +15680,6 @@ paths: required: true schema: type: string - example: null requestBody: content: application/json: @@ -16249,13 +15706,11 @@ paths: required: true schema: type: string - example: null - in: path name: sourceMapConfigId required: true schema: type: string - example: null responses: '204': description: Source map files in the source map upload configuration successfully cleared @@ -16274,30 +15729,24 @@ paths: required: true schema: type: string - example: null - in: path name: sourceMapConfigId required: true schema: type: string - example: null requestBody: content: multipart/form-data: schema: type: object - example: null properties: fileFormat: type: string - example: null sourceMap: type: string format: binary - example: null url: type: string - example: null responses: '200': content: @@ -16342,7 +15791,6 @@ paths: required: true schema: type: string - example: null style: matrix - description: timestamp example: 1707012285674 @@ -16352,7 +15800,6 @@ paths: schema: type: integer format: int64 - example: null style: matrix responses: '200': @@ -16458,7 +15905,6 @@ paths: interactionNextPaint: -1 schema: type: array - example: null items: $ref: '#/components/schemas/WebsiteMonitoringBeacon' description: OK @@ -16544,17 +15990,13 @@ components: WEB_HOOK: '#/components/schemas/WebhookIntegration' Z_CHATOPS: '#/components/schemas/ZChatOpsIntegration' propertyName: kind - example: null properties: id: type: string - example: null kind: type: string - example: null name: type: string - example: null required: - id - kind @@ -16570,20 +16012,16 @@ components: system: '#/components/schemas/SystemRule' threshold: '#/components/schemas/ThresholdRule' propertyName: ruleType - example: null properties: ruleType: type: string - example: null severity: type: integer format: int32 - example: null required: - ruleType AccessLogEntry: type: object - example: null properties: action: type: string @@ -16593,23 +16031,17 @@ components: - LOGIN - FAILED_LOGIN - LOGOUT - example: null email: type: string - example: null fullName: type: string - example: null tenantId: type: string - example: null tenantUnitId: type: string - example: null timestamp: type: integer format: int64 - example: null required: - action - email @@ -16618,30 +16050,24 @@ components: - timestamp AccessLogResponse: type: object - example: null properties: entries: type: array - example: null items: $ref: '#/components/schemas/AccessLogEntry' total: type: integer format: int64 - example: null AccessRule: type: object - example: null properties: accessType: type: string enum: - READ - READ_WRITE - example: null relatedId: type: string - example: null maxLength: 64 minLength: 0 relationType: @@ -16652,36 +16078,29 @@ components: - ROLE - TEAM - GLOBAL - example: null required: - accessType - relationType Action: type: object - example: null properties: createdAt: type: string format: date-time - example: null description: type: string - example: null maxLength: 512 minLength: 0 fields: type: array - example: null items: $ref: '#/components/schemas/Field' id: type: string - example: null maxLength: 128 minLength: 1 inputParameters: type: array - example: null items: $ref: '#/components/schemas/Parameter' metadata: @@ -16689,26 +16108,20 @@ components: modifiedAt: type: string format: date-time - example: null name: type: string - example: null maxLength: 128 minLength: 1 outputParameters: type: array - example: null items: $ref: '#/components/schemas/Parameter' tags: type: array - example: null items: type: string - example: null type: type: string - example: null maxLength: 128 minLength: 0 required: @@ -16719,42 +16132,32 @@ components: - type ActionConfiguration: type: object - example: null properties: action: $ref: '#/components/schemas/Action' agentId: type: string - example: null inputParameterValues: type: array - example: null items: $ref: '#/components/schemas/ParameterValue' required: - action ActionInstance: type: object - example: null properties: actionDescription: type: string - example: null actionId: type: string - example: null actionInstanceId: type: string - example: null actionName: type: string - example: null actorId: type: string - example: null actorName: type: string - example: null actorType: type: string enum: @@ -16762,65 +16165,48 @@ components: - USER - APITOKEN - POLICY - example: null createdDate: type: integer format: int64 - example: null endDate: type: integer format: int64 - example: null errorMessage: type: string - example: null eventEntityType: type: string - example: null eventId: type: string - example: null eventSpecificationId: type: string - example: null externalSourceType: type: string - example: null hostSnapshotId: type: string - example: null inputParameters: type: array - example: null items: $ref: '#/components/schemas/ActionInstanceParameter' metadata: type: array - example: null items: $ref: '#/components/schemas/ActionInstanceMetadataEntry' output: type: string - example: null outputParameters: type: array - example: null items: $ref: '#/components/schemas/ActionInstanceParameter' policyId: type: string - example: null problemText: type: string - example: null returnCode: type: integer format: int32 - example: null startDate: type: integer format: int64 - example: null status: type: string enum: @@ -16831,10 +16217,8 @@ components: - FAILED - READY - TIMEOUT - example: null targetSnapshotId: type: string - example: null type: type: string enum: @@ -16845,61 +16229,47 @@ components: - GITHUB - GITLAB - JIRA - example: null required: - actionId - actionName - type ActionInstanceMetadataEntry: type: object - example: null properties: name: type: string - example: null value: type: string - example: null required: - name ActionInstanceParameter: type: object - example: null properties: displayName: type: string - example: null name: type: string - example: null type: type: string - example: null value: type: string - example: null required: - displayName - name ActionMatch: type: object - example: null properties: action: $ref: '#/components/schemas/Action' aiEngine: type: string - example: null color: type: string - example: null confidence: type: string - example: null score: type: number format: double - example: null required: - action - aiEngine @@ -16908,34 +16278,25 @@ components: - score ActionSearchSpace: type: object - example: null properties: action: $ref: '#/components/schemas/Action' description: type: string - example: null eventId: type: string - example: null name: type: string - example: null searchOrder: type: string - example: null searchTarget: type: string - example: null tags: type: array - example: null items: type: string - example: null type: type: string - example: null required: - name AdaptiveBaseline: @@ -16943,70 +16304,56 @@ components: allOf: - $ref: '#/components/schemas/Threshold' - type: object - example: null properties: deviationFactor: type: number format: double - example: null exclusiveMaximum: false exclusiveMinimum: false maximum: 16 minimum: 0.5 - example: null required: - operator AdjustedTimeframe: type: object - example: null properties: to: type: integer format: int64 - example: null windowSize: type: integer format: int64 - example: null minimum: 0 required: - to AgentConfigurationUpdate: type: object - example: null properties: remoteBranch: type: string - example: null maxLength: 256 minLength: 0 remoteName: type: string - example: null maxLength: 256 minLength: 0 remoteUri: type: string - example: null maxLength: 65536 minLength: 0 AgentMonitoringIssue: type: object allOf: - $ref: '#/components/schemas/Event' - example: null AlertingConfiguration: type: object - example: null properties: alertName: type: string - example: null maxLength: 256 minLength: 0 customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/StaticStringField' maxItems: 20 @@ -17015,22 +16362,18 @@ components: $ref: '#/components/schemas/EventFilteringConfiguration' id: type: string - example: null maxLength: 64 minLength: 0 integrationIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true muteUntil: type: integer format: int64 - example: null required: - alertName - customPayloadFields @@ -17039,16 +16382,13 @@ components: - integrationIds AlertingConfigurationWithLastUpdated: type: object - example: null properties: alertName: type: string - example: null maxLength: 256 minLength: 0 customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/StaticStringField' maxItems: 20 @@ -17057,27 +16397,22 @@ components: $ref: '#/components/schemas/EventFilteringConfiguration' id: type: string - example: null maxLength: 64 minLength: 0 integrationIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true lastUpdated: type: integer format: int64 - example: null minimum: 1 muteUntil: type: integer format: int64 - example: null required: - alertName - customPayloadFields @@ -17086,22 +16421,18 @@ components: - integrationIds ApdexConfiguration: type: object - example: null properties: apdexEntity: $ref: '#/components/schemas/ApdexEntity' apdexName: type: string - example: null maxLength: 256 minLength: 0 createdAt: type: integer format: int64 - example: null id: type: string - example: null maxLength: 64 minLength: 0 required: @@ -17110,13 +16441,11 @@ components: - id ApdexConfigurationInput: type: object - example: null properties: apdexEntity: $ref: '#/components/schemas/ApdexEntity' apdexName: type: string - example: null maxLength: 256 minLength: 0 required: @@ -17129,20 +16458,16 @@ components: application: '#/components/schemas/ApplicationApdexEntity' website: '#/components/schemas/WebsiteApdexEntity' propertyName: apdexType - example: null properties: apdexType: type: string - example: null entityId: type: string - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' threshold: type: integer format: int32 - example: null minimum: 1 required: - apdexType @@ -17150,41 +16475,31 @@ components: - tagFilterExpression ApdexReport: type: object - example: null properties: apdexId: type: string - example: null apdexScore: type: array - example: null items: type: array - example: null items: type: number - example: null from: type: integer format: int64 - example: null to: type: integer format: int64 - example: null ApiCreateGroup: type: object - example: null properties: members: type: array - example: null items: $ref: '#/components/schemas/ApiMember' uniqueItems: true name: type: string - example: null permissionSet: $ref: '#/components/schemas/ApiPermissionSet' required: @@ -17193,22 +16508,18 @@ components: - permissionSet ApiGroup: type: object - example: null properties: id: type: string - example: null maxLength: 64 minLength: 0 members: type: array - example: null items: $ref: '#/components/schemas/ApiMember' uniqueItems: true name: type: string - example: null permissionSet: $ref: '#/components/schemas/ApiPermissionSet' required: @@ -17218,23 +16529,18 @@ components: - permissionSet ApiMember: type: object - example: null properties: email: type: string - example: null userId: type: string - example: null required: - userId ApiPermissionSet: type: object - example: null properties: applicationIds: type: array - example: null items: $ref: '#/components/schemas/ScopeBinding' maxItems: 1024 @@ -17242,7 +16548,6 @@ components: uniqueItems: true businessPerspectiveIds: type: array - example: null items: $ref: '#/components/schemas/ScopeBinding' maxItems: 1024 @@ -17252,7 +16557,6 @@ components: $ref: '#/components/schemas/ScopeBinding' kubernetesClusterUUIDs: type: array - example: null items: $ref: '#/components/schemas/ScopeBinding' maxItems: 1024 @@ -17260,7 +16564,6 @@ components: uniqueItems: true kubernetesNamespaceUIDs: type: array - example: null items: $ref: '#/components/schemas/ScopeBinding' maxItems: 1024 @@ -17268,7 +16571,6 @@ components: uniqueItems: true mobileAppIds: type: array - example: null items: $ref: '#/components/schemas/ScopeBinding' maxItems: 1024 @@ -17276,10 +16578,8 @@ components: uniqueItems: true permissions: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true @@ -17287,7 +16587,6 @@ components: $ref: '#/components/schemas/ApiRestrictedApplicationFilter' syntheticTestIds: type: array - example: null items: $ref: '#/components/schemas/ScopeBinding' maxItems: 1024 @@ -17295,7 +16594,6 @@ components: uniqueItems: true websiteIds: type: array - example: null items: $ref: '#/components/schemas/ScopeBinding' maxItems: 1024 @@ -17313,205 +16611,140 @@ components: - websiteIds ApiRestrictedApplicationFilter: type: object - example: null properties: label: type: string - example: null restrictingApplicationId: type: string - example: null scope: type: string enum: - INCLUDE_NO_DOWNSTREAM - INCLUDE_IMMEDIATE_DOWNSTREAM_DATABASE_AND_MESSAGING - INCLUDE_ALL_DOWNSTREAM - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' ApiToken: type: object - example: null properties: accessGrantingToken: type: string - example: null canConfigureAgentRunMode: type: boolean - example: null canConfigureAgents: type: boolean - example: null canConfigureApiTokens: type: boolean - example: null canConfigureApplicationSmartAlerts: type: boolean - example: null canConfigureApplications: type: boolean - example: null canConfigureAuthenticationMethods: type: boolean - example: null canConfigureAutomationActions: type: boolean - example: null canConfigureAutomationPolicies: type: boolean - example: null canConfigureEumApplications: type: boolean - example: null canConfigureEventsAndAlerts: type: boolean - example: null canConfigureGlobalAlertPayload: type: boolean - example: null canConfigureGlobalApplicationSmartAlerts: type: boolean - example: null canConfigureGlobalInfraSmartAlerts: type: boolean - example: null canConfigureGlobalLogSmartAlerts: type: boolean - example: null canConfigureGlobalSyntheticSmartAlerts: type: boolean - example: null canConfigureIntegrations: type: boolean - example: null canConfigureLogManagement: type: boolean - example: null canConfigureMaintenanceWindows: type: boolean - example: null canConfigureMobileAppMonitoring: type: boolean - example: null canConfigureMobileAppSmartAlerts: type: boolean - example: null canConfigurePersonalApiTokens: type: boolean - example: null canConfigureReleases: type: boolean - example: null canConfigureServiceLevelIndicators: type: boolean - example: null canConfigureServiceMapping: type: boolean - example: null canConfigureSessionSettings: type: boolean - example: null canConfigureSyntheticCredentials: type: boolean - example: null canConfigureSyntheticLocations: type: boolean - example: null canConfigureSyntheticTests: type: boolean - example: null canConfigureTeams: type: boolean - example: null canConfigureUsers: type: boolean - example: null canConfigureWebsiteSmartAlerts: type: boolean - example: null canCreateHeapDump: type: boolean - example: null canCreatePublicCustomDashboards: type: boolean - example: null canCreateThreadDump: type: boolean - example: null canDeleteLogs: type: boolean - example: null canEditAllAccessibleCustomDashboards: type: boolean - example: null canInstallNewAgents: type: boolean - example: null canManuallyCloseIssue: type: boolean - example: null canRunAutomationActions: type: boolean - example: null canUseSyntheticCredentials: type: boolean - example: null canViewAccountAndBillingInformation: type: boolean - example: null canViewAuditLog: type: boolean - example: null - canViewAutomationActionInstances: - type: boolean - example: null canViewBizAlerts: type: boolean - example: null canViewBusinessActivities: type: boolean - example: null canViewBusinessProcessDetails: type: boolean - example: null canViewBusinessProcesses: type: boolean - example: null canViewLogVolume: type: boolean - example: null canViewLogs: type: boolean - example: null canViewSyntheticLocations: type: boolean - example: null canViewSyntheticTestResults: type: boolean - example: null canViewSyntheticTests: type: boolean - example: null canViewTraceDetails: type: boolean - example: null id: type: string - example: null internalId: type: string - example: null name: type: string - example: null required: - accessGrantingToken - internalId - name AppDataMetricConfiguration: type: object - example: null properties: aggregation: type: string @@ -17529,18 +16762,14 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null granularity: type: integer format: int32 - example: null metric: type: string - example: null numeratorTagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' required: @@ -17548,66 +16777,53 @@ components: - metric Application: type: object - example: null properties: boundaryScope: type: string - example: null entityType: type: string enum: - APPLICATION - SERVICE - ENDPOINT - example: null id: type: string - example: null label: type: string - example: null required: - boundaryScope - id - label ApplicationAlertConfig: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true applicationId: type: string - example: null writeOnly: true applications: type: object additionalProperties: $ref: '#/components/schemas/ApplicationNode' - example: null boundaryScope: type: string enum: - ALL - INBOUND - example: null customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 evaluationType: @@ -17616,7 +16832,6 @@ components: - PER_AP - PER_AP_SERVICE - PER_AP_ENDPOINT - example: null granularity: type: integer format: int32 @@ -17628,16 +16843,12 @@ components: - 900000 - 1200000 - 1800000 - example: null includeInternal: type: boolean - example: null includeSynthetic: type: boolean - example: null name: type: string - example: null maxLength: 256 minLength: 0 rule: @@ -17645,12 +16856,10 @@ components: severity: type: integer format: int32 - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/TagFilter' uniqueItems: true @@ -17661,7 +16870,6 @@ components: $ref: '#/components/schemas/ApplicationTimeThreshold' triggering: type: boolean - example: null required: - alertChannelIds - applications @@ -17677,60 +16885,49 @@ components: - timeThreshold ApplicationAlertConfigWithMetadata: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true applicationId: type: string - example: null maxLength: 64 minLength: 0 applications: type: object additionalProperties: $ref: '#/components/schemas/ApplicationNode' - example: null boundaryScope: type: string enum: - ALL - INBOUND - example: null created: type: integer format: int64 - example: null minimum: 1 customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 enabled: type: boolean - example: null evaluationType: type: string enum: - PER_AP - PER_AP_SERVICE - PER_AP_ENDPOINT - example: null granularity: type: integer format: int32 @@ -17742,42 +16939,33 @@ components: - 900000 - 1200000 - 1800000 - example: null id: type: string - example: null maxLength: 64 minLength: 0 includeInternal: type: boolean - example: null includeSynthetic: type: boolean - example: null initialCreated: type: integer format: int64 - example: null minimum: 1 name: type: string - example: null maxLength: 256 minLength: 0 readOnly: type: boolean - example: null rule: $ref: '#/components/schemas/ApplicationAlertRule' severity: type: integer format: int32 - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/TagFilter' uniqueItems: true @@ -17788,7 +16976,6 @@ components: $ref: '#/components/schemas/ApplicationTimeThreshold' triggering: type: boolean - example: null required: - alertChannelIds - applications @@ -17814,7 +17001,6 @@ components: statusCode: '#/components/schemas/StatusCodeApplicationAlertRule' throughput: '#/components/schemas/ThroughputApplicationAlertRule' propertyName: alertType - example: null properties: aggregation: type: string @@ -17832,17 +17018,13 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null alertType: type: string - example: null metricName: type: string - example: null required: - alertType - metricName @@ -17851,32 +17033,25 @@ components: allOf: - $ref: '#/components/schemas/ApdexEntity' - type: object - example: null properties: boundaryScope: type: string enum: - ALL - INBOUND - example: null includeInternal: type: boolean - example: null includeSynthetic: type: boolean - example: null - example: null required: - boundaryScope - entityId - tagFilterExpression ApplicationConfig: type: object - example: null properties: accessRules: type: array - example: null items: $ref: '#/components/schemas/AccessRule' maxItems: 64 @@ -17887,15 +17062,12 @@ components: - ALL - INBOUND - DEFAULT - example: null id: type: string - example: null maxLength: 128 minLength: 1 label: type: string - example: null maxLength: 128 minLength: 1 matchSpecification: @@ -17906,7 +17078,6 @@ components: - INCLUDE_NO_DOWNSTREAM - INCLUDE_IMMEDIATE_DOWNSTREAM_DATABASE_AND_MESSAGING - INCLUDE_ALL_DOWNSTREAM - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' required: @@ -17920,56 +17091,48 @@ components: allOf: - $ref: '#/components/schemas/EventResult' - type: object - example: null properties: applicationId: type: string - example: null probableRootCause: type: object additionalProperties: type: object - example: null - example: null writeOnly: true - example: null ApplicationExtendedTraversal: type: object description: extended Traversal - example: null properties: related: type: array - example: null items: type: string enum: - host + - vsphereDatacenter - vsphereHost - vsphereVM - kubernetesService - kubernetesPod - kubernetesPersistentVolume - kubernetesPersistentVolumeClaim - example: null terminus: type: string description: Plugin ID of terminus enum: - host + - vsphereDatacenter - vsphereHost - vsphereVM - kubernetesService - kubernetesPod - kubernetesPersistentVolume - kubernetesPersistentVolumeClaim - example: null required: - related - terminus ApplicationItem: type: object - example: null properties: application: $ref: '#/components/schemas/Application' @@ -17977,107 +17140,84 @@ components: type: object additionalProperties: type: array - example: null items: type: array - example: null items: type: number - example: null - example: null required: - application - metrics ApplicationMetricResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' items: type: array - example: null items: $ref: '#/components/schemas/ApplicationItem' page: type: integer format: int32 - example: null minimum: 1 pageSize: type: integer format: int32 - example: null minimum: 1 totalHits: type: integer format: int64 - example: null minimum: 0 required: - items ApplicationNode: type: object - example: null properties: applicationId: type: string - example: null maxLength: 64 minLength: 0 inclusive: type: boolean - example: null services: type: object additionalProperties: $ref: '#/components/schemas/ServiceNode' - example: null required: - applicationId - services ApplicationResult: type: object - example: null properties: items: type: array - example: null items: $ref: '#/components/schemas/Application' page: type: integer format: int32 - example: null pageSize: type: integer format: int32 - example: null totalHits: type: integer format: int32 - example: null ApplicationScope: type: object - example: null properties: name: type: string - example: null maxLength: 256 minLength: 0 required: - name ApplicationScopeWithMetadata: type: object - example: null properties: id: type: string - example: null name: type: string - example: null required: - id ApplicationSliEntity: @@ -18085,24 +17225,18 @@ components: allOf: - $ref: '#/components/schemas/SliEntity' - type: object - example: null properties: applicationId: type: string - example: null boundaryScope: type: string enum: - ALL - INBOUND - example: null endpointId: type: string - example: null serviceId: type: string - example: null - example: null required: - boundaryScope ApplicationSloEntity: @@ -18110,30 +17244,22 @@ components: allOf: - $ref: '#/components/schemas/SloEntity' - type: object - example: null properties: applicationId: type: string - example: null boundaryScope: type: string enum: - ALL - INBOUND - example: null endpointId: type: string - example: null includeInternal: type: boolean - example: null includeSynthetic: type: boolean - example: null serviceId: type: string - example: null - example: null required: - applicationId - boundaryScope @@ -18145,42 +17271,32 @@ components: violationsInPeriod: '#/components/schemas/ViolationsInPeriodApplicationTimeThreshold' violationsInSequence: '#/components/schemas/ViolationsInSequenceApplicationTimeThreshold' propertyName: type - example: null properties: timeWindow: type: integer format: int64 - example: null type: type: string - example: null required: - type AuditLogEntry: type: object - example: null properties: action: type: string - example: null actor: $ref: '#/components/schemas/LogEntryActor' id: type: string - example: null message: type: string - example: null meta: type: object additionalProperties: type: object - example: null - example: null timestamp: type: integer format: int64 - example: null required: - action - actor @@ -18189,24 +17305,19 @@ components: - meta AuditLogUiResponse: type: object - example: null properties: entries: type: array - example: null items: $ref: '#/components/schemas/AuditLogEntry' total: type: integer format: int64 - example: null Author: type: object - example: null properties: id: type: string - example: null type: type: string enum: @@ -18214,13 +17325,11 @@ components: - USER - INSTANA - UNKNOWN - example: null AvailabilityBlueprintIndicator: type: object allOf: - $ref: '#/components/schemas/ServiceLevelIndicator' - type: object - example: null properties: badEventsFilter: $ref: '#/components/schemas/TagFilterExpressionElement' @@ -18229,10 +17338,8 @@ components: threshold: type: number format: double - example: null exclusiveMinimum: false minimum: 0 - example: null required: - blueprint - type @@ -18241,16 +17348,13 @@ components: allOf: - $ref: '#/components/schemas/SliEntity' - type: object - example: null properties: applicationId: type: string - example: null badEventFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' badEventFilters: type: array - example: null items: $ref: '#/components/schemas/TagFilter' maxItems: 32 @@ -18260,59 +17364,45 @@ components: enum: - ALL - INBOUND - example: null endpointId: type: string - example: null goodEventFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' goodEventFilters: type: array - example: null items: $ref: '#/components/schemas/TagFilter' maxItems: 32 minItems: 1 includeInternal: type: boolean - example: null includeSynthetic: type: boolean - example: null serviceId: type: string - example: null - example: null required: - boundaryScope AvailableMetrics: type: object - example: null properties: metrics: type: array - example: null items: $ref: '#/components/schemas/MetricMetadata' uniqueItems: true AvailablePlugins: type: object - example: null properties: plugins: type: array - example: null items: type: string - example: null uniqueItems: true BackendTraceReference: type: object - example: null properties: traceId: type: string - example: null required: - traceId BinaryOperatorDTO: @@ -18320,19 +17410,16 @@ components: allOf: - $ref: '#/components/schemas/MatchExpressionDTO' - type: object - example: null properties: conjunction: type: string enum: - AND - OR - example: null left: $ref: '#/components/schemas/MatchExpressionDTO' right: $ref: '#/components/schemas/MatchExpressionDTO' - example: null required: - conjunction - left @@ -18342,20 +17429,16 @@ components: allOf: - $ref: '#/components/schemas/SyntheticTypeConfiguration' - type: object - example: null properties: browser: type: string enum: - chrome - firefox - example: null recordVideo: type: boolean - example: null script: type: string - example: null maxLength: 1048576 minLength: 0 scriptType: @@ -18363,48 +17446,38 @@ components: enum: - Basic - Jest - example: null scripts: $ref: '#/components/schemas/MultipleScriptsConfiguration' - example: null required: - markSyntheticCall - syntheticType BuiltInEventSpecification: type: object - example: null properties: description: type: string - example: null maxLength: 2048 minLength: 0 enabled: type: boolean - example: null hidden: type: boolean - example: null hyperParams: type: array - example: null items: $ref: '#/components/schemas/HyperParam' maxItems: 32 minItems: 0 id: type: string - example: null maxLength: 2048 minLength: 0 name: type: string - example: null maxLength: 256 minLength: 0 ruleInputs: type: array - example: null items: $ref: '#/components/schemas/RuleInput' maxItems: 32 @@ -18412,15 +17485,12 @@ components: severity: type: integer format: int32 - example: null shortPluginId: type: string - example: null maxLength: 64 minLength: 0 triggering: type: boolean - example: null required: - hyperParams - id @@ -18429,44 +17499,35 @@ components: - shortPluginId BuiltInEventSpecificationWithLastUpdated: type: object - example: null properties: description: type: string - example: null maxLength: 2048 minLength: 0 enabled: type: boolean - example: null hidden: type: boolean - example: null hyperParams: type: array - example: null items: $ref: '#/components/schemas/HyperParam' maxItems: 32 minItems: 0 id: type: string - example: null maxLength: 2048 minLength: 0 lastUpdated: type: integer format: int64 - example: null minimum: 1 name: type: string - example: null maxLength: 256 minLength: 0 ruleInputs: type: array - example: null items: $ref: '#/components/schemas/RuleInput' maxItems: 32 @@ -18474,15 +17535,12 @@ components: severity: type: integer format: int32 - example: null shortPluginId: type: string - example: null maxLength: 64 minLength: 0 triggering: type: boolean - example: null required: - hyperParams - id @@ -18491,7 +17549,6 @@ components: - shortPluginId BusinessActivity: type: object - example: null properties: activityId: type: string @@ -18515,7 +17572,6 @@ components: example: userTask callId: type: string - example: null writeOnly: true processDefinitionId: type: string @@ -18536,7 +17592,6 @@ components: - activityType CallGroupsItem: type: object - example: null properties: cursor: $ref: '#/components/schemas/IngestionOffsetCursor' @@ -18544,21 +17599,15 @@ components: type: object additionalProperties: type: array - example: null items: type: array - example: null items: type: number - example: null - example: null name: type: string - example: null timestamp: type: integer format: int64 - example: null minimum: 0 required: - cursor @@ -18566,38 +17615,31 @@ components: - name CallGroupsResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' canLoadMore: type: boolean - example: null items: type: array - example: null items: $ref: '#/components/schemas/CallGroupsItem' totalHits: type: integer format: int64 - example: null minimum: 0 totalRepresentedItemCount: type: integer format: int64 - example: null minimum: 0 totalRetainedItemCount: type: integer format: int64 - example: null minimum: 0 required: - items CallRelation: type: object - example: null properties: endpoint: $ref: '#/components/schemas/EndpointSimple' @@ -18605,13 +17647,10 @@ components: $ref: '#/components/schemas/ServiceSimple' technologies: type: array - example: null items: type: string - example: null ChangeSummary: type: object - example: null properties: author: $ref: '#/components/schemas/Author' @@ -18625,67 +17664,54 @@ components: - DISABLE - RESTORE - UNKNOWN - example: null required: - author - changeType CloudfoundryPhysicalContext: type: object - example: null properties: application: $ref: '#/components/schemas/SnapshotPreview' cfInstanceIndex: type: string - example: null organization: $ref: '#/components/schemas/SnapshotPreview' space: $ref: '#/components/schemas/SnapshotPreview' Condition: type: object - example: null properties: query: type: string - example: null ConfigVersion: type: object - example: null properties: changeSummary: $ref: '#/components/schemas/ChangeSummary' created: type: integer format: int64 - example: null minimum: 1 deleted: type: boolean - example: null enabled: type: boolean - example: null id: type: string - example: null maxLength: 64 minLength: 0 required: - id ContainerNode: type: object - example: null CrashMobileAppAlertRule: type: object allOf: - $ref: '#/components/schemas/MobileAppAlertRule' - example: null required: - metricName CursorPaginatedBusinessActivityItem: type: object - example: null properties: businessActivity: $ref: '#/components/schemas/BusinessActivity' @@ -18695,37 +17721,28 @@ components: type: object additionalProperties: type: array - example: null items: type: array - example: null items: type: number - example: null - example: null required: - cursor CursorPagination: type: object - example: null properties: ingestionTime: type: integer format: int64 - example: null offset: type: integer format: int32 - example: null retrievalSize: type: integer format: int32 - example: null maximum: 200 minimum: 1 CursorPaginationInfraExploreCursor: type: object - example: null properties: cursor: $ref: '#/components/schemas/InfraExploreCursor' @@ -18733,42 +17750,34 @@ components: type: integer format: int32 description: number of values to return - example: null CustomBlueprintIndicator: type: object allOf: - $ref: '#/components/schemas/ServiceLevelIndicator' - type: object - example: null properties: badEventsFilter: $ref: '#/components/schemas/TagFilterExpressionElement' goodEventsFilter: $ref: '#/components/schemas/TagFilterExpressionElement' - example: null required: - goodEventsFilter - type CustomDashboard: type: object - example: null properties: accessRules: type: array - example: null items: $ref: '#/components/schemas/AccessRule' maxItems: 64 minItems: 1 id: type: string - example: null title: type: string - example: null widgets: type: array - example: null items: $ref: '#/components/schemas/Widget' maxItems: 128 @@ -18781,31 +17790,25 @@ components: - widgets CustomDashboardPreview: type: object - example: null properties: annotations: type: array - example: null items: type: string enum: - SHARED - WRITABLE - example: null maxItems: 8 minItems: 0 uniqueItems: true id: type: string - example: null maxLength: 64 minLength: 0 ownerId: type: string - example: null title: type: string - example: null required: - annotations - id @@ -18816,49 +17819,38 @@ components: allOf: - $ref: '#/components/schemas/MobileAppAlertRule' - type: object - example: null properties: customEventName: type: string - example: null - example: null required: - customEventName - metricName CustomEventSpecification: type: object - example: null properties: actions: type: array - example: null items: $ref: '#/components/schemas/Action' description: type: string - example: null maxLength: 32765 minLength: 0 enabled: type: boolean - example: null entityType: type: string - example: null maxLength: 64 minLength: 0 expirationTime: type: integer format: int64 - example: null name: type: string - example: null maxLength: 256 minLength: 0 query: type: string - example: null maxLength: 2048 minLength: 0 ruleLogicalOperator: @@ -18866,76 +17858,60 @@ components: enum: - AND - OR - example: null rules: type: array - example: null items: $ref: '#/components/schemas/AbstractRule' maxItems: 5 minItems: 1 triggering: type: boolean - example: null required: - entityType - name - rules CustomEventSpecificationWithLastUpdated: type: object - example: null properties: actions: type: array - example: null items: $ref: '#/components/schemas/Action' applicationAlertConfigId: type: string - example: null maxLength: 64 minLength: 0 deleted: type: boolean - example: null description: type: string - example: null maxLength: 32765 minLength: 0 enabled: type: boolean - example: null entityType: type: string - example: null maxLength: 64 minLength: 0 expirationTime: type: integer format: int64 - example: null id: type: string - example: null maxLength: 64 minLength: 0 lastUpdated: type: integer format: int64 - example: null minimum: 1 migrated: type: boolean - example: null name: type: string - example: null maxLength: 256 minLength: 0 query: type: string - example: null maxLength: 2048 minLength: 0 ruleLogicalOperator: @@ -18943,17 +17919,14 @@ components: enum: - AND - OR - example: null rules: type: array - example: null items: $ref: '#/components/schemas/AbstractRule' maxItems: 5 minItems: 1 triggering: type: boolean - example: null required: - entityType - id @@ -18964,22 +17937,17 @@ components: allOf: - $ref: '#/components/schemas/WebsiteAlertRule' - type: object - example: null properties: customEventName: type: string - example: null - example: null required: - customEventName - metricName CustomPayloadConfiguration: type: object - example: null properties: fields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 @@ -18993,24 +17961,19 @@ components: dynamic: '#/components/schemas/DynamicField' staticString: '#/components/schemas/StaticStringField' propertyName: type - example: null properties: key: type: string - example: null type: type: string - example: null required: - key - type CustomPayloadWithLastUpdated: type: object - example: null properties: fields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 @@ -19018,7 +17981,6 @@ components: lastUpdated: type: integer format: int64 - example: null minimum: 1 required: - fields @@ -19027,21 +17989,16 @@ components: allOf: - $ref: '#/components/schemas/SyntheticTypeConfiguration' - type: object - example: null properties: acceptCNAME: type: boolean - example: null lookup: type: string - example: null lookupServerName: type: boolean - example: null port: type: integer format: int32 - example: null queryType: type: string enum: @@ -19066,18 +18023,13 @@ components: - SOA - TXT - WKS - example: null recursiveLookups: type: boolean - example: null server: type: string - example: null serverRetries: type: integer format: int32 - example: null - example: null required: - lookup - markSyntheticCall @@ -19085,7 +18037,6 @@ components: - syntheticType DeprecatedTagFilter: type: object - example: null properties: entity: type: string @@ -19093,10 +18044,8 @@ components: - NOT_APPLICABLE - DESTINATION - SOURCE - example: null name: type: string - example: null operator: type: string enum: @@ -19116,22 +18065,18 @@ components: - ENDS_WITH - NOT_STARTS_WITH - NOT_ENDS_WITH - example: null value: type: string - example: null required: - name - operator - value Duration: type: object - example: null properties: amount: type: integer format: int64 - example: null minimum: 1 unit: type: string @@ -19139,7 +18084,6 @@ components: - MINUTES - HOURS - DAYS - example: null required: - amount - unit @@ -19148,49 +18092,37 @@ components: allOf: - $ref: '#/components/schemas/CustomPayloadField' - type: object - example: null properties: value: $ref: '#/components/schemas/DynamicFieldValue' - example: null required: - key - value DynamicFieldValue: type: object - example: null properties: key: type: string - example: null tagName: type: string - example: null required: - tagName DynamicParameter: type: object - example: null properties: key: type: string - example: null name: type: string - example: null resolvedValue: type: string - example: null tagName: type: string - example: null EditUser: type: object - example: null properties: fullName: type: string - example: null required: - fullName EmailIntegration: @@ -19198,15 +18130,11 @@ components: allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: emails: type: array - example: null items: type: string - example: null - example: null required: - emails - id @@ -19216,13 +18144,11 @@ components: type: object allOf: - $ref: '#/components/schemas/SyntheticTypeConfiguration' - example: null required: - markSyntheticCall - syntheticType Endpoint: type: object - example: null properties: entityType: type: string @@ -19230,36 +18156,27 @@ components: - APPLICATION - SERVICE - ENDPOINT - example: null id: type: string - example: null isSynthetic: type: boolean - example: null writeOnly: true label: type: string - example: null serviceId: type: string - example: null synthetic: type: boolean - example: null syntheticType: type: string enum: - NON_SYNTHETIC - SYNTHETIC - MIXED - example: null technologies: type: array - example: null items: type: string - example: null uniqueItems: true type: type: string @@ -19278,7 +18195,6 @@ components: - MESSAGING - PAGE - PAGE_RESOURCE - example: null required: - id - label @@ -19287,7 +18203,6 @@ components: - type EndpointConfig: type: object - example: null properties: endpointCase: type: string @@ -19295,23 +18210,18 @@ components: - ORIGINAL - LOWER - UPPER - example: null endpointNameByCollectedPathTemplateRuleEnabled: type: boolean - example: null endpointNameByFirstPathSegmentRuleEnabled: type: boolean - example: null rules: type: array - example: null items: $ref: '#/components/schemas/HttpEndpointRule' maxItems: 500 minItems: 1 serviceId: type: string - example: null required: - endpointCase - serviceId @@ -19320,28 +18230,20 @@ components: allOf: - $ref: '#/components/schemas/EventResult' - type: object - example: null properties: applicationId: type: string - example: null endpointId: type: string - example: null endpointServiceId: type: string - example: null probableRootCause: type: object additionalProperties: type: object - example: null - example: null writeOnly: true - example: null EndpointItem: type: object - example: null properties: endpoint: $ref: '#/components/schemas/Endpoint' @@ -19349,90 +18251,70 @@ components: type: object additionalProperties: type: array - example: null items: type: array - example: null items: type: number - example: null - example: null required: - endpoint - metrics EndpointMetricResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' items: type: array - example: null items: $ref: '#/components/schemas/EndpointItem' page: type: integer format: int32 - example: null minimum: 1 pageSize: type: integer format: int32 - example: null minimum: 1 totalHits: type: integer format: int64 - example: null minimum: 0 required: - items EndpointNode: type: object - example: null properties: endpointId: type: string - example: null maxLength: 64 minLength: 0 inclusive: type: boolean - example: null required: - endpointId EndpointResult: type: object - example: null properties: items: type: array - example: null items: $ref: '#/components/schemas/Endpoint' page: type: integer format: int32 - example: null pageSize: type: integer format: int32 - example: null totalHits: type: integer format: int32 - example: null EndpointSimple: type: object - example: null properties: id: type: string - example: null label: type: string - example: null type: type: string enum: @@ -19450,13 +18332,11 @@ components: - MESSAGING - PAGE - PAGE_RESOURCE - example: null EntityCountRule: type: object allOf: - $ref: '#/components/schemas/AbstractRule' - type: object - example: null properties: conditionOperator: type: string @@ -19467,12 +18347,9 @@ components: - <= - = - '!=' - example: null conditionValue: type: number format: double - example: null - example: null required: - conditionOperator EntityCountVerificationRule: @@ -19480,7 +18357,6 @@ components: allOf: - $ref: '#/components/schemas/AbstractRule' - type: object - example: null properties: conditionOperator: type: string @@ -19491,19 +18367,15 @@ components: - <= - = - '!=' - example: null conditionValue: type: number format: double - example: null matchingEntityLabel: type: string - example: null maxLength: 256 minLength: 0 matchingEntityType: type: string - example: null maxLength: 64 minLength: 0 matchingOperator: @@ -19513,8 +18385,6 @@ components: - contains - startsWith - endsWith - example: null - example: null required: - conditionOperator - matchingEntityLabel @@ -19522,17 +18392,14 @@ components: - matchingOperator EntityHealthInfo: type: object - example: null properties: maxSeverity: type: number format: double - example: null maximum: 10 minimum: 0 openIssues: type: array - example: null items: $ref: '#/components/schemas/Event' uniqueItems: true @@ -19540,17 +18407,13 @@ components: - openIssues EntityId: type: object - example: null properties: host: type: string - example: null pluginId: type: string - example: null steadyId: type: string - example: null required: - host - pluginId @@ -19560,16 +18423,13 @@ components: allOf: - $ref: '#/components/schemas/AbstractRule' - type: object - example: null properties: matchingEntityLabel: type: string - example: null maxLength: 256 minLength: 0 matchingEntityType: type: string - example: null maxLength: 64 minLength: 0 matchingOperator: @@ -19579,12 +18439,9 @@ components: - contains - startsWith - endsWith - example: null offlineDuration: type: integer format: int64 - example: null - example: null required: - matchingEntityLabel - matchingEntityType @@ -19594,41 +18451,33 @@ components: allOf: - $ref: '#/components/schemas/ServiceLevelsAlertRule' - type: object - example: null properties: metric: type: string enum: - BURN_RATE - BURNED_PERCENTAGE - example: null - example: null required: - metric ErrorsApplicationAlertRule: type: object allOf: - $ref: '#/components/schemas/ApplicationAlertRule' - example: null required: - metricName Event: type: object - example: null properties: end: type: integer format: int64 - example: null minimum: 1 endpointServiceId: type: string - example: null maxLength: 64 minLength: 0 entityId: type: string - example: null maxLength: 64 minLength: 0 entityType: @@ -19641,26 +18490,20 @@ components: - Website - Synthetic - MobileApp - example: null id: type: string - example: null maxLength: 64 minLength: 0 metadata: type: object additionalProperties: type: object - example: null - example: null metricAccessId: type: string - example: null maxLength: 64 minLength: 0 plugin: type: string - example: null maxLength: 256 minLength: 0 problem: @@ -19669,21 +18512,16 @@ components: type: object additionalProperties: type: object - example: null - example: null start: type: integer format: int64 - example: null minimum: 1 state: type: string - example: null maxLength: 8 minLength: 0 type: type: string - example: null maxLength: 64 minLength: 0 required: @@ -19694,20 +18532,16 @@ components: - type EventFilteringConfiguration: type: object - example: null properties: applicationAlertConfigIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true eventTypes: type: array - example: null items: type: string enum: @@ -19719,21 +18553,17 @@ components: - offline - agent_monitoring_issue - none - example: null maxItems: 1024 minItems: 0 uniqueItems: true query: type: string - example: null maxLength: 2048 minLength: 0 ruleIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true @@ -19749,116 +18579,83 @@ components: SYNTHETICS: '#/components/schemas/SyntheticsEventResult' WEBSITE: '#/components/schemas/WebsiteEventResult' propertyName: entityType - example: null properties: detail: type: string - example: null end: type: integer format: int64 - example: null entityLabel: type: string - example: null entityName: type: string - example: null entityType: type: string - example: null eventId: type: string - example: null fixSuggestion: type: string - example: null metrics: type: array - example: null items: type: object additionalProperties: type: object - example: null - example: null probableCause: type: object additionalProperties: type: object - example: null - example: null problem: type: string - example: null recentEvents: type: array - example: null items: type: object additionalProperties: type: object - example: null - example: null severity: type: integer format: int32 - example: null snapshotId: type: string - example: null start: type: integer format: int64 - example: null state: type: string - example: null type: type: string - example: null EventSpecificationInfo: type: object - example: null properties: description: type: string - example: null enabled: type: boolean - example: null entityType: type: string - example: null id: type: string - example: null maxLength: 64 minLength: 0 invalid: type: boolean - example: null migrated: type: boolean - example: null name: type: string - example: null maxLength: 256 minLength: 0 severity: type: integer format: int32 - example: null triggering: type: boolean - example: null type: type: string enum: - BUILT_IN - CUSTOM - example: null required: - entityType - id @@ -19866,14 +18663,11 @@ components: - type ExtendedService: type: object - example: null properties: applications: type: array - example: null items: type: string - example: null uniqueItems: true entityType: type: string @@ -19881,41 +18675,31 @@ components: - APPLICATION - SERVICE - ENDPOINT - example: null id: type: string - example: null label: type: string - example: null maxSeverity: type: number format: double - example: null maximum: 10 minimum: 0 numberOfOpenIssues: type: integer format: int32 - example: null minimum: 0 snapshotIds: type: array - example: null items: type: string - example: null uniqueItems: true technologies: type: array - example: null items: type: string - example: null uniqueItems: true types: type: array - example: null items: type: string enum: @@ -19933,7 +18717,6 @@ components: - MESSAGING - PAGE - PAGE_RESOURCE - example: null uniqueItems: true required: - applications @@ -19946,28 +18729,21 @@ components: type: object allOf: - $ref: '#/components/schemas/SyntheticAlertRule' - example: null required: - metricName Field: type: object - example: null properties: description: type: string - example: null encoding: type: string - example: null name: type: string - example: null secured: type: boolean - example: null value: type: string - example: null required: - encoding - name @@ -19977,12 +18753,9 @@ components: allOf: - $ref: '#/components/schemas/HttpPathSegmentMatchingRule' - type: object - example: null properties: name: type: string - example: null - example: null required: - name - type @@ -19991,30 +18764,24 @@ components: allOf: - $ref: '#/components/schemas/TimeWindow' - type: object - example: null properties: startTimestamp: type: string format: date-time - example: null - example: null required: - duration - durationUnit - startTimestamp FullTrace: type: object - example: null properties: id: type: string - example: null rootSpan: $ref: '#/components/schemas/Span' totalErrorCount: type: integer format: int32 - example: null minimum: 0 required: - id @@ -20023,7 +18790,6 @@ components: type: object allOf: - $ref: '#/components/schemas/InfraAlertRule' - example: null required: - aggregation - crossSeriesAggregation @@ -20031,7 +18797,6 @@ components: - metricName GeoLocationConfiguration: type: object - example: null properties: geoDetailRemoval: type: string @@ -20040,10 +18805,8 @@ components: - REMOVE_COORDINATES - REMOVE_CITY - REMOVE_ALL - example: null geoMappingRules: type: array - example: null items: $ref: '#/components/schemas/GeoMappingRule' maxItems: 512 @@ -20052,46 +18815,35 @@ components: - geoDetailRemoval GeoMappingRule: type: object - example: null properties: accuracyRadius: type: integer format: int64 - example: null minimum: -1 cidr: type: string - example: null maxLength: 128 minLength: 0 city: type: string - example: null continent: type: string - example: null continentCode: type: string - example: null country: type: string - example: null countryCode: type: string - example: null latitude: type: number format: double - example: null leastSpecificSubdivision: $ref: '#/components/schemas/GeoSubdivision' longitude: type: number format: double - example: null subdivisions: type: array - example: null items: $ref: '#/components/schemas/GeoSubdivision' maxItems: 8 @@ -20101,23 +18853,19 @@ components: - subdivisions GeoSubdivision: type: object - example: null properties: code: type: string - example: null maxLength: 32 minLength: 0 name: type: string - example: null maxLength: 256 minLength: 0 required: - name GetActivities: type: object - example: null properties: order: $ref: '#/components/schemas/Order' @@ -20135,19 +18883,15 @@ components: - timeFrame GetApplicationMetrics: type: object - example: null properties: includeInternal: type: boolean - example: null writeOnly: true includeSynthetic: type: boolean - example: null writeOnly: true metrics: type: array - example: null items: $ref: '#/components/schemas/AppDataMetricConfiguration' tagFilterExpression: @@ -20159,43 +18903,35 @@ components: - timeFrame GetApplicationTopologyQuery: type: object - example: null properties: appId: type: string description: Application Id - example: null extendedTraversal: type: array description: extended Traversal - example: null items: $ref: '#/components/schemas/ApplicationExtendedTraversal' required: - appId GetApplications: type: object - example: null properties: applicationBoundaryScope: type: string enum: - ALL - INBOUND - example: null applicationId: type: string - example: null maxLength: 64 minLength: 0 endpointId: type: string - example: null maxLength: 64 minLength: 0 endpointTypes: type: array - example: null items: type: string enum: @@ -20213,19 +18949,16 @@ components: - MESSAGING - PAGE - PAGE_RESOURCE - example: null uniqueItems: true writeOnly: true metrics: type: array - example: null items: $ref: '#/components/schemas/AppDataMetricConfiguration' maxItems: 5 minItems: 1 nameFilter: type: string - example: null maxLength: 256 minLength: 0 order: @@ -20234,15 +18967,12 @@ components: $ref: '#/components/schemas/Pagination' serviceId: type: string - example: null maxLength: 64 minLength: 0 technologies: type: array - example: null items: type: string - example: null uniqueItems: true writeOnly: true timeFrame: @@ -20251,24 +18981,20 @@ components: - metrics GetAvailableMetricsQuery: type: object - example: null properties: query: type: string - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' timeFrame: $ref: '#/components/schemas/TimeFrame' type: type: string - example: null required: - tagFilterExpression - timeFrame GetAvailablePluginsQuery: type: object - example: null properties: tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' @@ -20279,19 +19005,15 @@ components: - timeFrame GetCallGroups: type: object - example: null properties: group: $ref: '#/components/schemas/Group' includeInternal: type: boolean - example: null includeSynthetic: type: boolean - example: null metrics: type: array - example: null items: $ref: '#/components/schemas/MetricConfig' maxItems: 5 @@ -20304,7 +19026,6 @@ components: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/DeprecatedTagFilter' maxItems: 10 @@ -20316,33 +19037,25 @@ components: - metrics GetCombinedMetrics: type: object - example: null properties: metrics: type: array - example: null items: type: string - example: null maxItems: 5 minItems: 1 uniqueItems: true plugin: type: string - example: null query: type: string - example: null rollup: type: integer format: int32 - example: null snapshotIds: type: array - example: null items: type: string - example: null maxItems: 30 minItems: 1 uniqueItems: true @@ -20353,47 +19066,38 @@ components: - plugin GetDynamicParameterValues: type: object - example: null properties: eventId: type: string - example: null parameters: type: array - example: null items: $ref: '#/components/schemas/DynamicParameter' timestamp: type: integer format: int64 - example: null required: - eventId - parameters - timestamp GetEndpoints: type: object - example: null properties: applicationBoundaryScope: type: string enum: - ALL - INBOUND - example: null applicationId: type: string - example: null maxLength: 64 minLength: 0 endpointId: type: string - example: null maxLength: 64 minLength: 0 endpointTypes: type: array - example: null items: type: string enum: @@ -20411,23 +19115,19 @@ components: - MESSAGING - PAGE - PAGE_RESOURCE - example: null maxItems: 8 minItems: 0 uniqueItems: true excludeSynthetic: type: boolean - example: null metrics: type: array - example: null items: $ref: '#/components/schemas/AppDataMetricConfiguration' maxItems: 5 minItems: 1 nameFilter: type: string - example: null maxLength: 256 minLength: 0 order: @@ -20436,7 +19136,6 @@ components: $ref: '#/components/schemas/Pagination' serviceId: type: string - example: null maxLength: 64 minLength: 0 timeFrame: @@ -20445,28 +19144,23 @@ components: - metrics GetInfrastructureGroupsQuery: type: object - example: null properties: groupBy: type: array description: Entity grouping tag. Use the Instana Analyze Infrastructure dashboard to determine the entity grouping tag name. - example: null items: type: string description: Entity grouping tag. Use the Instana Analyze Infrastructure dashboard to determine the entity grouping tag name. - example: null maxItems: 5 minItems: 0 metrics: type: array - example: null items: $ref: '#/components/schemas/InfraMetricConfiguration' maxItems: 10 minItems: 0 missingPlaceholder: type: string - example: null order: $ref: '#/components/schemas/Order' pagination: @@ -20478,7 +19172,6 @@ components: type: type: string description: Type of entities - example: null required: - groupBy - pagination @@ -20486,18 +19179,15 @@ components: - timeFrame GetInfrastructureQuery: type: object - example: null properties: metrics: type: array - example: null items: $ref: '#/components/schemas/InfraMetricConfiguration' maxItems: 10 minItems: 0 missingPlaceholder: type: string - example: null order: $ref: '#/components/schemas/Order' pagination: @@ -20506,10 +19196,8 @@ components: $ref: '#/components/schemas/TagFilterExpressionElement' tags: type: array - example: null items: type: string - example: null maxItems: 5 minItems: 0 timeFrame: @@ -20517,20 +19205,17 @@ components: type: type: string description: Type of entities - example: null required: - pagination - tagFilterExpression - timeFrame GetMobileAppBeaconGroups: type: object - example: null properties: group: $ref: '#/components/schemas/MobileAppBeaconTagGroup' metrics: type: array - example: null items: $ref: '#/components/schemas/MobileAppMonitoringMetricsConfiguration' maxItems: 5 @@ -20543,7 +19228,6 @@ components: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/DeprecatedTagFilter' maxItems: 32 @@ -20558,20 +19242,17 @@ components: - CRASH - CUSTOM - VIEW_CHANGE - example: null required: - group - metrics - type GetMobileAppBeacons: type: object - example: null properties: pagination: $ref: '#/components/schemas/CursorPagination' tagFilters: type: array - example: null items: $ref: '#/components/schemas/DeprecatedTagFilter' maxItems: 32 @@ -20586,23 +19267,19 @@ components: - CRASH - CUSTOM - VIEW_CHANGE - example: null required: - type GetMobileAppMetrics: type: object - example: null properties: metrics: type: array - example: null items: $ref: '#/components/schemas/MobileAppMonitoringMetricsConfiguration' maxItems: 5 minItems: 1 tagFilters: type: array - example: null items: $ref: '#/components/schemas/DeprecatedTagFilter' maxItems: 32 @@ -20617,17 +19294,14 @@ components: - CRASH - CUSTOM - VIEW_CHANGE - example: null required: - metrics - type GetMobileAppMetricsV2: type: object - example: null properties: metrics: type: array - example: null items: $ref: '#/components/schemas/MobileAppMonitoringMetricsConfiguration' maxItems: 5 @@ -20644,35 +19318,28 @@ components: - CRASH - CUSTOM - VIEW_CHANGE - example: null required: - metrics - type GetPayloadKeysResult: type: object - example: null properties: payloadKeys: type: array description: Keys that can be used to retrieve plugin payloads. - example: null items: type: string description: Keys that can be used to retrieve plugin payloads. - example: null GetServices: type: object - example: null properties: applicationBoundaryScope: type: string enum: - ALL - INBOUND - example: null applicationId: type: string - example: null maxLength: 64 minLength: 0 contextScope: @@ -20681,17 +19348,14 @@ components: - NONE - UPSTREAM - DOWNSTREAM - example: null metrics: type: array - example: null items: $ref: '#/components/schemas/AppDataMetricConfiguration' maxItems: 5 minItems: 1 nameFilter: type: string - example: null maxLength: 256 minLength: 0 order: @@ -20700,15 +19364,12 @@ components: $ref: '#/components/schemas/Pagination' serviceId: type: string - example: null maxLength: 64 minLength: 0 technologies: type: array - example: null items: type: string - example: null maxItems: 20 minItems: 0 uniqueItems: true @@ -20718,16 +19379,13 @@ components: - metrics GetSnapshotsQuery: type: object - example: null properties: snapshotIds: type: array description: List of one or more snapshot ids. - example: null items: type: string description: List of one or more snapshot ids. - example: null maxItems: 1000 minItems: 0 uniqueItems: true @@ -20737,22 +19395,17 @@ components: - snapshotIds GetTestResult: type: object - example: null properties: applicationId: type: string - example: null maxLength: 64 minLength: 0 locationId: type: array - example: null items: type: string - example: null metrics: type: array - example: null items: $ref: '#/components/schemas/SyntheticMetricConfiguration' order: @@ -20761,29 +19414,24 @@ components: $ref: '#/components/schemas/Pagination' serviceId: type: string - example: null maxLength: 64 minLength: 0 tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/TagFilter' testId: type: array - example: null items: type: string - example: null timeFrame: $ref: '#/components/schemas/TimeFrame' required: - metrics GetTestResultBase: type: object - example: null properties: order: $ref: '#/components/schemas/Order' @@ -20793,18 +19441,15 @@ components: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/TagFilter' timeFrame: $ref: '#/components/schemas/TimeFrame' GetTestResultList: type: object - example: null properties: applicationId: type: string - example: null maxLength: 64 minLength: 0 order: @@ -20813,15 +19458,12 @@ components: $ref: '#/components/schemas/Pagination' syntheticMetrics: type: array - example: null items: type: string - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/TagFilter' timeFrame: @@ -20830,11 +19472,9 @@ components: - syntheticMetrics GetTestSummaryResult: type: object - example: null properties: metrics: type: array - example: null items: $ref: '#/components/schemas/SyntheticMetricConfiguration' order: @@ -20845,7 +19485,6 @@ components: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/TagFilter' timeFrame: @@ -20854,12 +19493,10 @@ components: - metrics GetTraceDownloadResultItem: type: object - example: null properties: callCount: type: integer format: int64 - example: null cursor: $ref: '#/components/schemas/IngestionOffsetCursor' destination: @@ -20867,50 +19504,37 @@ components: duration: type: integer format: int64 - example: null errorCount: type: integer format: int64 - example: null foreignParentId: type: string - example: null id: type: string - example: null minSelfTime: type: integer format: int64 - example: null name: type: string - example: null networkTime: type: integer format: int64 - example: null parentId: type: string - example: null timestamp: type: integer format: int64 - example: null GetTraceGroups: type: object - example: null properties: group: $ref: '#/components/schemas/Group' includeInternal: type: boolean - example: null includeSynthetic: type: boolean - example: null metrics: type: array - example: null items: $ref: '#/components/schemas/MetricConfig' maxItems: 5 @@ -20923,7 +19547,6 @@ components: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/DeprecatedTagFilter' maxItems: 32 @@ -20935,21 +19558,17 @@ components: - metrics GetTraces: type: object - example: null properties: includeInternal: type: boolean - example: null includeSynthetic: type: boolean - example: null pagination: $ref: '#/components/schemas/CursorPagination' tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/DeprecatedTagFilter' maxItems: 32 @@ -20958,13 +19577,11 @@ components: $ref: '#/components/schemas/TimeFrame' GetWebsiteBeaconGroups: type: object - example: null properties: group: $ref: '#/components/schemas/WebsiteBeaconTagGroup' metrics: type: array - example: null items: $ref: '#/components/schemas/WebsiteMonitoringMetricsConfiguration' maxItems: 5 @@ -20977,7 +19594,6 @@ components: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/DeprecatedTagFilter' maxItems: 32 @@ -20993,20 +19609,17 @@ components: - ERROR - CUSTOM - PAGE_CHANGE - example: null required: - group - metrics - type GetWebsiteBeacons: type: object - example: null properties: pagination: $ref: '#/components/schemas/CursorPagination' tagFilters: type: array - example: null items: $ref: '#/components/schemas/DeprecatedTagFilter' maxItems: 32 @@ -21022,23 +19635,19 @@ components: - ERROR - CUSTOM - PAGE_CHANGE - example: null required: - type GetWebsiteMetrics: type: object - example: null properties: metrics: type: array - example: null items: $ref: '#/components/schemas/WebsiteMonitoringMetricsConfiguration' maxItems: 5 minItems: 1 tagFilters: type: array - example: null items: $ref: '#/components/schemas/DeprecatedTagFilter' maxItems: 32 @@ -21054,17 +19663,14 @@ components: - ERROR - CUSTOM - PAGE_CHANGE - example: null required: - metrics - type GetWebsiteMetricsV2: type: object - example: null properties: metrics: type: array - example: null items: $ref: '#/components/schemas/WebsiteMonitoringMetricsConfiguration' maxItems: 5 @@ -21082,71 +19688,57 @@ components: - ERROR - CUSTOM - PAGE_CHANGE - example: null required: - metrics - type GlobalApplicationAlertConfigWithMetadata: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true applicationIds: type: array - example: null items: type: string - example: null uniqueItems: true applications: type: object additionalProperties: $ref: '#/components/schemas/ApplicationNode' - example: null boundaryScope: type: string enum: - ALL - INBOUND - example: null builtIn: type: boolean - example: null created: type: integer format: int64 - example: null minimum: 1 customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 enabled: type: boolean - example: null evaluationType: type: string enum: - PER_AP - PER_AP_SERVICE - PER_AP_ENDPOINT - example: null granularity: type: integer format: int32 @@ -21158,37 +19750,29 @@ components: - 900000 - 1200000 - 1800000 - example: null id: type: string - example: null maxLength: 64 minLength: 0 includeInternal: type: boolean - example: null includeSynthetic: type: boolean - example: null initialCreated: type: integer format: int64 - example: null minimum: 1 name: type: string - example: null maxLength: 256 minLength: 0 readOnly: type: boolean - example: null rule: $ref: '#/components/schemas/ApplicationAlertRule' severity: type: integer format: int32 - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' threshold: @@ -21197,7 +19781,6 @@ components: $ref: '#/components/schemas/ApplicationTimeThreshold' triggering: type: boolean - example: null required: - alertChannelIds - applications @@ -21214,14 +19797,11 @@ components: - timeThreshold GlobalApplicationsAlertConfig: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true @@ -21229,23 +19809,19 @@ components: type: object additionalProperties: $ref: '#/components/schemas/ApplicationNode' - example: null boundaryScope: type: string enum: - ALL - INBOUND - example: null customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 evaluationType: @@ -21254,7 +19830,6 @@ components: - PER_AP - PER_AP_SERVICE - PER_AP_ENDPOINT - example: null granularity: type: integer format: int32 @@ -21266,16 +19841,12 @@ components: - 900000 - 1200000 - 1800000 - example: null includeInternal: type: boolean - example: null includeSynthetic: type: boolean - example: null name: type: string - example: null maxLength: 256 minLength: 0 rule: @@ -21283,7 +19854,6 @@ components: severity: type: integer format: int32 - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' threshold: @@ -21292,7 +19862,6 @@ components: $ref: '#/components/schemas/ApplicationTimeThreshold' triggering: type: boolean - example: null required: - alertChannelIds - applications @@ -21311,12 +19880,9 @@ components: allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: webhookUrl: type: string - example: null - example: null required: - id - kind @@ -21324,45 +19890,33 @@ components: - webhookUrl GraphEdge: type: object - example: null properties: destination: type: string - example: null relation: type: string - example: null source: type: string - example: null GraphNode: type: object - example: null properties: data: type: object additionalProperties: type: object - example: null - example: null entityId: $ref: '#/components/schemas/EntityId' id: type: string - example: null label: type: string - example: null plugin: type: string - example: null Group: type: object - example: null properties: groupbyTag: type: string - example: null maxLength: 256 minLength: 0 groupbyTagEntity: @@ -21371,10 +19925,8 @@ components: - NOT_APPLICABLE - DESTINATION - SOURCE - example: null groupbyTagSecondLevelKey: type: string - example: null maxLength: 256 minLength: 0 required: @@ -21382,24 +19934,19 @@ components: - groupbyTagEntity GroupMapping: type: object - example: null properties: groupId: type: string - example: null id: type: string - example: null maxLength: 64 minLength: 0 key: type: string - example: null maxLength: 65536 minLength: 0 value: type: string - example: null maxLength: 65536 minLength: 0 required: @@ -21408,7 +19955,6 @@ components: - value HealthState: type: object - example: null properties: health: type: string @@ -21416,33 +19962,25 @@ components: - RED - YELLOW - GREEN - example: null messages: type: array - example: null items: type: string - example: null HistoricBaseline: type: object allOf: - $ref: '#/components/schemas/Threshold' - type: object - example: null properties: baseline: type: array - example: null items: type: array - example: null items: type: number - example: null deviationFactor: type: number format: double - example: null exclusiveMaximum: false exclusiveMinimum: false maximum: 16 @@ -21450,15 +19988,12 @@ components: lastUpdated: type: integer format: int64 - example: null minimum: 0 seasonality: type: string enum: - WEEKLY - DAILY - example: null - example: null required: - operator - seasonality @@ -21467,63 +20002,47 @@ components: allOf: - $ref: '#/components/schemas/AbstractRule' - type: object - example: null properties: closeAfter: type: integer format: int64 - example: null maximum: 86400000 offlineDuration: type: integer format: int64 - example: null tagFilter: $ref: '#/components/schemas/TagFilter' - example: null HttpActionConfiguration: type: object allOf: - $ref: '#/components/schemas/SyntheticTypeConfiguration' - type: object - example: null properties: allowInsecure: type: boolean - example: null body: type: string - example: null expectExists: type: array - example: null items: type: string - example: null expectJson: $ref: '#/components/schemas/ContainerNode' expectMatch: type: string - example: null expectNotEmpty: type: array - example: null items: type: string - example: null expectStatus: type: integer format: int32 - example: null followRedirect: type: boolean - example: null headers: type: object additionalProperties: type: string - example: null - example: null operation: type: string enum: @@ -21534,63 +20053,49 @@ components: - PATCH - POST - PUT - example: null url: type: string - example: null maxLength: 2047 minLength: 0 validationString: type: string - example: null - example: null required: - markSyntheticCall - syntheticType - url HttpEndpointConfig: type: object - example: null properties: endpointNameByCollectedPathTemplateRuleEnabled: type: boolean - example: null endpointNameByFirstPathSegmentRuleEnabled: type: boolean - example: null rules: type: array - example: null items: $ref: '#/components/schemas/HttpEndpointRule' maxItems: 500 minItems: 0 serviceId: type: string - example: null required: - rules - serviceId HttpEndpointRule: type: object - example: null properties: enabled: type: boolean - example: null pathSegments: type: array - example: null items: $ref: '#/components/schemas/HttpPathSegmentMatchingRule' maxItems: 16 minItems: 1 testCases: type: array - example: null items: type: string - example: null maxItems: 32 minItems: 0 required: @@ -21604,7 +20109,6 @@ components: PARAMETER: '#/components/schemas/PathParameterHttpPathSegmentMatchingRule' UNSUPPORTED: '#/components/schemas/UnsupportedHttpPathSegmentMatchingRule' propertyName: type - example: null properties: type: type: string @@ -21613,7 +20117,6 @@ components: - FIXED - PARAMETER - MATCH_ALL - example: null required: - type HttpScriptConfiguration: @@ -21621,11 +20124,9 @@ components: allOf: - $ref: '#/components/schemas/SyntheticTypeConfiguration' - type: object - example: null properties: script: type: string - example: null maxLength: 1048576 minLength: 0 scriptType: @@ -21633,42 +20134,33 @@ components: enum: - Basic - Jest - example: null scripts: $ref: '#/components/schemas/MultipleScriptsConfiguration' - example: null required: - markSyntheticCall - syntheticType HyperParam: type: object - example: null properties: defaultValue: type: number format: double - example: null description: type: string - example: null maxLength: 2048 minLength: 0 id: type: string - example: null maxLength: 64 minLength: 0 maxValue: type: number format: double - example: null minValue: type: number format: double - example: null name: type: string - example: null maxLength: 256 minLength: 0 valueFormat: @@ -21680,6 +20172,8 @@ components: - MEGA_BYTES - PERCENTAGE - PERCENTAGE_100 + - PERCENTAGE_NO_CAPPING + - PERCENTAGE_100_NO_CAPPING - LATENCY - NANOS - MILLIS @@ -21688,68 +20182,53 @@ components: - RATE - BYTE_RATE - UNDEFINED - example: null required: - description - id - name IdentityProviderPatch: type: object - example: null properties: restrictEmptyIdpGroups: type: boolean - example: null Incident: type: object allOf: - $ref: '#/components/schemas/Event' - type: object - example: null properties: distances: type: object additionalProperties: $ref: '#/components/schemas/IssueDistance' - example: null issues: type: array - example: null items: type: string - example: null uniqueItems: true triggeringIssue: type: string - example: null writeOnly: true triggeringIssueId: type: string - example: null - example: null InfraAlertConfig: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 granularity: @@ -21763,18 +20242,14 @@ components: - 900000 - 1200000 - 1800000 - example: null groupBy: type: array - example: null items: type: string - example: null maxItems: 5 minItems: 0 name: type: string - example: null maxLength: 256 minLength: 0 predictiveTrigger: @@ -21784,7 +20259,6 @@ components: severity: type: integer format: int32 - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' threshold: @@ -21804,37 +20278,30 @@ components: - timeThreshold InfraAlertConfigWithMetadata: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true created: type: integer format: int64 - example: null minimum: 1 customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 enabled: type: boolean - example: null granularity: type: integer format: int32 @@ -21846,41 +20313,33 @@ components: - 900000 - 1200000 - 1800000 - example: null groupBy: type: array - example: null items: type: string - example: null maxItems: 5 minItems: 0 id: type: string - example: null maxLength: 64 minLength: 0 initialCreated: type: integer format: int64 - example: null minimum: 1 name: type: string - example: null maxLength: 256 minLength: 0 predictiveTrigger: $ref: '#/components/schemas/PredictiveTrigger' readOnly: type: boolean - example: null rule: $ref: '#/components/schemas/InfraAlertRule' severity: type: integer format: int32 - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' threshold: @@ -21905,7 +20364,6 @@ components: mapping: genericRule: '#/components/schemas/GenericInfraAlertRule' propertyName: alertType - example: null properties: aggregation: type: string @@ -21923,14 +20381,11 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null alertType: type: string - example: null crossSeriesAggregation: type: string enum: @@ -21947,20 +20402,15 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null entityType: type: string - example: null metricName: type: string - example: null regex: type: boolean - example: null required: - alertType - metricName @@ -21969,32 +20419,23 @@ components: allOf: - $ref: '#/components/schemas/EventResult' - type: object - example: null properties: ibmMqFileTransfer: type: array - example: null items: type: object additionalProperties: type: object - example: null - example: null probableRootCause: type: object additionalProperties: type: object - example: null - example: null writeOnly: true - example: null InfraExploreCursor: type: object description: cursor to use between successive queries - example: null InfraMetricConfiguration: type: object - example: null properties: aggregation: type: string @@ -22012,11 +20453,9 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null crossSeriesAggregation: type: string enum: @@ -22033,11 +20472,9 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null granularity: type: integer format: int64 @@ -22046,18 +20483,14 @@ components: * If granularity is specified data points are returned with the specified granularity * The granularity should not be greater than the `windowSize` (important: `windowSize` is expressed in milliseconds) * The granularity should not be set too small relative to the `windowSize` to avoid creating an excessively large number of data points (max 600) - example: null title: granularity in milliseconds metric: type: string - example: null regex: type: boolean - example: null required: type: boolean description: 'When true, metric must be present with values' - example: null required: - aggregation - metric @@ -22067,29 +20500,23 @@ components: mapping: violationsInSequence: '#/components/schemas/ViolationsInSequenceInfraTimeThreshold' propertyName: type - example: null properties: timeWindow: type: integer format: int64 - example: null type: type: string - example: null required: - type InfrastructureEntitiesResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' canLoadMore: type: boolean - example: null items: type: array - example: null items: $ref: '#/components/schemas/InfrastructureItem' next: @@ -22098,14 +20525,12 @@ components: type: integer format: int64 description: represents the total number of results - example: null minimum: 0 required: - items InfrastructureGroup: type: object description: group of infrastructure entities - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' @@ -22113,43 +20538,33 @@ components: type: integer format: int64 description: number of entities in this group - example: null metrics: type: object additionalProperties: type: array description: 'map of metric keys to array of timestamp,value pairs' - example: null items: type: array description: 'map of metric keys to array of timestamp,value pairs' - example: null items: type: number description: 'map of metric keys to array of timestamp,value pairs' - example: null description: 'map of metric keys to array of timestamp,value pairs' - example: null tags: type: object additionalProperties: type: object description: tag keys and values for this group - example: null description: tag keys and values for this group - example: null InfrastructureGroupsResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' canLoadMore: type: boolean - example: null items: type: array - example: null items: $ref: '#/components/schemas/InfrastructureGroup' next: @@ -22158,13 +20573,11 @@ components: type: integer format: int64 description: represents the total number of results - example: null minimum: 0 required: - items InfrastructureItem: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' @@ -22172,109 +20585,80 @@ components: $ref: '#/components/schemas/EntityHealthInfo' label: type: string - example: null metrics: type: object additionalProperties: type: array - example: null items: type: array - example: null items: type: number - example: null - example: null plugin: type: string - example: null snapshotId: type: string - example: null tags: type: object additionalProperties: type: string - example: null - example: null time: type: integer format: int64 description: Epoch time in milliseconds if the snapshot is offline. Set to 9223372036854775807 if the snapshot is online. - example: null InfrastructureMetricResult: type: object - example: null properties: items: type: array - example: null items: $ref: '#/components/schemas/MetricItem' IngestionOffsetCursor: type: object - example: null InstanaVersionInfo: type: object - example: null properties: branch: type: string - example: null commit: type: string - example: null imageTag: type: string - example: null IntegrationOverview: type: object - example: null properties: id: type: string - example: null kind: type: string - example: null name: type: string - example: null properties: type: object additionalProperties: type: string - example: null - example: null required: - id - kind - name Invitation: type: object - example: null properties: email: type: string - example: null groupId: type: string - example: null required: - email - groupId InvitationResponse: type: object - example: null properties: invitationResults: type: array - example: null items: $ref: '#/components/schemas/InvitationResult' InvitationResult: type: object - example: null properties: invitationStatus: type: string @@ -22285,13 +20669,10 @@ components: - FAILURE_USER_ALREADY_INVITED - FAILURE_ONLY_DEFAULT_GROUP_INVITATION_ALLOWED - FAILURE_TENANT_IDP_CONFIGURED - example: null userEmail: type: string - example: null IpMaskingConfiguration: type: object - example: null properties: ipMasking: type: string @@ -22299,7 +20680,6 @@ components: - DEFAULT - STRICT - REMOVE_ALL_DETAILS - example: null required: - ipMasking Issue: @@ -22307,7 +20687,6 @@ components: allOf: - $ref: '#/components/schemas/Event' - type: object - example: null properties: eventmode: type: string @@ -22321,74 +20700,55 @@ components: - sli - synthetic - mobile_app - example: null writeOnly: true incidents: type: array - example: null items: type: string - example: null uniqueItems: true triggering: type: boolean - example: null - example: null IssueDistance: type: object - example: null properties: issueId: type: string - example: null logicalDistanceToTriggering: type: integer format: int32 - example: null physicalDistanceToTriggering: type: integer format: int32 - example: null temporalDistanceToTriggering: type: integer format: int64 - example: null visible: type: boolean - example: null JsStackTraceLine: type: object - example: null properties: column: type: integer format: int32 - example: null minimum: -1 file: type: string - example: null line: type: integer format: int32 - example: null minimum: -1 name: type: string - example: null translationExplanation: type: string - example: null translationStatus: type: integer format: int32 - example: null minimum: -1 required: - file KubernetesPhysicalContext: type: object - example: null properties: cluster: $ref: '#/components/schemas/SnapshotPreview' @@ -22403,7 +20763,6 @@ components: allOf: - $ref: '#/components/schemas/ServiceLevelIndicator' - type: object - example: null properties: badEventsFilter: $ref: '#/components/schemas/TagFilterExpressionElement' @@ -22412,56 +20771,43 @@ components: threshold: type: number format: double - example: null exclusiveMinimum: false minimum: 0 - example: null required: - type LocationStatus: type: object - example: null properties: locationDisplayLabel: type: string - example: null locationId: type: string - example: null successRate: type: number format: double - example: null successRuns: type: integer format: int64 - example: null totalTestRuns: type: integer format: int64 - example: null required: - locationId LogEntryActor: type: object - example: null properties: email: type: string - example: null id: type: string - example: null name: type: string - example: null type: type: string enum: - USER - API_TOKEN - POLICY - example: null required: - id - name @@ -22471,7 +20817,6 @@ components: allOf: - $ref: '#/components/schemas/ApplicationAlertRule' - type: object - example: null properties: level: type: string @@ -22479,18 +20824,15 @@ components: - WARN - ERROR - ANY - example: null loglevel: type: string enum: - WARN - ERROR - ANY - example: null writeOnly: true message: type: string - example: null operator: type: string enum: @@ -22510,34 +20852,27 @@ components: - ENDS_WITH - NOT_STARTS_WITH - NOT_ENDS_WITH - example: null - example: null required: - level - metricName - operator MaintenanceConfig: type: object - example: null properties: id: type: string - example: null maxLength: 64 minLength: 0 name: type: string - example: null maxLength: 256 minLength: 0 query: type: string - example: null maxLength: 2048 minLength: 0 windows: type: array - example: null items: $ref: '#/components/schemas/MaintenanceWindow' maxItems: 1 @@ -22554,18 +20889,15 @@ components: ONE_TIME: '#/components/schemas/OneTimeMaintenanceWindow' RECURRENT: '#/components/schemas/RecurrentMaintenanceWindow' propertyName: type - example: null properties: duration: $ref: '#/components/schemas/Duration' start: type: integer format: int64 - example: null minimum: 1 type: type: string - example: null maxLength: 2048 minLength: 0 required: @@ -22574,24 +20906,19 @@ components: - type MaintenanceConfigV2: type: object - example: null properties: id: type: string - example: null maxLength: 64 minLength: 0 name: type: string - example: null maxLength: 256 minLength: 0 paused: type: boolean - example: null query: type: string - example: null maxLength: 2048 minLength: 0 scheduling: @@ -22600,7 +20927,6 @@ components: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilterExpressionEnabled: type: boolean - example: null required: - id - name @@ -22608,31 +20934,25 @@ components: - scheduling MaintenanceConfigV2WithStateAndOccurrence: type: object - example: null properties: id: type: string - example: null maxLength: 64 minLength: 0 lastUpdated: type: integer format: int64 - example: null minimum: 1 name: type: string - example: null maxLength: 256 minLength: 0 occurrence: $ref: '#/components/schemas/Occurrence' paused: type: boolean - example: null query: type: string - example: null maxLength: 2048 minLength: 0 scheduling: @@ -22645,12 +20965,10 @@ components: - ACTIVE - PAUSED - EXPIRED - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilterExpressionEnabled: type: boolean - example: null required: - id - name @@ -22659,31 +20977,25 @@ components: - scheduling MaintenanceConfigWithLastUpdated: type: object - example: null properties: id: type: string - example: null maxLength: 64 minLength: 0 lastUpdated: type: integer format: int64 - example: null minimum: 1 name: type: string - example: null maxLength: 256 minLength: 0 query: type: string - example: null maxLength: 2048 minLength: 0 windows: type: array - example: null items: $ref: '#/components/schemas/MaintenanceWindow' maxItems: 1 @@ -22695,39 +21007,31 @@ components: - query MaintenanceWindow: type: object - example: null properties: end: type: integer format: int64 - example: null minimum: 1 id: type: string - example: null maxLength: 64 minLength: 0 start: type: integer format: int64 - example: null minimum: 0 required: - id ManualCloseInfo: type: object - example: null properties: closeTimestamp: type: integer format: int64 - example: null reasonForClosing: type: string - example: null username: type: string - example: null maxLength: 256 minLength: 0 required: @@ -22735,27 +21039,21 @@ components: - username ManualServiceConfig: type: object - example: null properties: description: type: string - example: null enabled: type: boolean - example: null existingServiceId: type: string - example: null id: type: string - example: null maxLength: 128 minLength: 1 tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' unmonitoredServiceName: type: string - example: null required: - id - tagFilterExpression @@ -22763,7 +21061,6 @@ components: type: object allOf: - $ref: '#/components/schemas/HttpPathSegmentMatchingRule' - example: null required: - type MatchExpressionDTO: @@ -22773,38 +21070,28 @@ components: BINARY_OP: '#/components/schemas/BinaryOperatorDTO' LEAF: '#/components/schemas/TagMatcherDTO' propertyName: type - example: null properties: type: type: string - example: null required: - type MetaData: type: object - example: null properties: ai: type: array - example: null items: type: object additionalProperties: type: object - example: null - example: null builtIn: type: boolean - example: null readOnly: type: boolean - example: null sensorImported: type: boolean - example: null MetricAPIResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' @@ -22812,19 +21099,14 @@ components: type: object additionalProperties: type: array - example: null items: type: array - example: null items: type: number - example: null - example: null required: - metrics MetricConfig: type: object - example: null properties: aggregation: type: string @@ -22842,24 +21124,19 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null granularity: type: integer format: int32 - example: null metric: type: string - example: null required: - aggregation - metric MetricConfiguration: type: object - example: null properties: metricAggregation: type: string @@ -22877,29 +21154,23 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null metricName: type: string - example: null threshold: type: number format: double - example: null exclusiveMinimum: true minimum: 0 required: - metricName MetricDescription: type: object - example: null properties: aggregations: type: array - example: null items: type: string enum: @@ -22916,11 +21187,9 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null uniqueItems: true defaultAggregation: type: string @@ -22938,23 +21207,17 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null description: type: string - example: null formatter: type: string - example: null label: type: string - example: null metricId: type: string - example: null required: - aggregations - formatter @@ -22962,14 +21225,11 @@ components: - metricId MetricInstance: type: object - example: null properties: custom: type: boolean - example: null description: type: string - example: null formatter: type: string enum: @@ -22979,6 +21239,8 @@ components: - MEGA_BYTES - PERCENTAGE - PERCENTAGE_100 + - PERCENTAGE_NO_CAPPING + - PERCENTAGE_100_NO_CAPPING - LATENCY - NANOS - MILLIS @@ -22987,16 +21249,12 @@ components: - RATE - BYTE_RATE - UNDEFINED - example: null label: type: string - example: null metricId: type: string - example: null pluginId: type: string - example: null required: - description - formatter @@ -23005,56 +21263,40 @@ components: - pluginId MetricItem: type: object - example: null properties: from: type: integer format: int64 - example: null host: type: string - example: null label: type: string - example: null metrics: type: object additionalProperties: type: array - example: null items: type: array - example: null items: type: number - example: null - example: null plugin: type: string - example: null snapshotId: type: string - example: null tags: type: array - example: null items: type: string - example: null to: type: integer format: int64 - example: null MetricMetadata: type: object - example: null properties: category: type: string - example: null crossSeriesAggregations: type: array - example: null items: type: string enum: @@ -23071,15 +21313,12 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null uniqueItems: true description: type: string - example: null format: type: string enum: @@ -23089,6 +21328,8 @@ components: - MEGA_BYTES - PERCENTAGE - PERCENTAGE_100 + - PERCENTAGE_NO_CAPPING + - PERCENTAGE_100_NO_CAPPING - LATENCY - NANOS - MILLIS @@ -23097,10 +21338,8 @@ components: - RATE - BYTE_RATE - UNDEFINED - example: null id: type: string - example: null infraTagCategory: type: string enum: @@ -23139,13 +21378,10 @@ components: - TUXEDO - VSHPERE - WEBSPHERE - example: null label: type: string - example: null ownerType: type: string - example: null required: - id - infraTagCategory @@ -23153,7 +21389,6 @@ components: - ownerType MetricPattern: type: object - example: null properties: operator: type: string @@ -23163,31 +21398,24 @@ components: - startsWith - endsWith - any - example: null placeholder: type: string - example: null postfix: type: string - example: null prefix: type: string - example: null required: - operator - prefix MobileApp: type: object - example: null properties: id: type: string - example: null maxLength: 128 minLength: 0 name: type: string - example: null maxLength: 128 minLength: 0 required: @@ -23195,14 +21423,11 @@ components: - name MobileAppAlertConfig: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true @@ -23210,14 +21435,12 @@ components: $ref: '#/components/schemas/TagFilterExpression' customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 granularity: @@ -23231,15 +21454,12 @@ components: - 900000 - 1200000 - 1800000 - example: null mobileAppId: type: string - example: null maxLength: 64 minLength: 0 name: type: string - example: null maxLength: 256 minLength: 0 rule: @@ -23247,7 +21467,6 @@ components: severity: type: integer format: int32 - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' threshold: @@ -23256,7 +21475,6 @@ components: $ref: '#/components/schemas/MobileAppTimeThreshold' triggering: type: boolean - example: null required: - alertChannelIds - customPayloadFields @@ -23277,7 +21495,6 @@ components: statusCode: '#/components/schemas/StatusCodeMobileAppAlertRule' throughput: '#/components/schemas/ThroughputMobileAppAlertRule' propertyName: alertType - example: null properties: aggregation: type: string @@ -23295,119 +21512,94 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null alertType: type: string - example: null metricName: type: string - example: null required: - alertType - metricName MobileAppBeaconGroupsItem: type: object - example: null properties: cursor: $ref: '#/components/schemas/IngestionOffsetCursor' earliestTimestamp: type: integer format: int64 - example: null minimum: 0 metrics: type: object additionalProperties: type: array - example: null items: type: array - example: null items: type: number - example: null - example: null name: type: string - example: null required: - cursor - metrics - name MobileAppBeaconGroupsResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' canLoadMore: type: boolean - example: null items: type: array - example: null items: $ref: '#/components/schemas/MobileAppBeaconGroupsItem' totalHits: type: integer format: int64 - example: null minimum: 0 totalRepresentedItemCount: type: integer format: int64 - example: null minimum: 0 totalRetainedItemCount: type: integer format: int64 - example: null minimum: 0 required: - items MobileAppBeaconResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' canLoadMore: type: boolean - example: null items: type: array - example: null items: $ref: '#/components/schemas/MobileAppBeaconsItem' totalHits: type: integer format: int64 - example: null minimum: 0 totalRepresentedItemCount: type: integer format: int64 - example: null minimum: 0 totalRetainedItemCount: type: integer format: int64 - example: null minimum: 0 required: - items MobileAppBeaconTagGroup: type: object - example: null properties: groupbyTag: type: string - example: null maxLength: 256 minLength: 0 groupbyTagEntity: @@ -23416,10 +21608,8 @@ components: - NOT_APPLICABLE - DESTINATION - SOURCE - example: null groupbyTagSecondLevelKey: type: string - example: null maxLength: 256 minLength: 0 required: @@ -23427,7 +21617,6 @@ components: - groupbyTagEntity MobileAppBeaconsItem: type: object - example: null properties: beacon: $ref: '#/components/schemas/MobileAppMonitoringBeacon' @@ -23441,293 +21630,228 @@ components: allOf: - $ref: '#/components/schemas/EventResult' - type: object - example: null properties: mobileAppId: type: string - example: null probableRootCause: type: object additionalProperties: type: object - example: null - example: null writeOnly: true - example: null MobileAppMetricResult: type: object - example: null properties: empty: type: boolean - example: null MobileAppMonitoringBeacon: type: object - example: null properties: accuracyRadius: type: integer format: int64 - example: null minimum: -1 agentVersion: type: string - example: null maxLength: 128 minLength: 0 appBuild: type: string - example: null maxLength: 128 minLength: 0 appVersion: type: string - example: null maxLength: 128 minLength: 0 backendTraceId: type: string - example: null maxLength: 128 minLength: 0 batchSize: type: integer format: int64 - example: null minimum: 1 beaconId: type: string - example: null maxLength: 128 minLength: 0 bundleIdentifier: type: string - example: null maxLength: 128 minLength: 0 carrier: type: string - example: null maxLength: 256 minLength: 0 city: type: string - example: null maxLength: 256 minLength: 0 clockSkew: type: integer format: int64 - example: null minimum: 0 connectionType: type: string - example: null maxLength: 16 minLength: 0 continent: type: string - example: null maxLength: 256 minLength: 0 continentCode: type: string - example: null maxLength: 64 minLength: 0 country: type: string - example: null maxLength: 256 minLength: 0 countryCode: type: string - example: null maxLength: 64 minLength: 0 customEventName: type: string - example: null maxLength: 256 minLength: 0 customMetric: type: number format: double - example: null decodedBodySize: type: integer format: int64 - example: null minimum: -1 deviceHardware: type: string - example: null maxLength: 128 minLength: 0 deviceManufacturer: type: string - example: null maxLength: 128 minLength: 0 deviceModel: type: string - example: null maxLength: 128 minLength: 0 duration: type: integer format: int64 - example: null minimum: 0 effectiveConnectionType: type: string - example: null maxLength: 16 minLength: 0 encodedBodySize: type: integer format: int64 - example: null minimum: -1 environment: type: string - example: null maxLength: 256 minLength: 0 errorCount: type: integer format: int64 - example: null minimum: 0 errorId: type: string - example: null maxLength: 128 minLength: 0 errorMessage: type: string - example: null maxLength: 16384 minLength: 0 errorType: type: string - example: null maxLength: 1024 minLength: 0 googlePlayServicesMissing: type: boolean - example: null httpCallHeaders: type: object additionalProperties: type: string - example: null - example: null httpCallMethod: type: string - example: null maxLength: 16 minLength: 0 httpCallOrigin: type: string - example: null maxLength: 1024 minLength: 0 httpCallPath: type: string - example: null maxLength: 4096 minLength: 0 httpCallStatus: type: integer format: int32 - example: null maximum: 599 minimum: -1 httpCallUrl: type: string - example: null maxLength: 4096 minLength: 0 ingestionTime: type: integer format: int64 - example: null minimum: 1 internalMeta: type: object additionalProperties: type: string - example: null - example: null latitude: type: number format: double - example: null longitude: type: number format: double - example: null meta: type: object additionalProperties: type: string - example: null - example: null mobileAppId: type: string - example: null maxLength: 64 minLength: 0 mobileAppLabel: type: string - example: null maxLength: 128 minLength: 0 osName: type: string - example: null maxLength: 128 minLength: 0 osVersion: type: string - example: null maxLength: 128 minLength: 0 parentBeaconId: type: string - example: null parsedStackTrace: type: string - example: null maxLength: 16384 minLength: 0 platform: type: string - example: null maxLength: 32 minLength: 0 region: type: string - example: null maxLength: 256 minLength: 0 rooted: type: boolean - example: null sessionId: type: string - example: null maxLength: 128 minLength: 0 stackTrace: type: string - example: null maxLength: 16384 minLength: 0 stackTraceLine: type: array - example: null items: $ref: '#/components/schemas/StackTraceLine' maxItems: 128 @@ -23735,98 +21859,78 @@ components: stackTraceParsingStatus: type: integer format: int32 - example: null minimum: -1 subdivision: type: string - example: null maxLength: 256 minLength: 0 subdivisionCode: type: string - example: null maxLength: 64 minLength: 0 tenant: type: string - example: null maxLength: 256 minLength: 0 timestamp: type: integer format: int64 - example: null minimum: 1 transferSize: type: integer format: int64 - example: null minimum: -1 type: type: string - example: null maxLength: 24 minLength: 0 unit: type: string - example: null maxLength: 256 minLength: 0 useFeatures: type: array - example: null items: type: string - example: null maxItems: 15 minItems: 0 userEmail: type: string - example: null maxLength: 128 minLength: 0 userId: type: string - example: null maxLength: 128 minLength: 0 userIp: type: string - example: null maxLength: 45 minLength: 0 userLanguages: type: array - example: null items: type: string - example: null maxItems: 5 minItems: 0 userName: type: string - example: null maxLength: 128 minLength: 0 userSessionId: type: string - example: null maxLength: 128 minLength: 0 view: type: string - example: null maxLength: 256 minLength: 0 viewportHeight: type: integer format: int32 - example: null minimum: -1 viewportWidth: type: integer format: int32 - example: null minimum: -1 required: - beaconId @@ -23835,11 +21939,9 @@ components: - type MobileAppMonitoringMetricDescription: type: object - example: null properties: aggregations: type: array - example: null items: type: string enum: @@ -23856,18 +21958,14 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null uniqueItems: true beaconTypes: type: array - example: null items: type: string - example: null uniqueItems: true defaultAggregation: type: string @@ -23885,34 +21983,25 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null description: type: string - example: null formatter: type: string - example: null label: type: string - example: null metricId: type: string - example: null pathToValueInBeacon: type: array - example: null items: type: string - example: null maxItems: 2147483647 minItems: 1 tagName: type: string - example: null required: - aggregations - beaconTypes @@ -23921,7 +22010,6 @@ components: - metricId MobileAppMonitoringMetricsConfiguration: type: object - example: null properties: aggregation: type: string @@ -23939,18 +22027,14 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null granularity: type: integer format: int32 - example: null metric: type: string - example: null numeratorTagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' required: @@ -23964,49 +22048,37 @@ components: violationsInPeriod: '#/components/schemas/ViolationsInPeriodMobileAppTimeThreshold' violationsInSequence: '#/components/schemas/ViolationsInSequenceMobileAppTimeThreshold' propertyName: type - example: null properties: timeWindow: type: integer format: int64 - example: null type: type: string - example: null required: - type MonitoringState: type: object - example: null properties: hasEntities: type: boolean - example: null hostCount: type: integer format: int32 - example: null serverlessCount: type: integer format: int32 - example: null MultipleScriptsConfiguration: type: object - example: null properties: bundle: type: string - example: null scriptFile: type: string - example: null NewApplicationConfig: type: object - example: null properties: accessRules: type: array - example: null items: $ref: '#/components/schemas/AccessRule' maxItems: 64 @@ -24017,10 +22089,8 @@ components: - ALL - INBOUND - DEFAULT - example: null label: type: string - example: null maxLength: 128 minLength: 1 matchSpecification: @@ -24031,7 +22101,6 @@ components: - INCLUDE_NO_DOWNSTREAM - INCLUDE_IMMEDIATE_DOWNSTREAM_DATABASE_AND_MESSAGING - INCLUDE_ALL_DOWNSTREAM - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' required: @@ -24041,49 +22110,38 @@ components: - scope NewManualServiceConfig: type: object - example: null properties: description: type: string - example: null enabled: type: boolean - example: null existingServiceId: type: string - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' unmonitoredServiceName: type: string - example: null required: - tagFilterExpression Occurrence: type: object - example: null properties: end: type: integer format: int64 - example: null minimum: 1 start: type: integer format: int64 - example: null minimum: 0 Office365Integration: type: object allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: webhookUrl: type: string - example: null - example: null required: - id - kind @@ -24093,7 +22151,6 @@ components: type: object allOf: - $ref: '#/components/schemas/MaintenanceConfigScheduling' - example: null required: - duration - start @@ -24103,24 +22160,18 @@ components: allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: alias: type: string - example: null apiKey: type: string - example: null region: type: string enum: - US - EU - example: null tags: type: string - example: null - example: null required: - apiKey - id @@ -24129,21 +22180,17 @@ components: - region Order: type: object - example: null properties: by: type: string - example: null collation: type: string description: language code used for sorting. Ignored for infrastructure queries. - example: null direction: type: string enum: - ASC - DESC - example: null required: - by - direction @@ -24152,12 +22199,9 @@ components: allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: serviceIntegrationKey: type: string - example: null - example: null required: - id - kind @@ -24165,77 +22209,58 @@ components: - serviceIntegrationKey PaginatedResult: type: object - example: null properties: items: type: array - example: null items: type: object - example: null page: type: integer format: int32 - example: null minimum: 1 pageSize: type: integer format: int32 - example: null minimum: 1 totalHits: type: integer format: int64 - example: null minimum: 0 required: - items Pagination: type: object - example: null properties: page: type: integer format: int32 - example: null minimum: 1 pageSize: type: integer format: int32 - example: null maximum: 200 minimum: 1 Parameter: type: object - example: null properties: description: type: string - example: null hidden: type: boolean - example: null label: type: string - example: null name: type: string - example: null required: type: boolean - example: null secured: type: boolean - example: null type: type: string - example: null value: type: string - example: null valueType: type: string - example: null required: - label - name @@ -24243,14 +22268,11 @@ components: - valueType ParameterValue: type: object - example: null properties: name: type: string - example: null value: type: string - example: null required: - name - value @@ -24259,18 +22281,14 @@ components: allOf: - $ref: '#/components/schemas/HttpPathSegmentMatchingRule' - type: object - example: null properties: name: type: string - example: null - example: null required: - name - type PhysicalContext: type: object - example: null properties: cloudfoundry: $ref: '#/components/schemas/CloudfoundryPhysicalContext' @@ -24286,44 +22304,34 @@ components: $ref: '#/components/schemas/SnapshotPreview' PluginResult: type: object - example: null properties: label: type: string - example: null plugin: type: string - example: null Policy: type: object - example: null properties: description: type: string - example: null maxLength: 512 minLength: 0 id: type: string - example: null maxLength: 128 minLength: 1 name: type: string - example: null maxLength: 128 minLength: 1 tags: type: array - example: null items: type: string - example: null trigger: $ref: '#/components/schemas/Trigger' typeConfigurations: type: array - example: null items: $ref: '#/components/schemas/TypeConfiguration' required: @@ -24333,11 +22341,9 @@ components: - typeConfigurations PolicyRunnable: type: object - example: null properties: id: type: string - example: null runConfiguration: $ref: '#/components/schemas/RunConfiguration' type: @@ -24345,60 +22351,48 @@ components: enum: - action - workflow - example: null required: - id - runConfiguration - type PostSnapshotsResult: type: object - example: null properties: items: type: array description: Detail information for requested snapshots. - example: null items: $ref: '#/components/schemas/SnapshotItem' notFoundSnapshotsIds: type: array description: Snapshot ids for snapshots that could not be retrieved. - example: null items: type: string description: Snapshot ids for snapshots that could not be retrieved. - example: null PredictiveTrigger: type: object - example: null properties: timeToFailure: type: integer format: int64 - example: null Problem: type: object - example: null properties: fixSuggestion: type: string - example: null maxLength: 65536 minLength: 0 id: type: string - example: null maxLength: 64 minLength: 0 problemText: type: string - example: null maxLength: 2048 minLength: 0 severity: type: integer format: int32 - example: null required: - id PrometheusWebhookIntegration: @@ -24406,15 +22400,11 @@ components: allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: receiver: type: string - example: null webhookUrl: type: string - example: null - example: null required: - id - kind @@ -24422,19 +22412,15 @@ components: - webhookUrl RCAFeedback: type: object - example: null properties: eventId: type: string - example: null maxLength: 64 minLength: 0 feedback: type: boolean - example: null snapshotId: type: string - example: null maxLength: 64 minLength: 0 required: @@ -24446,15 +22432,11 @@ components: allOf: - $ref: '#/components/schemas/MaintenanceConfigScheduling' - type: object - example: null properties: rrule: type: string - example: null timezoneId: type: string - example: null - example: null required: - duration - rrule @@ -24462,23 +22444,19 @@ components: - type Release: type: object - example: null properties: applications: type: array - example: null items: $ref: '#/components/schemas/ApplicationScope' maxItems: 10 minItems: 0 name: type: string - example: null maxLength: 256 minLength: 0 services: type: array - example: null items: $ref: '#/components/schemas/ServiceScope' maxItems: 10 @@ -24486,62 +22464,49 @@ components: start: type: integer format: int64 - example: null minimum: 1 required: - name - start ReleaseScope: type: object - example: null properties: applicationId: type: string - example: null applicationName: type: string - example: null serviceId: type: string - example: null serviceName: type: string - example: null ReleaseWithMetadata: type: object - example: null properties: applications: type: array - example: null items: $ref: '#/components/schemas/ApplicationScopeWithMetadata' maxItems: 10 minItems: 0 id: type: string - example: null maxLength: 64 minLength: 0 lastUpdated: type: integer format: int64 - example: null minimum: 1 name: type: string - example: null maxLength: 256 minLength: 0 scopes: type: array - example: null items: $ref: '#/components/schemas/ReleaseScope' writeOnly: true services: type: array - example: null items: $ref: '#/components/schemas/ServiceScopeWithMetadata' maxItems: 10 @@ -24549,7 +22514,6 @@ components: start: type: integer format: int64 - example: null minimum: 1 required: - id @@ -24558,13 +22522,11 @@ components: type: object allOf: - $ref: '#/components/schemas/TimeWindow' - example: null required: - duration - durationUnit RuleInput: type: object - example: null properties: inputKind: type: string @@ -24574,10 +22536,8 @@ components: - EVENT - DERIVED_METRIC - METRIC_PATTERN - example: null inputName: type: string - example: null maxLength: 256 minLength: 0 required: @@ -24585,11 +22545,9 @@ components: - inputName RunConfiguration: type: object - example: null properties: actions: type: array - example: null items: $ref: '#/components/schemas/ActionConfiguration' required: @@ -24599,24 +22557,19 @@ components: allOf: - $ref: '#/components/schemas/SyntheticTypeConfiguration' - type: object - example: null properties: daysRemainingCheck: type: integer format: int32 - example: null maximum: 365 minimum: 1 hostname: type: string - example: null maxLength: 2047 minLength: 0 port: type: integer format: int32 - example: null - example: null required: - daysRemainingCheck - hostname @@ -24627,21 +22580,15 @@ components: allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: bearerToken: type: string - example: null clientId: type: string - example: null clientSecret: type: string - example: null salesforceUrl: type: string - example: null - example: null required: - clientId - clientSecret @@ -24651,43 +22598,32 @@ components: - salesforceUrl ScopeBinding: type: object - example: null properties: scopeId: type: string - example: null maxLength: 64 minLength: 0 scopeRoleId: type: string - example: null maxLength: 64 minLength: 0 SearchFieldResult: type: object - example: null properties: context: type: string - example: null description: type: string - example: null fixedValues: type: array - example: null items: type: string - example: null keyword: type: string - example: null termType: type: string - example: null Service: type: object - example: null properties: entityType: type: string @@ -24695,30 +22631,22 @@ components: - APPLICATION - SERVICE - ENDPOINT - example: null id: type: string - example: null label: type: string - example: null snapshotIds: type: array - example: null items: type: string - example: null uniqueItems: true technologies: type: array - example: null items: type: string - example: null uniqueItems: true types: type: array - example: null items: type: string enum: @@ -24736,7 +22664,6 @@ components: - MESSAGING - PAGE - PAGE_RESOURCE - example: null uniqueItems: true required: - id @@ -24746,32 +22673,25 @@ components: - types ServiceConfig: type: object - example: null properties: comment: type: string - example: null maxLength: 2048 minLength: 0 enabled: type: boolean - example: null id: type: string - example: null label: type: string - example: null matchSpecification: type: array - example: null items: $ref: '#/components/schemas/ServiceMatchingRule' maxItems: 20 minItems: 0 name: type: string - example: null maxLength: 128 minLength: 1 required: @@ -24785,38 +22705,27 @@ components: allOf: - $ref: '#/components/schemas/EventResult' - type: object - example: null properties: applicationId: type: string - example: null probableRootCause: type: object additionalProperties: type: object - example: null - example: null writeOnly: true serviceId: type: string - example: null - example: null ServiceItem: type: object - example: null properties: metrics: type: object additionalProperties: type: array - example: null items: type: array - example: null items: type: number - example: null - example: null service: $ref: '#/components/schemas/Service' required: @@ -24830,7 +22739,6 @@ components: custom: '#/components/schemas/CustomBlueprintIndicator' latency: '#/components/schemas/LatencyBlueprintIndicator' propertyName: blueprint - example: null properties: aggregation: type: string @@ -24848,54 +22756,43 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null blueprint: type: string enum: - latency - availability - custom - example: null threshold: type: number format: double - example: null type: type: string enum: - eventBased - timeBased - example: null ServiceLevelObjectiveAlertRule: type: object allOf: - $ref: '#/components/schemas/ServiceLevelsAlertRule' - type: object - example: null properties: metric: type: string enum: - STATUS - example: null - example: null ServiceLevelObjectiveConfiguration: type: object - example: null properties: createdDate: type: string format: date-time - example: null entity: $ref: '#/components/schemas/SloEntity' id: type: string - example: null maxLength: 64 minLength: 0 indicator: @@ -24903,20 +22800,15 @@ components: lastUpdated: type: string format: date-time - example: null name: type: string - example: null tags: type: array - example: null items: type: string - example: null target: type: number format: double - example: null exclusiveMaximum: false exclusiveMinimum: true maximum: 0.9999 @@ -24932,32 +22824,26 @@ components: - timeWindow ServiceLevelsAlertConfig: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 name: type: string - example: null maxLength: 256 minLength: 0 rule: @@ -24965,13 +22851,10 @@ components: severity: type: integer format: int32 - example: null sloIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true @@ -24981,7 +22864,6 @@ components: $ref: '#/components/schemas/ServiceLevelsTimeThreshold' triggering: type: boolean - example: null required: - alertChannelIds - customPayloadFields @@ -24998,84 +22880,69 @@ components: ERROR_BUDGET: '#/components/schemas/ErrorBudgetAlertRule' SERVICE_LEVELS_OBJECTIVE: '#/components/schemas/ServiceLevelObjectiveAlertRule' propertyName: alertType - example: null properties: alertType: type: string - example: null required: - alertType ServiceLevelsTimeThreshold: type: object - example: null properties: + expiry: + type: integer + format: int64 timeWindow: type: integer format: int64 - example: null ServiceLevelseAlertConfigWithMetadata: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true created: type: integer format: int64 - example: null minimum: 1 customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 enabled: type: boolean - example: null id: type: string - example: null maxLength: 64 minLength: 0 initialCreated: type: integer format: int64 - example: null minimum: 1 name: type: string - example: null maxLength: 256 minLength: 0 readOnly: type: boolean - example: null rule: $ref: '#/components/schemas/ServiceLevelsAlertRule' severity: type: integer format: int32 - example: null sloIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true @@ -25085,7 +22952,6 @@ components: $ref: '#/components/schemas/ServiceLevelsTimeThreshold' triggering: type: boolean - example: null required: - alertChannelIds - customPayloadFields @@ -25098,17 +22964,14 @@ components: - timeThreshold ServiceMap: type: object - example: null properties: connections: type: array - example: null items: $ref: '#/components/schemas/ServiceMapConnection' uniqueItems: true services: type: array - example: null items: $ref: '#/components/schemas/ExtendedService' uniqueItems: true @@ -25117,89 +22980,71 @@ components: - services ServiceMapConnection: type: object - example: null properties: calls: type: integer format: int64 - example: null minimum: 0 errorRate: type: number format: double - example: null maximum: 1 minimum: 0 from: type: string - example: null latency: type: number format: double - example: null minimum: 0 to: type: string - example: null required: - from - to ServiceMatchingRule: type: object - example: null properties: key: type: string - example: null value: type: string - example: null required: - key - value ServiceMetricResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' items: type: array - example: null items: $ref: '#/components/schemas/ServiceItem' page: type: integer format: int32 - example: null minimum: 1 pageSize: type: integer format: int32 - example: null minimum: 1 totalHits: type: integer format: int64 - example: null minimum: 0 required: - items ServiceNode: type: object - example: null properties: endpoints: type: object additionalProperties: $ref: '#/components/schemas/EndpointNode' - example: null inclusive: type: boolean - example: null serviceId: type: string - example: null maxLength: 64 minLength: 0 required: @@ -25210,21 +23055,15 @@ components: allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: autoCloseIncidents: type: boolean - example: null password: type: string - example: null serviceNowUrl: type: string - example: null username: type: string - example: null - example: null required: - id - kind @@ -25234,32 +23073,25 @@ components: - username ServiceResult: type: object - example: null properties: items: type: array - example: null items: $ref: '#/components/schemas/Service' page: type: integer format: int32 - example: null pageSize: type: integer format: int32 - example: null totalHits: type: integer format: int32 - example: null ServiceScope: type: object - example: null properties: name: type: string - example: null maxLength: 256 minLength: 0 scopedTo: @@ -25268,25 +23100,20 @@ components: - name ServiceScopeWithMetadata: type: object - example: null properties: id: type: string - example: null name: type: string - example: null scopedTo: $ref: '#/components/schemas/ServiceScopedToWithMetadata' required: - id ServiceScopedTo: type: object - example: null properties: applications: type: array - example: null items: $ref: '#/components/schemas/ApplicationScope' maxItems: 10 @@ -25295,11 +23122,9 @@ components: - applications ServiceScopedToWithMetadata: type: object - example: null properties: applications: type: array - example: null items: $ref: '#/components/schemas/ApplicationScopeWithMetadata' maxItems: 10 @@ -25308,28 +23133,22 @@ components: - applications ServiceSimple: type: object - example: null properties: id: type: string - example: null label: type: string - example: null SessionSettings: type: object - example: null properties: idleTimeInMillis: type: integer format: int64 - example: null maximum: 28800000 minimum: 60000 tokenLifeTimeInMillis: type: integer format: int64 - example: null maximum: 604800000 minimum: 900000 SlackIntegration: @@ -25337,18 +23156,13 @@ components: allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: channel: type: string - example: null iconUrl: type: string - example: null webhookUrl: type: string - example: null - example: null required: - id - kind @@ -25356,24 +23170,20 @@ components: - webhookUrl SliConfiguration: type: object - example: null properties: id: type: string - example: null maxLength: 64 minLength: 0 initialEvaluationTimestamp: type: integer format: int64 - example: null metricConfiguration: $ref: '#/components/schemas/MetricConfiguration' sliEntity: $ref: '#/components/schemas/SliEntity' sliName: type: string - example: null maxLength: 256 minLength: 0 required: @@ -25382,21 +23192,17 @@ components: - sliName SliConfigurationWithLastUpdated: type: object - example: null properties: id: type: string - example: null maxLength: 64 minLength: 0 initialEvaluationTimestamp: type: integer format: int64 - example: null lastUpdated: type: integer format: int64 - example: null minimum: 1 metricConfiguration: $ref: '#/components/schemas/MetricConfiguration' @@ -25404,7 +23210,6 @@ components: $ref: '#/components/schemas/SliEntity' sliName: type: string - example: null maxLength: 256 minLength: 0 required: @@ -25420,48 +23225,37 @@ components: websiteEventBased: '#/components/schemas/WebsiteEventBasedSliEntity' websiteTimeBased: '#/components/schemas/WebsiteTimeBasedSliEntity' propertyName: sliType - example: null properties: sliType: type: string - example: null required: - sliType SliReport: type: object - example: null properties: errorBudgetRemaining: type: integer format: int64 - example: null fromTimestamp: type: integer format: int64 - example: null sli: type: number format: double - example: null slo: type: number format: double - example: null toTimestamp: type: integer format: int64 - example: null totalErrorBudget: type: integer format: int64 - example: null violationDistribution: type: object additionalProperties: type: integer format: int32 - example: null - example: null SloEntity: type: object discriminator: @@ -25469,80 +23263,61 @@ components: application: '#/components/schemas/ApplicationSloEntity' website: '#/components/schemas/WebsiteSloEntity' propertyName: type - example: null properties: tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' type: type: string - example: null required: - type SloReport: type: object - example: null properties: errorAccumulationChart: type: object additionalProperties: type: integer format: int32 - example: null - example: null errorBudgetRemainChart: type: object additionalProperties: type: integer format: int32 - example: null - example: null errorBudgetRemaining: type: integer format: int32 - example: null errorBudgetSpent: type: integer format: int32 - example: null errorChart: type: object additionalProperties: type: integer format: int32 - example: null - example: null fromTimestamp: type: integer format: int64 - example: null sli: type: number format: double - example: null slo: type: number format: double - example: null toTimestamp: type: integer format: int64 - example: null totalErrorBudget: type: integer format: int32 - example: null violationDistribution: type: object additionalProperties: type: integer format: int32 - example: null - example: null SlownessApplicationAlertRule: type: object allOf: - $ref: '#/components/schemas/ApplicationAlertRule' - example: null required: - aggregation - metricName @@ -25550,129 +23325,94 @@ components: type: object allOf: - $ref: '#/components/schemas/WebsiteAlertRule' - example: null required: - aggregation - metricName SnapshotItem: type: object description: Detail information for requested snapshots. - example: null properties: data: type: object additionalProperties: type: object - example: null - example: null from: type: integer format: int64 - example: null host: type: string - example: null label: type: string - example: null plugin: type: string - example: null snapshotId: type: string - example: null tags: type: array - example: null items: type: string - example: null to: type: integer format: int64 - example: null SnapshotPreview: type: object - example: null properties: data: type: object additionalProperties: type: object - example: null - example: null id: type: string - example: null label: type: string - example: null plugin: type: string - example: null time: type: integer format: int64 - example: null minimum: 1 required: - id SnapshotResult: type: object - example: null properties: items: type: array - example: null items: $ref: '#/components/schemas/SnapshotItem' SoftwareUser: type: object - example: null properties: container: type: string - example: null host: type: string - example: null process: type: string - example: null snapshotId: type: string - example: null SoftwareVersion: type: object - example: null properties: metadata: type: object additionalProperties: type: string - example: null - example: null name: type: string - example: null origin: type: string - example: null type: type: string - example: null usedBy: type: array - example: null items: $ref: '#/components/schemas/SoftwareUser' uniqueItems: true vendor: type: string - example: null version: type: string - example: null required: - name - origin @@ -25682,43 +23422,33 @@ components: - version SourceMapFileBlob: type: object - example: null properties: blobIndex: type: integer format: int32 - example: null size: type: integer format: int64 - example: null sizeOnDisk: type: integer format: int64 - example: null SourceMapFileMeta: type: object - example: null properties: blobs: type: array - example: null items: $ref: '#/components/schemas/SourceMapFileBlob' format: type: string - example: null meta: type: string - example: null size: type: integer format: int64 - example: null sizeOnDisk: type: integer format: int64 - example: null type: type: string enum: @@ -25726,31 +23456,24 @@ components: - JS - R8PG_MAP - DWARF - example: null url: type: string - example: null required: - format - type - url SourceMapUploadConfig: type: object - example: null properties: createdAt: type: string format: date-time - example: null description: type: string - example: null id: type: string - example: null metadata: type: array - example: null items: $ref: '#/components/schemas/SourceMapFileMeta' maxItems: 500 @@ -25758,63 +23481,49 @@ components: modifiedAt: type: string format: date-time - example: null required: - id - metadata Span: type: object - example: null properties: batchSelfTime: type: integer format: int64 - example: null batchSize: type: integer format: int32 - example: null minimum: 0 calculatedSelfTime: type: integer format: int64 - example: null minimum: 0 callId: type: string - example: null childSpans: type: array - example: null items: $ref: '#/components/schemas/Span' data: type: object additionalProperties: type: object - example: null - example: null destination: $ref: '#/components/schemas/SpanRelation' duration: type: integer format: int64 - example: null minimum: 0 errorCount: type: integer format: int32 - example: null minimum: 0 foreignParentId: type: string - example: null id: type: string - example: null isSynthetic: type: boolean - example: null kind: type: string enum: @@ -25822,29 +23531,23 @@ components: - ENTRY - EXIT - INTERMEDIATE - example: null label: type: string - example: null maxLength: 128 minLength: 0 name: type: string - example: null parentId: type: string - example: null source: $ref: '#/components/schemas/SpanRelation' stackTrace: type: array - example: null items: $ref: '#/components/schemas/StackTraceItem' start: type: integer format: int64 - example: null minimum: 1 required: - callId @@ -25857,30 +23560,23 @@ components: - stackTrace SpanExcerpt: type: object - example: null properties: data: type: object additionalProperties: type: object - example: null - example: null duration: type: integer format: int64 - example: null minimum: 0 errorCount: type: integer format: int32 - example: null minimum: 0 foreignParentId: type: string - example: null id: type: string - example: null kind: type: string enum: @@ -25888,22 +23584,17 @@ components: - ENTRY - EXIT - INTERMEDIATE - example: null name: type: string - example: null parentId: type: string - example: null stackTrace: type: array - example: null items: $ref: '#/components/schemas/StackTraceItem' start: type: integer format: int64 - example: null minimum: 1 required: - data @@ -25913,11 +23604,9 @@ components: - stackTrace SpanRelation: type: object - example: null properties: applications: type: array - example: null items: $ref: '#/components/schemas/Application' uniqueItems: true @@ -25934,7 +23623,6 @@ components: allOf: - $ref: '#/components/schemas/WebsiteAlertRule' - type: object - example: null properties: operator: type: string @@ -25955,11 +23643,8 @@ components: - ENDS_WITH - NOT_STARTS_WITH - NOT_ENDS_WITH - example: null value: type: string - example: null - example: null required: - metricName - operator @@ -25968,15 +23653,11 @@ components: allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: token: type: string - example: null url: type: string - example: null - example: null required: - id - kind @@ -25985,44 +23666,33 @@ components: - url StackTraceItem: type: object - example: null properties: file: type: string - example: null line: type: string - example: null method: type: string - example: null StackTraceLine: type: object - example: null properties: column: type: integer format: int32 - example: null minimum: -1 file: type: string - example: null line: type: integer format: int32 - example: null minimum: -1 name: type: string - example: null translationExplanation: type: string - example: null translationStatus: type: integer format: int32 - example: null minimum: -1 required: - file @@ -26031,12 +23701,9 @@ components: allOf: - $ref: '#/components/schemas/CustomPayloadField' - type: object - example: null properties: value: type: string - example: null - example: null required: - key - value @@ -26045,19 +23712,15 @@ components: allOf: - $ref: '#/components/schemas/Threshold' - type: object - example: null properties: lastUpdated: type: integer format: int64 - example: null minimum: 0 value: type: number format: double - example: null minimum: 0 - example: null required: - operator StatusCodeApplicationAlertRule: @@ -26065,19 +23728,15 @@ components: allOf: - $ref: '#/components/schemas/ApplicationAlertRule' - type: object - example: null properties: statusCodeEnd: type: integer format: int32 - example: null minimum: 1 statusCodeStart: type: integer format: int32 - example: null minimum: 1 - example: null required: - metricName StatusCodeMobileAppAlertRule: @@ -26085,7 +23744,6 @@ components: allOf: - $ref: '#/components/schemas/MobileAppAlertRule' - type: object - example: null properties: operator: type: string @@ -26106,11 +23764,8 @@ components: - ENDS_WITH - NOT_STARTS_WITH - NOT_ENDS_WITH - example: null value: type: string - example: null - example: null required: - metricName - operator @@ -26120,7 +23775,6 @@ components: allOf: - $ref: '#/components/schemas/WebsiteAlertRule' - type: object - example: null properties: operator: type: string @@ -26141,43 +23795,34 @@ components: - ENDS_WITH - NOT_STARTS_WITH - NOT_ENDS_WITH - example: null value: type: string - example: null - example: null required: - metricName - operator - value SyntheticAlertConfig: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 name: type: string - example: null maxLength: 256 minLength: 0 rule: @@ -26185,13 +23830,10 @@ components: severity: type: integer format: int32 - example: null syntheticTestIds: type: array - example: null items: type: string - example: null uniqueItems: true tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' @@ -26208,67 +23850,53 @@ components: - timeThreshold SyntheticAlertConfigWithMetadata: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true created: type: integer format: int64 - example: null minimum: 1 customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 enabled: type: boolean - example: null id: type: string - example: null maxLength: 64 minLength: 0 initialCreated: type: integer format: int64 - example: null minimum: 1 name: type: string - example: null maxLength: 256 minLength: 0 readOnly: type: boolean - example: null rule: $ref: '#/components/schemas/SyntheticAlertRule' severity: type: integer format: int32 - example: null syntheticTestIds: type: array - example: null items: type: string - example: null uniqueItems: true tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' @@ -26290,7 +23918,6 @@ components: mapping: failure: '#/components/schemas/FailureSyntheticAlertRule' propertyName: alertType - example: null properties: aggregation: type: string @@ -26308,53 +23935,42 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null alertType: type: string - example: null metricName: type: string - example: null required: - alertType - metricName SyntheticCallConfig: type: object - example: null properties: customRules: type: array - example: null items: $ref: '#/components/schemas/SyntheticCallRule' maxItems: 500 minItems: 0 defaultRulesEnabled: type: boolean - example: null required: - customRules SyntheticCallRule: type: object - example: null properties: description: type: string - example: null maxLength: 2048 minLength: 0 enabled: type: boolean - example: null matchSpecification: $ref: '#/components/schemas/MatchExpressionDTO' name: type: string - example: null maxLength: 128 minLength: 1 required: @@ -26362,57 +23978,45 @@ components: - name SyntheticCallWithDefaultsConfig: type: object - example: null properties: customRules: type: array - example: null items: $ref: '#/components/schemas/SyntheticCallRule' maxItems: 500 minItems: 0 defaultRules: type: array - example: null items: $ref: '#/components/schemas/SyntheticCallRule' defaultRulesEnabled: type: boolean - example: null required: - customRules - defaultRules SyntheticCredentials: type: object - example: null properties: credentialName: type: string - example: null credentialValue: type: string - example: null required: - credentialName - credentialValue SyntheticGeoPoint: type: object - example: null properties: cityName: type: string - example: null countryName: type: string - example: null latitude: type: number format: double - example: null longitude: type: number format: double - example: null required: - cityName - countryName @@ -26420,67 +24024,53 @@ components: - longitude SyntheticLocation: type: object - example: null properties: configuration: $ref: '#/components/schemas/SyntheticLocationConfiguration' createdAt: type: integer format: int64 - example: null customProperties: type: object additionalProperties: type: string - example: null - example: null description: type: string - example: null maxLength: 512 minLength: 0 displayLabel: type: string - example: null maxLength: 128 minLength: 1 geoPoint: $ref: '#/components/schemas/SyntheticGeoPoint' id: type: string - example: null maxLength: 128 minLength: 0 label: type: string - example: null maxLength: 128 minLength: 1 locationType: type: string - example: null modifiedAt: type: integer format: int64 - example: null observedAt: type: integer format: int64 - example: null playbackCapabilities: $ref: '#/components/schemas/SyntheticPlaybackCapabilities' popVersion: type: string - example: null maxLength: 64 minLength: 1 status: type: string - example: null totalTests: type: integer format: int32 - example: null required: - geoPoint - label @@ -26488,17 +24078,13 @@ components: - playbackCapabilities SyntheticLocationConfiguration: type: object - example: null properties: clusterName: type: string - example: null namespace: type: string - example: null SyntheticMetricConfiguration: type: object - example: null properties: aggregation: type: string @@ -26516,58 +24102,45 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null granularity: type: integer format: int32 - example: null metric: type: string - example: null required: - aggregation - metric SyntheticPlaybackCapabilities: type: object - example: null properties: browserType: type: array - example: null items: type: string enum: - chrome - firefox - example: null syntheticType: type: array - example: null items: type: string - example: null required: - browserType - syntheticType SyntheticTest: type: object - example: null properties: active: type: boolean - example: null applicationId: type: string - example: null maxLength: 512 minLength: 0 applicationLabel: type: string - example: null maxLength: 512 minLength: 0 configuration: @@ -26575,58 +24148,43 @@ components: createdAt: type: integer format: int64 - example: null createdBy: type: string - example: null maxLength: 128 minLength: 0 customProperties: type: object additionalProperties: type: string - example: null - example: null description: type: string - example: null maxLength: 512 minLength: 0 id: type: string - example: null maxLength: 128 minLength: 1 label: type: string - example: null maxLength: 128 minLength: 1 locationDisplayLabels: type: array - example: null items: type: string - example: null locationLabels: type: array - example: null items: type: string - example: null locations: type: array - example: null items: type: string - example: null modifiedAt: type: integer format: int64 - example: null modifiedBy: type: string - example: null maxLength: 128 minLength: 0 playbackMode: @@ -26634,14 +24192,11 @@ components: enum: - Simultaneous - Staggered - example: null tenantId: type: string - example: null testFrequency: type: integer format: int32 - example: null maximum: 1440 minimum: 1 required: @@ -26656,15 +24211,12 @@ components: mapping: violationsInSequence: '#/components/schemas/ViolationsInSequenceSyntheticTimeThreshold' propertyName: type - example: null properties: type: type: string - example: null violationsCount: type: integer format: int32 - example: null maximum: 12 minimum: 1 required: @@ -26685,21 +24237,17 @@ components: WebpageAction: '#/components/schemas/WebpageActionConfiguration' WebpageScript: '#/components/schemas/WebpageScriptConfiguration' propertyName: syntheticType - example: null properties: markSyntheticCall: type: boolean - example: null retries: type: integer format: int32 - example: null maximum: 2 minimum: 0 retryInterval: type: integer format: int32 - example: null maximum: 10 minimum: 1 syntheticType: @@ -26713,10 +24261,8 @@ components: - WebpageAction - WebpageScript - NotConfigured - example: null timeout: type: string - example: null required: - markSyntheticCall - syntheticType @@ -26725,75 +24271,55 @@ components: allOf: - $ref: '#/components/schemas/EventResult' - type: object - example: null properties: locationIds: type: array - example: null items: type: string - example: null probableRootCause: type: object additionalProperties: type: object - example: null - example: null writeOnly: true syntheticTestId: type: string - example: null - example: null SystemRule: type: object allOf: - $ref: '#/components/schemas/AbstractRule' - type: object - example: null properties: systemRuleId: type: string - example: null - example: null required: - systemRuleId SystemRuleLabel: type: object - example: null properties: id: type: string - example: null name: type: string - example: null required: - id - name Tag: type: object - example: null properties: canApplyToDestination: type: boolean - example: null canApplyToSource: type: boolean - example: null description: type: string - example: null idTag: type: boolean - example: null label: type: string - example: null maxLength: 256 minLength: 0 name: type: string - example: null type: type: string enum: @@ -26804,22 +24330,18 @@ components: - STRING_LIST - KEY_VALUE_PAIR - KEY_NUMBER_PAIR - example: null required: - name - type TagCatalog: type: object - example: null properties: tagTree: type: array - example: null items: $ref: '#/components/schemas/TagTreeLevel' tags: type: array - example: null items: $ref: '#/components/schemas/Tag' required: @@ -26830,7 +24352,6 @@ components: allOf: - $ref: '#/components/schemas/TagFilterExpressionElement' - type: object - example: null properties: entity: type: string @@ -26839,17 +24360,14 @@ components: - NOT_APPLICABLE - DESTINATION - SOURCE - example: null key: type: string description: Tag key in case of a key/value tag. - example: null maxLength: 512 minLength: 0 name: type: string description: Name of the tag. - example: null maxLength: 128 minLength: 0 operator: @@ -26871,12 +24389,9 @@ components: - ENDS_WITH - NOT_STARTS_WITH - NOT_ENDS_WITH - example: null value: type: object description: 'Tag value to filter on. Can be a string, number, or boolean value.' - example: null - example: null required: - entity - name @@ -26886,11 +24401,9 @@ components: allOf: - $ref: '#/components/schemas/TagFilterExpressionElement' - type: object - example: null properties: elements: type: array - example: null items: $ref: '#/components/schemas/TagFilterExpressionElement' logicalOperator: @@ -26898,8 +24411,6 @@ components: enum: - AND - OR - example: null - example: null required: - elements - logicalOperator @@ -26910,11 +24421,9 @@ components: EXPRESSION: '#/components/schemas/TagFilterExpression' TAG_FILTER: '#/components/schemas/TagFilter' propertyName: type - example: null properties: type: type: string - example: null required: - type TagMatcherDTO: @@ -26922,7 +24431,6 @@ components: allOf: - $ref: '#/components/schemas/MatchExpressionDTO' - type: object - example: null properties: entity: type: string @@ -26930,10 +24438,8 @@ components: - NOT_APPLICABLE - DESTINATION - SOURCE - example: null key: type: string - example: null operator: type: string enum: @@ -26953,49 +24459,38 @@ components: - LESS_OR_EQUAL_THAN - LESS_THAN - GREATER_THAN - example: null value: type: string - example: null - example: null required: - entity - key - operator TagTreeLevel: type: object - example: null properties: children: type: array - example: null items: $ref: '#/components/schemas/TagTreeNode' description: type: string - example: null maxLength: 512 minLength: 0 icon: type: string - example: null maxLength: 128 minLength: 0 label: type: string - example: null maxLength: 128 minLength: 0 queryable: type: boolean - example: null scoreBoost: type: integer format: int32 - example: null type: type: string - example: null required: - children - label @@ -27006,118 +24501,87 @@ components: LEVEL: '#/components/schemas/TagTreeLevel' TAG: '#/components/schemas/TagTreeTag' propertyName: type - example: null properties: icon: type: string - example: null label: type: string - example: null type: type: string - example: null TagTreeTag: type: object allOf: - $ref: '#/components/schemas/TagTreeNode' - type: object - example: null properties: description: type: string - example: null maxLength: 512 minLength: 0 hidden: type: boolean - example: null icon: type: string - example: null maxLength: 128 minLength: 0 label: type: string - example: null maxLength: 128 minLength: 0 queryable: type: boolean - example: null scoreBoost: type: integer format: int32 - example: null tagName: type: string - example: null maxLength: 128 minLength: 0 - example: null required: - label - tagName TestCommonProperties: type: object - example: null properties: active: type: boolean - example: null applicationId: type: string - example: null applicationLabel: type: string - example: null createdAt: type: integer format: int64 - example: null frequency: type: integer format: int32 - example: null id: type: string - example: null label: type: string - example: null locationDisplayLabels: type: array - example: null items: type: string - example: null locationIds: type: array - example: null items: type: string - example: null locationLabels: type: array - example: null items: type: string - example: null locationStatusList: type: array - example: null items: $ref: '#/components/schemas/LocationStatus' modifiedAt: type: integer format: int64 - example: null serviceId: type: string - example: null type: type: string - example: null required: - active - frequency @@ -27126,166 +24590,119 @@ components: - type TestResult: type: object - example: null properties: testResult: type: array - example: null items: $ref: '#/components/schemas/TestResultItem' testResultItems: type: array - example: null items: $ref: '#/components/schemas/TestResultItem' writeOnly: true TestResultCommonProperties: type: object - example: null properties: clientId: type: string - example: null customTags: type: object additionalProperties: type: string - example: null - example: null errors: type: array - example: null items: type: string - example: null id: type: string - example: null locationDisplayLabel: type: string - example: null locationId: type: string - example: null testCommonProperties: $ref: '#/components/schemas/TestCommonProperties' testId: type: string - example: null testName: type: string - example: null required: - clientId - testId TestResultDetailData: type: object - example: null properties: har: type: object additionalProperties: type: object - example: null - example: null imageFiles: type: object additionalProperties: type: array - example: null items: type: string format: byte - example: null - example: null logFiles: type: object additionalProperties: type: string - example: null - example: null logs: type: string - example: null subtransactionAvgMetrics: type: object additionalProperties: type: object - example: null - example: null subtransactions: type: array - example: null items: $ref: '#/components/schemas/TestResultSubtransaction' testId: type: string - example: null testResultId: type: string - example: null videos: type: array - example: null items: type: string format: byte - example: null TestResultItem: type: object - example: null properties: applicationId: type: string - example: null customTags: type: object additionalProperties: type: string - example: null - example: null locationId: type: array - example: null items: type: string - example: null metrics: type: array - example: null items: type: object additionalProperties: type: object - example: null - example: null serviceId: type: string - example: null testId: type: string - example: null testName: type: string - example: null required: - testId TestResultListItem: type: object - example: null properties: metrics: type: object additionalProperties: type: array - example: null items: type: array - example: null items: type: number - example: null - example: null testResultCommonProperties: $ref: '#/components/schemas/TestResultCommonProperties' required: @@ -27293,64 +24710,52 @@ components: - testResultCommonProperties TestResultListResult: type: object - example: null properties: items: type: array - example: null items: $ref: '#/components/schemas/TestResultListItem' page: type: integer format: int32 - example: null minimum: 1 pageSize: type: integer format: int32 - example: null minimum: 1 totalHits: type: integer format: int64 - example: null minimum: 0 required: - items TestResultMetadata: type: object - example: null properties: metadata: type: object additionalProperties: type: object - example: null - example: null + startTime: + type: integer + format: int64 testId: type: string - example: null testResultId: type: string - example: null required: - testId TestResultSubtransaction: type: object - example: null properties: metrics: type: object additionalProperties: type: object - example: null - example: null properties: type: object additionalProperties: type: object - example: null - example: null required: - metrics - properties @@ -27362,7 +24767,6 @@ components: historicBaseline: '#/components/schemas/HistoricBaseline' staticThreshold: '#/components/schemas/StaticThreshold' propertyName: type - example: null properties: operator: type: string @@ -27371,10 +24775,8 @@ components: - '>=' - < - <= - example: null type: type: string - example: null required: - operator - type @@ -27383,7 +24785,6 @@ components: allOf: - $ref: '#/components/schemas/AbstractRule' - type: object - example: null properties: aggregation: type: string @@ -27394,7 +24795,6 @@ components: - max - absolute_diff - relative_diff - example: null conditionOperator: type: string enum: @@ -27404,14 +24804,11 @@ components: - <= - = - '!=' - example: null conditionValue: type: number format: double - example: null metricName: type: string - example: null maxLength: 512 minLength: 0 metricPattern: @@ -27419,49 +24816,40 @@ components: rollup: type: integer format: int64 - example: null window: type: integer format: int64 - example: null - example: null required: - conditionOperator ThroughputApplicationAlertRule: type: object allOf: - $ref: '#/components/schemas/ApplicationAlertRule' - example: null required: - metricName ThroughputMobileAppAlertRule: type: object allOf: - $ref: '#/components/schemas/MobileAppAlertRule' - example: null required: - metricName ThroughputWebsiteAlertRule: type: object allOf: - $ref: '#/components/schemas/WebsiteAlertRule' - example: null required: - metricName TimeFrame: type: object - example: null properties: to: type: integer format: int64 description: end of timeframe expressed as the Unix epoch time in milliseconds - example: null windowSize: type: integer format: int64 description: windowSize in milliseconds - example: null maximum: 2678400000 minimum: 0 TimeWindow: @@ -27471,12 +24859,10 @@ components: fixed: '#/components/schemas/FixedTimeWindow' rolling: '#/components/schemas/RollingTimeWindow' propertyName: type - example: null properties: duration: type: integer format: int32 - example: null durationUnit: type: string enum: @@ -27487,114 +24873,91 @@ components: - day - week - month - example: null type: type: string - example: null required: - duration - durationUnit - type Topology: type: object - example: null properties: edges: type: array - example: null items: $ref: '#/components/schemas/GraphEdge' nodes: type: array - example: null items: $ref: '#/components/schemas/GraphNode' Trace: type: object - example: null properties: duration: type: integer format: int64 - example: null minimum: 0 endpoint: $ref: '#/components/schemas/Endpoint' erroneous: type: boolean - example: null id: type: string - example: null label: type: string - example: null service: $ref: '#/components/schemas/Service' startTime: type: integer format: int64 - example: null minimum: 1 required: - id - label TraceActivityTreeNodeDetails: type: object - example: null properties: batchSelfTime: type: integer format: int64 - example: null batchSize: type: integer format: int32 - example: null minimum: 0 destination: $ref: '#/components/schemas/SpanRelation' duration: type: integer format: int64 - example: null minimum: 0 errorCount: type: integer format: int32 - example: null minimum: 0 id: type: string - example: null isSynthetic: type: boolean - example: null writeOnly: true label: type: string - example: null maxLength: 128 minLength: 0 logs: type: array - example: null items: $ref: '#/components/schemas/SpanExcerpt' uniqueItems: true minSelfTime: type: integer format: int64 - example: null networkTime: type: integer format: int64 - example: null source: $ref: '#/components/schemas/SpanRelation' spans: type: array - example: null items: $ref: '#/components/schemas/SpanExcerpt' maxItems: 2 @@ -27603,11 +24966,9 @@ components: start: type: integer format: int64 - example: null minimum: 1 synthetic: type: boolean - example: null required: - id - label @@ -27615,38 +24976,31 @@ components: - spans TraceDownloadResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' canLoadMore: type: boolean - example: null items: type: array - example: null items: $ref: '#/components/schemas/GetTraceDownloadResultItem' totalHits: type: integer format: int64 - example: null minimum: 0 totalRepresentedItemCount: type: integer format: int64 - example: null minimum: 0 totalRetainedItemCount: type: integer format: int64 - example: null minimum: 0 required: - items TraceGroupsItem: type: object - example: null properties: cursor: $ref: '#/components/schemas/IngestionOffsetCursor' @@ -27654,21 +25008,15 @@ components: type: object additionalProperties: type: array - example: null items: type: array - example: null items: type: number - example: null - example: null name: type: string - example: null timestamp: type: integer format: int64 - example: null minimum: 0 required: - cursor @@ -27676,32 +25024,26 @@ components: - name TraceGroupsResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' canLoadMore: type: boolean - example: null items: type: array - example: null items: $ref: '#/components/schemas/TraceGroupsItem' totalHits: type: integer format: int64 - example: null minimum: 0 totalRepresentedItemCount: type: integer format: int64 - example: null minimum: 0 totalRetainedItemCount: type: integer format: int64 - example: null minimum: 0 required: - items @@ -27710,17 +25052,13 @@ components: allOf: - $ref: '#/components/schemas/ApplicationTimeThreshold' - type: object - example: null properties: requests: type: integer format: int32 - example: null minimum: 1 - example: null TraceItem: type: object - example: null properties: cursor: $ref: '#/components/schemas/IngestionOffsetCursor' @@ -27731,45 +25069,36 @@ components: - trace TraceResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' canLoadMore: type: boolean - example: null items: type: array - example: null items: $ref: '#/components/schemas/TraceItem' totalHits: type: integer format: int64 - example: null minimum: 0 totalRepresentedItemCount: type: integer format: int64 - example: null minimum: 0 totalRetainedItemCount: type: integer format: int64 - example: null minimum: 0 required: - items Trigger: type: object - example: null properties: id: type: string - example: null name: type: string - example: null type: type: string enum: @@ -27782,13 +25111,11 @@ components: - mobileAppSmartAlert - syntheticsSmartAlert - logSmartAlert - example: null required: - id - type TypeConfiguration: type: object - example: null properties: condition: $ref: '#/components/schemas/Condition' @@ -27797,7 +25124,6 @@ components: enum: - automatic - manual - example: null runnable: $ref: '#/components/schemas/PolicyRunnable' required: @@ -27808,51 +25134,38 @@ components: allOf: - $ref: '#/components/schemas/HttpPathSegmentMatchingRule' - type: object - example: null properties: unsupportedType: type: string - example: null - example: null required: - type UsageResult: type: object - example: null properties: items: type: array - example: null items: $ref: '#/components/schemas/UsageResultItems' time: type: integer format: int64 - example: null UsageResultItems: type: object - example: null properties: name: type: string - example: null sims: type: integer format: int64 - example: null UserBasicResult: type: object - example: null properties: email: type: string - example: null fullName: type: string - example: null id: type: string - example: null required: - email - fullName @@ -27862,18 +25175,15 @@ components: allOf: - $ref: '#/components/schemas/MobileAppTimeThreshold' - type: object - example: null properties: impactMeasurementMethod: type: string enum: - AGGREGATED - PER_WINDOW - example: null userPercentage: type: number format: double - example: null exclusiveMaximum: false exclusiveMinimum: true maximum: 1 @@ -27881,9 +25191,7 @@ components: users: type: integer format: int32 - example: null minimum: 1 - example: null required: - impactMeasurementMethod UserImpactWebsiteTimeThreshold: @@ -27891,18 +25199,15 @@ components: allOf: - $ref: '#/components/schemas/WebsiteTimeThreshold' - type: object - example: null properties: impactMeasurementMethod: type: string enum: - AGGREGATED - PER_WINDOW - example: null userPercentage: type: number format: double - example: null exclusiveMaximum: false exclusiveMinimum: true maximum: 1 @@ -27910,68 +25215,52 @@ components: users: type: integer format: int32 - example: null minimum: 1 - example: null required: - impactMeasurementMethod UserResult: type: object - example: null properties: email: type: string - example: null fullName: type: string - example: null groupCount: type: integer format: int64 - example: null id: type: string - example: null lastLoggedIn: type: integer format: int64 - example: null tfaEnabled: type: boolean - example: null required: - email - fullName - id UsersResult: type: object - example: null properties: invitations: type: array - example: null items: $ref: '#/components/schemas/InvitationResult' uniqueItems: true users: type: array - example: null items: $ref: '#/components/schemas/UserResult' uniqueItems: true ValidatedAlertingChannelInputInfo: type: object - example: null properties: enabled: type: boolean - example: null entityId: type: string - example: null eventTypes: type: array - example: null items: type: string enum: @@ -27983,32 +25272,26 @@ components: - offline - agent_monitoring_issue - none - example: null maxItems: 6 minItems: 0 uniqueItems: true id: type: string - example: null maxLength: 64 minLength: 0 invalid: type: boolean - example: null label: type: string - example: null maxLength: 256 minLength: 0 query: type: string - example: null maxLength: 2048 minLength: 0 selectedEvents: type: integer format: int32 - example: null type: type: string enum: @@ -28019,37 +25302,29 @@ components: - GlobalApplicationSmartAlert - SyntheticSmartAlert - InfraSmartAlert - example: null required: - id - label - type ValidatedAlertingConfiguration: type: object - example: null properties: alertChannelNames: type: array - example: null items: type: string - example: null uniqueItems: true alertName: type: string - example: null maxLength: 256 minLength: 0 applicationNames: type: array - example: null items: type: string - example: null uniqueItems: true customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/StaticStringField' maxItems: 20 @@ -28058,30 +25333,24 @@ components: $ref: '#/components/schemas/EventFilteringConfiguration' id: type: string - example: null maxLength: 64 minLength: 0 integrationIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true invalid: type: boolean - example: null lastUpdated: type: integer format: int64 - example: null minimum: 1 muteUntil: type: integer format: int64 - example: null required: - alertName - customPayloadFields @@ -28090,41 +25359,32 @@ components: - integrationIds ValidatedMaintenanceConfigV2WithStateAndOccurrence: type: object - example: null properties: applicationNames: type: array - example: null items: type: string - example: null uniqueItems: true id: type: string - example: null maxLength: 64 minLength: 0 invalid: type: boolean - example: null lastUpdated: type: integer format: int64 - example: null minimum: 1 name: type: string - example: null maxLength: 256 minLength: 0 occurrence: $ref: '#/components/schemas/Occurrence' paused: type: boolean - example: null query: type: string - example: null maxLength: 2048 minLength: 0 scheduling: @@ -28137,12 +25397,10 @@ components: - ACTIVE - PAUSED - EXPIRED - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilterExpressionEnabled: type: boolean - example: null required: - id - name @@ -28151,29 +25409,23 @@ components: - scheduling ValidatedMaintenanceConfigWithStatus: type: object - example: null properties: id: type: string - example: null maxLength: 64 minLength: 0 invalid: type: boolean - example: null lastUpdated: type: integer format: int64 - example: null minimum: 1 name: type: string - example: null maxLength: 256 minLength: 0 query: type: string - example: null maxLength: 2048 minLength: 0 status: @@ -28184,10 +25436,8 @@ components: - ACTIVE - FINISHED - PAUSED - example: null windows: type: array - example: null items: $ref: '#/components/schemas/MaintenanceWindow' maxItems: 1 @@ -28203,15 +25453,11 @@ components: allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: apiKey: type: string - example: null routingKey: type: string - example: null - example: null required: - apiKey - id @@ -28223,85 +25469,66 @@ components: allOf: - $ref: '#/components/schemas/ApplicationTimeThreshold' - type: object - example: null properties: violations: type: integer format: int32 - example: null maximum: 12 minimum: 1 - example: null ViolationsInPeriodMobileAppTimeThreshold: type: object allOf: - $ref: '#/components/schemas/MobileAppTimeThreshold' - type: object - example: null properties: violations: type: integer format: int32 - example: null maximum: 12 minimum: 1 - example: null ViolationsInPeriodWebsiteTimeThreshold: type: object allOf: - $ref: '#/components/schemas/WebsiteTimeThreshold' - type: object - example: null properties: violations: type: integer format: int32 - example: null maximum: 12 minimum: 1 - example: null ViolationsInSequenceApplicationTimeThreshold: type: object allOf: - $ref: '#/components/schemas/ApplicationTimeThreshold' - example: null ViolationsInSequenceInfraTimeThreshold: type: object allOf: - $ref: '#/components/schemas/InfraTimeThreshold' - example: null ViolationsInSequenceMobileAppTimeThreshold: type: object allOf: - $ref: '#/components/schemas/MobileAppTimeThreshold' - example: null ViolationsInSequenceSyntheticTimeThreshold: type: object allOf: - $ref: '#/components/schemas/SyntheticTimeThreshold' - example: null ViolationsInSequenceWebsiteTimeThreshold: type: object allOf: - $ref: '#/components/schemas/WebsiteTimeThreshold' - example: null WatsonAIOpsWebhookIntegration: type: object allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: headers: type: array - example: null items: type: string - example: null webhookUrl: type: string - example: null - example: null required: - id - kind @@ -28312,12 +25539,9 @@ components: allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: webhookUrl: type: string - example: null - example: null required: - id - kind @@ -28328,21 +25552,15 @@ components: allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: headers: type: array - example: null items: type: string - example: null webhookUrls: type: array - example: null items: type: string - example: null - example: null required: - id - kind @@ -28353,23 +25571,18 @@ components: allOf: - $ref: '#/components/schemas/SyntheticTypeConfiguration' - type: object - example: null properties: browser: type: string enum: - chrome - firefox - example: null recordVideo: type: boolean - example: null url: type: string - example: null maxLength: 2047 minLength: 0 - example: null required: - markSyntheticCall - syntheticType @@ -28379,66 +25592,52 @@ components: allOf: - $ref: '#/components/schemas/SyntheticTypeConfiguration' - type: object - example: null properties: browser: type: string enum: - chrome - firefox - example: null recordVideo: type: boolean - example: null script: type: string - example: null maxLength: 1048576 minLength: 0 - example: null required: - markSyntheticCall - script - syntheticType Website: type: object - example: null properties: appName: type: string - example: null id: type: string - example: null name: type: string - example: null required: - id - name WebsiteAlertConfig: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 granularity: @@ -28452,10 +25651,8 @@ components: - 900000 - 1200000 - 1800000 - example: null name: type: string - example: null maxLength: 256 minLength: 0 rule: @@ -28463,12 +25660,10 @@ components: severity: type: integer format: int32 - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/TagFilter' uniqueItems: true @@ -28479,10 +25674,8 @@ components: $ref: '#/components/schemas/WebsiteTimeThreshold' triggering: type: boolean - example: null websiteId: type: string - example: null maxLength: 64 minLength: 0 required: @@ -28498,37 +25691,30 @@ components: - websiteId WebsiteAlertConfigWithMetadata: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true created: type: integer format: int64 - example: null minimum: 1 customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 enabled: type: boolean - example: null granularity: type: integer format: int32 @@ -28540,36 +25726,29 @@ components: - 900000 - 1200000 - 1800000 - example: null id: type: string - example: null maxLength: 64 minLength: 0 initialCreated: type: integer format: int64 - example: null minimum: 1 name: type: string - example: null maxLength: 256 minLength: 0 readOnly: type: boolean - example: null rule: $ref: '#/components/schemas/WebsiteAlertRule' severity: type: integer format: int32 - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' tagFilters: type: array - example: null items: $ref: '#/components/schemas/TagFilter' uniqueItems: true @@ -28580,10 +25759,8 @@ components: $ref: '#/components/schemas/WebsiteTimeThreshold' triggering: type: boolean - example: null websiteId: type: string - example: null maxLength: 64 minLength: 0 required: @@ -28608,7 +25785,6 @@ components: statusCode: '#/components/schemas/StatusCodeWebsiteAlertRule' throughput: '#/components/schemas/ThroughputWebsiteAlertRule' propertyName: alertType - example: null properties: aggregation: type: string @@ -28626,17 +25802,13 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null alertType: type: string - example: null metricName: type: string - example: null required: - alertType - metricName @@ -28645,7 +25817,6 @@ components: allOf: - $ref: '#/components/schemas/ApdexEntity' - type: object - example: null properties: beaconType: type: string @@ -28656,111 +25827,88 @@ components: - error - custom - pageChange - example: null - example: null required: - beaconType - entityId - tagFilterExpression WebsiteBeaconGroupsItem: type: object - example: null properties: cursor: $ref: '#/components/schemas/IngestionOffsetCursor' earliestTimestamp: type: integer format: int64 - example: null minimum: 0 metrics: type: object additionalProperties: type: array - example: null items: type: array - example: null items: type: number - example: null - example: null name: type: string - example: null required: - cursor - metrics - name WebsiteBeaconGroupsResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' canLoadMore: type: boolean - example: null items: type: array - example: null items: $ref: '#/components/schemas/WebsiteBeaconGroupsItem' totalHits: type: integer format: int64 - example: null minimum: 0 totalRepresentedItemCount: type: integer format: int64 - example: null minimum: 0 totalRetainedItemCount: type: integer format: int64 - example: null minimum: 0 required: - items WebsiteBeaconResult: type: object - example: null properties: adjustedTimeframe: $ref: '#/components/schemas/AdjustedTimeframe' canLoadMore: type: boolean - example: null items: type: array - example: null items: $ref: '#/components/schemas/WebsiteBeaconsItem' totalHits: type: integer format: int64 - example: null minimum: 0 totalRepresentedItemCount: type: integer format: int64 - example: null minimum: 0 totalRetainedItemCount: type: integer format: int64 - example: null minimum: 0 required: - items WebsiteBeaconTagGroup: type: object - example: null properties: groupbyTag: type: string - example: null maxLength: 256 minLength: 0 groupbyTagEntity: @@ -28769,10 +25917,8 @@ components: - NOT_APPLICABLE - DESTINATION - SOURCE - example: null groupbyTagSecondLevelKey: type: string - example: null maxLength: 256 minLength: 0 required: @@ -28780,7 +25926,6 @@ components: - groupbyTagEntity WebsiteBeaconsItem: type: object - example: null properties: beacon: $ref: '#/components/schemas/WebsiteMonitoringBeacon' @@ -28794,7 +25939,6 @@ components: allOf: - $ref: '#/components/schemas/SliEntity' - type: object - example: null properties: badEventFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' @@ -28807,13 +25951,10 @@ components: - error - custom - pageChange - example: null goodEventFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' websiteId: type: string - example: null - example: null required: - badEventFilterExpression - beaconType @@ -28823,431 +25964,316 @@ components: allOf: - $ref: '#/components/schemas/EventResult' - type: object - example: null properties: probableRootCause: type: object additionalProperties: type: object - example: null - example: null writeOnly: true websiteId: type: string - example: null - example: null WebsiteMetricResult: type: object - example: null properties: empty: type: boolean - example: null WebsiteMonitoringBeacon: type: object - example: null properties: accuracyRadius: type: integer format: int64 - example: null minimum: -1 accurateTimingsAvailable: type: boolean - example: null agentVersion: type: string - example: null appCacheTime: type: integer format: int64 - example: null minimum: -1 backendTime: type: integer format: int64 - example: null minimum: -1 backendTraceId: type: string - example: null batchSize: type: integer format: int64 - example: null minimum: 1 beaconId: type: string - example: null browserName: type: string - example: null browserVersion: type: string - example: null cacheInteraction: type: string - example: null childrenTime: type: integer format: int64 - example: null minimum: -1 city: type: string - example: null clockSkew: type: integer format: int64 - example: null minimum: -1 componentStack: type: string - example: null connectionType: type: string - example: null continent: type: string - example: null continentCode: type: string - example: null country: type: string - example: null countryCode: type: string - example: null cspBlockedUri: type: string - example: null cspColumnNumber: type: integer format: int64 - example: null cspDisposition: type: string - example: null cspEffectiveDirective: type: string - example: null cspLineNumber: type: integer format: int64 - example: null cspOriginalPolicy: type: string - example: null cspSample: type: string - example: null cspSourceFile: type: string - example: null cumulativeLayoutShift: type: number format: double - example: null customEventName: type: string - example: null customMetric: type: number format: double - example: null decodedBodySize: type: integer format: int64 - example: null minimum: -1 deprecations: type: array - example: null items: type: string - example: null maxItems: 16 minItems: 0 uniqueItems: true deviceType: type: string - example: null dnsTime: type: integer format: int64 - example: null minimum: -1 domTime: type: integer format: int64 - example: null minimum: -1 duration: type: integer format: int64 - example: null minimum: 0 encodedBodySize: type: integer format: int64 - example: null minimum: -1 errorCount: type: integer format: int64 - example: null minimum: 0 errorId: type: string - example: null errorMessage: type: string - example: null errorType: type: string - example: null firstContentfulPaintTime: type: integer format: int64 - example: null minimum: -1 firstInputDelayTime: type: integer format: int64 - example: null minimum: -1 firstPaintTime: type: integer format: int64 - example: null minimum: -1 frontendTime: type: integer format: int64 - example: null minimum: -1 graphqlOperationName: type: string - example: null graphqlOperationType: type: string - example: null httpCallAsynchronous: type: boolean - example: null httpCallCorrelationAttempted: type: boolean - example: null httpCallHeaders: type: object additionalProperties: type: string - example: null - example: null httpCallMethod: type: string - example: null httpCallOrigin: type: string - example: null httpCallPath: type: string - example: null httpCallStatus: type: integer format: int32 - example: null maximum: 599 minimum: -1 httpCallUrl: type: string - example: null initiator: type: string - example: null interactionNextPaint: type: integer format: int64 - example: null internalMeta: type: object additionalProperties: type: string - example: null - example: null largestContentfulPaintTime: type: integer format: int64 - example: null minimum: -1 latitude: type: number format: double - example: null locationOrigin: type: string - example: null locationPath: type: string - example: null locationUrl: type: string - example: null longitude: type: number format: double - example: null meta: type: object additionalProperties: type: string - example: null - example: null onLoadTime: type: integer format: int64 - example: null minimum: -1 osName: type: string - example: null osVersion: type: string - example: null page: type: string - example: null pageLoadId: type: string - example: null parentBeaconId: type: string - example: null parsedStackTrace: type: array - example: null items: $ref: '#/components/schemas/JsStackTraceLine' maxItems: 64 minItems: 0 phase: type: string - example: null processingTime: type: integer format: int64 - example: null minimum: -1 redirectTime: type: integer format: int64 - example: null minimum: -1 requestTime: type: integer format: int64 - example: null minimum: -1 resourceType: type: string - example: null responseTime: type: integer format: int64 - example: null minimum: -1 sessionId: type: string - example: null snippetVersion: type: string - example: null sslTime: type: integer format: int64 - example: null minimum: -1 stackTrace: type: string - example: null stackTraceParsingStatus: type: integer format: int32 - example: null minimum: -1 stackTraceReadability: type: integer format: int32 - example: null minimum: 0 subdivision: type: string - example: null subdivisionCode: type: string - example: null tcpTime: type: integer format: int64 - example: null minimum: -1 timestamp: type: integer format: int64 - example: null minimum: 1 transferSize: type: integer format: int64 - example: null minimum: -1 type: type: string - example: null unloadTime: type: integer format: int64 - example: null minimum: -1 userEmail: type: string - example: null userId: type: string - example: null userIp: type: string - example: null userLanguages: type: array - example: null items: type: string - example: null maxItems: 5 minItems: 0 userName: type: string - example: null websiteId: type: string - example: null websiteLabel: type: string - example: null windowHeight: type: integer format: int32 - example: null minimum: -1 windowHidden: type: boolean - example: null windowWidth: type: integer format: int32 - example: null minimum: -1 required: - beaconId @@ -29259,11 +26285,9 @@ components: - websiteLabel WebsiteMonitoringMetricDescription: type: object - example: null properties: aggregations: type: array - example: null items: type: string enum: @@ -29280,18 +26304,14 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null uniqueItems: true beaconTypes: type: array - example: null items: type: string - example: null uniqueItems: true defaultAggregation: type: string @@ -29309,34 +26329,25 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null description: type: string - example: null formatter: type: string - example: null label: type: string - example: null metricId: type: string - example: null pathToValueInBeacon: type: array - example: null items: type: string - example: null maxItems: 2147483647 minItems: 1 tagName: type: string - example: null required: - aggregations - beaconTypes @@ -29345,7 +26356,6 @@ components: - metricId WebsiteMonitoringMetricsConfiguration: type: object - example: null properties: aggregation: type: string @@ -29363,18 +26373,14 @@ components: - P99 - P99_9 - P99_99 - - DISTRIBUTION - DISTINCT_COUNT - SUM_POSITIVE - PER_SECOND - example: null granularity: type: integer format: int32 - example: null metric: type: string - example: null required: - aggregation - metric @@ -29383,7 +26389,6 @@ components: allOf: - $ref: '#/components/schemas/SloEntity' - type: object - example: null properties: beaconType: type: string @@ -29394,11 +26399,8 @@ components: - error - custom - pageChange - example: null websiteId: type: string - example: null - example: null required: - beaconType - websiteId @@ -29407,7 +26409,6 @@ components: allOf: - $ref: '#/components/schemas/SliEntity' - type: object - example: null properties: beaconType: type: string @@ -29418,13 +26419,10 @@ components: - error - custom - pageChange - example: null filterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' websiteId: type: string - example: null - example: null required: - beaconType WebsiteTimeThreshold: @@ -29435,56 +26433,44 @@ components: violationsInPeriod: '#/components/schemas/ViolationsInPeriodWebsiteTimeThreshold' violationsInSequence: '#/components/schemas/ViolationsInSequenceWebsiteTimeThreshold' propertyName: type - example: null properties: timeWindow: type: integer format: int64 - example: null type: type: string - example: null required: - type Widget: type: object - example: null properties: config: type: object - example: null height: type: integer format: int32 - example: null minimum: 1 id: type: string - example: null maxLength: 64 minLength: 0 title: type: string - example: null type: type: string - example: null width: type: integer format: int32 - example: null maximum: 12 minimum: 1 x: type: integer format: int32 - example: null maximum: 11 minimum: 0 'y': type: integer format: int32 - example: null minimum: 0 required: - config @@ -29492,14 +26478,11 @@ components: - type WithMetadata: type: object - example: null properties: alertChannelIds: type: array - example: null items: type: string - example: null maxItems: 1024 minItems: 0 uniqueItems: true @@ -29508,23 +26491,19 @@ components: created: type: integer format: int64 - example: null minimum: 1 customPayloadFields: type: array - example: null items: $ref: '#/components/schemas/CustomPayloadField' maxItems: 20 minItems: 0 description: type: string - example: null maxLength: 65536 minLength: 0 enabled: type: boolean - example: null granularity: type: integer format: int32 @@ -29536,36 +26515,29 @@ components: - 900000 - 1200000 - 1800000 - example: null id: type: string - example: null maxLength: 64 minLength: 0 initialCreated: type: integer format: int64 - example: null minimum: 1 mobileAppId: type: string - example: null maxLength: 64 minLength: 0 name: type: string - example: null maxLength: 256 minLength: 0 readOnly: type: boolean - example: null rule: $ref: '#/components/schemas/MobileAppAlertRule' severity: type: integer format: int32 - example: null tagFilterExpression: $ref: '#/components/schemas/TagFilterExpressionElement' threshold: @@ -29574,7 +26546,6 @@ components: $ref: '#/components/schemas/MobileAppTimeThreshold' triggering: type: boolean - example: null required: - alertChannelIds - customPayloadFields @@ -29592,34 +26563,25 @@ components: allOf: - $ref: '#/components/schemas/Author' - type: object - example: null properties: fullName: type: string - example: null - example: null ZChatOpsIntegration: type: object allOf: - $ref: '#/components/schemas/AbstractIntegration' - type: object - example: null properties: bearerAuthToken: type: string - example: null channels: type: array - example: null items: type: string - example: null maxItems: 1 minItems: 0 zchatOpsIncidentsUrl: type: string - example: null - example: null required: - bearerAuthToken - id