@@ -45735,6 +45735,90 @@ components:
4573545735 - id
4573645736 - type
4573745737 type: object
45738+ OCIConfig:
45739+ description: OCI config.
45740+ properties:
45741+ attributes:
45742+ $ref: "#/components/schemas/OCIConfigAttributes"
45743+ id:
45744+ description: The ID of the OCI config.
45745+ example: "1"
45746+ type: string
45747+ type:
45748+ $ref: "#/components/schemas/OCIConfigType"
45749+ required:
45750+ - attributes
45751+ - id
45752+ - type
45753+ type: object
45754+ OCIConfigAttributes:
45755+ description: Attributes for an OCI config.
45756+ properties:
45757+ account_id:
45758+ description: The OCID of the OCI tenancy.
45759+ example: "ocid1.tenancy.oc1..example"
45760+ type: string
45761+ created_at:
45762+ description: The timestamp when the OCI config was created.
45763+ example: "2026-01-01T12:00:00Z"
45764+ type: string
45765+ error_messages:
45766+ description: The error messages for the OCI config.
45767+ items:
45768+ description: An error message string.
45769+ type: string
45770+ nullable: true
45771+ type: array
45772+ status:
45773+ description: The status of the OCI config.
45774+ example: "active"
45775+ type: string
45776+ status_updated_at:
45777+ description: The timestamp when the OCI config status was last updated.
45778+ example: "2026-01-01T12:00:00Z"
45779+ type: string
45780+ updated_at:
45781+ description: The timestamp when the OCI config was last updated.
45782+ example: "2026-01-01T12:00:00Z"
45783+ type: string
45784+ required:
45785+ - account_id
45786+ - created_at
45787+ - status
45788+ - status_updated_at
45789+ - updated_at
45790+ type: object
45791+ OCIConfigType:
45792+ default: oci_config
45793+ description: Type of OCI config.
45794+ enum:
45795+ - oci_config
45796+ example: oci_config
45797+ type: string
45798+ x-enum-varnames:
45799+ - OCI_CONFIG
45800+ OCIConfigsResponse:
45801+ description: List of OCI configs.
45802+ example:
45803+ data:
45804+ - attributes:
45805+ account_id: "ocid1.tenancy.oc1..example"
45806+ created_at: "2026-01-01T12:00:00Z"
45807+ error_messages: []
45808+ status: active
45809+ status_updated_at: "2026-01-01T12:00:00Z"
45810+ updated_at: "2026-01-01T12:00:00Z"
45811+ id: "1"
45812+ type: oci_config
45813+ properties:
45814+ data:
45815+ description: An OCI config.
45816+ items:
45817+ $ref: "#/components/schemas/OCIConfig"
45818+ type: array
45819+ required:
45820+ - data
45821+ type: object
4573845822 ObservabilityPipeline:
4573945823 description: Top-level schema representing a pipeline.
4574045824 properties:
@@ -93158,6 +93242,40 @@ paths:
9315893242 operator: OR
9315993243 permissions:
9316093244 - cloud_cost_management_write
93245+ /api/v2/cost/oci_config:
93246+ get:
93247+ description: List the OCI configs.
93248+ operationId: ListCostOCIConfigs
93249+ responses:
93250+ "200":
93251+ content:
93252+ application/json:
93253+ schema:
93254+ $ref: "#/components/schemas/OCIConfigsResponse"
93255+ description: OK
93256+ "403":
93257+ content:
93258+ application/json:
93259+ schema:
93260+ $ref: "#/components/schemas/APIErrorResponse"
93261+ description: Forbidden
93262+ "429":
93263+ $ref: "#/components/responses/TooManyRequestsResponse"
93264+ security:
93265+ - apiKeyAuth: []
93266+ appKeyAuth: []
93267+ - AuthZ:
93268+ - cloud_cost_management_read
93269+ summary: List Cloud Cost Management OCI configs
93270+ tags:
93271+ - Cloud Cost Management
93272+ "x-permission":
93273+ operator: OR
93274+ permissions:
93275+ - cloud_cost_management_read
93276+ x-unstable: |-
93277+ **Note**: This endpoint is in preview and is subject to change.
93278+ If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
9316193279 /api/v2/cost_by_tag/active_billing_dimensions:
9316293280 get:
9316393281 description: |-
0 commit comments