@terasky/backstage-plugin-vcf-automation 1.10.0 → 1.11.0
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/alpha.d.ts +158 -97
- package/package.json +12 -12
package/dist/alpha.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import * as react from 'react';
|
|
2
1
|
import * as _backstage_plugin_catalog_react_alpha from '@backstage/plugin-catalog-react/alpha';
|
|
2
|
+
import * as react from 'react';
|
|
3
|
+
import * as _backstage_filter_predicates from '@backstage/filter-predicates';
|
|
3
4
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
4
5
|
import { Entity } from '@backstage/catalog-model';
|
|
5
6
|
|
|
@@ -18,12 +19,12 @@ declare const vcfDeploymentOverviewCard: _backstage_frontend_plugin_api.Overrida
|
|
|
18
19
|
kind: "entity-card";
|
|
19
20
|
name: "vcf-automation.deployment-overview";
|
|
20
21
|
config: {
|
|
21
|
-
filter:
|
|
22
|
-
type: "content" | "
|
|
22
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
23
|
+
type: "content" | "info" | undefined;
|
|
23
24
|
};
|
|
24
25
|
configInput: {
|
|
25
|
-
filter?:
|
|
26
|
-
type?: "content" | "
|
|
26
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
27
|
+
type?: "content" | "info" | undefined;
|
|
27
28
|
};
|
|
28
29
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: Entity) => boolean, "catalog.entity-filter-function", {
|
|
29
30
|
optional: true;
|
|
@@ -35,7 +36,7 @@ declare const vcfDeploymentOverviewCard: _backstage_frontend_plugin_api.Overrida
|
|
|
35
36
|
inputs: {};
|
|
36
37
|
params: {
|
|
37
38
|
loader: () => Promise<JSX.Element>;
|
|
38
|
-
filter?: string |
|
|
39
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
39
40
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
40
41
|
};
|
|
41
42
|
}>;
|
|
@@ -46,14 +47,16 @@ declare const vcfDeploymentContent: _backstage_frontend_plugin_api.OverridableEx
|
|
|
46
47
|
config: {
|
|
47
48
|
path: string | undefined;
|
|
48
49
|
title: string | undefined;
|
|
49
|
-
filter:
|
|
50
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
50
51
|
group: string | false | undefined;
|
|
52
|
+
icon: string | undefined;
|
|
51
53
|
};
|
|
52
54
|
configInput: {
|
|
53
|
-
filter?:
|
|
55
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
54
56
|
title?: string | undefined;
|
|
55
57
|
path?: string | undefined;
|
|
56
58
|
group?: string | false | undefined;
|
|
59
|
+
icon?: string | undefined;
|
|
57
60
|
};
|
|
58
61
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
59
62
|
optional: true;
|
|
@@ -63,6 +66,8 @@ declare const vcfDeploymentContent: _backstage_frontend_plugin_api.OverridableEx
|
|
|
63
66
|
optional: true;
|
|
64
67
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
65
68
|
optional: true;
|
|
69
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
70
|
+
optional: true;
|
|
66
71
|
}>;
|
|
67
72
|
inputs: {};
|
|
68
73
|
params: {
|
|
@@ -72,9 +77,10 @@ declare const vcfDeploymentContent: _backstage_frontend_plugin_api.OverridableEx
|
|
|
72
77
|
title: string;
|
|
73
78
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
74
79
|
group?: ("documentation" | "deployment" | "operation" | "overview" | "development" | "observability") | (string & {});
|
|
80
|
+
icon?: string | react.ReactElement;
|
|
75
81
|
loader: () => Promise<JSX.Element>;
|
|
76
82
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
77
|
-
filter?: string |
|
|
83
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
78
84
|
};
|
|
79
85
|
}>;
|
|
80
86
|
/** @alpha */
|
|
@@ -82,12 +88,12 @@ declare const vcfVSphereVMOverviewCard: _backstage_frontend_plugin_api.Overridab
|
|
|
82
88
|
kind: "entity-card";
|
|
83
89
|
name: "vcf-automation.vsphere-vm-overview";
|
|
84
90
|
config: {
|
|
85
|
-
filter:
|
|
86
|
-
type: "content" | "
|
|
91
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
92
|
+
type: "content" | "info" | undefined;
|
|
87
93
|
};
|
|
88
94
|
configInput: {
|
|
89
|
-
filter?:
|
|
90
|
-
type?: "content" | "
|
|
95
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
96
|
+
type?: "content" | "info" | undefined;
|
|
91
97
|
};
|
|
92
98
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: Entity) => boolean, "catalog.entity-filter-function", {
|
|
93
99
|
optional: true;
|
|
@@ -99,7 +105,7 @@ declare const vcfVSphereVMOverviewCard: _backstage_frontend_plugin_api.Overridab
|
|
|
99
105
|
inputs: {};
|
|
100
106
|
params: {
|
|
101
107
|
loader: () => Promise<JSX.Element>;
|
|
102
|
-
filter?: string |
|
|
108
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
103
109
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
104
110
|
};
|
|
105
111
|
}>;
|
|
@@ -110,14 +116,16 @@ declare const vcfVSphereVMContent: _backstage_frontend_plugin_api.OverridableExt
|
|
|
110
116
|
config: {
|
|
111
117
|
path: string | undefined;
|
|
112
118
|
title: string | undefined;
|
|
113
|
-
filter:
|
|
119
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
114
120
|
group: string | false | undefined;
|
|
121
|
+
icon: string | undefined;
|
|
115
122
|
};
|
|
116
123
|
configInput: {
|
|
117
|
-
filter?:
|
|
124
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
118
125
|
title?: string | undefined;
|
|
119
126
|
path?: string | undefined;
|
|
120
127
|
group?: string | false | undefined;
|
|
128
|
+
icon?: string | undefined;
|
|
121
129
|
};
|
|
122
130
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
123
131
|
optional: true;
|
|
@@ -127,6 +135,8 @@ declare const vcfVSphereVMContent: _backstage_frontend_plugin_api.OverridableExt
|
|
|
127
135
|
optional: true;
|
|
128
136
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
129
137
|
optional: true;
|
|
138
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
139
|
+
optional: true;
|
|
130
140
|
}>;
|
|
131
141
|
inputs: {};
|
|
132
142
|
params: {
|
|
@@ -136,9 +146,10 @@ declare const vcfVSphereVMContent: _backstage_frontend_plugin_api.OverridableExt
|
|
|
136
146
|
title: string;
|
|
137
147
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
138
148
|
group?: ("documentation" | "deployment" | "operation" | "overview" | "development" | "observability") | (string & {});
|
|
149
|
+
icon?: string | react.ReactElement;
|
|
139
150
|
loader: () => Promise<JSX.Element>;
|
|
140
151
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
141
|
-
filter?: string |
|
|
152
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
142
153
|
};
|
|
143
154
|
}>;
|
|
144
155
|
/** @alpha */
|
|
@@ -146,12 +157,12 @@ declare const vcfProjectOverviewCard: _backstage_frontend_plugin_api.Overridable
|
|
|
146
157
|
kind: "entity-card";
|
|
147
158
|
name: "vcf-automation.project-overview";
|
|
148
159
|
config: {
|
|
149
|
-
filter:
|
|
150
|
-
type: "content" | "
|
|
160
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
161
|
+
type: "content" | "info" | undefined;
|
|
151
162
|
};
|
|
152
163
|
configInput: {
|
|
153
|
-
filter?:
|
|
154
|
-
type?: "content" | "
|
|
164
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
165
|
+
type?: "content" | "info" | undefined;
|
|
155
166
|
};
|
|
156
167
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: Entity) => boolean, "catalog.entity-filter-function", {
|
|
157
168
|
optional: true;
|
|
@@ -163,7 +174,7 @@ declare const vcfProjectOverviewCard: _backstage_frontend_plugin_api.Overridable
|
|
|
163
174
|
inputs: {};
|
|
164
175
|
params: {
|
|
165
176
|
loader: () => Promise<JSX.Element>;
|
|
166
|
-
filter?: string |
|
|
177
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
167
178
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
168
179
|
};
|
|
169
180
|
}>;
|
|
@@ -174,14 +185,16 @@ declare const vcfProjectContent: _backstage_frontend_plugin_api.OverridableExten
|
|
|
174
185
|
config: {
|
|
175
186
|
path: string | undefined;
|
|
176
187
|
title: string | undefined;
|
|
177
|
-
filter:
|
|
188
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
178
189
|
group: string | false | undefined;
|
|
190
|
+
icon: string | undefined;
|
|
179
191
|
};
|
|
180
192
|
configInput: {
|
|
181
|
-
filter?:
|
|
193
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
182
194
|
title?: string | undefined;
|
|
183
195
|
path?: string | undefined;
|
|
184
196
|
group?: string | false | undefined;
|
|
197
|
+
icon?: string | undefined;
|
|
185
198
|
};
|
|
186
199
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
187
200
|
optional: true;
|
|
@@ -191,6 +204,8 @@ declare const vcfProjectContent: _backstage_frontend_plugin_api.OverridableExten
|
|
|
191
204
|
optional: true;
|
|
192
205
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
193
206
|
optional: true;
|
|
207
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
208
|
+
optional: true;
|
|
194
209
|
}>;
|
|
195
210
|
inputs: {};
|
|
196
211
|
params: {
|
|
@@ -200,9 +215,10 @@ declare const vcfProjectContent: _backstage_frontend_plugin_api.OverridableExten
|
|
|
200
215
|
title: string;
|
|
201
216
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
202
217
|
group?: ("documentation" | "deployment" | "operation" | "overview" | "development" | "observability") | (string & {});
|
|
218
|
+
icon?: string | react.ReactElement;
|
|
203
219
|
loader: () => Promise<JSX.Element>;
|
|
204
220
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
205
|
-
filter?: string |
|
|
221
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
206
222
|
};
|
|
207
223
|
}>;
|
|
208
224
|
/** @alpha */
|
|
@@ -210,12 +226,12 @@ declare const vcfGenericResourceOverviewCard: _backstage_frontend_plugin_api.Ove
|
|
|
210
226
|
kind: "entity-card";
|
|
211
227
|
name: "vcf-automation.generic-resource-overview";
|
|
212
228
|
config: {
|
|
213
|
-
filter:
|
|
214
|
-
type: "content" | "
|
|
229
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
230
|
+
type: "content" | "info" | undefined;
|
|
215
231
|
};
|
|
216
232
|
configInput: {
|
|
217
|
-
filter?:
|
|
218
|
-
type?: "content" | "
|
|
233
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
234
|
+
type?: "content" | "info" | undefined;
|
|
219
235
|
};
|
|
220
236
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: Entity) => boolean, "catalog.entity-filter-function", {
|
|
221
237
|
optional: true;
|
|
@@ -227,7 +243,7 @@ declare const vcfGenericResourceOverviewCard: _backstage_frontend_plugin_api.Ove
|
|
|
227
243
|
inputs: {};
|
|
228
244
|
params: {
|
|
229
245
|
loader: () => Promise<JSX.Element>;
|
|
230
|
-
filter?: string |
|
|
246
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
231
247
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
232
248
|
};
|
|
233
249
|
}>;
|
|
@@ -238,14 +254,16 @@ declare const vcfGenericResourceContent: _backstage_frontend_plugin_api.Overrida
|
|
|
238
254
|
config: {
|
|
239
255
|
path: string | undefined;
|
|
240
256
|
title: string | undefined;
|
|
241
|
-
filter:
|
|
257
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
242
258
|
group: string | false | undefined;
|
|
259
|
+
icon: string | undefined;
|
|
243
260
|
};
|
|
244
261
|
configInput: {
|
|
245
|
-
filter?:
|
|
262
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
246
263
|
title?: string | undefined;
|
|
247
264
|
path?: string | undefined;
|
|
248
265
|
group?: string | false | undefined;
|
|
266
|
+
icon?: string | undefined;
|
|
249
267
|
};
|
|
250
268
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
251
269
|
optional: true;
|
|
@@ -255,6 +273,8 @@ declare const vcfGenericResourceContent: _backstage_frontend_plugin_api.Overrida
|
|
|
255
273
|
optional: true;
|
|
256
274
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
257
275
|
optional: true;
|
|
276
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
277
|
+
optional: true;
|
|
258
278
|
}>;
|
|
259
279
|
inputs: {};
|
|
260
280
|
params: {
|
|
@@ -264,9 +284,10 @@ declare const vcfGenericResourceContent: _backstage_frontend_plugin_api.Overrida
|
|
|
264
284
|
title: string;
|
|
265
285
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
266
286
|
group?: ("documentation" | "deployment" | "operation" | "overview" | "development" | "observability") | (string & {});
|
|
287
|
+
icon?: string | react.ReactElement;
|
|
267
288
|
loader: () => Promise<JSX.Element>;
|
|
268
289
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
269
|
-
filter?: string |
|
|
290
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
270
291
|
};
|
|
271
292
|
}>;
|
|
272
293
|
/** @alpha */
|
|
@@ -274,12 +295,12 @@ declare const vcfCCINamespaceOverviewCard: _backstage_frontend_plugin_api.Overri
|
|
|
274
295
|
kind: "entity-card";
|
|
275
296
|
name: "vcf-automation.cci-namespace-overview";
|
|
276
297
|
config: {
|
|
277
|
-
filter:
|
|
278
|
-
type: "content" | "
|
|
298
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
299
|
+
type: "content" | "info" | undefined;
|
|
279
300
|
};
|
|
280
301
|
configInput: {
|
|
281
|
-
filter?:
|
|
282
|
-
type?: "content" | "
|
|
302
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
303
|
+
type?: "content" | "info" | undefined;
|
|
283
304
|
};
|
|
284
305
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: Entity) => boolean, "catalog.entity-filter-function", {
|
|
285
306
|
optional: true;
|
|
@@ -291,7 +312,7 @@ declare const vcfCCINamespaceOverviewCard: _backstage_frontend_plugin_api.Overri
|
|
|
291
312
|
inputs: {};
|
|
292
313
|
params: {
|
|
293
314
|
loader: () => Promise<JSX.Element>;
|
|
294
|
-
filter?: string |
|
|
315
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
295
316
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
296
317
|
};
|
|
297
318
|
}>;
|
|
@@ -302,14 +323,16 @@ declare const vcfCCINamespaceContent: _backstage_frontend_plugin_api.Overridable
|
|
|
302
323
|
config: {
|
|
303
324
|
path: string | undefined;
|
|
304
325
|
title: string | undefined;
|
|
305
|
-
filter:
|
|
326
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
306
327
|
group: string | false | undefined;
|
|
328
|
+
icon: string | undefined;
|
|
307
329
|
};
|
|
308
330
|
configInput: {
|
|
309
|
-
filter?:
|
|
331
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
310
332
|
title?: string | undefined;
|
|
311
333
|
path?: string | undefined;
|
|
312
334
|
group?: string | false | undefined;
|
|
335
|
+
icon?: string | undefined;
|
|
313
336
|
};
|
|
314
337
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
315
338
|
optional: true;
|
|
@@ -319,6 +342,8 @@ declare const vcfCCINamespaceContent: _backstage_frontend_plugin_api.Overridable
|
|
|
319
342
|
optional: true;
|
|
320
343
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
321
344
|
optional: true;
|
|
345
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
346
|
+
optional: true;
|
|
322
347
|
}>;
|
|
323
348
|
inputs: {};
|
|
324
349
|
params: {
|
|
@@ -328,9 +353,10 @@ declare const vcfCCINamespaceContent: _backstage_frontend_plugin_api.Overridable
|
|
|
328
353
|
title: string;
|
|
329
354
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
330
355
|
group?: ("documentation" | "deployment" | "operation" | "overview" | "development" | "observability") | (string & {});
|
|
356
|
+
icon?: string | react.ReactElement;
|
|
331
357
|
loader: () => Promise<JSX.Element>;
|
|
332
358
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
333
|
-
filter?: string |
|
|
359
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
334
360
|
};
|
|
335
361
|
}>;
|
|
336
362
|
/** @alpha */
|
|
@@ -338,12 +364,12 @@ declare const vcfCCIResourceOverviewCard: _backstage_frontend_plugin_api.Overrid
|
|
|
338
364
|
kind: "entity-card";
|
|
339
365
|
name: "vcf-automation.cci-resource-overview";
|
|
340
366
|
config: {
|
|
341
|
-
filter:
|
|
342
|
-
type: "content" | "
|
|
367
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
368
|
+
type: "content" | "info" | undefined;
|
|
343
369
|
};
|
|
344
370
|
configInput: {
|
|
345
|
-
filter?:
|
|
346
|
-
type?: "content" | "
|
|
371
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
372
|
+
type?: "content" | "info" | undefined;
|
|
347
373
|
};
|
|
348
374
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: Entity) => boolean, "catalog.entity-filter-function", {
|
|
349
375
|
optional: true;
|
|
@@ -355,7 +381,7 @@ declare const vcfCCIResourceOverviewCard: _backstage_frontend_plugin_api.Overrid
|
|
|
355
381
|
inputs: {};
|
|
356
382
|
params: {
|
|
357
383
|
loader: () => Promise<JSX.Element>;
|
|
358
|
-
filter?: string |
|
|
384
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
359
385
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
360
386
|
};
|
|
361
387
|
}>;
|
|
@@ -366,14 +392,16 @@ declare const vcfCCIResourceContent: _backstage_frontend_plugin_api.OverridableE
|
|
|
366
392
|
config: {
|
|
367
393
|
path: string | undefined;
|
|
368
394
|
title: string | undefined;
|
|
369
|
-
filter:
|
|
395
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
370
396
|
group: string | false | undefined;
|
|
397
|
+
icon: string | undefined;
|
|
371
398
|
};
|
|
372
399
|
configInput: {
|
|
373
|
-
filter?:
|
|
400
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
374
401
|
title?: string | undefined;
|
|
375
402
|
path?: string | undefined;
|
|
376
403
|
group?: string | false | undefined;
|
|
404
|
+
icon?: string | undefined;
|
|
377
405
|
};
|
|
378
406
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
379
407
|
optional: true;
|
|
@@ -383,6 +411,8 @@ declare const vcfCCIResourceContent: _backstage_frontend_plugin_api.OverridableE
|
|
|
383
411
|
optional: true;
|
|
384
412
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
385
413
|
optional: true;
|
|
414
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
415
|
+
optional: true;
|
|
386
416
|
}>;
|
|
387
417
|
inputs: {};
|
|
388
418
|
params: {
|
|
@@ -392,9 +422,10 @@ declare const vcfCCIResourceContent: _backstage_frontend_plugin_api.OverridableE
|
|
|
392
422
|
title: string;
|
|
393
423
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
394
424
|
group?: ("documentation" | "deployment" | "operation" | "overview" | "development" | "observability") | (string & {});
|
|
425
|
+
icon?: string | react.ReactElement;
|
|
395
426
|
loader: () => Promise<JSX.Element>;
|
|
396
427
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
397
|
-
filter?: string |
|
|
428
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
398
429
|
};
|
|
399
430
|
}>;
|
|
400
431
|
/** @alpha */
|
|
@@ -412,12 +443,12 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
412
443
|
kind: "entity-card";
|
|
413
444
|
name: "vcf-automation.cci-namespace-overview";
|
|
414
445
|
config: {
|
|
415
|
-
filter:
|
|
416
|
-
type: "content" | "
|
|
446
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
447
|
+
type: "content" | "info" | undefined;
|
|
417
448
|
};
|
|
418
449
|
configInput: {
|
|
419
|
-
filter?:
|
|
420
|
-
type?: "content" | "
|
|
450
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
451
|
+
type?: "content" | "info" | undefined;
|
|
421
452
|
};
|
|
422
453
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: Entity) => boolean, "catalog.entity-filter-function", {
|
|
423
454
|
optional: true;
|
|
@@ -429,7 +460,7 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
429
460
|
inputs: {};
|
|
430
461
|
params: {
|
|
431
462
|
loader: () => Promise<JSX.Element>;
|
|
432
|
-
filter?: string |
|
|
463
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
433
464
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
434
465
|
};
|
|
435
466
|
}>;
|
|
@@ -437,12 +468,12 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
437
468
|
kind: "entity-card";
|
|
438
469
|
name: "vcf-automation.cci-resource-overview";
|
|
439
470
|
config: {
|
|
440
|
-
filter:
|
|
441
|
-
type: "content" | "
|
|
471
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
472
|
+
type: "content" | "info" | undefined;
|
|
442
473
|
};
|
|
443
474
|
configInput: {
|
|
444
|
-
filter?:
|
|
445
|
-
type?: "content" | "
|
|
475
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
476
|
+
type?: "content" | "info" | undefined;
|
|
446
477
|
};
|
|
447
478
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: Entity) => boolean, "catalog.entity-filter-function", {
|
|
448
479
|
optional: true;
|
|
@@ -454,7 +485,7 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
454
485
|
inputs: {};
|
|
455
486
|
params: {
|
|
456
487
|
loader: () => Promise<JSX.Element>;
|
|
457
|
-
filter?: string |
|
|
488
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
458
489
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
459
490
|
};
|
|
460
491
|
}>;
|
|
@@ -462,12 +493,12 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
462
493
|
kind: "entity-card";
|
|
463
494
|
name: "vcf-automation.deployment-overview";
|
|
464
495
|
config: {
|
|
465
|
-
filter:
|
|
466
|
-
type: "content" | "
|
|
496
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
497
|
+
type: "content" | "info" | undefined;
|
|
467
498
|
};
|
|
468
499
|
configInput: {
|
|
469
|
-
filter?:
|
|
470
|
-
type?: "content" | "
|
|
500
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
501
|
+
type?: "content" | "info" | undefined;
|
|
471
502
|
};
|
|
472
503
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: Entity) => boolean, "catalog.entity-filter-function", {
|
|
473
504
|
optional: true;
|
|
@@ -479,7 +510,7 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
479
510
|
inputs: {};
|
|
480
511
|
params: {
|
|
481
512
|
loader: () => Promise<JSX.Element>;
|
|
482
|
-
filter?: string |
|
|
513
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
483
514
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
484
515
|
};
|
|
485
516
|
}>;
|
|
@@ -487,12 +518,12 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
487
518
|
kind: "entity-card";
|
|
488
519
|
name: "vcf-automation.generic-resource-overview";
|
|
489
520
|
config: {
|
|
490
|
-
filter:
|
|
491
|
-
type: "content" | "
|
|
521
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
522
|
+
type: "content" | "info" | undefined;
|
|
492
523
|
};
|
|
493
524
|
configInput: {
|
|
494
|
-
filter?:
|
|
495
|
-
type?: "content" | "
|
|
525
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
526
|
+
type?: "content" | "info" | undefined;
|
|
496
527
|
};
|
|
497
528
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: Entity) => boolean, "catalog.entity-filter-function", {
|
|
498
529
|
optional: true;
|
|
@@ -504,7 +535,7 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
504
535
|
inputs: {};
|
|
505
536
|
params: {
|
|
506
537
|
loader: () => Promise<JSX.Element>;
|
|
507
|
-
filter?: string |
|
|
538
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
508
539
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
509
540
|
};
|
|
510
541
|
}>;
|
|
@@ -512,12 +543,12 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
512
543
|
kind: "entity-card";
|
|
513
544
|
name: "vcf-automation.project-overview";
|
|
514
545
|
config: {
|
|
515
|
-
filter:
|
|
516
|
-
type: "content" | "
|
|
546
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
547
|
+
type: "content" | "info" | undefined;
|
|
517
548
|
};
|
|
518
549
|
configInput: {
|
|
519
|
-
filter?:
|
|
520
|
-
type?: "content" | "
|
|
550
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
551
|
+
type?: "content" | "info" | undefined;
|
|
521
552
|
};
|
|
522
553
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: Entity) => boolean, "catalog.entity-filter-function", {
|
|
523
554
|
optional: true;
|
|
@@ -529,7 +560,7 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
529
560
|
inputs: {};
|
|
530
561
|
params: {
|
|
531
562
|
loader: () => Promise<JSX.Element>;
|
|
532
|
-
filter?: string |
|
|
563
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
533
564
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
534
565
|
};
|
|
535
566
|
}>;
|
|
@@ -537,12 +568,12 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
537
568
|
kind: "entity-card";
|
|
538
569
|
name: "vcf-automation.vsphere-vm-overview";
|
|
539
570
|
config: {
|
|
540
|
-
filter:
|
|
541
|
-
type: "content" | "
|
|
571
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
572
|
+
type: "content" | "info" | undefined;
|
|
542
573
|
};
|
|
543
574
|
configInput: {
|
|
544
|
-
filter?:
|
|
545
|
-
type?: "content" | "
|
|
575
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
576
|
+
type?: "content" | "info" | undefined;
|
|
546
577
|
};
|
|
547
578
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: Entity) => boolean, "catalog.entity-filter-function", {
|
|
548
579
|
optional: true;
|
|
@@ -554,7 +585,7 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
554
585
|
inputs: {};
|
|
555
586
|
params: {
|
|
556
587
|
loader: () => Promise<JSX.Element>;
|
|
557
|
-
filter?: string |
|
|
588
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
558
589
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
559
590
|
};
|
|
560
591
|
}>;
|
|
@@ -564,14 +595,16 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
564
595
|
config: {
|
|
565
596
|
path: string | undefined;
|
|
566
597
|
title: string | undefined;
|
|
567
|
-
filter:
|
|
598
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
568
599
|
group: string | false | undefined;
|
|
600
|
+
icon: string | undefined;
|
|
569
601
|
};
|
|
570
602
|
configInput: {
|
|
571
|
-
filter?:
|
|
603
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
572
604
|
title?: string | undefined;
|
|
573
605
|
path?: string | undefined;
|
|
574
606
|
group?: string | false | undefined;
|
|
607
|
+
icon?: string | undefined;
|
|
575
608
|
};
|
|
576
609
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
577
610
|
optional: true;
|
|
@@ -581,6 +614,8 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
581
614
|
optional: true;
|
|
582
615
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
583
616
|
optional: true;
|
|
617
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
618
|
+
optional: true;
|
|
584
619
|
}>;
|
|
585
620
|
inputs: {};
|
|
586
621
|
params: {
|
|
@@ -590,9 +625,10 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
590
625
|
title: string;
|
|
591
626
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
592
627
|
group?: ("documentation" | "deployment" | "operation" | "overview" | "development" | "observability") | (string & {});
|
|
628
|
+
icon?: string | react.ReactElement;
|
|
593
629
|
loader: () => Promise<JSX.Element>;
|
|
594
630
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
595
|
-
filter?: string |
|
|
631
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
596
632
|
};
|
|
597
633
|
}>;
|
|
598
634
|
"entity-content:vcf-automation/vcf-automation.cci-resource-details": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
@@ -601,14 +637,16 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
601
637
|
config: {
|
|
602
638
|
path: string | undefined;
|
|
603
639
|
title: string | undefined;
|
|
604
|
-
filter:
|
|
640
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
605
641
|
group: string | false | undefined;
|
|
642
|
+
icon: string | undefined;
|
|
606
643
|
};
|
|
607
644
|
configInput: {
|
|
608
|
-
filter?:
|
|
645
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
609
646
|
title?: string | undefined;
|
|
610
647
|
path?: string | undefined;
|
|
611
648
|
group?: string | false | undefined;
|
|
649
|
+
icon?: string | undefined;
|
|
612
650
|
};
|
|
613
651
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
614
652
|
optional: true;
|
|
@@ -618,6 +656,8 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
618
656
|
optional: true;
|
|
619
657
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
620
658
|
optional: true;
|
|
659
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
660
|
+
optional: true;
|
|
621
661
|
}>;
|
|
622
662
|
inputs: {};
|
|
623
663
|
params: {
|
|
@@ -627,9 +667,10 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
627
667
|
title: string;
|
|
628
668
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
629
669
|
group?: ("documentation" | "deployment" | "operation" | "overview" | "development" | "observability") | (string & {});
|
|
670
|
+
icon?: string | react.ReactElement;
|
|
630
671
|
loader: () => Promise<JSX.Element>;
|
|
631
672
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
632
|
-
filter?: string |
|
|
673
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
633
674
|
};
|
|
634
675
|
}>;
|
|
635
676
|
"entity-content:vcf-automation/vcf-automation.deployment-details": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
@@ -638,14 +679,16 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
638
679
|
config: {
|
|
639
680
|
path: string | undefined;
|
|
640
681
|
title: string | undefined;
|
|
641
|
-
filter:
|
|
682
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
642
683
|
group: string | false | undefined;
|
|
684
|
+
icon: string | undefined;
|
|
643
685
|
};
|
|
644
686
|
configInput: {
|
|
645
|
-
filter?:
|
|
687
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
646
688
|
title?: string | undefined;
|
|
647
689
|
path?: string | undefined;
|
|
648
690
|
group?: string | false | undefined;
|
|
691
|
+
icon?: string | undefined;
|
|
649
692
|
};
|
|
650
693
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
651
694
|
optional: true;
|
|
@@ -655,6 +698,8 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
655
698
|
optional: true;
|
|
656
699
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
657
700
|
optional: true;
|
|
701
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
702
|
+
optional: true;
|
|
658
703
|
}>;
|
|
659
704
|
inputs: {};
|
|
660
705
|
params: {
|
|
@@ -664,9 +709,10 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
664
709
|
title: string;
|
|
665
710
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
666
711
|
group?: ("documentation" | "deployment" | "operation" | "overview" | "development" | "observability") | (string & {});
|
|
712
|
+
icon?: string | react.ReactElement;
|
|
667
713
|
loader: () => Promise<JSX.Element>;
|
|
668
714
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
669
|
-
filter?: string |
|
|
715
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
670
716
|
};
|
|
671
717
|
}>;
|
|
672
718
|
"entity-content:vcf-automation/vcf-automation.generic-resource-details": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
@@ -675,14 +721,16 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
675
721
|
config: {
|
|
676
722
|
path: string | undefined;
|
|
677
723
|
title: string | undefined;
|
|
678
|
-
filter:
|
|
724
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
679
725
|
group: string | false | undefined;
|
|
726
|
+
icon: string | undefined;
|
|
680
727
|
};
|
|
681
728
|
configInput: {
|
|
682
|
-
filter?:
|
|
729
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
683
730
|
title?: string | undefined;
|
|
684
731
|
path?: string | undefined;
|
|
685
732
|
group?: string | false | undefined;
|
|
733
|
+
icon?: string | undefined;
|
|
686
734
|
};
|
|
687
735
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
688
736
|
optional: true;
|
|
@@ -692,6 +740,8 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
692
740
|
optional: true;
|
|
693
741
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
694
742
|
optional: true;
|
|
743
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
744
|
+
optional: true;
|
|
695
745
|
}>;
|
|
696
746
|
inputs: {};
|
|
697
747
|
params: {
|
|
@@ -701,9 +751,10 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
701
751
|
title: string;
|
|
702
752
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
703
753
|
group?: ("documentation" | "deployment" | "operation" | "overview" | "development" | "observability") | (string & {});
|
|
754
|
+
icon?: string | react.ReactElement;
|
|
704
755
|
loader: () => Promise<JSX.Element>;
|
|
705
756
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
706
|
-
filter?: string |
|
|
757
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
707
758
|
};
|
|
708
759
|
}>;
|
|
709
760
|
"entity-content:vcf-automation/vcf-automation.project-details": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
@@ -712,14 +763,16 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
712
763
|
config: {
|
|
713
764
|
path: string | undefined;
|
|
714
765
|
title: string | undefined;
|
|
715
|
-
filter:
|
|
766
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
716
767
|
group: string | false | undefined;
|
|
768
|
+
icon: string | undefined;
|
|
717
769
|
};
|
|
718
770
|
configInput: {
|
|
719
|
-
filter?:
|
|
771
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
720
772
|
title?: string | undefined;
|
|
721
773
|
path?: string | undefined;
|
|
722
774
|
group?: string | false | undefined;
|
|
775
|
+
icon?: string | undefined;
|
|
723
776
|
};
|
|
724
777
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
725
778
|
optional: true;
|
|
@@ -729,6 +782,8 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
729
782
|
optional: true;
|
|
730
783
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
731
784
|
optional: true;
|
|
785
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
786
|
+
optional: true;
|
|
732
787
|
}>;
|
|
733
788
|
inputs: {};
|
|
734
789
|
params: {
|
|
@@ -738,9 +793,10 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
738
793
|
title: string;
|
|
739
794
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
740
795
|
group?: ("documentation" | "deployment" | "operation" | "overview" | "development" | "observability") | (string & {});
|
|
796
|
+
icon?: string | react.ReactElement;
|
|
741
797
|
loader: () => Promise<JSX.Element>;
|
|
742
798
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
743
|
-
filter?: string |
|
|
799
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
744
800
|
};
|
|
745
801
|
}>;
|
|
746
802
|
"entity-content:vcf-automation/vcf-automation.vsphere-vm-details": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
@@ -749,14 +805,16 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
749
805
|
config: {
|
|
750
806
|
path: string | undefined;
|
|
751
807
|
title: string | undefined;
|
|
752
|
-
filter:
|
|
808
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
753
809
|
group: string | false | undefined;
|
|
810
|
+
icon: string | undefined;
|
|
754
811
|
};
|
|
755
812
|
configInput: {
|
|
756
|
-
filter?:
|
|
813
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
757
814
|
title?: string | undefined;
|
|
758
815
|
path?: string | undefined;
|
|
759
816
|
group?: string | false | undefined;
|
|
817
|
+
icon?: string | undefined;
|
|
760
818
|
};
|
|
761
819
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
762
820
|
optional: true;
|
|
@@ -766,6 +824,8 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
766
824
|
optional: true;
|
|
767
825
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
768
826
|
optional: true;
|
|
827
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
828
|
+
optional: true;
|
|
769
829
|
}>;
|
|
770
830
|
inputs: {};
|
|
771
831
|
params: {
|
|
@@ -775,9 +835,10 @@ declare const vcfAutomationPlugin: _backstage_frontend_plugin_api.OverridableFro
|
|
|
775
835
|
title: string;
|
|
776
836
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
777
837
|
group?: ("documentation" | "deployment" | "operation" | "overview" | "development" | "observability") | (string & {});
|
|
838
|
+
icon?: string | react.ReactElement;
|
|
778
839
|
loader: () => Promise<JSX.Element>;
|
|
779
840
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
780
|
-
filter?: string |
|
|
841
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: Entity) => boolean);
|
|
781
842
|
};
|
|
782
843
|
}>;
|
|
783
844
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@terasky/backstage-plugin-vcf-automation",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./dist/index.esm.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"postpack": "backstage-cli package postpack"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@backstage/core-components": "^0.18.
|
|
40
|
-
"@backstage/core-plugin-api": "^1.12.
|
|
41
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
42
|
-
"@backstage/plugin-catalog-react": "^
|
|
43
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
44
|
-
"@backstage/theme": "^0.7.
|
|
39
|
+
"@backstage/core-components": "^0.18.7",
|
|
40
|
+
"@backstage/core-plugin-api": "^1.12.3",
|
|
41
|
+
"@backstage/frontend-plugin-api": "^0.14.0",
|
|
42
|
+
"@backstage/plugin-catalog-react": "^2.0.0",
|
|
43
|
+
"@backstage/plugin-permission-react": "^0.4.40",
|
|
44
|
+
"@backstage/theme": "^0.7.2",
|
|
45
45
|
"@material-ui/core": "^4.12.4",
|
|
46
46
|
"@material-ui/icons": "^4.11.3",
|
|
47
47
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
48
48
|
"@monaco-editor/react": "^4.7.0",
|
|
49
|
-
"@terasky/backstage-plugin-vcf-automation-common": "^1.2.
|
|
49
|
+
"@terasky/backstage-plugin-vcf-automation-common": "^1.2.11",
|
|
50
50
|
"js-yaml": "^4.1.0",
|
|
51
51
|
"react-use": "^17.6.0"
|
|
52
52
|
},
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@backstage/cli": "^0.35.
|
|
60
|
-
"@backstage/core-app-api": "^1.19.
|
|
61
|
-
"@backstage/dev-utils": "^1.1.
|
|
62
|
-
"@backstage/test-utils": "^1.7.
|
|
59
|
+
"@backstage/cli": "^0.35.4",
|
|
60
|
+
"@backstage/core-app-api": "^1.19.5",
|
|
61
|
+
"@backstage/dev-utils": "^1.1.20",
|
|
62
|
+
"@backstage/test-utils": "^1.7.15",
|
|
63
63
|
"@testing-library/jest-dom": "^5.10.1",
|
|
64
64
|
"@testing-library/react": "^12.1.3",
|
|
65
65
|
"@testing-library/user-event": "^14.0.0",
|