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

Make modified by field nullable for get all API keys #1704

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-07-19 18:52:00.199715",
"spec_repo_commit": "be099b30"
"regenerated": "2024-07-19 19:37:55.394690",
"spec_repo_commit": "a3f2b7d2"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-07-19 18:52:00.257896",
"spec_repo_commit": "be099b30"
"regenerated": "2024-07-19 19:37:55.413403",
"spec_repo_commit": "a3f2b7d2"
}
}
}
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ components:
created_by:
$ref: '#/components/schemas/RelationshipToUser'
modified_by:
$ref: '#/components/schemas/RelationshipToUser'
$ref: '#/components/schemas/NullableRelationshipToUser'
type: object
APIKeyResponse:
description: Response for retrieving an API key.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
import { NullableRelationshipToUser } from "./NullableRelationshipToUser";
import { RelationshipToUser } from "./RelationshipToUser";

import { AttributeTypeMap } from "../../datadog-api-client-common/util";
Expand All @@ -18,7 +19,7 @@ export class APIKeyRelationships {
/**
* Relationship to user.
*/
"modifiedBy"?: RelationshipToUser;
"modifiedBy"?: NullableRelationshipToUser;

/**
* A container for additional, undeclared properties.
Expand All @@ -42,7 +43,7 @@ export class APIKeyRelationships {
},
modifiedBy: {
baseName: "modified_by",
type: "RelationshipToUser",
type: "NullableRelationshipToUser",
},
additionalProperties: {
baseName: "additionalProperties",
Expand Down
Loading