Skip to content

Commit ecf8c21

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 39c88ed of spec repo
1 parent d4e6cce commit ecf8c21

4 files changed

Lines changed: 30 additions & 6 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -980,10 +980,12 @@ components:
980980
type: string
981981
ResourceID:
982982
description: 'Identifier, formatted as `type:id`. Supported types: `dashboard`,
983-
`integration-service`, `integration-webhook`, `notebook`, `reference-table`,
984-
`security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`,
983+
`integration-service`, `integration-webhook`, `notebook`, `powerpack`, `reference-table`,
984+
`security-rule`, `slo`, `synthetics-global-variable`, `synthetics-test`, `synthetics-private-location`,
985+
`monitor`, `workflow`, `app-builder-app`, `connection`, `connection-group`,
985986
`rum-application`, `cross-org-connection`, `spreadsheet`, `on-call-schedule`,
986-
`on-call-escalation-policy`, `on-call-team-routing-rules`, `logs-pipeline`.'
987+
`on-call-escalation-policy`, `on-call-team-routing-rules`, `logs-pipeline`,
988+
`case-management-project`.'
987989
example: dashboard:abc-def-ghi
988990
in: path
989991
name: resource_id
@@ -40874,6 +40876,8 @@ components:
4087440876
type: integer
4087540877
type:
4087640878
$ref: '#/components/schemas/ObservabilityPipelineBufferOptionsMemoryType'
40879+
when_full:
40880+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptionsWhenFull'
4087740881
type: object
4087840882
ObservabilityPipelineMemoryBufferSizeOptions:
4087940883
description: Options for configuring a memory buffer by queue length.
@@ -40885,6 +40889,8 @@ components:
4088540889
type: integer
4088640890
type:
4088740891
$ref: '#/components/schemas/ObservabilityPipelineBufferOptionsMemoryType'
40892+
when_full:
40893+
$ref: '#/components/schemas/ObservabilityPipelineBufferOptionsWhenFull'
4088840894
type: object
4088940895
ObservabilityPipelineMetadataEntry:
4089040896
description: A custom metadata entry.

