@pulumi/harness 0.9.0 → 0.9.1
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/autostopping/getRuleScaleGroup.d.ts +134 -0
- package/autostopping/getRuleScaleGroup.js +46 -0
- package/autostopping/getRuleScaleGroup.js.map +1 -0
- package/autostopping/index.d.ts +6 -0
- package/autostopping/index.js +9 -1
- package/autostopping/index.js.map +1 -1
- package/autostopping/ruleScaleGroup.d.ts +186 -0
- package/autostopping/ruleScaleGroup.js +115 -0
- package/autostopping/ruleScaleGroup.js.map +1 -0
- package/package.json +2 -2
- package/platform/environmentGroup.d.ts +5 -5
- package/platform/environmentGroup.js +5 -5
- package/platform/getDefaultNotificationTemplateSet.d.ts +6 -0
- package/platform/getDefaultNotificationTemplateSet.js +4 -0
- package/platform/getDefaultNotificationTemplateSet.js.map +1 -1
- package/platform/getPipelineCentralNotificationRule.d.ts +4 -0
- package/platform/getPipelineCentralNotificationRule.js +4 -0
- package/platform/getPipelineCentralNotificationRule.js.map +1 -1
- package/platform/pipeline.d.ts +1 -1
- package/platform/pipeline.js +1 -1
- package/platform/pipelineCentralNotificationRule.d.ts +90 -0
- package/platform/pipelineCentralNotificationRule.js +90 -0
- package/platform/pipelineCentralNotificationRule.js.map +1 -1
- package/platform/triggers.d.ts +3 -2
- package/platform/triggers.js +3 -2
- package/platform/triggers.js.map +1 -1
- package/types/input.d.ts +420 -0
- package/types/output.d.ts +312 -0
package/types/output.d.ts
CHANGED
|
@@ -966,6 +966,112 @@ export declare namespace autostopping {
|
|
|
966
966
|
*/
|
|
967
967
|
port: number;
|
|
968
968
|
}
|
|
969
|
+
interface GetRuleScaleGroupDepend {
|
|
970
|
+
/**
|
|
971
|
+
* Number of seconds the rule should wait after warming up the dependent rule
|
|
972
|
+
*/
|
|
973
|
+
delayInSec?: number;
|
|
974
|
+
/**
|
|
975
|
+
* Rule id of the dependent rule
|
|
976
|
+
*/
|
|
977
|
+
ruleId: number;
|
|
978
|
+
}
|
|
979
|
+
interface GetRuleScaleGroupHttp {
|
|
980
|
+
/**
|
|
981
|
+
* Health Check Details
|
|
982
|
+
*/
|
|
983
|
+
healths?: outputs.autostopping.GetRuleScaleGroupHttpHealth[];
|
|
984
|
+
/**
|
|
985
|
+
* Id of the proxy
|
|
986
|
+
*/
|
|
987
|
+
proxyId: string;
|
|
988
|
+
/**
|
|
989
|
+
* Routing configuration used to access the scaling group
|
|
990
|
+
*/
|
|
991
|
+
routings?: outputs.autostopping.GetRuleScaleGroupHttpRouting[];
|
|
992
|
+
}
|
|
993
|
+
interface GetRuleScaleGroupHttpHealth {
|
|
994
|
+
/**
|
|
995
|
+
* API path to use for health check
|
|
996
|
+
*/
|
|
997
|
+
path?: string;
|
|
998
|
+
/**
|
|
999
|
+
* Health check port on the VM
|
|
1000
|
+
*/
|
|
1001
|
+
port: number;
|
|
1002
|
+
/**
|
|
1003
|
+
* Protocol can be http or https
|
|
1004
|
+
*/
|
|
1005
|
+
protocol: string;
|
|
1006
|
+
/**
|
|
1007
|
+
* Lower limit for acceptable status code
|
|
1008
|
+
*/
|
|
1009
|
+
statusCodeFrom?: number;
|
|
1010
|
+
/**
|
|
1011
|
+
* Upper limit for acceptable status code
|
|
1012
|
+
*/
|
|
1013
|
+
statusCodeTo?: number;
|
|
1014
|
+
/**
|
|
1015
|
+
* Health check timeout
|
|
1016
|
+
*/
|
|
1017
|
+
timeout?: number;
|
|
1018
|
+
}
|
|
1019
|
+
interface GetRuleScaleGroupHttpRouting {
|
|
1020
|
+
/**
|
|
1021
|
+
* Organization Identifier for the Entity
|
|
1022
|
+
*/
|
|
1023
|
+
action?: string;
|
|
1024
|
+
/**
|
|
1025
|
+
* Port on the proxy
|
|
1026
|
+
*/
|
|
1027
|
+
sourcePort?: number;
|
|
1028
|
+
/**
|
|
1029
|
+
* Source protocol of the proxy can be http or https
|
|
1030
|
+
*/
|
|
1031
|
+
sourceProtocol: string;
|
|
1032
|
+
/**
|
|
1033
|
+
* Port on the VM
|
|
1034
|
+
*/
|
|
1035
|
+
targetPort?: number;
|
|
1036
|
+
/**
|
|
1037
|
+
* Target protocol of the instance can be http or https
|
|
1038
|
+
*/
|
|
1039
|
+
targetProtocol: string;
|
|
1040
|
+
}
|
|
1041
|
+
interface GetRuleScaleGroupScaleGroup {
|
|
1042
|
+
/**
|
|
1043
|
+
* Desired capacity of the Scaling Group
|
|
1044
|
+
*/
|
|
1045
|
+
desired: number;
|
|
1046
|
+
/**
|
|
1047
|
+
* ID of the Scaling Group
|
|
1048
|
+
*/
|
|
1049
|
+
id: string;
|
|
1050
|
+
/**
|
|
1051
|
+
* Maximum capacity of the Scaling Group
|
|
1052
|
+
*/
|
|
1053
|
+
max: number;
|
|
1054
|
+
/**
|
|
1055
|
+
* Minimum capacity of the Scaling Group
|
|
1056
|
+
*/
|
|
1057
|
+
min: number;
|
|
1058
|
+
/**
|
|
1059
|
+
* Name of the Scaling Group
|
|
1060
|
+
*/
|
|
1061
|
+
name: string;
|
|
1062
|
+
/**
|
|
1063
|
+
* On-demand capacity of the Scaling Group
|
|
1064
|
+
*/
|
|
1065
|
+
onDemand: number;
|
|
1066
|
+
/**
|
|
1067
|
+
* Region of the Scaling Group
|
|
1068
|
+
*/
|
|
1069
|
+
region?: string;
|
|
1070
|
+
/**
|
|
1071
|
+
* Zone of the Scaling Group. Needed for GCP only
|
|
1072
|
+
*/
|
|
1073
|
+
zone?: string;
|
|
1074
|
+
}
|
|
969
1075
|
interface GetRuleVmDepend {
|
|
970
1076
|
/**
|
|
971
1077
|
* Number of seconds the rule should wait after warming up the dependent rule
|
|
@@ -1196,6 +1302,112 @@ export declare namespace autostopping {
|
|
|
1196
1302
|
*/
|
|
1197
1303
|
port: number;
|
|
1198
1304
|
}
|
|
1305
|
+
interface RuleScaleGroupDepend {
|
|
1306
|
+
/**
|
|
1307
|
+
* Number of seconds the rule should wait after warming up the dependent rule
|
|
1308
|
+
*/
|
|
1309
|
+
delayInSec?: number;
|
|
1310
|
+
/**
|
|
1311
|
+
* Rule id of the dependent rule
|
|
1312
|
+
*/
|
|
1313
|
+
ruleId: number;
|
|
1314
|
+
}
|
|
1315
|
+
interface RuleScaleGroupHttp {
|
|
1316
|
+
/**
|
|
1317
|
+
* Health Check Details
|
|
1318
|
+
*/
|
|
1319
|
+
healths?: outputs.autostopping.RuleScaleGroupHttpHealth[];
|
|
1320
|
+
/**
|
|
1321
|
+
* Id of the proxy
|
|
1322
|
+
*/
|
|
1323
|
+
proxyId: string;
|
|
1324
|
+
/**
|
|
1325
|
+
* Routing configuration used to access the scaling group
|
|
1326
|
+
*/
|
|
1327
|
+
routings?: outputs.autostopping.RuleScaleGroupHttpRouting[];
|
|
1328
|
+
}
|
|
1329
|
+
interface RuleScaleGroupHttpHealth {
|
|
1330
|
+
/**
|
|
1331
|
+
* API path to use for health check
|
|
1332
|
+
*/
|
|
1333
|
+
path?: string;
|
|
1334
|
+
/**
|
|
1335
|
+
* Health check port on the VM
|
|
1336
|
+
*/
|
|
1337
|
+
port: number;
|
|
1338
|
+
/**
|
|
1339
|
+
* Protocol can be http or https
|
|
1340
|
+
*/
|
|
1341
|
+
protocol: string;
|
|
1342
|
+
/**
|
|
1343
|
+
* Lower limit for acceptable status code
|
|
1344
|
+
*/
|
|
1345
|
+
statusCodeFrom?: number;
|
|
1346
|
+
/**
|
|
1347
|
+
* Upper limit for acceptable status code
|
|
1348
|
+
*/
|
|
1349
|
+
statusCodeTo?: number;
|
|
1350
|
+
/**
|
|
1351
|
+
* Health check timeout
|
|
1352
|
+
*/
|
|
1353
|
+
timeout?: number;
|
|
1354
|
+
}
|
|
1355
|
+
interface RuleScaleGroupHttpRouting {
|
|
1356
|
+
/**
|
|
1357
|
+
* Organization Identifier for the Entity
|
|
1358
|
+
*/
|
|
1359
|
+
action?: string;
|
|
1360
|
+
/**
|
|
1361
|
+
* Port on the proxy
|
|
1362
|
+
*/
|
|
1363
|
+
sourcePort?: number;
|
|
1364
|
+
/**
|
|
1365
|
+
* Source protocol of the proxy can be http or https
|
|
1366
|
+
*/
|
|
1367
|
+
sourceProtocol: string;
|
|
1368
|
+
/**
|
|
1369
|
+
* Port on the VM
|
|
1370
|
+
*/
|
|
1371
|
+
targetPort?: number;
|
|
1372
|
+
/**
|
|
1373
|
+
* Target protocol of the instance can be http or https
|
|
1374
|
+
*/
|
|
1375
|
+
targetProtocol: string;
|
|
1376
|
+
}
|
|
1377
|
+
interface RuleScaleGroupScaleGroup {
|
|
1378
|
+
/**
|
|
1379
|
+
* Desired capacity of the Scaling Group
|
|
1380
|
+
*/
|
|
1381
|
+
desired: number;
|
|
1382
|
+
/**
|
|
1383
|
+
* ID of the Scaling Group
|
|
1384
|
+
*/
|
|
1385
|
+
id: string;
|
|
1386
|
+
/**
|
|
1387
|
+
* Maximum capacity of the Scaling Group
|
|
1388
|
+
*/
|
|
1389
|
+
max: number;
|
|
1390
|
+
/**
|
|
1391
|
+
* Minimum capacity of the Scaling Group
|
|
1392
|
+
*/
|
|
1393
|
+
min: number;
|
|
1394
|
+
/**
|
|
1395
|
+
* Name of the Scaling Group
|
|
1396
|
+
*/
|
|
1397
|
+
name: string;
|
|
1398
|
+
/**
|
|
1399
|
+
* On-demand capacity of the Scaling Group
|
|
1400
|
+
*/
|
|
1401
|
+
onDemand: number;
|
|
1402
|
+
/**
|
|
1403
|
+
* Region of the Scaling Group
|
|
1404
|
+
*/
|
|
1405
|
+
region?: string;
|
|
1406
|
+
/**
|
|
1407
|
+
* Zone of the Scaling Group. Needed for GCP only
|
|
1408
|
+
*/
|
|
1409
|
+
zone?: string;
|
|
1410
|
+
}
|
|
1199
1411
|
interface RuleVmDepend {
|
|
1200
1412
|
/**
|
|
1201
1413
|
* Number of seconds the rule should wait after warming up the dependent rule
|
|
@@ -3951,6 +4163,7 @@ export declare namespace platform {
|
|
|
3951
4163
|
notificationEventConfigs: outputs.platform.GetCentralNotificationRuleNotificationConditionNotificationEventConfig[];
|
|
3952
4164
|
}
|
|
3953
4165
|
interface GetCentralNotificationRuleNotificationConditionNotificationEventConfig {
|
|
4166
|
+
entityIdentifiers?: string[];
|
|
3954
4167
|
notificationEntity: string;
|
|
3955
4168
|
notificationEvent: string;
|
|
3956
4169
|
notificationEventData?: {
|
|
@@ -6063,6 +6276,7 @@ export declare namespace platform {
|
|
|
6063
6276
|
notificationEventConfigs: outputs.platform.GetPipelineCentralNotificationRuleNotificationConditionNotificationEventConfig[];
|
|
6064
6277
|
}
|
|
6065
6278
|
interface GetPipelineCentralNotificationRuleNotificationConditionNotificationEventConfig {
|
|
6279
|
+
entityIdentifiers?: string[];
|
|
6066
6280
|
notificationEntity: string;
|
|
6067
6281
|
notificationEvent: string;
|
|
6068
6282
|
notificationEventDatas?: outputs.platform.GetPipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventData[];
|
|
@@ -14850,6 +15064,10 @@ export declare namespace platform {
|
|
|
14850
15064
|
* The Gitlab API URL to talk to.
|
|
14851
15065
|
*/
|
|
14852
15066
|
api?: string;
|
|
15067
|
+
/**
|
|
15068
|
+
* Reference to a ConfigMap containing a CA certificate for self-signed GitLab instances.
|
|
15069
|
+
*/
|
|
15070
|
+
caRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabCaRef;
|
|
14853
15071
|
/**
|
|
14854
15072
|
* Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
|
|
14855
15073
|
*/
|
|
@@ -14863,6 +15081,16 @@ export declare namespace platform {
|
|
|
14863
15081
|
*/
|
|
14864
15082
|
tokenRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabTokenRef;
|
|
14865
15083
|
}
|
|
15084
|
+
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabCaRef {
|
|
15085
|
+
/**
|
|
15086
|
+
* Name of Kubernetes `ConfigMap`.
|
|
15087
|
+
*/
|
|
15088
|
+
configMapName: string;
|
|
15089
|
+
/**
|
|
15090
|
+
* Key containing information in Kubernetes `ConfigMap`.
|
|
15091
|
+
*/
|
|
15092
|
+
key: string;
|
|
15093
|
+
}
|
|
14866
15094
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabTokenRef {
|
|
14867
15095
|
/**
|
|
14868
15096
|
* Key containing information in Kubernetes `Secret`.
|
|
@@ -18460,6 +18688,10 @@ export declare namespace platform {
|
|
|
18460
18688
|
* The Gitlab API URL to talk to.
|
|
18461
18689
|
*/
|
|
18462
18690
|
api?: string;
|
|
18691
|
+
/**
|
|
18692
|
+
* Reference to a ConfigMap containing a CA certificate for self-signed GitLab instances.
|
|
18693
|
+
*/
|
|
18694
|
+
caRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabCaRef;
|
|
18463
18695
|
/**
|
|
18464
18696
|
* Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
|
|
18465
18697
|
*/
|
|
@@ -18473,6 +18705,16 @@ export declare namespace platform {
|
|
|
18473
18705
|
*/
|
|
18474
18706
|
tokenRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabTokenRef;
|
|
18475
18707
|
}
|
|
18708
|
+
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabCaRef {
|
|
18709
|
+
/**
|
|
18710
|
+
* Name of Kubernetes `ConfigMap`.
|
|
18711
|
+
*/
|
|
18712
|
+
configMapName: string;
|
|
18713
|
+
/**
|
|
18714
|
+
* Key containing information in Kubernetes `ConfigMap`.
|
|
18715
|
+
*/
|
|
18716
|
+
key: string;
|
|
18717
|
+
}
|
|
18476
18718
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabTokenRef {
|
|
18477
18719
|
/**
|
|
18478
18720
|
* Key containing information in Kubernetes `Secret`.
|
|
@@ -20184,6 +20426,10 @@ export declare namespace platform {
|
|
|
20184
20426
|
* The Gitlab API URL to talk to.
|
|
20185
20427
|
*/
|
|
20186
20428
|
api?: string;
|
|
20429
|
+
/**
|
|
20430
|
+
* Reference to a ConfigMap containing a CA certificate for self-signed GitLab instances.
|
|
20431
|
+
*/
|
|
20432
|
+
caRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderGitlabCaRef;
|
|
20187
20433
|
/**
|
|
20188
20434
|
* Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
|
|
20189
20435
|
*/
|
|
@@ -20197,6 +20443,16 @@ export declare namespace platform {
|
|
|
20197
20443
|
*/
|
|
20198
20444
|
tokenRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderGitlabTokenRef;
|
|
20199
20445
|
}
|
|
20446
|
+
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderGitlabCaRef {
|
|
20447
|
+
/**
|
|
20448
|
+
* Name of Kubernetes `ConfigMap`.
|
|
20449
|
+
*/
|
|
20450
|
+
configMapName: string;
|
|
20451
|
+
/**
|
|
20452
|
+
* Key containing information in Kubernetes `ConfigMap`.
|
|
20453
|
+
*/
|
|
20454
|
+
key: string;
|
|
20455
|
+
}
|
|
20200
20456
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderGitlabTokenRef {
|
|
20201
20457
|
/**
|
|
20202
20458
|
* Key containing information in Kubernetes `Secret`.
|
|
@@ -25684,6 +25940,10 @@ export declare namespace platform {
|
|
|
25684
25940
|
* The Gitlab API URL to talk to.
|
|
25685
25941
|
*/
|
|
25686
25942
|
api?: string;
|
|
25943
|
+
/**
|
|
25944
|
+
* Reference to a ConfigMap containing a CA certificate for self-signed GitLab instances.
|
|
25945
|
+
*/
|
|
25946
|
+
caRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabCaRef;
|
|
25687
25947
|
/**
|
|
25688
25948
|
* Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
|
|
25689
25949
|
*/
|
|
@@ -25697,6 +25957,16 @@ export declare namespace platform {
|
|
|
25697
25957
|
*/
|
|
25698
25958
|
tokenRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabTokenRef;
|
|
25699
25959
|
}
|
|
25960
|
+
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabCaRef {
|
|
25961
|
+
/**
|
|
25962
|
+
* Name of Kubernetes `ConfigMap`.
|
|
25963
|
+
*/
|
|
25964
|
+
configMapName: string;
|
|
25965
|
+
/**
|
|
25966
|
+
* Key containing information in Kubernetes `ConfigMap`.
|
|
25967
|
+
*/
|
|
25968
|
+
key: string;
|
|
25969
|
+
}
|
|
25700
25970
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabTokenRef {
|
|
25701
25971
|
/**
|
|
25702
25972
|
* Key containing information in Kubernetes `Secret`.
|
|
@@ -29294,6 +29564,10 @@ export declare namespace platform {
|
|
|
29294
29564
|
* The Gitlab API URL to talk to.
|
|
29295
29565
|
*/
|
|
29296
29566
|
api?: string;
|
|
29567
|
+
/**
|
|
29568
|
+
* Reference to a ConfigMap containing a CA certificate for self-signed GitLab instances.
|
|
29569
|
+
*/
|
|
29570
|
+
caRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGitlabCaRef;
|
|
29297
29571
|
/**
|
|
29298
29572
|
* Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
|
|
29299
29573
|
*/
|
|
@@ -29307,6 +29581,16 @@ export declare namespace platform {
|
|
|
29307
29581
|
*/
|
|
29308
29582
|
tokenRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGitlabTokenRef;
|
|
29309
29583
|
}
|
|
29584
|
+
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGitlabCaRef {
|
|
29585
|
+
/**
|
|
29586
|
+
* Name of Kubernetes `ConfigMap`.
|
|
29587
|
+
*/
|
|
29588
|
+
configMapName: string;
|
|
29589
|
+
/**
|
|
29590
|
+
* Key containing information in Kubernetes `ConfigMap`.
|
|
29591
|
+
*/
|
|
29592
|
+
key: string;
|
|
29593
|
+
}
|
|
29310
29594
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGitlabTokenRef {
|
|
29311
29595
|
/**
|
|
29312
29596
|
* Key containing information in Kubernetes `Secret`.
|
|
@@ -31018,6 +31302,10 @@ export declare namespace platform {
|
|
|
31018
31302
|
* The Gitlab API URL to talk to.
|
|
31019
31303
|
*/
|
|
31020
31304
|
api?: string;
|
|
31305
|
+
/**
|
|
31306
|
+
* Reference to a ConfigMap containing a CA certificate for self-signed GitLab instances.
|
|
31307
|
+
*/
|
|
31308
|
+
caRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderGitlabCaRef;
|
|
31021
31309
|
/**
|
|
31022
31310
|
* Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
|
|
31023
31311
|
*/
|
|
@@ -31031,6 +31319,16 @@ export declare namespace platform {
|
|
|
31031
31319
|
*/
|
|
31032
31320
|
tokenRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderGitlabTokenRef;
|
|
31033
31321
|
}
|
|
31322
|
+
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderGitlabCaRef {
|
|
31323
|
+
/**
|
|
31324
|
+
* Name of Kubernetes `ConfigMap`.
|
|
31325
|
+
*/
|
|
31326
|
+
configMapName: string;
|
|
31327
|
+
/**
|
|
31328
|
+
* Key containing information in Kubernetes `ConfigMap`.
|
|
31329
|
+
*/
|
|
31330
|
+
key: string;
|
|
31331
|
+
}
|
|
31034
31332
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderGitlabTokenRef {
|
|
31035
31333
|
/**
|
|
31036
31334
|
* Key containing information in Kubernetes `Secret`.
|
|
@@ -32742,6 +33040,10 @@ export declare namespace platform {
|
|
|
32742
33040
|
* The Gitlab API URL to talk to.
|
|
32743
33041
|
*/
|
|
32744
33042
|
api?: string;
|
|
33043
|
+
/**
|
|
33044
|
+
* Reference to a ConfigMap containing a CA certificate for self-signed GitLab instances.
|
|
33045
|
+
*/
|
|
33046
|
+
caRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorScmProviderGitlabCaRef;
|
|
32745
33047
|
/**
|
|
32746
33048
|
* Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
|
|
32747
33049
|
*/
|
|
@@ -32755,6 +33057,16 @@ export declare namespace platform {
|
|
|
32755
33057
|
*/
|
|
32756
33058
|
tokenRef?: outputs.platform.GitopsApplicationsetApplicationsetSpecGeneratorScmProviderGitlabTokenRef;
|
|
32757
33059
|
}
|
|
33060
|
+
interface GitopsApplicationsetApplicationsetSpecGeneratorScmProviderGitlabCaRef {
|
|
33061
|
+
/**
|
|
33062
|
+
* Name of Kubernetes `ConfigMap`.
|
|
33063
|
+
*/
|
|
33064
|
+
configMapName: string;
|
|
33065
|
+
/**
|
|
33066
|
+
* Key containing information in Kubernetes `ConfigMap`.
|
|
33067
|
+
*/
|
|
33068
|
+
key: string;
|
|
33069
|
+
}
|
|
32758
33070
|
interface GitopsApplicationsetApplicationsetSpecGeneratorScmProviderGitlabTokenRef {
|
|
32759
33071
|
/**
|
|
32760
33072
|
* Key containing information in Kubernetes `Secret`.
|