codify-schemas 1.0.59 → 1.0.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts
CHANGED
|
@@ -155,7 +155,7 @@ declare const ApplyRequestDataSchema: {
|
|
|
155
155
|
description: string;
|
|
156
156
|
type: string[];
|
|
157
157
|
};
|
|
158
|
-
|
|
158
|
+
isStateful: {
|
|
159
159
|
description: string;
|
|
160
160
|
type: string;
|
|
161
161
|
};
|
|
@@ -332,7 +332,7 @@ declare const PlanResponseDataSchema: {
|
|
|
332
332
|
type: string;
|
|
333
333
|
enum: string[];
|
|
334
334
|
};
|
|
335
|
-
|
|
335
|
+
isStateful: {
|
|
336
336
|
description: string;
|
|
337
337
|
type: string;
|
|
338
338
|
};
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"description": "The resource name",
|
|
36
36
|
"type": ["string", "null"]
|
|
37
37
|
},
|
|
38
|
-
"
|
|
38
|
+
"isStateful": {
|
|
39
39
|
"description": "Boolean value indicating if this plan was stateful",
|
|
40
40
|
"type": "boolean"
|
|
41
41
|
},
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
|
-
"required": ["operation", "resourceType", "parameters", "
|
|
78
|
+
"required": ["operation", "resourceType", "parameters", "isStateful"]
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
81
|
"required": ["plan"],
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"type": "string",
|
|
15
15
|
"enum": ["create", "destroy", "modify", "recreate", "noop"]
|
|
16
16
|
},
|
|
17
|
-
"
|
|
17
|
+
"isStateful": {
|
|
18
18
|
"description": "Describes if the plan was a stateful plan",
|
|
19
19
|
"type": "boolean"
|
|
20
20
|
},
|
|
@@ -52,6 +52,6 @@
|
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
|
-
"required": ["planId", "
|
|
55
|
+
"required": ["planId", "isStateful", "operation", "resourceType", "parameters"],
|
|
56
56
|
"additionalProperties": false
|
|
57
57
|
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -66,7 +66,7 @@ export interface PlanResponseData {
|
|
|
66
66
|
operation: ResourceOperation;
|
|
67
67
|
resourceName?: string;
|
|
68
68
|
resourceType: string;
|
|
69
|
-
|
|
69
|
+
isStateful: boolean;
|
|
70
70
|
parameters: Array<{
|
|
71
71
|
name: string;
|
|
72
72
|
operation: ParameterOperation;
|
|
@@ -99,7 +99,7 @@ export interface ApplyRequestData {
|
|
|
99
99
|
operation: ResourceOperation;
|
|
100
100
|
resourceName?: string;
|
|
101
101
|
resourceType: string;
|
|
102
|
-
|
|
102
|
+
isStateful: boolean;
|
|
103
103
|
parameters: Array<{
|
|
104
104
|
name: string;
|
|
105
105
|
operation: ParameterOperation;
|