type CreateEphemeralDashboardInput struct {
Project string `json:"project" jsonschema:"Project name to create the ephemeral dashboard in"`
Dashboard string `json:"dashboard" jsonschema:"Ephemeral dashboard JSON as string"`
}
type DeleteEphemeralDashboardInput struct {
Project string `json:"project" jsonschema:"Project name"`
Name string `json:"name" jsonschema:"Ephemeral dashboard name to delete"`
}
type GetEphemeralDashboardByNameInput struct {
Project string `json:"project" jsonschema:"Project name to retrieve the ephemeral dashboard from"`
Name string `json:"name" jsonschema:"Ephemeral dashboard name to retrieve"`
}
type UpdateEphemeralDashboardInput struct {
Project string `json:"project" jsonschema:"Project name to update the ephemeral dashboard in"`
Dashboard string `json:"dashboard" jsonschema:"Ephemeral dashboard JSON as string"`
}