Sha256: c24f4f7e04544051b41ec695ed63d563a29f0ccc0523b01d70d586baa200a42e
Contents?: true
Size: 772 Bytes
Versions: 19
Compression:
Stored size: 772 Bytes
Contents
# Create a new dashboard with note widget require "datadog_api_client" api_instance = DatadogAPIClient::V1::DashboardsAPI.new body = DatadogAPIClient::V1::Dashboard.new({ title: "Example-Dashboard", description: "", widgets: [ DatadogAPIClient::V1::Widget.new({ layout: DatadogAPIClient::V1::WidgetLayout.new({ x: 0, y: 0, width: 18, height: 24, }), definition: DatadogAPIClient::V1::NoteWidgetDefinition.new({ type: DatadogAPIClient::V1::NoteWidgetDefinitionType::NOTE, content: "# Example Note", }), }), ], template_variables: [], layout_type: DatadogAPIClient::V1::DashboardLayoutType::FREE, is_read_only: false, notify_list: [], }) p api_instance.create_dashboard(body)
Version data entries
19 entries across 19 versions & 1 rubygems