Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2623,6 +2623,71 @@ components:
nullable: true
type: array
type: object
EmbeddedAppWidgetDefinition:
additionalProperties: false
description: The embedded app widget displays an App Builder app on a dashboard. Exactly one of `app_id` or `template_id` must be provided; they cannot be provided together.
properties:
app_id:
description: UUID of the App Builder app to embed.
example: "7e7745f9-4343-4927-b038-80934a355915"
type: string
custom_links:
description: List of custom links.
items:
$ref: "#/components/schemas/WidgetCustomLink"
type: array
description:
description: The description of the widget.
maxLength: 5000
type: string
inputs:
description: Inputs passed to the embedded app.
items:
$ref: "#/components/schemas/EmbeddedAppWidgetInput"
type: array
template_id:
description: ID of the built-in app template to embed.
example: ec2_manager
type: string
time:
$ref: "#/components/schemas/WidgetTime"
title:
description: Title of the widget.
type: string
title_align:
$ref: "#/components/schemas/WidgetTextAlign"
title_size:
description: Size of the title.
type: string
type:
$ref: "#/components/schemas/EmbeddedAppWidgetDefinitionType"
required:
- type
type: object
EmbeddedAppWidgetDefinitionType:
default: embedded_app
description: Type of the embedded app widget.
enum:
- embedded_app
example: embedded_app
type: string
x-enum-varnames:
- EMBEDDED_APP
EmbeddedAppWidgetInput:
additionalProperties: false
description: An input passed to the embedded app.
properties:
name:
description: Name of the app input.
example: environment
type: string
value:
description: Value of the app input. The API accepts a string, number, boolean, object, or a non-empty homogeneous array of those types.
example: production
required:
- name
- value
type: object
Event:
description: Object representing an event.
properties:
Expand Down Expand Up @@ -28167,6 +28232,7 @@ components:
- $ref: "#/components/schemas/CheckStatusWidgetDefinition"
- $ref: "#/components/schemas/CohortWidgetDefinition"
- $ref: "#/components/schemas/DistributionWidgetDefinition"
- $ref: "#/components/schemas/EmbeddedAppWidgetDefinition"
- $ref: "#/components/schemas/EventStreamWidgetDefinition"
- $ref: "#/components/schemas/EventTimelineWidgetDefinition"
- $ref: "#/components/schemas/FreeTextWidgetDefinition"
Expand Down
Loading
Loading