Skip to content

[Backport 8.x] Adding resolve_during_rolling_upgrade and _meta to the deprecation info API response #3212

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 3, 2024
Merged
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
7 changes: 6 additions & 1 deletion specification/migration/deprecations/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
* under the License.
*/

import { Dictionary } from '@spec_utils/Dictionary'
import { UserDefinedValue } from '@spec_utils/UserDefinedValue'

export enum DeprecationLevel {
none,
info,
Expand All @@ -27,9 +30,11 @@ export enum DeprecationLevel {
}

export class Deprecation {
details: string
details?: string
/** The level property describes the significance of the issue. */
level: DeprecationLevel
message: string
url: string
resolve_during_rolling_upgrade: boolean
_meta?: Dictionary<string, UserDefinedValue>
}
Loading