@@ -31063,9 +31063,17 @@ components:
3106331063 type: string
3106431064 values:
3106531065 description: |-
31066- Column values in row order. The element type matches the column's `type`;
31067- for example a `VARCHAR` column carries strings, a `TIMESTAMP` column carries
31068- Unix-millisecond integers. `null` is allowed for missing values.
31066+ Column values in row order, one entry per result row. The element type
31067+ follows the column's `type`. The following serialization rules should be
31068+ taken into account:
31069+
31070+ - `BIGINT` values are encoded as JSON numbers in the signed 64-bit integer range.
31071+ - `DECIMAL` values are encoded as JSON numbers with 64-bit double precision.
31072+ - `TIMESTAMP` and `DATE` values are encoded as Unix-millisecond integers; a
31073+ `DATE` resolves to midnight UTC.
31074+ - `JSON` values are returned as a JSON-encoded string.
31075+
31076+ `null` is allowed for any column type where a value is missing.
3106931077 example:
3107031078 - web-store
3107131079 - checkout
@@ -135602,9 +135610,6 @@ paths:
135602135610 summary: Execute a tabular DDSQL query
135603135611 tags:
135604135612 - DDSQL
135605- x-unstable: |-
135606- **Note**: This endpoint is in preview and is subject to change.
135607- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
135608135613 /api/v2/ddsql/query/tabular/fetch:
135609135614 post:
135610135615 description: |-
@@ -135713,9 +135718,6 @@ paths:
135713135718 summary: Fetch the result of a DDSQL query
135714135719 tags:
135715135720 - DDSQL
135716- x-unstable: |-
135717- **Note**: This endpoint is in preview and is subject to change.
135718- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
135719135721 /api/v2/deletion/data/{product}:
135720135722 post:
135721135723 description: Creates a data deletion request by providing a query and a timeframe targeting the proper data.
@@ -166072,6 +166074,18 @@ paths:
166072166074 the authenticated org or the request is rejected. Successful calls disable the org
166073166075 and return the resulting state from the downstream service. Requires the
166074166076 `org_management` permission.
166077+
166078+ **Limitations**:
166079+
166080+ - **Organization age**: Only organizations created within the last 10 days can be disabled
166081+ through this endpoint. This restriction is a safeguard against accidentally disabling
166082+ long-running organizations. Attempting to disable an older organization returns a `403 Forbidden`.
166083+ - **Feature flag**: The feature flag `org_disable_self_service_enabled` must be enabled for the
166084+ target organization or one of its ancestor organizations. Contact
166085+ [Datadog support](https://docs.datadoghq.com/help/) to enable this for your organization.
166086+ Requests for organizations without this flag return a `403 Forbidden`.
166087+ - **Already-disabled organizations**: If the target organization is already disabled, the request
166088+ returns a `409 Conflict`.
166075166089 operationId: DisableCustomerOrg
166076166090 requestBody:
166077166091 content:
@@ -166120,6 +166134,12 @@ paths:
166120166134 schema:
166121166135 $ref: "#/components/schemas/JSONAPIErrorResponse"
166122166136 description: Forbidden
166137+ "409":
166138+ content:
166139+ application/json:
166140+ schema:
166141+ $ref: "#/components/schemas/JSONAPIErrorResponse"
166142+ description: Conflict
166123166143 "429":
166124166144 $ref: "#/components/responses/TooManyRequestsResponse"
166125166145 "500":
0 commit comments