@firestartr/cli 1.51.1-snapshot-06 → 1.51.2
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 +1224 -500
- package/build/packages/cdk8s_renderer/imports/firestartr.dev.d.ts +439 -139
- package/build/packages/cdk8s_renderer/src/charts/github/RepoSecretsSectionChart.d.ts +12 -0
- package/build/packages/cdk8s_renderer/src/charts/github/orgWebhookChart.d.ts +2 -1
- package/build/packages/cdk8s_renderer/src/charts/github/repositoryChart.d.ts +2 -8
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/index.d.ts +7 -0
- package/build/packages/cdk8s_renderer/src/claims/github/index.d.ts +3 -0
- package/build/packages/cdk8s_renderer/src/claims/github/orgWebhook.d.ts +1 -4
- package/build/packages/cdk8s_renderer/src/claims/github/orgwebhook.schema.d.ts +3 -0
- package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/index.d.ts +4 -0
- package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/terraform.schema.d.ts +4 -0
- package/build/packages/github/index.d.ts +2 -0
- package/build/packages/github/src/encrypt.d.ts +3 -6
- package/build/packages/operator/src/informer.d.ts +1 -0
- package/build/packages/operator/src/processItem.debug.d.ts +2 -0
- package/build/packages/operator/src/status.d.ts +2 -0
- package/build/packages/operator/src/syncCtl.d.ts +31 -0
- package/build/packages/operator/src/syncer.d.ts +6 -2
- package/build/packages/operator/src/syncer.debug.d.ts +2 -0
- package/build/packages/provisioner/src/entities/firestartrgithubrepositorysecretssection/FirestartrGithubRepositorySecretsSection.d.ts +9 -0
- package/build/packages/provisioner/src/entities/firestartrgithubrepositorysecretssection/helpers/RepositorySecret.d.ts +3 -0
- package/build/packages/provisioner/src/resources/github_repository_secrets_section/index.d.ts +5 -0
- package/build/packages/provisioner/src/resources/index.d.ts +2 -0
- package/package.json +1 -1
- package/build/packages/provisioner/src/entities/firestartrgithubrepository/helpers/RepositorySecret.d.ts +0 -4
|
@@ -711,6 +711,12 @@ export declare enum FirestartrGithubOrgWebhookSpecWebhookContentType {
|
|
|
711
711
|
* @schema FirestartrGithubOrgWebhookSpecWebhookSecretRef
|
|
712
712
|
*/
|
|
713
713
|
export interface FirestartrGithubOrgWebhookSpecWebhookSecretRef {
|
|
714
|
+
/**
|
|
715
|
+
* The type of Kubernetes resource to reference.
|
|
716
|
+
*
|
|
717
|
+
* @schema FirestartrGithubOrgWebhookSpecWebhookSecretRef#kind
|
|
718
|
+
*/
|
|
719
|
+
readonly kind: FirestartrGithubOrgWebhookSpecWebhookSecretRefKind;
|
|
714
720
|
/**
|
|
715
721
|
* Secret name
|
|
716
722
|
*
|
|
@@ -767,6 +773,15 @@ export interface FirestartrGithubOrgWebhookSpecWriteConnectionSecretToRefOutputs
|
|
|
767
773
|
* Converts an object of type 'FirestartrGithubOrgWebhookSpecWriteConnectionSecretToRefOutputs' to JSON representation.
|
|
768
774
|
*/
|
|
769
775
|
export declare function toJson_FirestartrGithubOrgWebhookSpecWriteConnectionSecretToRefOutputs(obj: FirestartrGithubOrgWebhookSpecWriteConnectionSecretToRefOutputs | undefined): Record<string, any> | undefined;
|
|
776
|
+
/**
|
|
777
|
+
* The type of Kubernetes resource to reference.
|
|
778
|
+
*
|
|
779
|
+
* @schema FirestartrGithubOrgWebhookSpecWebhookSecretRefKind
|
|
780
|
+
*/
|
|
781
|
+
export declare enum FirestartrGithubOrgWebhookSpecWebhookSecretRefKind {
|
|
782
|
+
/** Secret */
|
|
783
|
+
SECRET = "Secret"
|
|
784
|
+
}
|
|
770
785
|
/**
|
|
771
786
|
* @schema FirestartrGithubOrgWebhookSpecContextBackendRef
|
|
772
787
|
*/
|
|
@@ -896,10 +911,6 @@ export interface FirestartrGithubRepositorySpec {
|
|
|
896
911
|
* @schema FirestartrGithubRepositorySpec#permissions
|
|
897
912
|
*/
|
|
898
913
|
readonly permissions: FirestartrGithubRepositorySpecPermissions[];
|
|
899
|
-
/**
|
|
900
|
-
* @schema FirestartrGithubRepositorySpec#secrets
|
|
901
|
-
*/
|
|
902
|
-
readonly secrets?: FirestartrGithubRepositorySpecSecrets;
|
|
903
914
|
/**
|
|
904
915
|
* @schema FirestartrGithubRepositorySpec#vars
|
|
905
916
|
*/
|
|
@@ -1075,27 +1086,6 @@ export interface FirestartrGithubRepositorySpecPermissions {
|
|
|
1075
1086
|
* Converts an object of type 'FirestartrGithubRepositorySpecPermissions' to JSON representation.
|
|
1076
1087
|
*/
|
|
1077
1088
|
export declare function toJson_FirestartrGithubRepositorySpecPermissions(obj: FirestartrGithubRepositorySpecPermissions | undefined): Record<string, any> | undefined;
|
|
1078
|
-
/**
|
|
1079
|
-
* @schema FirestartrGithubRepositorySpecSecrets
|
|
1080
|
-
*/
|
|
1081
|
-
export interface FirestartrGithubRepositorySpecSecrets {
|
|
1082
|
-
/**
|
|
1083
|
-
* @schema FirestartrGithubRepositorySpecSecrets#actions
|
|
1084
|
-
*/
|
|
1085
|
-
readonly actions?: FirestartrGithubRepositorySpecSecretsActions[];
|
|
1086
|
-
/**
|
|
1087
|
-
* @schema FirestartrGithubRepositorySpecSecrets#codespaces
|
|
1088
|
-
*/
|
|
1089
|
-
readonly codespaces?: FirestartrGithubRepositorySpecSecretsCodespaces[];
|
|
1090
|
-
/**
|
|
1091
|
-
* @schema FirestartrGithubRepositorySpecSecrets#dependabot
|
|
1092
|
-
*/
|
|
1093
|
-
readonly dependabot?: FirestartrGithubRepositorySpecSecretsDependabot[];
|
|
1094
|
-
}
|
|
1095
|
-
/**
|
|
1096
|
-
* Converts an object of type 'FirestartrGithubRepositorySpecSecrets' to JSON representation.
|
|
1097
|
-
*/
|
|
1098
|
-
export declare function toJson_FirestartrGithubRepositorySpecSecrets(obj: FirestartrGithubRepositorySpecSecrets | undefined): Record<string, any> | undefined;
|
|
1099
1089
|
/**
|
|
1100
1090
|
* @schema FirestartrGithubRepositorySpecVars
|
|
1101
1091
|
*/
|
|
@@ -1297,57 +1287,6 @@ export interface FirestartrGithubRepositorySpecPermissionsRef {
|
|
|
1297
1287
|
* Converts an object of type 'FirestartrGithubRepositorySpecPermissionsRef' to JSON representation.
|
|
1298
1288
|
*/
|
|
1299
1289
|
export declare function toJson_FirestartrGithubRepositorySpecPermissionsRef(obj: FirestartrGithubRepositorySpecPermissionsRef | undefined): Record<string, any> | undefined;
|
|
1300
|
-
/**
|
|
1301
|
-
* @schema FirestartrGithubRepositorySpecSecretsActions
|
|
1302
|
-
*/
|
|
1303
|
-
export interface FirestartrGithubRepositorySpecSecretsActions {
|
|
1304
|
-
/**
|
|
1305
|
-
* @schema FirestartrGithubRepositorySpecSecretsActions#name
|
|
1306
|
-
*/
|
|
1307
|
-
readonly name: string;
|
|
1308
|
-
/**
|
|
1309
|
-
* @schema FirestartrGithubRepositorySpecSecretsActions#ref
|
|
1310
|
-
*/
|
|
1311
|
-
readonly ref: FirestartrGithubRepositorySpecSecretsActionsRef;
|
|
1312
|
-
}
|
|
1313
|
-
/**
|
|
1314
|
-
* Converts an object of type 'FirestartrGithubRepositorySpecSecretsActions' to JSON representation.
|
|
1315
|
-
*/
|
|
1316
|
-
export declare function toJson_FirestartrGithubRepositorySpecSecretsActions(obj: FirestartrGithubRepositorySpecSecretsActions | undefined): Record<string, any> | undefined;
|
|
1317
|
-
/**
|
|
1318
|
-
* @schema FirestartrGithubRepositorySpecSecretsCodespaces
|
|
1319
|
-
*/
|
|
1320
|
-
export interface FirestartrGithubRepositorySpecSecretsCodespaces {
|
|
1321
|
-
/**
|
|
1322
|
-
* @schema FirestartrGithubRepositorySpecSecretsCodespaces#name
|
|
1323
|
-
*/
|
|
1324
|
-
readonly name: string;
|
|
1325
|
-
/**
|
|
1326
|
-
* @schema FirestartrGithubRepositorySpecSecretsCodespaces#ref
|
|
1327
|
-
*/
|
|
1328
|
-
readonly ref: FirestartrGithubRepositorySpecSecretsCodespacesRef;
|
|
1329
|
-
}
|
|
1330
|
-
/**
|
|
1331
|
-
* Converts an object of type 'FirestartrGithubRepositorySpecSecretsCodespaces' to JSON representation.
|
|
1332
|
-
*/
|
|
1333
|
-
export declare function toJson_FirestartrGithubRepositorySpecSecretsCodespaces(obj: FirestartrGithubRepositorySpecSecretsCodespaces | undefined): Record<string, any> | undefined;
|
|
1334
|
-
/**
|
|
1335
|
-
* @schema FirestartrGithubRepositorySpecSecretsDependabot
|
|
1336
|
-
*/
|
|
1337
|
-
export interface FirestartrGithubRepositorySpecSecretsDependabot {
|
|
1338
|
-
/**
|
|
1339
|
-
* @schema FirestartrGithubRepositorySpecSecretsDependabot#name
|
|
1340
|
-
*/
|
|
1341
|
-
readonly name: string;
|
|
1342
|
-
/**
|
|
1343
|
-
* @schema FirestartrGithubRepositorySpecSecretsDependabot#ref
|
|
1344
|
-
*/
|
|
1345
|
-
readonly ref: FirestartrGithubRepositorySpecSecretsDependabotRef;
|
|
1346
|
-
}
|
|
1347
|
-
/**
|
|
1348
|
-
* Converts an object of type 'FirestartrGithubRepositorySpecSecretsDependabot' to JSON representation.
|
|
1349
|
-
*/
|
|
1350
|
-
export declare function toJson_FirestartrGithubRepositorySpecSecretsDependabot(obj: FirestartrGithubRepositorySpecSecretsDependabot | undefined): Record<string, any> | undefined;
|
|
1351
1290
|
/**
|
|
1352
1291
|
* @schema FirestartrGithubRepositorySpecVarsVariableItemSchema
|
|
1353
1292
|
*/
|
|
@@ -1437,69 +1376,6 @@ export interface FirestartrGithubRepositorySpecContextProviderRef {
|
|
|
1437
1376
|
* Converts an object of type 'FirestartrGithubRepositorySpecContextProviderRef' to JSON representation.
|
|
1438
1377
|
*/
|
|
1439
1378
|
export declare function toJson_FirestartrGithubRepositorySpecContextProviderRef(obj: FirestartrGithubRepositorySpecContextProviderRef | undefined): Record<string, any> | undefined;
|
|
1440
|
-
/**
|
|
1441
|
-
* @schema FirestartrGithubRepositorySpecSecretsActionsRef
|
|
1442
|
-
*/
|
|
1443
|
-
export interface FirestartrGithubRepositorySpecSecretsActionsRef {
|
|
1444
|
-
/**
|
|
1445
|
-
* @schema FirestartrGithubRepositorySpecSecretsActionsRef#kind
|
|
1446
|
-
*/
|
|
1447
|
-
readonly kind: string;
|
|
1448
|
-
/**
|
|
1449
|
-
* @schema FirestartrGithubRepositorySpecSecretsActionsRef#name
|
|
1450
|
-
*/
|
|
1451
|
-
readonly name: string;
|
|
1452
|
-
/**
|
|
1453
|
-
* @schema FirestartrGithubRepositorySpecSecretsActionsRef#key
|
|
1454
|
-
*/
|
|
1455
|
-
readonly key: string;
|
|
1456
|
-
}
|
|
1457
|
-
/**
|
|
1458
|
-
* Converts an object of type 'FirestartrGithubRepositorySpecSecretsActionsRef' to JSON representation.
|
|
1459
|
-
*/
|
|
1460
|
-
export declare function toJson_FirestartrGithubRepositorySpecSecretsActionsRef(obj: FirestartrGithubRepositorySpecSecretsActionsRef | undefined): Record<string, any> | undefined;
|
|
1461
|
-
/**
|
|
1462
|
-
* @schema FirestartrGithubRepositorySpecSecretsCodespacesRef
|
|
1463
|
-
*/
|
|
1464
|
-
export interface FirestartrGithubRepositorySpecSecretsCodespacesRef {
|
|
1465
|
-
/**
|
|
1466
|
-
* @schema FirestartrGithubRepositorySpecSecretsCodespacesRef#kind
|
|
1467
|
-
*/
|
|
1468
|
-
readonly kind: string;
|
|
1469
|
-
/**
|
|
1470
|
-
* @schema FirestartrGithubRepositorySpecSecretsCodespacesRef#name
|
|
1471
|
-
*/
|
|
1472
|
-
readonly name: string;
|
|
1473
|
-
/**
|
|
1474
|
-
* @schema FirestartrGithubRepositorySpecSecretsCodespacesRef#key
|
|
1475
|
-
*/
|
|
1476
|
-
readonly key: string;
|
|
1477
|
-
}
|
|
1478
|
-
/**
|
|
1479
|
-
* Converts an object of type 'FirestartrGithubRepositorySpecSecretsCodespacesRef' to JSON representation.
|
|
1480
|
-
*/
|
|
1481
|
-
export declare function toJson_FirestartrGithubRepositorySpecSecretsCodespacesRef(obj: FirestartrGithubRepositorySpecSecretsCodespacesRef | undefined): Record<string, any> | undefined;
|
|
1482
|
-
/**
|
|
1483
|
-
* @schema FirestartrGithubRepositorySpecSecretsDependabotRef
|
|
1484
|
-
*/
|
|
1485
|
-
export interface FirestartrGithubRepositorySpecSecretsDependabotRef {
|
|
1486
|
-
/**
|
|
1487
|
-
* @schema FirestartrGithubRepositorySpecSecretsDependabotRef#kind
|
|
1488
|
-
*/
|
|
1489
|
-
readonly kind: string;
|
|
1490
|
-
/**
|
|
1491
|
-
* @schema FirestartrGithubRepositorySpecSecretsDependabotRef#name
|
|
1492
|
-
*/
|
|
1493
|
-
readonly name: string;
|
|
1494
|
-
/**
|
|
1495
|
-
* @schema FirestartrGithubRepositorySpecSecretsDependabotRef#key
|
|
1496
|
-
*/
|
|
1497
|
-
readonly key: string;
|
|
1498
|
-
}
|
|
1499
|
-
/**
|
|
1500
|
-
* Converts an object of type 'FirestartrGithubRepositorySpecSecretsDependabotRef' to JSON representation.
|
|
1501
|
-
*/
|
|
1502
|
-
export declare function toJson_FirestartrGithubRepositorySpecSecretsDependabotRef(obj: FirestartrGithubRepositorySpecSecretsDependabotRef | undefined): Record<string, any> | undefined;
|
|
1503
1379
|
/**
|
|
1504
1380
|
* @schema FirestartrGithubRepositorySpecVarsVariableItemSchemaRef
|
|
1505
1381
|
*/
|
|
@@ -1805,6 +1681,430 @@ export declare enum FirestartrGithubRepositoryFeatureSpecContextProviderRefKind
|
|
|
1805
1681
|
/** FirestartrProviderConfig */
|
|
1806
1682
|
FIRESTARTR_PROVIDER_CONFIG = "FirestartrProviderConfig"
|
|
1807
1683
|
}
|
|
1684
|
+
/**
|
|
1685
|
+
*
|
|
1686
|
+
*
|
|
1687
|
+
* @schema FirestartrGithubRepositorySecretsSection
|
|
1688
|
+
*/
|
|
1689
|
+
export declare class FirestartrGithubRepositorySecretsSection extends ApiObject {
|
|
1690
|
+
/**
|
|
1691
|
+
* Returns the apiVersion and kind for "FirestartrGithubRepositorySecretsSection"
|
|
1692
|
+
*/
|
|
1693
|
+
static readonly GVK: GroupVersionKind;
|
|
1694
|
+
/**
|
|
1695
|
+
* Renders a Kubernetes manifest for "FirestartrGithubRepositorySecretsSection".
|
|
1696
|
+
*
|
|
1697
|
+
* This can be used to inline resource manifests inside other objects (e.g. as templates).
|
|
1698
|
+
*
|
|
1699
|
+
* @param props initialization props
|
|
1700
|
+
*/
|
|
1701
|
+
static manifest(props?: FirestartrGithubRepositorySecretsSectionProps): any;
|
|
1702
|
+
/**
|
|
1703
|
+
* Defines a "FirestartrGithubRepositorySecretsSection" API object
|
|
1704
|
+
* @param scope the scope in which to define this object
|
|
1705
|
+
* @param id a scope-local name for the object
|
|
1706
|
+
* @param props initialization props
|
|
1707
|
+
*/
|
|
1708
|
+
constructor(scope: Construct, id: string, props?: FirestartrGithubRepositorySecretsSectionProps);
|
|
1709
|
+
/**
|
|
1710
|
+
* Renders the object to Kubernetes JSON.
|
|
1711
|
+
*/
|
|
1712
|
+
toJson(): any;
|
|
1713
|
+
}
|
|
1714
|
+
/**
|
|
1715
|
+
* @schema FirestartrGithubRepositorySecretsSection
|
|
1716
|
+
*/
|
|
1717
|
+
export interface FirestartrGithubRepositorySecretsSectionProps {
|
|
1718
|
+
/**
|
|
1719
|
+
* @schema FirestartrGithubRepositorySecretsSection#metadata
|
|
1720
|
+
*/
|
|
1721
|
+
readonly metadata?: ApiObjectMetadata;
|
|
1722
|
+
/**
|
|
1723
|
+
* @schema FirestartrGithubRepositorySecretsSection#spec
|
|
1724
|
+
*/
|
|
1725
|
+
readonly spec?: FirestartrGithubRepositorySecretsSectionSpec;
|
|
1726
|
+
}
|
|
1727
|
+
/**
|
|
1728
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionProps' to JSON representation.
|
|
1729
|
+
*/
|
|
1730
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionProps(obj: FirestartrGithubRepositorySecretsSectionProps | undefined): Record<string, any> | undefined;
|
|
1731
|
+
/**
|
|
1732
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpec
|
|
1733
|
+
*/
|
|
1734
|
+
export interface FirestartrGithubRepositorySecretsSectionSpec {
|
|
1735
|
+
/**
|
|
1736
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpec#firestartr
|
|
1737
|
+
*/
|
|
1738
|
+
readonly firestartr?: FirestartrGithubRepositorySecretsSectionSpecFirestartr;
|
|
1739
|
+
/**
|
|
1740
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpec#repositoryTarget
|
|
1741
|
+
*/
|
|
1742
|
+
readonly repositoryTarget: FirestartrGithubRepositorySecretsSectionSpecRepositoryTarget;
|
|
1743
|
+
/**
|
|
1744
|
+
* A map of secret types, each containing a list of secrets.
|
|
1745
|
+
*
|
|
1746
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpec#secrets
|
|
1747
|
+
*/
|
|
1748
|
+
readonly secrets: FirestartrGithubRepositorySecretsSectionSpecSecrets;
|
|
1749
|
+
/**
|
|
1750
|
+
* References to provider configurations and backends needed by the operator.
|
|
1751
|
+
*
|
|
1752
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpec#context
|
|
1753
|
+
*/
|
|
1754
|
+
readonly context?: FirestartrGithubRepositorySecretsSectionSpecContext;
|
|
1755
|
+
}
|
|
1756
|
+
/**
|
|
1757
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpec' to JSON representation.
|
|
1758
|
+
*/
|
|
1759
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpec(obj: FirestartrGithubRepositorySecretsSectionSpec | undefined): Record<string, any> | undefined;
|
|
1760
|
+
/**
|
|
1761
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecFirestartr
|
|
1762
|
+
*/
|
|
1763
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecFirestartr {
|
|
1764
|
+
/**
|
|
1765
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecFirestartr#tfStateKey
|
|
1766
|
+
*/
|
|
1767
|
+
readonly tfStateKey: string;
|
|
1768
|
+
}
|
|
1769
|
+
/**
|
|
1770
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecFirestartr' to JSON representation.
|
|
1771
|
+
*/
|
|
1772
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecFirestartr(obj: FirestartrGithubRepositorySecretsSectionSpecFirestartr | undefined): Record<string, any> | undefined;
|
|
1773
|
+
/**
|
|
1774
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecRepositoryTarget
|
|
1775
|
+
*/
|
|
1776
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecRepositoryTarget {
|
|
1777
|
+
/**
|
|
1778
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecRepositoryTarget#ref
|
|
1779
|
+
*/
|
|
1780
|
+
readonly ref: FirestartrGithubRepositorySecretsSectionSpecRepositoryTargetRef;
|
|
1781
|
+
}
|
|
1782
|
+
/**
|
|
1783
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecRepositoryTarget' to JSON representation.
|
|
1784
|
+
*/
|
|
1785
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecRepositoryTarget(obj: FirestartrGithubRepositorySecretsSectionSpecRepositoryTarget | undefined): Record<string, any> | undefined;
|
|
1786
|
+
/**
|
|
1787
|
+
* A map of secret types, each containing a list of secrets.
|
|
1788
|
+
*
|
|
1789
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecrets
|
|
1790
|
+
*/
|
|
1791
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecSecrets {
|
|
1792
|
+
/**
|
|
1793
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecrets#actions
|
|
1794
|
+
*/
|
|
1795
|
+
readonly actions?: FirestartrGithubRepositorySecretsSectionSpecSecretsActions[];
|
|
1796
|
+
/**
|
|
1797
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecrets#codespaces
|
|
1798
|
+
*/
|
|
1799
|
+
readonly codespaces?: FirestartrGithubRepositorySecretsSectionSpecSecretsCodespaces[];
|
|
1800
|
+
/**
|
|
1801
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecrets#dependabot
|
|
1802
|
+
*/
|
|
1803
|
+
readonly dependabot?: FirestartrGithubRepositorySecretsSectionSpecSecretsDependabot[];
|
|
1804
|
+
}
|
|
1805
|
+
/**
|
|
1806
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecSecrets' to JSON representation.
|
|
1807
|
+
*/
|
|
1808
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecSecrets(obj: FirestartrGithubRepositorySecretsSectionSpecSecrets | undefined): Record<string, any> | undefined;
|
|
1809
|
+
/**
|
|
1810
|
+
* References to provider configurations and backends needed by the operator.
|
|
1811
|
+
*
|
|
1812
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContext
|
|
1813
|
+
*/
|
|
1814
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecContext {
|
|
1815
|
+
/**
|
|
1816
|
+
* The provider configuration for authenticating with an external service (e.g., GitHub).
|
|
1817
|
+
*
|
|
1818
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContext#provider
|
|
1819
|
+
*/
|
|
1820
|
+
readonly provider: FirestartrGithubRepositorySecretsSectionSpecContextProvider;
|
|
1821
|
+
/**
|
|
1822
|
+
* The backend configuration for state management (e.g., Terraform).
|
|
1823
|
+
*
|
|
1824
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContext#backend
|
|
1825
|
+
*/
|
|
1826
|
+
readonly backend?: FirestartrGithubRepositorySecretsSectionSpecContextBackend;
|
|
1827
|
+
}
|
|
1828
|
+
/**
|
|
1829
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecContext' to JSON representation.
|
|
1830
|
+
*/
|
|
1831
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecContext(obj: FirestartrGithubRepositorySecretsSectionSpecContext | undefined): Record<string, any> | undefined;
|
|
1832
|
+
/**
|
|
1833
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecRepositoryTargetRef
|
|
1834
|
+
*/
|
|
1835
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecRepositoryTargetRef {
|
|
1836
|
+
/**
|
|
1837
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecRepositoryTargetRef#kind
|
|
1838
|
+
*/
|
|
1839
|
+
readonly kind: string;
|
|
1840
|
+
/**
|
|
1841
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecRepositoryTargetRef#name
|
|
1842
|
+
*/
|
|
1843
|
+
readonly name: string;
|
|
1844
|
+
/**
|
|
1845
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecRepositoryTargetRef#needsSecret
|
|
1846
|
+
*/
|
|
1847
|
+
readonly needsSecret: boolean;
|
|
1848
|
+
}
|
|
1849
|
+
/**
|
|
1850
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecRepositoryTargetRef' to JSON representation.
|
|
1851
|
+
*/
|
|
1852
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecRepositoryTargetRef(obj: FirestartrGithubRepositorySecretsSectionSpecRepositoryTargetRef | undefined): Record<string, any> | undefined;
|
|
1853
|
+
/**
|
|
1854
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsActions
|
|
1855
|
+
*/
|
|
1856
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecSecretsActions {
|
|
1857
|
+
/**
|
|
1858
|
+
* The name of the secret.
|
|
1859
|
+
*
|
|
1860
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsActions#name
|
|
1861
|
+
*/
|
|
1862
|
+
readonly name: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* A reference to the Kubernetes Secret resource that contains the value.
|
|
1865
|
+
*
|
|
1866
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsActions#ref
|
|
1867
|
+
*/
|
|
1868
|
+
readonly ref: FirestartrGithubRepositorySecretsSectionSpecSecretsActionsRef;
|
|
1869
|
+
}
|
|
1870
|
+
/**
|
|
1871
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecSecretsActions' to JSON representation.
|
|
1872
|
+
*/
|
|
1873
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecSecretsActions(obj: FirestartrGithubRepositorySecretsSectionSpecSecretsActions | undefined): Record<string, any> | undefined;
|
|
1874
|
+
/**
|
|
1875
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsCodespaces
|
|
1876
|
+
*/
|
|
1877
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecSecretsCodespaces {
|
|
1878
|
+
/**
|
|
1879
|
+
* The name of the secret.
|
|
1880
|
+
*
|
|
1881
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsCodespaces#name
|
|
1882
|
+
*/
|
|
1883
|
+
readonly name: string;
|
|
1884
|
+
/**
|
|
1885
|
+
* A reference to the Kubernetes Secret resource that contains the value.
|
|
1886
|
+
*
|
|
1887
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsCodespaces#ref
|
|
1888
|
+
*/
|
|
1889
|
+
readonly ref: FirestartrGithubRepositorySecretsSectionSpecSecretsCodespacesRef;
|
|
1890
|
+
}
|
|
1891
|
+
/**
|
|
1892
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecSecretsCodespaces' to JSON representation.
|
|
1893
|
+
*/
|
|
1894
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecSecretsCodespaces(obj: FirestartrGithubRepositorySecretsSectionSpecSecretsCodespaces | undefined): Record<string, any> | undefined;
|
|
1895
|
+
/**
|
|
1896
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsDependabot
|
|
1897
|
+
*/
|
|
1898
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecSecretsDependabot {
|
|
1899
|
+
/**
|
|
1900
|
+
* The name of the secret.
|
|
1901
|
+
*
|
|
1902
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsDependabot#name
|
|
1903
|
+
*/
|
|
1904
|
+
readonly name: string;
|
|
1905
|
+
/**
|
|
1906
|
+
* A reference to the Kubernetes Secret resource that contains the value.
|
|
1907
|
+
*
|
|
1908
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsDependabot#ref
|
|
1909
|
+
*/
|
|
1910
|
+
readonly ref: FirestartrGithubRepositorySecretsSectionSpecSecretsDependabotRef;
|
|
1911
|
+
}
|
|
1912
|
+
/**
|
|
1913
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecSecretsDependabot' to JSON representation.
|
|
1914
|
+
*/
|
|
1915
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecSecretsDependabot(obj: FirestartrGithubRepositorySecretsSectionSpecSecretsDependabot | undefined): Record<string, any> | undefined;
|
|
1916
|
+
/**
|
|
1917
|
+
* The provider configuration for authenticating with an external service (e.g., GitHub).
|
|
1918
|
+
*
|
|
1919
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContextProvider
|
|
1920
|
+
*/
|
|
1921
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecContextProvider {
|
|
1922
|
+
/**
|
|
1923
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContextProvider#ref
|
|
1924
|
+
*/
|
|
1925
|
+
readonly ref: FirestartrGithubRepositorySecretsSectionSpecContextProviderRef;
|
|
1926
|
+
}
|
|
1927
|
+
/**
|
|
1928
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecContextProvider' to JSON representation.
|
|
1929
|
+
*/
|
|
1930
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecContextProvider(obj: FirestartrGithubRepositorySecretsSectionSpecContextProvider | undefined): Record<string, any> | undefined;
|
|
1931
|
+
/**
|
|
1932
|
+
* The backend configuration for state management (e.g., Terraform).
|
|
1933
|
+
*
|
|
1934
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContextBackend
|
|
1935
|
+
*/
|
|
1936
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecContextBackend {
|
|
1937
|
+
/**
|
|
1938
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContextBackend#ref
|
|
1939
|
+
*/
|
|
1940
|
+
readonly ref: FirestartrGithubRepositorySecretsSectionSpecContextBackendRef;
|
|
1941
|
+
}
|
|
1942
|
+
/**
|
|
1943
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecContextBackend' to JSON representation.
|
|
1944
|
+
*/
|
|
1945
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecContextBackend(obj: FirestartrGithubRepositorySecretsSectionSpecContextBackend | undefined): Record<string, any> | undefined;
|
|
1946
|
+
/**
|
|
1947
|
+
* A reference to the Kubernetes Secret resource that contains the value.
|
|
1948
|
+
*
|
|
1949
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsActionsRef
|
|
1950
|
+
*/
|
|
1951
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecSecretsActionsRef {
|
|
1952
|
+
/**
|
|
1953
|
+
* The type of Kubernetes resource to reference.
|
|
1954
|
+
*
|
|
1955
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsActionsRef#kind
|
|
1956
|
+
*/
|
|
1957
|
+
readonly kind: FirestartrGithubRepositorySecretsSectionSpecSecretsActionsRefKind;
|
|
1958
|
+
/**
|
|
1959
|
+
* The name of the Kubernetes Secret resource.
|
|
1960
|
+
*
|
|
1961
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsActionsRef#name
|
|
1962
|
+
*/
|
|
1963
|
+
readonly name: string;
|
|
1964
|
+
/**
|
|
1965
|
+
* The key within the Kubernetes Secret data.
|
|
1966
|
+
*
|
|
1967
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsActionsRef#key
|
|
1968
|
+
*/
|
|
1969
|
+
readonly key: string;
|
|
1970
|
+
}
|
|
1971
|
+
/**
|
|
1972
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecSecretsActionsRef' to JSON representation.
|
|
1973
|
+
*/
|
|
1974
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecSecretsActionsRef(obj: FirestartrGithubRepositorySecretsSectionSpecSecretsActionsRef | undefined): Record<string, any> | undefined;
|
|
1975
|
+
/**
|
|
1976
|
+
* A reference to the Kubernetes Secret resource that contains the value.
|
|
1977
|
+
*
|
|
1978
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsCodespacesRef
|
|
1979
|
+
*/
|
|
1980
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecSecretsCodespacesRef {
|
|
1981
|
+
/**
|
|
1982
|
+
* The type of Kubernetes resource to reference.
|
|
1983
|
+
*
|
|
1984
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsCodespacesRef#kind
|
|
1985
|
+
*/
|
|
1986
|
+
readonly kind: FirestartrGithubRepositorySecretsSectionSpecSecretsCodespacesRefKind;
|
|
1987
|
+
/**
|
|
1988
|
+
* The name of the Kubernetes Secret resource.
|
|
1989
|
+
*
|
|
1990
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsCodespacesRef#name
|
|
1991
|
+
*/
|
|
1992
|
+
readonly name: string;
|
|
1993
|
+
/**
|
|
1994
|
+
* The key within the Kubernetes Secret data.
|
|
1995
|
+
*
|
|
1996
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsCodespacesRef#key
|
|
1997
|
+
*/
|
|
1998
|
+
readonly key: string;
|
|
1999
|
+
}
|
|
2000
|
+
/**
|
|
2001
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecSecretsCodespacesRef' to JSON representation.
|
|
2002
|
+
*/
|
|
2003
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecSecretsCodespacesRef(obj: FirestartrGithubRepositorySecretsSectionSpecSecretsCodespacesRef | undefined): Record<string, any> | undefined;
|
|
2004
|
+
/**
|
|
2005
|
+
* A reference to the Kubernetes Secret resource that contains the value.
|
|
2006
|
+
*
|
|
2007
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsDependabotRef
|
|
2008
|
+
*/
|
|
2009
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecSecretsDependabotRef {
|
|
2010
|
+
/**
|
|
2011
|
+
* The type of Kubernetes resource to reference.
|
|
2012
|
+
*
|
|
2013
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsDependabotRef#kind
|
|
2014
|
+
*/
|
|
2015
|
+
readonly kind: FirestartrGithubRepositorySecretsSectionSpecSecretsDependabotRefKind;
|
|
2016
|
+
/**
|
|
2017
|
+
* The name of the Kubernetes Secret resource.
|
|
2018
|
+
*
|
|
2019
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsDependabotRef#name
|
|
2020
|
+
*/
|
|
2021
|
+
readonly name: string;
|
|
2022
|
+
/**
|
|
2023
|
+
* The key within the Kubernetes Secret data.
|
|
2024
|
+
*
|
|
2025
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsDependabotRef#key
|
|
2026
|
+
*/
|
|
2027
|
+
readonly key: string;
|
|
2028
|
+
}
|
|
2029
|
+
/**
|
|
2030
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecSecretsDependabotRef' to JSON representation.
|
|
2031
|
+
*/
|
|
2032
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecSecretsDependabotRef(obj: FirestartrGithubRepositorySecretsSectionSpecSecretsDependabotRef | undefined): Record<string, any> | undefined;
|
|
2033
|
+
/**
|
|
2034
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContextProviderRef
|
|
2035
|
+
*/
|
|
2036
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecContextProviderRef {
|
|
2037
|
+
/**
|
|
2038
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContextProviderRef#kind
|
|
2039
|
+
*/
|
|
2040
|
+
readonly kind: FirestartrGithubRepositorySecretsSectionSpecContextProviderRefKind;
|
|
2041
|
+
/**
|
|
2042
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContextProviderRef#name
|
|
2043
|
+
*/
|
|
2044
|
+
readonly name: string;
|
|
2045
|
+
}
|
|
2046
|
+
/**
|
|
2047
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecContextProviderRef' to JSON representation.
|
|
2048
|
+
*/
|
|
2049
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecContextProviderRef(obj: FirestartrGithubRepositorySecretsSectionSpecContextProviderRef | undefined): Record<string, any> | undefined;
|
|
2050
|
+
/**
|
|
2051
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContextBackendRef
|
|
2052
|
+
*/
|
|
2053
|
+
export interface FirestartrGithubRepositorySecretsSectionSpecContextBackendRef {
|
|
2054
|
+
/**
|
|
2055
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContextBackendRef#kind
|
|
2056
|
+
*/
|
|
2057
|
+
readonly kind: FirestartrGithubRepositorySecretsSectionSpecContextBackendRefKind;
|
|
2058
|
+
/**
|
|
2059
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContextBackendRef#name
|
|
2060
|
+
*/
|
|
2061
|
+
readonly name: string;
|
|
2062
|
+
}
|
|
2063
|
+
/**
|
|
2064
|
+
* Converts an object of type 'FirestartrGithubRepositorySecretsSectionSpecContextBackendRef' to JSON representation.
|
|
2065
|
+
*/
|
|
2066
|
+
export declare function toJson_FirestartrGithubRepositorySecretsSectionSpecContextBackendRef(obj: FirestartrGithubRepositorySecretsSectionSpecContextBackendRef | undefined): Record<string, any> | undefined;
|
|
2067
|
+
/**
|
|
2068
|
+
* The type of Kubernetes resource to reference.
|
|
2069
|
+
*
|
|
2070
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsActionsRefKind
|
|
2071
|
+
*/
|
|
2072
|
+
export declare enum FirestartrGithubRepositorySecretsSectionSpecSecretsActionsRefKind {
|
|
2073
|
+
/** Secret */
|
|
2074
|
+
SECRET = "Secret"
|
|
2075
|
+
}
|
|
2076
|
+
/**
|
|
2077
|
+
* The type of Kubernetes resource to reference.
|
|
2078
|
+
*
|
|
2079
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsCodespacesRefKind
|
|
2080
|
+
*/
|
|
2081
|
+
export declare enum FirestartrGithubRepositorySecretsSectionSpecSecretsCodespacesRefKind {
|
|
2082
|
+
/** Secret */
|
|
2083
|
+
SECRET = "Secret"
|
|
2084
|
+
}
|
|
2085
|
+
/**
|
|
2086
|
+
* The type of Kubernetes resource to reference.
|
|
2087
|
+
*
|
|
2088
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecSecretsDependabotRefKind
|
|
2089
|
+
*/
|
|
2090
|
+
export declare enum FirestartrGithubRepositorySecretsSectionSpecSecretsDependabotRefKind {
|
|
2091
|
+
/** Secret */
|
|
2092
|
+
SECRET = "Secret"
|
|
2093
|
+
}
|
|
2094
|
+
/**
|
|
2095
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContextProviderRefKind
|
|
2096
|
+
*/
|
|
2097
|
+
export declare enum FirestartrGithubRepositorySecretsSectionSpecContextProviderRefKind {
|
|
2098
|
+
/** FirestartrProviderConfig */
|
|
2099
|
+
FIRESTARTR_PROVIDER_CONFIG = "FirestartrProviderConfig"
|
|
2100
|
+
}
|
|
2101
|
+
/**
|
|
2102
|
+
* @schema FirestartrGithubRepositorySecretsSectionSpecContextBackendRefKind
|
|
2103
|
+
*/
|
|
2104
|
+
export declare enum FirestartrGithubRepositorySecretsSectionSpecContextBackendRefKind {
|
|
2105
|
+
/** FirestartrProviderConfig */
|
|
2106
|
+
FIRESTARTR_PROVIDER_CONFIG = "FirestartrProviderConfig"
|
|
2107
|
+
}
|
|
1808
2108
|
/**
|
|
1809
2109
|
* A resource to handle backend and provider configuration.
|
|
1810
2110
|
*
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { FirestartrGithubRepositorySecretsSection, FirestartrGithubRepositorySecretsSectionProps } from '../../../imports/firestartr.dev';
|
|
2
|
+
import { GroupVersionKind } from 'cdk8s';
|
|
3
|
+
import { BaseGithubChart } from './base';
|
|
4
|
+
export default class RepoSecretsSectionChart extends BaseGithubChart {
|
|
5
|
+
constructor(scope: any, chartId: string, firestartrId: string | null, claim: any, patches?: any[], cr?: any);
|
|
6
|
+
template(): FirestartrGithubRepositorySecretsSectionProps;
|
|
7
|
+
private getAnnotationsFromRepo;
|
|
8
|
+
renderSecrets(section: string, githubProvider: any): any[];
|
|
9
|
+
gvk(): GroupVersionKind;
|
|
10
|
+
instanceApiObject(template: any): FirestartrGithubRepositorySecretsSection;
|
|
11
|
+
private resolveRepositoryTarget;
|
|
12
|
+
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FirestartrGithubOrgWebhook, FirestartrGithubOrgWebhookProps } from '../../../imports/firestartr.dev';
|
|
1
|
+
import { FirestartrGithubOrgWebhook, FirestartrGithubOrgWebhookProps, FirestartrGithubOrgWebhookSpecWebhookSecretRef } from '../../../imports/firestartr.dev';
|
|
2
2
|
import { IUnitializedStateKey } from '../../claims/base';
|
|
3
3
|
import { BaseGithubChart } from './base';
|
|
4
4
|
export declare class GithubOrgWebhookChart extends BaseGithubChart {
|
|
5
5
|
template(): FirestartrGithubOrgWebhookProps | IUnitializedStateKey;
|
|
6
|
+
renderSecret(secret: string): FirestartrGithubOrgWebhookSpecWebhookSecretRef;
|
|
6
7
|
gvk(): import("cdk8s").GroupVersionKind;
|
|
7
8
|
instanceApiObject(template: any): FirestartrGithubOrgWebhook;
|
|
8
9
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ApiObject, GroupVersionKind } from 'cdk8s';
|
|
2
|
-
import { NamedVars
|
|
2
|
+
import { NamedVars } from '../../utils/repositoryClaimUtils';
|
|
3
3
|
import { FirestartrGithubRepositoryProps } from '../../../imports/firestartr.dev';
|
|
4
4
|
import { IUnitializedStateKey } from '../../claims/base';
|
|
5
5
|
import { BaseGithubChart } from './base';
|
|
@@ -8,6 +8,7 @@ export declare class GithubRepositoryChart extends BaseGithubChart {
|
|
|
8
8
|
render(): Promise<this>;
|
|
9
9
|
gvk(): GroupVersionKind;
|
|
10
10
|
postRenderFeatures(cr: any): Promise<void>;
|
|
11
|
+
postRenderSecretsSection(cr: any): Promise<void>;
|
|
11
12
|
instanceApiObject(template: any): ApiObject;
|
|
12
13
|
/**
|
|
13
14
|
* @description This method creates the permissions data for the repository
|
|
@@ -21,14 +22,7 @@ export declare class GithubRepositoryChart extends BaseGithubChart {
|
|
|
21
22
|
* @returns VarsConfiguration
|
|
22
23
|
*/
|
|
23
24
|
private createVars;
|
|
24
|
-
/**
|
|
25
|
-
* @description This method creates the secrets data for the repository
|
|
26
|
-
* @param claim
|
|
27
|
-
* @returns RepoSecretsConfiguration
|
|
28
|
-
*/
|
|
29
|
-
private createRepoSecrets;
|
|
30
25
|
formatVars(blockDefinition: any): NamedVars;
|
|
31
|
-
formatRepoSecrets(blockDefinition: any): RepoSecrets;
|
|
32
26
|
extraCharts(): {
|
|
33
27
|
claim: {
|
|
34
28
|
kind: string;
|