Skip to content

Commit

Permalink
Adding resolve_during_rolling_upgrade and _meta to the deprecation in…
Browse files Browse the repository at this point in the history
…fo API response (#3203) (#3214)

(cherry picked from commit 6874bee)

Co-authored-by: Keith Massey <[email protected]>
  • Loading branch information
github-actions[bot] and masseyke authored Dec 3, 2024
1 parent bd46f4a commit 3a940d8
Showing 1 changed file with 6 additions and 1 deletion.
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>
}

0 comments on commit 3a940d8

Please sign in to comment.