Skip to content
Open
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
30 changes: 27 additions & 3 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34940,6 +34940,14 @@ components:
required:
- data
type: object
DueDateRuleReorderResponse:
description: The response of the due date rule reorder request.
properties:
data:
$ref: '#/components/schemas/DueDateRuleReorderData'
required:
- data
type: object
DueDateRuleResponse:
description: A single due date rule response.
properties:
Expand Down Expand Up @@ -70449,6 +70457,14 @@ components:
required:
- data
type: object
MuteRuleReorderResponse:
description: The response of the mute rule reorder request.
properties:
data:
$ref: '#/components/schemas/MuteRuleReorderData'
required:
- data
type: object
MuteRuleResponse:
description: A single mute rule response.
properties:
Expand Down Expand Up @@ -119311,6 +119327,14 @@ components:
required:
- data
type: object
TicketCreationRuleReorderResponse:
description: The response of the ticket creation rule reorder request.
properties:
data:
$ref: '#/components/schemas/TicketCreationRuleReorderData'
required:
- data
type: object
TicketCreationRuleResponse:
description: A single ticket creation rule response.
properties:
Expand Down Expand Up @@ -196780,7 +196804,7 @@ paths:
- id: "11111111-1111-1111-1111-111111111111"
type: due_date_rules
schema:
$ref: '#/components/schemas/DueDateRuleReorderRequest'
$ref: '#/components/schemas/DueDateRuleReorderResponse'
description: Successfully reordered the due date rules
"400":
content:
Expand Down Expand Up @@ -197228,7 +197252,7 @@ paths:
- id: "11111111-1111-1111-1111-111111111111"
type: mute_rules
schema:
$ref: '#/components/schemas/MuteRuleReorderRequest'
$ref: '#/components/schemas/MuteRuleReorderResponse'
description: Successfully reordered the mute rules
"400":
content:
Expand Down Expand Up @@ -198106,7 +198130,7 @@ paths:
- id: "11111111-1111-1111-1111-111111111111"
type: ticket_creation_rules
schema:
$ref: '#/components/schemas/TicketCreationRuleReorderRequest'
$ref: '#/components/schemas/TicketCreationRuleReorderResponse'
description: Successfully reordered the ticket creation rules
"400":
content:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import com.datadog.api.client.v2.api.SecurityMonitoringApi;
import com.datadog.api.client.v2.model.DueDateRuleReorderItem;
import com.datadog.api.client.v2.model.DueDateRuleReorderRequest;
import com.datadog.api.client.v2.model.DueDateRuleReorderResponse;
import com.datadog.api.client.v2.model.DueDateRuleType;
import java.util.Collections;
import java.util.UUID;
Expand Down Expand Up @@ -33,7 +34,7 @@ public static void main(String[] args) {
.type(DueDateRuleType.DUE_DATE_RULES)));

try {
DueDateRuleReorderRequest result =
DueDateRuleReorderResponse result =
apiInstance.reorderSecurityFindingsAutomationDueDateRules(body);
System.out.println(result);
} catch (ApiException e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import com.datadog.api.client.v2.api.SecurityMonitoringApi;
import com.datadog.api.client.v2.model.MuteRuleReorderItem;
import com.datadog.api.client.v2.model.MuteRuleReorderRequest;
import com.datadog.api.client.v2.model.MuteRuleReorderResponse;
import com.datadog.api.client.v2.model.MuteRuleType;
import java.util.Collections;
import java.util.UUID;
Expand Down Expand Up @@ -33,7 +34,7 @@ public static void main(String[] args) {
.type(MuteRuleType.MUTE_RULES)));

try {
MuteRuleReorderRequest result = apiInstance.reorderSecurityFindingsAutomationMuteRules(body);
MuteRuleReorderResponse result = apiInstance.reorderSecurityFindingsAutomationMuteRules(body);
System.out.println(result);
} catch (ApiException e) {
System.err.println(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import com.datadog.api.client.v2.api.SecurityMonitoringApi;
import com.datadog.api.client.v2.model.TicketCreationRuleReorderItem;
import com.datadog.api.client.v2.model.TicketCreationRuleReorderRequest;
import com.datadog.api.client.v2.model.TicketCreationRuleReorderResponse;
import com.datadog.api.client.v2.model.TicketCreationRuleType;
import java.util.Collections;
import java.util.UUID;
Expand Down Expand Up @@ -34,7 +35,7 @@ public static void main(String[] args) {
.type(TicketCreationRuleType.TICKET_CREATION_RULES)));

try {
TicketCreationRuleReorderRequest result =
TicketCreationRuleReorderResponse result =
apiInstance.reorderSecurityFindingsAutomationTicketCreationRules(body);
System.out.println(result);
} catch (ApiException e) {
Expand Down
Loading
Loading