@firestartr/cli 1.54.0-snapshot-1 → 1.54.0-snapshot-3
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/build/index.js +390 -511
- package/build/packages/cdk8s_renderer/imports/firestartr.dev.d.ts +7 -1
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/common-meta.schema.d.ts +0 -6
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/index.d.ts +60 -97
- package/build/packages/cdk8s_renderer/src/claims/external-secrets/external-secrets.schema.d.ts +18 -20
- package/build/packages/cdk8s_renderer/src/claims/external-secrets/index.d.ts +18 -20
- package/build/packages/cdk8s_renderer/src/claims/github/component.schema.d.ts +8 -6
- package/build/packages/cdk8s_renderer/src/claims/github/group.schema.d.ts +0 -6
- package/build/packages/cdk8s_renderer/src/claims/github/index.d.ts +8 -24
- package/build/packages/cdk8s_renderer/src/claims/github/orgwebhook.schema.d.ts +0 -6
- package/build/packages/cdk8s_renderer/src/claims/github/repository.d.ts +1 -0
- package/build/packages/cdk8s_renderer/src/claims/github/user.schema.d.ts +0 -6
- package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/index.d.ts +34 -2
- package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/terraform.schema.d.ts +34 -2
- package/build/packages/cdk8s_renderer/src/loader/lazy_loader.d.ts +1 -1
- package/build/packages/cdk8s_renderer/src/refsSorter/refsExtractor.d.ts +1 -1
- package/build/packages/operator/src/metrics/CRStates.d.ts +1 -0
- package/build/packages/operator/src/syncCtl.d.ts +1 -0
- package/build/packages/operator/src/utils/index.d.ts +0 -7
- package/build/packages/operator/src/utils/operationErrorMessages.d.ts +1 -0
- package/build/packages/provisioner/src/resources/resource.d.ts +1 -4
- package/build/packages/terraform_provisioner/src/resolutor/index.d.ts +1 -0
- package/build/packages/terraform_provisioner/src/resolutor/resolver.d.ts +1 -0
- package/package.json +1 -1
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/sync-config.schema.d.ts +0 -47
|
@@ -1014,6 +1014,10 @@ export interface FirestartrGithubRepositorySpecRepo {
|
|
|
1014
1014
|
* @schema FirestartrGithubRepositorySpecRepo#pages
|
|
1015
1015
|
*/
|
|
1016
1016
|
readonly pages?: any;
|
|
1017
|
+
/**
|
|
1018
|
+
* @schema FirestartrGithubRepositorySpecRepo#topics
|
|
1019
|
+
*/
|
|
1020
|
+
readonly topics?: string[];
|
|
1017
1021
|
/**
|
|
1018
1022
|
* @schema FirestartrGithubRepositorySpecRepo#visibility
|
|
1019
1023
|
*/
|
|
@@ -2491,7 +2495,9 @@ export declare enum FirestartrTerraformWorkspaceSpecReferencesRefKind {
|
|
|
2491
2495
|
/** FirestartrTerraformWorkspace */
|
|
2492
2496
|
FIRESTARTR_TERRAFORM_WORKSPACE = "FirestartrTerraformWorkspace",
|
|
2493
2497
|
/** ExternalSecret */
|
|
2494
|
-
EXTERNAL_SECRET = "ExternalSecret"
|
|
2498
|
+
EXTERNAL_SECRET = "ExternalSecret",
|
|
2499
|
+
/** Secret */
|
|
2500
|
+
SECRET = "Secret"
|
|
2495
2501
|
}
|
|
2496
2502
|
/**
|
|
2497
2503
|
* @schema FirestartrTerraformWorkspaceSpecContextBackendRefKind
|
|
@@ -95,57 +95,6 @@ declare const schemas: {
|
|
|
95
95
|
};
|
|
96
96
|
additionalProperties: boolean;
|
|
97
97
|
};
|
|
98
|
-
PolicyType: {
|
|
99
|
-
$id: string;
|
|
100
|
-
type: string;
|
|
101
|
-
description: string;
|
|
102
|
-
enum: string[];
|
|
103
|
-
};
|
|
104
|
-
};
|
|
105
|
-
} | {
|
|
106
|
-
$id: string;
|
|
107
|
-
definitions: {
|
|
108
|
-
SyncConfig: {
|
|
109
|
-
$id: string;
|
|
110
|
-
type: string;
|
|
111
|
-
description: string;
|
|
112
|
-
properties: {
|
|
113
|
-
enabled: {
|
|
114
|
-
type: string;
|
|
115
|
-
description: string;
|
|
116
|
-
};
|
|
117
|
-
period: {
|
|
118
|
-
type: string;
|
|
119
|
-
pattern: string;
|
|
120
|
-
description: string;
|
|
121
|
-
};
|
|
122
|
-
schedule: {
|
|
123
|
-
type: string;
|
|
124
|
-
description: string;
|
|
125
|
-
};
|
|
126
|
-
schedule_timezone: {
|
|
127
|
-
type: string;
|
|
128
|
-
description: string;
|
|
129
|
-
};
|
|
130
|
-
policy: {
|
|
131
|
-
type: string;
|
|
132
|
-
description: string;
|
|
133
|
-
};
|
|
134
|
-
};
|
|
135
|
-
additionalProperties: boolean;
|
|
136
|
-
required: string[];
|
|
137
|
-
oneOf: ({
|
|
138
|
-
required: string[];
|
|
139
|
-
not?: undefined;
|
|
140
|
-
} | {
|
|
141
|
-
not: {
|
|
142
|
-
anyOf: {
|
|
143
|
-
required: string[];
|
|
144
|
-
}[];
|
|
145
|
-
};
|
|
146
|
-
required?: undefined;
|
|
147
|
-
})[];
|
|
148
|
-
};
|
|
149
98
|
};
|
|
150
99
|
} | {
|
|
151
100
|
$schema: string;
|
|
@@ -430,9 +379,6 @@ declare const schemas: {
|
|
|
430
379
|
} | {
|
|
431
380
|
type: string;
|
|
432
381
|
properties: {
|
|
433
|
-
policy: {
|
|
434
|
-
$ref: string;
|
|
435
|
-
};
|
|
436
382
|
privacy: {
|
|
437
383
|
type: string;
|
|
438
384
|
enum: string[];
|
|
@@ -443,9 +389,6 @@ declare const schemas: {
|
|
|
443
389
|
org: {
|
|
444
390
|
type: string;
|
|
445
391
|
};
|
|
446
|
-
sync: {
|
|
447
|
-
$ref: string;
|
|
448
|
-
};
|
|
449
392
|
};
|
|
450
393
|
required: string[];
|
|
451
394
|
$ref?: undefined;
|
|
@@ -468,9 +411,6 @@ declare const schemas: {
|
|
|
468
411
|
} | {
|
|
469
412
|
type: string;
|
|
470
413
|
properties: {
|
|
471
|
-
policy: {
|
|
472
|
-
$ref: string;
|
|
473
|
-
};
|
|
474
414
|
role: {
|
|
475
415
|
type: string;
|
|
476
416
|
enum: string[];
|
|
@@ -478,9 +418,6 @@ declare const schemas: {
|
|
|
478
418
|
org: {
|
|
479
419
|
type: string;
|
|
480
420
|
};
|
|
481
|
-
sync: {
|
|
482
|
-
$ref: string;
|
|
483
|
-
};
|
|
484
421
|
};
|
|
485
422
|
required: string[];
|
|
486
423
|
$ref?: undefined;
|
|
@@ -548,9 +485,6 @@ declare const schemas: {
|
|
|
548
485
|
} | {
|
|
549
486
|
type: string;
|
|
550
487
|
properties: {
|
|
551
|
-
policy: {
|
|
552
|
-
$ref: string;
|
|
553
|
-
};
|
|
554
488
|
org: {
|
|
555
489
|
type: string;
|
|
556
490
|
description: string;
|
|
@@ -559,9 +493,6 @@ declare const schemas: {
|
|
|
559
493
|
type: string;
|
|
560
494
|
enum: string[];
|
|
561
495
|
};
|
|
562
|
-
sync: {
|
|
563
|
-
$ref: string;
|
|
564
|
-
};
|
|
565
496
|
features: {
|
|
566
497
|
type: string;
|
|
567
498
|
items: {
|
|
@@ -574,6 +505,14 @@ declare const schemas: {
|
|
|
574
505
|
secrets: {
|
|
575
506
|
$ref: string;
|
|
576
507
|
};
|
|
508
|
+
topics: {
|
|
509
|
+
type: string;
|
|
510
|
+
items: {
|
|
511
|
+
type: string;
|
|
512
|
+
maxLength: number;
|
|
513
|
+
pattern: string;
|
|
514
|
+
};
|
|
515
|
+
};
|
|
577
516
|
};
|
|
578
517
|
required: string[];
|
|
579
518
|
$ref?: undefined;
|
|
@@ -596,9 +535,6 @@ declare const schemas: {
|
|
|
596
535
|
} | {
|
|
597
536
|
type: string;
|
|
598
537
|
properties: {
|
|
599
|
-
policy: {
|
|
600
|
-
$ref: string;
|
|
601
|
-
};
|
|
602
538
|
orgName: {
|
|
603
539
|
type: string;
|
|
604
540
|
description: string;
|
|
@@ -632,9 +568,6 @@ declare const schemas: {
|
|
|
632
568
|
};
|
|
633
569
|
required: string[];
|
|
634
570
|
};
|
|
635
|
-
sync: {
|
|
636
|
-
$ref: string;
|
|
637
|
-
};
|
|
638
571
|
};
|
|
639
572
|
required: string[];
|
|
640
573
|
$ref?: undefined;
|
|
@@ -739,7 +672,8 @@ declare const schemas: {
|
|
|
739
672
|
type: string;
|
|
740
673
|
properties: {
|
|
741
674
|
policy: {
|
|
742
|
-
|
|
675
|
+
type: string;
|
|
676
|
+
enum: string[];
|
|
743
677
|
};
|
|
744
678
|
name: {
|
|
745
679
|
type: string;
|
|
@@ -749,7 +683,38 @@ declare const schemas: {
|
|
|
749
683
|
enum: string[];
|
|
750
684
|
};
|
|
751
685
|
sync: {
|
|
752
|
-
|
|
686
|
+
type: string;
|
|
687
|
+
properties: {
|
|
688
|
+
enabled: {
|
|
689
|
+
type: string;
|
|
690
|
+
};
|
|
691
|
+
period: {
|
|
692
|
+
type: string;
|
|
693
|
+
pattern: string;
|
|
694
|
+
};
|
|
695
|
+
schedule: {
|
|
696
|
+
type: string;
|
|
697
|
+
};
|
|
698
|
+
schedule_timezone: {
|
|
699
|
+
type: string;
|
|
700
|
+
};
|
|
701
|
+
policy: {
|
|
702
|
+
type: string;
|
|
703
|
+
};
|
|
704
|
+
};
|
|
705
|
+
additionalProperties: boolean;
|
|
706
|
+
required: string[];
|
|
707
|
+
oneOf: ({
|
|
708
|
+
required: string[];
|
|
709
|
+
not?: undefined;
|
|
710
|
+
} | {
|
|
711
|
+
not: {
|
|
712
|
+
anyOf: {
|
|
713
|
+
required: string[];
|
|
714
|
+
}[];
|
|
715
|
+
};
|
|
716
|
+
required?: undefined;
|
|
717
|
+
})[];
|
|
753
718
|
};
|
|
754
719
|
valuesSchema: {
|
|
755
720
|
type: string;
|
|
@@ -930,6 +895,8 @@ declare const schemas: {
|
|
|
930
895
|
properties: {
|
|
931
896
|
secretName: {
|
|
932
897
|
type: string;
|
|
898
|
+
description: string;
|
|
899
|
+
pattern: string;
|
|
933
900
|
};
|
|
934
901
|
remoteRef: {
|
|
935
902
|
type: string;
|
|
@@ -990,31 +957,27 @@ declare const schemas: {
|
|
|
990
957
|
description: string;
|
|
991
958
|
allOf: ({
|
|
992
959
|
$ref: string;
|
|
960
|
+
type?: undefined;
|
|
961
|
+
properties?: undefined;
|
|
962
|
+
required?: undefined;
|
|
993
963
|
anyOf?: undefined;
|
|
994
964
|
} | {
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
};
|
|
1000
|
-
secretStore: {
|
|
1001
|
-
$ref: string;
|
|
1002
|
-
};
|
|
1003
|
-
pushSecrets?: undefined;
|
|
965
|
+
type: string;
|
|
966
|
+
properties: {
|
|
967
|
+
externalSecrets: {
|
|
968
|
+
$ref: string;
|
|
1004
969
|
};
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
};
|
|
1011
|
-
secretStore: {
|
|
1012
|
-
$ref: string;
|
|
1013
|
-
};
|
|
1014
|
-
externalSecrets?: undefined;
|
|
970
|
+
secretStore: {
|
|
971
|
+
$ref: string;
|
|
972
|
+
};
|
|
973
|
+
pushSecrets: {
|
|
974
|
+
$ref: string;
|
|
1015
975
|
};
|
|
976
|
+
};
|
|
977
|
+
required: string[];
|
|
978
|
+
anyOf: {
|
|
1016
979
|
required: string[];
|
|
1017
|
-
}
|
|
980
|
+
}[];
|
|
1018
981
|
$ref?: undefined;
|
|
1019
982
|
})[];
|
|
1020
983
|
};
|
package/build/packages/cdk8s_renderer/src/claims/external-secrets/external-secrets.schema.d.ts
CHANGED
|
@@ -31,6 +31,8 @@ declare const _default: {
|
|
|
31
31
|
properties: {
|
|
32
32
|
secretName: {
|
|
33
33
|
type: string;
|
|
34
|
+
description: string;
|
|
35
|
+
pattern: string;
|
|
34
36
|
};
|
|
35
37
|
remoteRef: {
|
|
36
38
|
type: string;
|
|
@@ -91,31 +93,27 @@ declare const _default: {
|
|
|
91
93
|
description: string;
|
|
92
94
|
allOf: ({
|
|
93
95
|
$ref: string;
|
|
96
|
+
type?: undefined;
|
|
97
|
+
properties?: undefined;
|
|
98
|
+
required?: undefined;
|
|
94
99
|
anyOf?: undefined;
|
|
95
100
|
} | {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
};
|
|
101
|
-
secretStore: {
|
|
102
|
-
$ref: string;
|
|
103
|
-
};
|
|
104
|
-
pushSecrets?: undefined;
|
|
101
|
+
type: string;
|
|
102
|
+
properties: {
|
|
103
|
+
externalSecrets: {
|
|
104
|
+
$ref: string;
|
|
105
105
|
};
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
};
|
|
112
|
-
secretStore: {
|
|
113
|
-
$ref: string;
|
|
114
|
-
};
|
|
115
|
-
externalSecrets?: undefined;
|
|
106
|
+
secretStore: {
|
|
107
|
+
$ref: string;
|
|
108
|
+
};
|
|
109
|
+
pushSecrets: {
|
|
110
|
+
$ref: string;
|
|
116
111
|
};
|
|
112
|
+
};
|
|
113
|
+
required: string[];
|
|
114
|
+
anyOf: {
|
|
117
115
|
required: string[];
|
|
118
|
-
}
|
|
116
|
+
}[];
|
|
119
117
|
$ref?: undefined;
|
|
120
118
|
})[];
|
|
121
119
|
};
|
|
@@ -31,6 +31,8 @@ export declare const SecretsSchemas: {
|
|
|
31
31
|
properties: {
|
|
32
32
|
secretName: {
|
|
33
33
|
type: string;
|
|
34
|
+
description: string;
|
|
35
|
+
pattern: string;
|
|
34
36
|
};
|
|
35
37
|
remoteRef: {
|
|
36
38
|
type: string;
|
|
@@ -91,31 +93,27 @@ export declare const SecretsSchemas: {
|
|
|
91
93
|
description: string;
|
|
92
94
|
allOf: ({
|
|
93
95
|
$ref: string;
|
|
96
|
+
type?: undefined;
|
|
97
|
+
properties?: undefined;
|
|
98
|
+
required?: undefined;
|
|
94
99
|
anyOf?: undefined;
|
|
95
100
|
} | {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
};
|
|
101
|
-
secretStore: {
|
|
102
|
-
$ref: string;
|
|
103
|
-
};
|
|
104
|
-
pushSecrets?: undefined;
|
|
101
|
+
type: string;
|
|
102
|
+
properties: {
|
|
103
|
+
externalSecrets: {
|
|
104
|
+
$ref: string;
|
|
105
105
|
};
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
};
|
|
112
|
-
secretStore: {
|
|
113
|
-
$ref: string;
|
|
114
|
-
};
|
|
115
|
-
externalSecrets?: undefined;
|
|
106
|
+
secretStore: {
|
|
107
|
+
$ref: string;
|
|
108
|
+
};
|
|
109
|
+
pushSecrets: {
|
|
110
|
+
$ref: string;
|
|
116
111
|
};
|
|
112
|
+
};
|
|
113
|
+
required: string[];
|
|
114
|
+
anyOf: {
|
|
117
115
|
required: string[];
|
|
118
|
-
}
|
|
116
|
+
}[];
|
|
119
117
|
$ref?: undefined;
|
|
120
118
|
})[];
|
|
121
119
|
};
|
|
@@ -15,9 +15,6 @@ declare const _default: {
|
|
|
15
15
|
} | {
|
|
16
16
|
type: string;
|
|
17
17
|
properties: {
|
|
18
|
-
policy: {
|
|
19
|
-
$ref: string;
|
|
20
|
-
};
|
|
21
18
|
org: {
|
|
22
19
|
type: string;
|
|
23
20
|
description: string;
|
|
@@ -26,9 +23,6 @@ declare const _default: {
|
|
|
26
23
|
type: string;
|
|
27
24
|
enum: string[];
|
|
28
25
|
};
|
|
29
|
-
sync: {
|
|
30
|
-
$ref: string;
|
|
31
|
-
};
|
|
32
26
|
features: {
|
|
33
27
|
type: string;
|
|
34
28
|
items: {
|
|
@@ -41,6 +35,14 @@ declare const _default: {
|
|
|
41
35
|
secrets: {
|
|
42
36
|
$ref: string;
|
|
43
37
|
};
|
|
38
|
+
topics: {
|
|
39
|
+
type: string;
|
|
40
|
+
items: {
|
|
41
|
+
type: string;
|
|
42
|
+
maxLength: number;
|
|
43
|
+
pattern: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
44
46
|
};
|
|
45
47
|
required: string[];
|
|
46
48
|
$ref?: undefined;
|
|
@@ -14,9 +14,6 @@ declare const _default: {
|
|
|
14
14
|
} | {
|
|
15
15
|
type: string;
|
|
16
16
|
properties: {
|
|
17
|
-
policy: {
|
|
18
|
-
$ref: string;
|
|
19
|
-
};
|
|
20
17
|
privacy: {
|
|
21
18
|
type: string;
|
|
22
19
|
enum: string[];
|
|
@@ -27,9 +24,6 @@ declare const _default: {
|
|
|
27
24
|
org: {
|
|
28
25
|
type: string;
|
|
29
26
|
};
|
|
30
|
-
sync: {
|
|
31
|
-
$ref: string;
|
|
32
|
-
};
|
|
33
27
|
};
|
|
34
28
|
required: string[];
|
|
35
29
|
$ref?: undefined;
|
|
@@ -14,9 +14,6 @@ export declare const GithubSchemas: ({
|
|
|
14
14
|
} | {
|
|
15
15
|
type: string;
|
|
16
16
|
properties: {
|
|
17
|
-
policy: {
|
|
18
|
-
$ref: string;
|
|
19
|
-
};
|
|
20
17
|
privacy: {
|
|
21
18
|
type: string;
|
|
22
19
|
enum: string[];
|
|
@@ -27,9 +24,6 @@ export declare const GithubSchemas: ({
|
|
|
27
24
|
org: {
|
|
28
25
|
type: string;
|
|
29
26
|
};
|
|
30
|
-
sync: {
|
|
31
|
-
$ref: string;
|
|
32
|
-
};
|
|
33
27
|
};
|
|
34
28
|
required: string[];
|
|
35
29
|
$ref?: undefined;
|
|
@@ -52,9 +46,6 @@ export declare const GithubSchemas: ({
|
|
|
52
46
|
} | {
|
|
53
47
|
type: string;
|
|
54
48
|
properties: {
|
|
55
|
-
policy: {
|
|
56
|
-
$ref: string;
|
|
57
|
-
};
|
|
58
49
|
role: {
|
|
59
50
|
type: string;
|
|
60
51
|
enum: string[];
|
|
@@ -62,9 +53,6 @@ export declare const GithubSchemas: ({
|
|
|
62
53
|
org: {
|
|
63
54
|
type: string;
|
|
64
55
|
};
|
|
65
|
-
sync: {
|
|
66
|
-
$ref: string;
|
|
67
|
-
};
|
|
68
56
|
};
|
|
69
57
|
required: string[];
|
|
70
58
|
$ref?: undefined;
|
|
@@ -132,9 +120,6 @@ export declare const GithubSchemas: ({
|
|
|
132
120
|
} | {
|
|
133
121
|
type: string;
|
|
134
122
|
properties: {
|
|
135
|
-
policy: {
|
|
136
|
-
$ref: string;
|
|
137
|
-
};
|
|
138
123
|
org: {
|
|
139
124
|
type: string;
|
|
140
125
|
description: string;
|
|
@@ -143,9 +128,6 @@ export declare const GithubSchemas: ({
|
|
|
143
128
|
type: string;
|
|
144
129
|
enum: string[];
|
|
145
130
|
};
|
|
146
|
-
sync: {
|
|
147
|
-
$ref: string;
|
|
148
|
-
};
|
|
149
131
|
features: {
|
|
150
132
|
type: string;
|
|
151
133
|
items: {
|
|
@@ -158,6 +140,14 @@ export declare const GithubSchemas: ({
|
|
|
158
140
|
secrets: {
|
|
159
141
|
$ref: string;
|
|
160
142
|
};
|
|
143
|
+
topics: {
|
|
144
|
+
type: string;
|
|
145
|
+
items: {
|
|
146
|
+
type: string;
|
|
147
|
+
maxLength: number;
|
|
148
|
+
pattern: string;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
161
151
|
};
|
|
162
152
|
required: string[];
|
|
163
153
|
$ref?: undefined;
|
|
@@ -180,9 +170,6 @@ export declare const GithubSchemas: ({
|
|
|
180
170
|
} | {
|
|
181
171
|
type: string;
|
|
182
172
|
properties: {
|
|
183
|
-
policy: {
|
|
184
|
-
$ref: string;
|
|
185
|
-
};
|
|
186
173
|
orgName: {
|
|
187
174
|
type: string;
|
|
188
175
|
description: string;
|
|
@@ -216,9 +203,6 @@ export declare const GithubSchemas: ({
|
|
|
216
203
|
};
|
|
217
204
|
required: string[];
|
|
218
205
|
};
|
|
219
|
-
sync: {
|
|
220
|
-
$ref: string;
|
|
221
|
-
};
|
|
222
206
|
};
|
|
223
207
|
required: string[];
|
|
224
208
|
$ref?: undefined;
|
|
@@ -14,9 +14,6 @@ declare const _default: {
|
|
|
14
14
|
} | {
|
|
15
15
|
type: string;
|
|
16
16
|
properties: {
|
|
17
|
-
policy: {
|
|
18
|
-
$ref: string;
|
|
19
|
-
};
|
|
20
17
|
orgName: {
|
|
21
18
|
type: string;
|
|
22
19
|
description: string;
|
|
@@ -50,9 +47,6 @@ declare const _default: {
|
|
|
50
47
|
};
|
|
51
48
|
required: string[];
|
|
52
49
|
};
|
|
53
|
-
sync: {
|
|
54
|
-
$ref: string;
|
|
55
|
-
};
|
|
56
50
|
};
|
|
57
51
|
required: string[];
|
|
58
52
|
$ref?: undefined;
|
|
@@ -14,9 +14,6 @@ declare const _default: {
|
|
|
14
14
|
} | {
|
|
15
15
|
type: string;
|
|
16
16
|
properties: {
|
|
17
|
-
policy: {
|
|
18
|
-
$ref: string;
|
|
19
|
-
};
|
|
20
17
|
role: {
|
|
21
18
|
type: string;
|
|
22
19
|
enum: string[];
|
|
@@ -24,9 +21,6 @@ declare const _default: {
|
|
|
24
21
|
org: {
|
|
25
22
|
type: string;
|
|
26
23
|
};
|
|
27
|
-
sync: {
|
|
28
|
-
$ref: string;
|
|
29
|
-
};
|
|
30
24
|
};
|
|
31
25
|
required: string[];
|
|
32
26
|
$ref?: undefined;
|
|
@@ -14,7 +14,8 @@ export declare const TerraformSchemas: {
|
|
|
14
14
|
type: string;
|
|
15
15
|
properties: {
|
|
16
16
|
policy: {
|
|
17
|
-
|
|
17
|
+
type: string;
|
|
18
|
+
enum: string[];
|
|
18
19
|
};
|
|
19
20
|
name: {
|
|
20
21
|
type: string;
|
|
@@ -24,7 +25,38 @@ export declare const TerraformSchemas: {
|
|
|
24
25
|
enum: string[];
|
|
25
26
|
};
|
|
26
27
|
sync: {
|
|
27
|
-
|
|
28
|
+
type: string;
|
|
29
|
+
properties: {
|
|
30
|
+
enabled: {
|
|
31
|
+
type: string;
|
|
32
|
+
};
|
|
33
|
+
period: {
|
|
34
|
+
type: string;
|
|
35
|
+
pattern: string;
|
|
36
|
+
};
|
|
37
|
+
schedule: {
|
|
38
|
+
type: string;
|
|
39
|
+
};
|
|
40
|
+
schedule_timezone: {
|
|
41
|
+
type: string;
|
|
42
|
+
};
|
|
43
|
+
policy: {
|
|
44
|
+
type: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
additionalProperties: boolean;
|
|
48
|
+
required: string[];
|
|
49
|
+
oneOf: ({
|
|
50
|
+
required: string[];
|
|
51
|
+
not?: undefined;
|
|
52
|
+
} | {
|
|
53
|
+
not: {
|
|
54
|
+
anyOf: {
|
|
55
|
+
required: string[];
|
|
56
|
+
}[];
|
|
57
|
+
};
|
|
58
|
+
required?: undefined;
|
|
59
|
+
})[];
|
|
28
60
|
};
|
|
29
61
|
valuesSchema: {
|
|
30
62
|
type: string;
|