-
Notifications
You must be signed in to change notification settings - Fork 402
Expand file tree
/
Copy pathfeatureFlags.ts
More file actions
455 lines (409 loc) · 10.8 KB
/
featureFlags.ts
File metadata and controls
455 lines (409 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
import type { OCA } from './features/OneClickApps/types';
import type { Region } from '@linode/api-v4';
import type {
AlertStatusType,
CloudPulseServiceType,
TPAProvider,
} from '@linode/api-v4/lib/profile';
import type { NoticeVariant } from '@linode/ui';
// These flags should correspond with active features flags in LD
export interface TaxDetail {
qi_registration?: string;
tax_id: string;
tax_ids?: Record<
'B2B' | 'B2C',
{
tax_id: string;
tax_name: string;
}
>;
tax_info?: string;
tax_name: string;
}
interface Taxes {
country_tax?: TaxDetail;
// If there is no date, assume the tax should be applied
date?: string;
provincial_tax_ids?: Record<string, TaxDetail>;
}
/**
* @deprecated deprecated in favor of `Taxes` for Akamai Tax information
*/
interface TaxBanner {
country_tax?: TaxDetail;
date: string;
provincial_tax_ids?: Record<string, TaxDetail>;
tax_name: string;
}
interface TaxCollectionRegion {
date?: string;
name: string;
}
interface TaxCollectionBanner {
action?: boolean;
date: string;
regions?: TaxCollectionRegion[];
}
interface BaseFeatureFlag {
enabled: boolean;
}
interface LinodeInterfacesFlag extends BaseFeatureFlag {
/**
* Shows a Beta chip for UI elements related to Linode Interfaces
*/
beta?: boolean;
/**
* Enables the Interface History Table
*/
interface_history?: boolean;
/**
* Shows a New chip for UI elements related to Linode Interfaces
*/
new?: boolean;
}
interface VMHostMaintenanceFlag extends BaseFeatureFlag {
beta: boolean;
hasQueue?: boolean;
new: boolean;
}
interface BetaFeatureFlag extends BaseFeatureFlag {
beta: boolean;
}
interface GeckoFeatureFlag extends BaseFeatureFlag {
ga: boolean;
la: boolean;
}
interface AclpFlag {
/**
* This property indicates whether the feature is in beta
*/
beta: boolean;
/**
* This property indicates whether to bypass account capabilities check or not
*/
bypassAccountCapabilities?: boolean;
/**
* This property indicates whether to show the "Download CSV" icon in the alert details page or not
*/
enableCSVDownload?: boolean;
/**
* This property indicates whether the feature is enabled
*/
enabled: boolean;
/**
* This property indicates whether to enable zoom in charts or not
*/
enableZoomInCharts?: boolean;
/**
* This property indicates for which unit, we need to humanize the values e.g., count, iops etc.,
*/
humanizableUnits?: string[];
/**
* This property indicates whether the feature is new or not
*/
new?: boolean;
/**
* This property indicates whether to show widget dimension filters or not
*/
showWidgetDimensionFilters?: boolean;
}
interface AclpLogsFlag extends BetaFeatureFlag {
/**
* This property indicates whether to bypass account capabilities check or not
*/
bypassAccountCapabilities?: boolean;
/**
* This property indicates whether to show Custom HTTPS destination type
*/
customHttpsEnabled?: boolean;
/**
* This property indicates whether the feature is new or not
*/
new?: boolean;
}
interface LkeEnterpriseFlag extends BaseFeatureFlag {
ga: boolean;
la: boolean;
phase2Mtc: { byoVPC: boolean; dualStack: boolean };
postLa: boolean;
}
interface CloudNatFlag extends BetaFeatureFlag {
ga: boolean;
la: boolean;
}
export interface CloudPulseResourceTypeMapFlag {
dimensionKey: string;
maxResourceSelections?: number;
serviceType: CloudPulseServiceType;
}
interface GpuV2 {
egressBanner: boolean;
transferBanner: boolean;
}
interface AcceleratedPlansFlag {
linodePlans: boolean;
lkePlans: boolean;
}
interface DesignUpdatesBannerFlag extends BaseFeatureFlag {
key: string;
link: string;
}
interface AclpAlerting {
accountAlertLimit: number;
accountMetricLimit: number;
alertDefinitions: boolean;
beta: boolean;
editDisabledStatuses?: AlertStatusType[];
maxDimensionFiltersValues?: number;
maxEmailChannelRecipients?: number;
new?: boolean;
notificationChannels: boolean;
recentActivity: boolean;
systemChannelSupportedServices?: CloudPulseServiceType[]; // linode, dbaas, etc.
}
interface LimitsEvolution {
enabled: boolean;
requestForIncreaseDisabledForAll: boolean;
requestForIncreaseDisabledForInternalAccountsOnly: boolean;
}
interface MTC {
/**
* Whether the MTC feature is enabled.
*/
enabled: boolean;
/**
* Region IDs where MTC is supported (Only used for Linode Migration region dropdown).
*/
supportedRegions: Region['id'][];
}
interface FirewallRulesetsAndPrefixLists extends BetaFeatureFlag {
ga: boolean;
la: boolean;
}
interface ResourceLockFlag {
linodes: boolean;
}
export interface Flags {
acceleratedPlans: AcceleratedPlansFlag;
aclp: AclpFlag;
aclpAlerting: AclpAlerting;
aclpAlertServiceTypeConfig: AclpAlertServiceTypeConfig[];
aclpLogs: AclpLogsFlag;
aclpReadEndpoint: string;
aclpResourceTypeMap: CloudPulseResourceTypeMapFlag[];
aclpServices: Partial<AclpServices>;
apicliButtonCopy: string;
apiMaintenance: APIMaintenance;
apl: boolean;
aplGeneralAvailability: boolean;
aplLkeE: boolean;
blockStorageContextualMetrics: boolean;
blockStorageEncryption: boolean;
blockStorageVolumeLimit: boolean;
cloudManagerDesignUpdatesBanner: DesignUpdatesBannerFlag;
cloudNat: CloudNatFlag;
databaseAdvancedConfig: boolean;
databaseBeta: boolean;
databasePgBouncer: boolean;
databasePremium: boolean;
databaseResize: boolean;
databaseResizeGenerationalPlans: boolean;
databaseRestrictPlanResize: boolean;
databases: boolean;
databaseVpc: boolean;
databaseVpcBeta: boolean;
dbaasV2: BetaFeatureFlag;
dbaasV2MonitorMetrics: BetaFeatureFlag;
disableLargestGbPlans: boolean;
fwRulesetsPrefixLists: FirewallRulesetsAndPrefixLists;
gecko2: GeckoFeatureFlag;
generationalPlansv2: GenerationalPlansFlag;
gpuv2: GpuV2;
hostnameEndpoints: boolean;
iam: BaseFeatureFlag;
iamDelegation: BaseFeatureFlag;
iamLimitedAvailabilityBadges: boolean;
ipv6Sharing: boolean;
kubernetesBlackwellPlans: boolean;
limitsEvolution: LimitsEvolution;
linodeCloneFirewall: boolean;
linodeCreateBanner: LinodeCreateBanner;
linodeDiskEncryption: boolean;
linodeInterfaces: LinodeInterfacesFlag;
lkeEnterprise2: LkeEnterpriseFlag;
mainContentBanner: MainContentBanner;
marketplaceAppOverrides: MarketplaceAppOverride[];
marketplaceV2: boolean;
marketplaceV2GlobalBanner: boolean;
metadata: boolean;
mtc: MTC;
networkLoadBalancer: boolean;
nodebalancerIpv6: boolean;
nodebalancerVpc: boolean;
objectStorageContextualMetrics: boolean;
objectStorageGen2: BaseFeatureFlag;
objectStorageGlobalQuotas: boolean;
objMultiCluster: boolean;
objSummaryPage: boolean;
placementGroupPolicyUpdate: boolean;
privateImageSharing: boolean;
productInformationBanners: ProductInformationBannerFlag[];
promos: boolean;
promotionalOffers: PromotionalOffer[];
referralBannerText: BannerContent;
reserveIp: boolean;
resourceLock: ResourceLockFlag;
secureVmCopy: SecureVMCopy;
selfServeBetas: boolean;
soldOutChips: boolean;
supportTicketSeverity: boolean;
taxBanner: TaxBanner;
taxCollectionBanner: TaxCollectionBanner;
taxes: Taxes;
taxId: BaseFeatureFlag;
tpaProviders: Provider[];
udp: boolean;
vmHostMaintenance: VMHostMaintenanceFlag;
volumeSummaryPage: boolean;
vpcDbaasResources: boolean;
vpcIpv6: boolean;
}
interface MarketplaceAppOverride {
/**
* Define app details that should be overwritten
*
* If you are adding an app that is not already defined in "oneClickApps.ts",
* you *must* include all required OCA properties or Cloud Manager could crash.
*
* Pass `null` to hide the marketplace app
*/
details: null | Partial<OCA>;
/**
* The ID of the StackScript that powers this Marketplace app
*/
stackscriptId: number;
}
type PromotionalOfferFeature =
| 'Kubernetes'
| 'Linodes'
| 'NodeBalancers'
| 'Object Storage'
| 'Volumes';
interface PromotionalOfferButton {
href: string;
text: string;
type: 'primary' | 'secondary';
}
export interface PromotionalOffer {
alt: string;
body: string;
buttons: PromotionalOfferButton[];
displayOnDashboard: boolean;
features: PromotionalOfferFeature[];
footnote: string;
logo: string;
name: string;
}
/**
* If the LD client hasn't been initialized, `flags`
* (from withFeatureFlagConsumer or useFlags) will be an empty object.
*/
export type FlagSet = Partial<Flags>;
export interface MainContentBanner {
key: string;
link: {
text: string;
url: string;
};
text: string;
}
export interface Provider {
displayName: string;
href: string;
icon: any;
name: TPAProvider;
}
interface BannerContent {
link?: {
text: string;
url: string;
};
text: string;
}
interface SecureVMCopy {
bannerLabel?: string;
firewallAuthorizationLabel?: string;
firewallAuthorizationWarning?: string;
firewallDetails?: BannerContent;
generateActionText?: string;
generateDocsLink: string;
generatePrompt?: BannerContent;
generateSuccess?: BannerContent;
linodeCreate?: BannerContent;
}
export type ProductInformationBannerLocation =
| 'Account'
| 'Betas'
| 'Databases'
| 'Delivery'
| 'Domains'
| 'Firewalls'
| 'Identity and Access'
| 'Images'
| 'Kubernetes'
| 'Linodes'
| 'LoadBalancers'
| 'Logs'
| 'Longview'
| 'Managed'
| 'Marketplace'
| 'Network LoadBalancers'
| 'NodeBalancers'
| 'Object Storage'
| 'Placement Groups'
| 'Reserved IPs'
| 'StackScripts'
| 'Volumes'
| 'VPC';
interface ProductInformationBannerDecoration {
important: 'false' | 'true' | boolean;
variant: NoticeVariant;
}
export interface ProductInformationBannerFlag {
// `bannerLocation` is the location where the banner will be rendered
bannerLocation: ProductInformationBannerLocation;
// `decoration` is applies styling to the banner; 'important' with a 'warning' variant is standard
decoration: ProductInformationBannerDecoration;
// The date where the banner should no longer be displayed.
expirationDate: string;
// `key` should be unique across product information banners
key: string;
// `message` is rendered as Markdown (to support links)
message: string;
}
export interface SuppliedMaintenanceData {
body?: string;
id: string;
title?: string;
}
export interface APIMaintenance {
maintenances: SuppliedMaintenanceData[];
}
export interface AclpAlertServiceTypeConfig {
maxResourceSelectionCount: number;
serviceType: CloudPulseServiceType;
// This can be extended to have supportedRegions, supportedFilters and other tags
}
export type AclpServices = {
[serviceType in CloudPulseServiceType]: {
alerts?: AclpFlag;
metrics?: AclpFlag;
};
};
interface GenerationalPlansFlag extends BaseFeatureFlag {
allowedPlans: string[];
}
interface LinodeCreateBanner extends BaseFeatureFlag {
message?: string;
pendo_id?: string;
}