Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Remove user fields that are unsupported by the Incidents API #1850

Merged
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-02 20:43:00.435911",
"spec_repo_commit": "76b7b19d"
"regenerated": "2024-10-03 13:53:56.175825",
"spec_repo_commit": "2c46d95c"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-02 20:43:00.450556",
"spec_repo_commit": "76b7b19d"
"regenerated": "2024-10-03 13:53:56.190365",
"spec_repo_commit": "2c46d95c"
}
}
}
33 changes: 32 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10930,7 +10930,7 @@ components:
IncidentResponseIncludedItem:
description: An object related to an incident that is included in the response.
oneOf:
- $ref: '#/components/schemas/User'
- $ref: '#/components/schemas/IncidentUserData'
- $ref: '#/components/schemas/IncidentAttachmentData'
IncidentResponseMeta:
description: The metadata object containing pagination metadata.
Expand Down Expand Up @@ -11869,6 +11869,37 @@ components:
required:
- data
type: object
IncidentUserAttributes:
description: Attributes of user object returned by the API.
properties:
email:
description: Email of the user.
type: string
handle:
description: Handle of the user.
type: string
icon:
description: URL of the user's icon.
type: string
name:
description: Name of the user.
nullable: true
type: string
uuid:
description: UUID of the user.
type: string
type: object
IncidentUserData:
description: User object returned by the API.
properties:
attributes:
$ref: '#/components/schemas/IncidentUserAttributes'
id:
description: ID of the user.
type: string
type:
$ref: '#/components/schemas/UsersType'
type: object
IncidentUserDefinedFieldType:
description: The incident user defined fields type.
enum:
Expand Down
2 changes: 2 additions & 0 deletions packages/datadog-api-client-v2/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1235,6 +1235,8 @@ export { IncidentUpdateAttributes } from "./models/IncidentUpdateAttributes";
export { IncidentUpdateData } from "./models/IncidentUpdateData";
export { IncidentUpdateRelationships } from "./models/IncidentUpdateRelationships";
export { IncidentUpdateRequest } from "./models/IncidentUpdateRequest";
export { IncidentUserAttributes } from "./models/IncidentUserAttributes";
export { IncidentUserData } from "./models/IncidentUserData";
export { IncidentUserDefinedFieldType } from "./models/IncidentUserDefinedFieldType";
export { IncludeType } from "./models/IncludeType";
export { IntakePayloadAccepted } from "./models/IntakePayloadAccepted";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Copyright 2020-Present Datadog, Inc.
*/
import { IncidentAttachmentData } from "./IncidentAttachmentData";
import { User } from "./User";
import { IncidentUserData } from "./IncidentUserData";

import { UnparsedObject } from "../../datadog-api-client-common/util";

Expand All @@ -13,6 +13,6 @@ import { UnparsedObject } from "../../datadog-api-client-common/util";
*/

export type IncidentResponseIncludedItem =
| User
| IncidentUserData
| IncidentAttachmentData
| UnparsedObject;
84 changes: 84 additions & 0 deletions packages/datadog-api-client-v2/models/IncidentUserAttributes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
/**
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/

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

/**
* Attributes of user object returned by the API.
*/
export class IncidentUserAttributes {
/**
* Email of the user.
*/
"email"?: string;
/**
* Handle of the user.
*/
"handle"?: string;
/**
* URL of the user's icon.
*/
"icon"?: string;
/**
* Name of the user.
*/
"name"?: string;
/**
* UUID of the user.
*/
"uuid"?: string;

/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
"additionalProperties"?: { [key: string]: any };

/**
* @ignore
*/
"_unparsed"?: boolean;

/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap = {
email: {
baseName: "email",
type: "string",
},
handle: {
baseName: "handle",
type: "string",
},
icon: {
baseName: "icon",
type: "string",
},
name: {
baseName: "name",
type: "string",
},
uuid: {
baseName: "uuid",
type: "string",
},
additionalProperties: {
baseName: "additionalProperties",
type: "any",
},
};

/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap {
return IncidentUserAttributes.attributeTypeMap;
}

public constructor() {}
}
70 changes: 70 additions & 0 deletions packages/datadog-api-client-v2/models/IncidentUserData.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/**
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
import { IncidentUserAttributes } from "./IncidentUserAttributes";
import { UsersType } from "./UsersType";

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

/**
* User object returned by the API.
*/
export class IncidentUserData {
/**
* Attributes of user object returned by the API.
*/
"attributes"?: IncidentUserAttributes;
/**
* ID of the user.
*/
"id"?: string;
/**
* Users resource type.
*/
"type"?: UsersType;

/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
"additionalProperties"?: { [key: string]: any };

/**
* @ignore
*/
"_unparsed"?: boolean;

/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap = {
attributes: {
baseName: "attributes",
type: "IncidentUserAttributes",
},
id: {
baseName: "id",
type: "string",
},
type: {
baseName: "type",
type: "UsersType",
},
additionalProperties: {
baseName: "additionalProperties",
type: "any",
},
};

/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap {
return IncidentUserData.attributeTypeMap;
}

public constructor() {}
}
6 changes: 5 additions & 1 deletion packages/datadog-api-client-v2/models/ObjectSerializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,8 @@ import { IncidentUpdateAttributes } from "./IncidentUpdateAttributes";
import { IncidentUpdateData } from "./IncidentUpdateData";
import { IncidentUpdateRelationships } from "./IncidentUpdateRelationships";
import { IncidentUpdateRequest } from "./IncidentUpdateRequest";
import { IncidentUserAttributes } from "./IncidentUserAttributes";
import { IncidentUserData } from "./IncidentUserData";
import { IncidentsResponse } from "./IncidentsResponse";
import { IntakePayloadAccepted } from "./IntakePayloadAccepted";
import { InterfaceAttributes } from "./InterfaceAttributes";
Expand Down Expand Up @@ -2489,6 +2491,8 @@ const typeMap: { [index: string]: any } = {
IncidentUpdateData: IncidentUpdateData,
IncidentUpdateRelationships: IncidentUpdateRelationships,
IncidentUpdateRequest: IncidentUpdateRequest,
IncidentUserAttributes: IncidentUserAttributes,
IncidentUserData: IncidentUserData,
IncidentsResponse: IncidentsResponse,
IntakePayloadAccepted: IntakePayloadAccepted,
InterfaceAttributes: InterfaceAttributes,
Expand Down Expand Up @@ -3368,7 +3372,7 @@ const oneOfMap: { [index: string]: string[] } = {
"JiraIntegrationMetadata",
],
IncidentIntegrationMetadataResponseIncludedItem: ["User"],
IncidentResponseIncludedItem: ["User", "IncidentAttachmentData"],
IncidentResponseIncludedItem: ["IncidentUserData", "IncidentAttachmentData"],
IncidentServiceIncludedItems: ["User"],
IncidentTeamIncludedItems: ["User"],
IncidentTimelineCellCreateAttributes: [
Expand Down
Loading