We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd46f4a commit 3a940d8Copy full SHA for 3a940d8
specification/migration/deprecations/types.ts
@@ -17,6 +17,9 @@
17
* under the License.
18
*/
19
20
+import { Dictionary } from '@spec_utils/Dictionary'
21
+import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
22
+
23
export enum DeprecationLevel {
24
none,
25
info,
@@ -27,9 +30,11 @@ export enum DeprecationLevel {
27
30
}
28
31
29
32
export class Deprecation {
- details: string
33
+ details?: string
34
/** The level property describes the significance of the issue. */
35
level: DeprecationLevel
36
message: string
37
url: string
38
+ resolve_during_rolling_upgrade: boolean
39
+ _meta?: Dictionary<string, UserDefinedValue>
40
0 commit comments