@@ -20587,15 +20587,19 @@ components:
2058720587 - data
2058820588 type: object
2058920589 DeletedSuiteResponseData:
20590+ description: Data object for a deleted Synthetic test suite.
2059020591 properties:
2059120592 attributes:
2059220593 $ref: '#/components/schemas/DeletedSuiteResponseDataAttributes'
2059320594 id:
20595+ description: The public ID of the deleted Synthetic test suite.
2059420596 type: string
2059520597 type:
2059620598 $ref: '#/components/schemas/SyntheticsSuiteTypes'
2059720599 type: object
2059820600 DeletedSuiteResponseDataAttributes:
20601+ description: Attributes of a deleted Synthetic test suite, including deletion
20602+ timestamp and public ID.
2059920603 properties:
2060020604 deleted_at:
2060120605 description: Deletion timestamp of the Synthetic suite ID.
@@ -20605,30 +20609,37 @@ components:
2060520609 type: string
2060620610 type: object
2060720611 DeletedSuitesRequestDelete:
20612+ description: Data object for a bulk delete Synthetic test suites request.
2060820613 properties:
2060920614 attributes:
2061020615 $ref: '#/components/schemas/DeletedSuitesRequestDeleteAttributes'
2061120616 id:
20617+ description: An optional identifier for the delete request.
2061220618 type: string
2061320619 type:
2061420620 $ref: '#/components/schemas/DeletedSuitesRequestType'
2061520621 required:
2061620622 - attributes
2061720623 type: object
2061820624 DeletedSuitesRequestDeleteAttributes:
20625+ description: Attributes for a bulk delete Synthetic test suites request.
2061920626 properties:
2062020627 force_delete_dependencies:
20628+ description: Whether to force deletion of suites that have dependent resources.
2062120629 type: boolean
2062220630 public_ids:
20631+ description: List of public IDs of the Synthetic test suites to delete.
2062320632 example:
2062420633 - ''
2062520634 items:
20635+ description: The public ID of a Synthetic test suite to delete.
2062620636 type: string
2062720637 type: array
2062820638 required:
2062920639 - public_ids
2063020640 type: object
2063120641 DeletedSuitesRequestDeleteRequest:
20642+ description: Request body for bulk deleting Synthetic test suites.
2063220643 properties:
2063320644 data:
2063420645 $ref: '#/components/schemas/DeletedSuitesRequestDelete'
@@ -20637,29 +20648,36 @@ components:
2063720648 type: object
2063820649 DeletedSuitesRequestType:
2063920650 default: delete_suites_request
20651+ description: Type for the bulk delete Synthetic suites request, `delete_suites_request`.
2064020652 enum:
2064120653 - delete_suites_request
2064220654 example: delete_suites_request
2064320655 type: string
2064420656 x-enum-varnames:
2064520657 - DELETE_SUITES_REQUEST
2064620658 DeletedSuitesResponse:
20659+ description: Response containing the list of deleted Synthetic test suites.
2064720660 properties:
2064820661 data:
20662+ description: List of deleted Synthetic suite data objects.
2064920663 items:
2065020664 $ref: '#/components/schemas/DeletedSuiteResponseData'
2065120665 type: array
2065220666 type: object
2065320667 DeletedTestResponseData:
20668+ description: Data object for a deleted Synthetic test.
2065420669 properties:
2065520670 attributes:
2065620671 $ref: '#/components/schemas/DeletedTestResponseDataAttributes'
2065720672 id:
20673+ description: The public ID of the deleted Synthetic test.
2065820674 type: string
2065920675 type:
2066020676 $ref: '#/components/schemas/DeletedTestsResponseType'
2066120677 type: object
2066220678 DeletedTestResponseDataAttributes:
20679+ description: Attributes of a deleted Synthetic test, including deletion timestamp
20680+ and public ID.
2066320681 properties:
2066420682 deleted_at:
2066520683 description: Deletion timestamp of the Synthetic test ID.
@@ -20669,30 +20687,37 @@ components:
2066920687 type: string
2067020688 type: object
2067120689 DeletedTestsRequestDelete:
20690+ description: Data object for a bulk delete Synthetic tests request.
2067220691 properties:
2067320692 attributes:
2067420693 $ref: '#/components/schemas/DeletedTestsRequestDeleteAttributes'
2067520694 id:
20695+ description: An optional identifier for the delete request.
2067620696 type: string
2067720697 type:
2067820698 $ref: '#/components/schemas/DeletedTestsRequestType'
2067920699 required:
2068020700 - attributes
2068120701 type: object
2068220702 DeletedTestsRequestDeleteAttributes:
20703+ description: Attributes for a bulk delete Synthetic tests request.
2068320704 properties:
2068420705 force_delete_dependencies:
20706+ description: Whether to force deletion of tests that have dependent resources.
2068520707 type: boolean
2068620708 public_ids:
20709+ description: List of public IDs of the Synthetic tests to delete.
2068720710 example:
2068820711 - ''
2068920712 items:
20713+ description: The public ID of a Synthetic test to delete.
2069020714 type: string
2069120715 type: array
2069220716 required:
2069320717 - public_ids
2069420718 type: object
2069520719 DeletedTestsRequestDeleteRequest:
20720+ description: Request body for bulk deleting Synthetic tests.
2069620721 properties:
2069720722 data:
2069820723 $ref: '#/components/schemas/DeletedTestsRequestDelete'
@@ -20701,21 +20726,25 @@ components:
2070120726 type: object
2070220727 DeletedTestsRequestType:
2070320728 default: delete_tests_request
20729+ description: Type for the bulk delete Synthetic tests request, `delete_tests_request`.
2070420730 enum:
2070520731 - delete_tests_request
2070620732 example: delete_tests_request
2070720733 type: string
2070820734 x-enum-varnames:
2070920735 - DELETE_TESTS_REQUEST
2071020736 DeletedTestsResponse:
20737+ description: Response containing the list of deleted Synthetic tests.
2071120738 properties:
2071220739 data:
20740+ description: List of deleted Synthetic test data objects.
2071320741 items:
2071420742 $ref: '#/components/schemas/DeletedTestResponseData'
2071520743 type: array
2071620744 type: object
2071720745 DeletedTestsResponseType:
2071820746 default: delete_tests
20747+ description: Type for the bulk delete Synthetic tests response, `delete_tests`.
2071920748 enum:
2072020749 - delete_tests
2072120750 example: delete_tests
@@ -28822,13 +28851,15 @@ components:
2882228851 - data
2882328852 type: object
2882428853 GlobalVariableJsonPatchRequestData:
28854+ description: Data object for a JSON Patch request on a Synthetic global variable.
2882528855 properties:
2882628856 attributes:
2882728857 $ref: '#/components/schemas/GlobalVariableJsonPatchRequestDataAttributes'
2882828858 type:
2882928859 $ref: '#/components/schemas/GlobalVariableJsonPatchType'
2883028860 type: object
2883128861 GlobalVariableJsonPatchRequestDataAttributes:
28862+ description: Attributes for a JSON Patch request on a Synthetic global variable.
2883228863 properties:
2883328864 json_patch:
2883428865 description: JSON Patch operations following RFC 6902.
@@ -44821,7 +44852,7 @@ components:
4482144852 Protocol (OTLP) over gRPC and HTTP.
4482244853
4482344854
44824- **Supported pipeline types:** logs, metrics '
44855+ **Supported pipeline types:** logs'
4482544856 properties:
4482644857 grpc_address_key:
4482744858 description: Environment variable name containing the gRPC server address
@@ -44851,7 +44882,6 @@ components:
4485144882 type: object
4485244883 x-pipeline-types:
4485344884 - logs
44854- - metrics
4485544885 ObservabilityPipelineOpentelemetrySourceType:
4485644886 default: opentelemetry
4485744887 description: The source type. The value should always be `opentelemetry`.
@@ -65632,6 +65662,7 @@ components:
6563265662 type: number
6563365663 type: object
6563465664 SuiteCreateEdit:
65665+ description: Data object for creating or editing a Synthetic test suite.
6563565666 properties:
6563665667 attributes:
6563765668 $ref: '#/components/schemas/SyntheticsSuite'
@@ -65642,6 +65673,7 @@ components:
6564265673 - type
6564365674 type: object
6564465675 SuiteCreateEditRequest:
65676+ description: Request body for creating or editing a Synthetic test suite.
6564565677 properties:
6564665678 data:
6564765679 $ref: '#/components/schemas/SuiteCreateEdit'
@@ -65650,6 +65682,7 @@ components:
6565065682 type: object
6565165683 SuiteSearchResponseType:
6565265684 default: suites_search
65685+ description: Type for the Synthetics suites search response, `suites_search`.
6565365686 enum:
6565465687 - suites_search
6565565688 example: suites_search
@@ -66077,6 +66110,7 @@ components:
6607766110 $ref: '#/components/schemas/SyntheticsNetworkTestRequest'
6607866111 type: object
6607966112 SyntheticsNetworkTestEdit:
66113+ description: Data object for creating or editing a Network Path test.
6608066114 properties:
6608166115 attributes:
6608266116 $ref: '#/components/schemas/SyntheticsNetworkTest'
@@ -66253,6 +66287,7 @@ components:
6625366287 type: string
6625466288 type: array
6625566289 tests:
66290+ description: Array of Synthetic tests included in the suite.
6625666291 items:
6625766292 $ref: '#/components/schemas/SyntheticsSuiteTest'
6625866293 type: array
@@ -66306,6 +66341,7 @@ components:
6630666341 attributes:
6630766342 $ref: '#/components/schemas/SyntheticsSuiteSearchResponseDataAttributes'
6630866343 id:
66344+ description: The unique identifier of the suite search response data.
6630966345 format: uuid
6631066346 type: string
6631166347 type:
@@ -66315,10 +66351,12 @@ components:
6631566351 description: Synthetics suite search response data attributes
6631666352 properties:
6631766353 suites:
66354+ description: List of Synthetic suites matching the search query.
6631866355 items:
6631966356 $ref: '#/components/schemas/SyntheticsSuite'
6632066357 type: array
6632166358 total:
66359+ description: Total number of Synthetic suites matching the search query.
6632266360 format: int32
6632366361 maximum: 2147483647
6632466362 type: integer
@@ -66330,6 +66368,7 @@ components:
6633066368 alerting_criticality:
6633166369 $ref: '#/components/schemas/SyntheticsSuiteTestAlertingCriticality'
6633266370 public_id:
66371+ description: The public ID of the Synthetic test included in the suite.
6633366372 example: ''
6633466373 type: string
6633566374 required:
0 commit comments