packages/datadog-api-client-v2/apis/RestrictionPoliciesApi.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -332,23 +332,23 @@ export class RestrictionPoliciesApiResponseProcessor {
332332

333333
export interface RestrictionPoliciesApiDeleteRestrictionPolicyRequest {
334334
/**
335-
* Identifier, formatted as `type:id`. Supported types: `dashboard`, `integration-service`, `integration-webhook`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`, `cross-org-connection`, `spreadsheet`, `on-call-schedule`, `on-call-escalation-policy`, `on-call-team-routing-rules`, `logs-pipeline`.
335+
* Identifier, formatted as `type:id`. Supported types: `dashboard`, `integration-service`, `integration-webhook`, `notebook`, `powerpack`, `reference-table`, `security-rule`, `slo`, `synthetics-global-variable`, `synthetics-test`, `synthetics-private-location`, `monitor`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`, `cross-org-connection`, `spreadsheet`, `on-call-schedule`, `on-call-escalation-policy`, `on-call-team-routing-rules`, `logs-pipeline`, `case-management-project`.
336336
* @type string
337337
*/
338338
resourceId: string;
339339
}
340340

341341
export interface RestrictionPoliciesApiGetRestrictionPolicyRequest {
342342
/**
343-
* Identifier, formatted as `type:id`. Supported types: `dashboard`, `integration-service`, `integration-webhook`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`, `cross-org-connection`, `spreadsheet`, `on-call-schedule`, `on-call-escalation-policy`, `on-call-team-routing-rules`, `logs-pipeline`.
343+
* Identifier, formatted as `type:id`. Supported types: `dashboard`, `integration-service`, `integration-webhook`, `notebook`, `powerpack`, `reference-table`, `security-rule`, `slo`, `synthetics-global-variable`, `synthetics-test`, `synthetics-private-location`, `monitor`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`, `cross-org-connection`, `spreadsheet`, `on-call-schedule`, `on-call-escalation-policy`, `on-call-team-routing-rules`, `logs-pipeline`, `case-management-project`.
344344
* @type string
345345
*/
346346
resourceId: string;
347347
}
348348

349349
export interface RestrictionPoliciesApiUpdateRestrictionPolicyRequest {
350350
/**
351-
* Identifier, formatted as `type:id`. Supported types: `dashboard`, `integration-service`, `integration-webhook`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`, `cross-org-connection`, `spreadsheet`, `on-call-schedule`, `on-call-escalation-policy`, `on-call-team-routing-rules`, `logs-pipeline`.
351+
* Identifier, formatted as `type:id`. Supported types: `dashboard`, `integration-service`, `integration-webhook`, `notebook`, `powerpack`, `reference-table`, `security-rule`, `slo`, `synthetics-global-variable`, `synthetics-test`, `synthetics-private-location`, `monitor`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`, `cross-org-connection`, `spreadsheet`, `on-call-schedule`, `on-call-escalation-policy`, `on-call-team-routing-rules`, `logs-pipeline`, `case-management-project`.
352352
* @type string
353353
*/
354354
resourceId: string;

packages/datadog-api-client-v2/models/ObservabilityPipelineMemoryBufferOptions.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Copyright 2020-Present Datadog, Inc.
55
*/
66
import { ObservabilityPipelineBufferOptionsMemoryType } from "./ObservabilityPipelineBufferOptionsMemoryType";
7+
import { ObservabilityPipelineBufferOptionsWhenFull } from "./ObservabilityPipelineBufferOptionsWhenFull";
78

89
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
910

@@ -19,6 +20,10 @@ export class ObservabilityPipelineMemoryBufferOptions {
1920
* The type of the buffer that will be configured, a memory buffer.
2021
*/
2122
"type"?: ObservabilityPipelineBufferOptionsMemoryType;
23+
/**
24+
* Behavior when the buffer is full (block and stop accepting new events, or drop new events)
25+
*/
26+
"whenFull"?: ObservabilityPipelineBufferOptionsWhenFull;
2227

2328
/**
2429
* A container for additional, undeclared properties.
@@ -45,6 +50,10 @@ export class ObservabilityPipelineMemoryBufferOptions {
4550
baseName: "type",
4651
type: "ObservabilityPipelineBufferOptionsMemoryType",
4752
},
53+
whenFull: {
54+
baseName: "when_full",
55+
type: "ObservabilityPipelineBufferOptionsWhenFull",
56+
},
4857
additionalProperties: {
4958
baseName: "additionalProperties",
5059
type: "{ [key: string]: any; }",

packages/datadog-api-client-v2/models/ObservabilityPipelineMemoryBufferSizeOptions.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Copyright 2020-Present Datadog, Inc.
55
*/
66
import { ObservabilityPipelineBufferOptionsMemoryType } from "./ObservabilityPipelineBufferOptionsMemoryType";
7+
import { ObservabilityPipelineBufferOptionsWhenFull } from "./ObservabilityPipelineBufferOptionsWhenFull";
78

89
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
910

@@ -19,6 +20,10 @@ export class ObservabilityPipelineMemoryBufferSizeOptions {
1920
* The type of the buffer that will be configured, a memory buffer.
2021
*/
2122
"type"?: ObservabilityPipelineBufferOptionsMemoryType;
23+
/**
24+
* Behavior when the buffer is full (block and stop accepting new events, or drop new events)
25+
*/
26+
"whenFull"?: ObservabilityPipelineBufferOptionsWhenFull;
2227

2328
/**
2429
* A container for additional, undeclared properties.
@@ -45,6 +50,10 @@ export class ObservabilityPipelineMemoryBufferSizeOptions {
4550
baseName: "type",
4651
type: "ObservabilityPipelineBufferOptionsMemoryType",
4752
},
53+
whenFull: {
54+
baseName: "when_full",
55+
type: "ObservabilityPipelineBufferOptionsWhenFull",
56+
},
4857
additionalProperties: {
4958
baseName: "additionalProperties",
5059
type: "{ [key: string]: any; }",

0 commit comments

Comments
 (0)