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
740 changes: 739 additions & 1 deletion .generator/schemas/v2/openapi.yaml

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions api/datadog/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -759,6 +759,8 @@ func NewConfiguration() *Configuration {
"v2.ListJiraAccounts": false,
"v2.ListJiraIssueTemplates": false,
"v2.UpdateJiraIssueTemplate": false,
"v2.CreateTenancyConfig": false,
"v2.GetTenancyConfigs": false,
"v2.CreateServiceNowTemplate": false,
"v2.DeleteServiceNowTemplate": false,
"v2.GetServiceNowTemplate": false,
Expand Down
4 changes: 4 additions & 0 deletions api/datadogV2/api_incidents.go
Original file line number Diff line number Diff line change
Expand Up @@ -730,6 +730,10 @@ func (a *IncidentsApi) CreateIncidentNotificationTemplate(ctx _context.Context,

// CreateIncidentPostmortemAttachment Create postmortem attachment.
// Create a postmortem attachment for an incident.
//
// The endpoint accepts markdown for notebooks created in Confluence or Google Docs.
// Postmortems created from notebooks need to be formatted using frontend notebook cells,
// in addition to markdown format.
func (a *IncidentsApi) CreateIncidentPostmortemAttachment(ctx _context.Context, incidentId string, body PostmortemAttachmentRequest) (Attachment, *_nethttp.Response, error) {
var (
localVarHTTPMethod = _nethttp.MethodPost
Expand Down
Loading
Loading