@pulumi/harness 0.11.7 → 0.11.8
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/package.json +2 -2
- package/platform/getInfraModule.d.ts +18 -18
- package/platform/infraModule.d.ts +11 -11
- package/platform/infraModule.js +2 -2
- package/types/input.d.ts +0 -16
- package/types/output.d.ts +1 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/harness",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.8",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Harness resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "harness",
|
|
26
|
-
"version": "0.11.
|
|
26
|
+
"version": "0.11.8",
|
|
27
27
|
"server": "github://api.github.com/pulumi"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -40,25 +40,25 @@ export interface GetInfraModuleArgs {
|
|
|
40
40
|
*/
|
|
41
41
|
name: string;
|
|
42
42
|
/**
|
|
43
|
-
* Onboarding Pipeline identifier
|
|
43
|
+
* Onboarding Pipeline identifier.
|
|
44
44
|
*/
|
|
45
45
|
onboardingPipeline?: string;
|
|
46
46
|
/**
|
|
47
|
-
* Onboarding Pipeline organization
|
|
47
|
+
* Onboarding Pipeline organization.
|
|
48
48
|
*/
|
|
49
49
|
onboardingPipelineOrg?: string;
|
|
50
50
|
/**
|
|
51
|
-
* Onboarding Pipeline project
|
|
51
|
+
* Onboarding Pipeline project.
|
|
52
52
|
*/
|
|
53
53
|
onboardingPipelineProject?: string;
|
|
54
54
|
/**
|
|
55
|
-
* Sync the project automatically
|
|
55
|
+
* Sync the project automatically.
|
|
56
56
|
*/
|
|
57
57
|
onboardingPipelineSync?: boolean;
|
|
58
58
|
org?: string;
|
|
59
59
|
project?: string;
|
|
60
60
|
/**
|
|
61
|
-
* For account connectors, the repository where the module is stored
|
|
61
|
+
* For account connectors, the repository name where the module is stored.
|
|
62
62
|
*/
|
|
63
63
|
repository?: string;
|
|
64
64
|
/**
|
|
@@ -82,7 +82,7 @@ export interface GetInfraModuleArgs {
|
|
|
82
82
|
*/
|
|
83
83
|
repositoryUrl?: string;
|
|
84
84
|
/**
|
|
85
|
-
* How to store the artifact
|
|
85
|
+
* How to store the artifact.
|
|
86
86
|
*/
|
|
87
87
|
storageType?: string;
|
|
88
88
|
/**
|
|
@@ -155,25 +155,25 @@ export interface GetInfraModuleResult {
|
|
|
155
155
|
*/
|
|
156
156
|
readonly name: string;
|
|
157
157
|
/**
|
|
158
|
-
* Onboarding Pipeline identifier
|
|
158
|
+
* Onboarding Pipeline identifier.
|
|
159
159
|
*/
|
|
160
160
|
readonly onboardingPipeline?: string;
|
|
161
161
|
/**
|
|
162
|
-
* Onboarding Pipeline organization
|
|
162
|
+
* Onboarding Pipeline organization.
|
|
163
163
|
*/
|
|
164
164
|
readonly onboardingPipelineOrg?: string;
|
|
165
165
|
/**
|
|
166
|
-
* Onboarding Pipeline project
|
|
166
|
+
* Onboarding Pipeline project.
|
|
167
167
|
*/
|
|
168
168
|
readonly onboardingPipelineProject?: string;
|
|
169
169
|
/**
|
|
170
|
-
* Sync the project automatically
|
|
170
|
+
* Sync the project automatically.
|
|
171
171
|
*/
|
|
172
172
|
readonly onboardingPipelineSync?: boolean;
|
|
173
173
|
readonly org: string;
|
|
174
174
|
readonly project: string;
|
|
175
175
|
/**
|
|
176
|
-
* For account connectors, the repository where the module is stored
|
|
176
|
+
* For account connectors, the repository name where the module is stored.
|
|
177
177
|
*/
|
|
178
178
|
readonly repository: string;
|
|
179
179
|
/**
|
|
@@ -197,7 +197,7 @@ export interface GetInfraModuleResult {
|
|
|
197
197
|
*/
|
|
198
198
|
readonly repositoryUrl: string;
|
|
199
199
|
/**
|
|
200
|
-
* How to store the artifact
|
|
200
|
+
* How to store the artifact.
|
|
201
201
|
*/
|
|
202
202
|
readonly storageType: string;
|
|
203
203
|
/**
|
|
@@ -268,25 +268,25 @@ export interface GetInfraModuleOutputArgs {
|
|
|
268
268
|
*/
|
|
269
269
|
name: pulumi.Input<string>;
|
|
270
270
|
/**
|
|
271
|
-
* Onboarding Pipeline identifier
|
|
271
|
+
* Onboarding Pipeline identifier.
|
|
272
272
|
*/
|
|
273
273
|
onboardingPipeline?: pulumi.Input<string>;
|
|
274
274
|
/**
|
|
275
|
-
* Onboarding Pipeline organization
|
|
275
|
+
* Onboarding Pipeline organization.
|
|
276
276
|
*/
|
|
277
277
|
onboardingPipelineOrg?: pulumi.Input<string>;
|
|
278
278
|
/**
|
|
279
|
-
* Onboarding Pipeline project
|
|
279
|
+
* Onboarding Pipeline project.
|
|
280
280
|
*/
|
|
281
281
|
onboardingPipelineProject?: pulumi.Input<string>;
|
|
282
282
|
/**
|
|
283
|
-
* Sync the project automatically
|
|
283
|
+
* Sync the project automatically.
|
|
284
284
|
*/
|
|
285
285
|
onboardingPipelineSync?: pulumi.Input<boolean>;
|
|
286
286
|
org?: pulumi.Input<string>;
|
|
287
287
|
project?: pulumi.Input<string>;
|
|
288
288
|
/**
|
|
289
|
-
* For account connectors, the repository where the module is stored
|
|
289
|
+
* For account connectors, the repository name where the module is stored.
|
|
290
290
|
*/
|
|
291
291
|
repository?: pulumi.Input<string>;
|
|
292
292
|
/**
|
|
@@ -310,7 +310,7 @@ export interface GetInfraModuleOutputArgs {
|
|
|
310
310
|
*/
|
|
311
311
|
repositoryUrl?: pulumi.Input<string>;
|
|
312
312
|
/**
|
|
313
|
-
* How to store the artifact
|
|
313
|
+
* How to store the artifact.
|
|
314
314
|
*/
|
|
315
315
|
storageType?: pulumi.Input<string>;
|
|
316
316
|
/**
|
|
@@ -12,7 +12,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
12
12
|
* description: "example",
|
|
13
13
|
* name: "name",
|
|
14
14
|
* system: "provider",
|
|
15
|
-
* repository: "
|
|
15
|
+
* repository: "repo",
|
|
16
16
|
* repositoryBranch: "main",
|
|
17
17
|
* repositoryPath: "tf/aws/basic",
|
|
18
18
|
* repositoryConnector: test.id,
|
|
@@ -20,7 +20,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
20
20
|
* onboardingPipelineOrg: "default",
|
|
21
21
|
* onboardingPipelineProject: "IaCM_Project",
|
|
22
22
|
* onboardingPipelineSync: true,
|
|
23
|
-
* storageType: "
|
|
23
|
+
* storageType: "artifact",
|
|
24
24
|
* connectorOrg: "default",
|
|
25
25
|
* connectorProject: "my_project",
|
|
26
26
|
* });
|
|
@@ -51,11 +51,11 @@ export declare class InfraModule extends pulumi.CustomResource {
|
|
|
51
51
|
*/
|
|
52
52
|
static isInstance(obj: any): obj is InfraModule;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Org of the connector to be used to fetch the code.
|
|
55
55
|
*/
|
|
56
56
|
readonly connectorOrg: pulumi.Output<string | undefined>;
|
|
57
57
|
/**
|
|
58
|
-
*
|
|
58
|
+
* Project of the connector to be used to fetch the code.
|
|
59
59
|
*/
|
|
60
60
|
readonly connectorProject: pulumi.Output<string | undefined>;
|
|
61
61
|
/**
|
|
@@ -91,7 +91,7 @@ export declare class InfraModule extends pulumi.CustomResource {
|
|
|
91
91
|
*/
|
|
92
92
|
readonly onboardingPipelineSync: pulumi.Output<boolean | undefined>;
|
|
93
93
|
/**
|
|
94
|
-
* For account connectors, the repository where the module can be found
|
|
94
|
+
* For account connectors, the repository name where the module can be found.
|
|
95
95
|
*/
|
|
96
96
|
readonly repository: pulumi.Output<string | undefined>;
|
|
97
97
|
/**
|
|
@@ -148,11 +148,11 @@ export declare class InfraModule extends pulumi.CustomResource {
|
|
|
148
148
|
*/
|
|
149
149
|
export interface InfraModuleState {
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Org of the connector to be used to fetch the code.
|
|
152
152
|
*/
|
|
153
153
|
connectorOrg?: pulumi.Input<string>;
|
|
154
154
|
/**
|
|
155
|
-
*
|
|
155
|
+
* Project of the connector to be used to fetch the code.
|
|
156
156
|
*/
|
|
157
157
|
connectorProject?: pulumi.Input<string>;
|
|
158
158
|
/**
|
|
@@ -188,7 +188,7 @@ export interface InfraModuleState {
|
|
|
188
188
|
*/
|
|
189
189
|
onboardingPipelineSync?: pulumi.Input<boolean>;
|
|
190
190
|
/**
|
|
191
|
-
* For account connectors, the repository where the module can be found
|
|
191
|
+
* For account connectors, the repository name where the module can be found.
|
|
192
192
|
*/
|
|
193
193
|
repository?: pulumi.Input<string>;
|
|
194
194
|
/**
|
|
@@ -237,11 +237,11 @@ export interface InfraModuleState {
|
|
|
237
237
|
*/
|
|
238
238
|
export interface InfraModuleArgs {
|
|
239
239
|
/**
|
|
240
|
-
*
|
|
240
|
+
* Org of the connector to be used to fetch the code.
|
|
241
241
|
*/
|
|
242
242
|
connectorOrg?: pulumi.Input<string>;
|
|
243
243
|
/**
|
|
244
|
-
*
|
|
244
|
+
* Project of the connector to be used to fetch the code.
|
|
245
245
|
*/
|
|
246
246
|
connectorProject?: pulumi.Input<string>;
|
|
247
247
|
/**
|
|
@@ -277,7 +277,7 @@ export interface InfraModuleArgs {
|
|
|
277
277
|
*/
|
|
278
278
|
onboardingPipelineSync?: pulumi.Input<boolean>;
|
|
279
279
|
/**
|
|
280
|
-
* For account connectors, the repository where the module can be found
|
|
280
|
+
* For account connectors, the repository name where the module can be found.
|
|
281
281
|
*/
|
|
282
282
|
repository?: pulumi.Input<string>;
|
|
283
283
|
/**
|
package/platform/infraModule.js
CHANGED
|
@@ -18,7 +18,7 @@ const utilities = require("../utilities");
|
|
|
18
18
|
* description: "example",
|
|
19
19
|
* name: "name",
|
|
20
20
|
* system: "provider",
|
|
21
|
-
* repository: "
|
|
21
|
+
* repository: "repo",
|
|
22
22
|
* repositoryBranch: "main",
|
|
23
23
|
* repositoryPath: "tf/aws/basic",
|
|
24
24
|
* repositoryConnector: test.id,
|
|
@@ -26,7 +26,7 @@ const utilities = require("../utilities");
|
|
|
26
26
|
* onboardingPipelineOrg: "default",
|
|
27
27
|
* onboardingPipelineProject: "IaCM_Project",
|
|
28
28
|
* onboardingPipelineSync: true,
|
|
29
|
-
* storageType: "
|
|
29
|
+
* storageType: "artifact",
|
|
30
30
|
* connectorOrg: "default",
|
|
31
31
|
* connectorProject: "my_project",
|
|
32
32
|
* });
|
package/types/input.d.ts
CHANGED
|
@@ -4971,18 +4971,10 @@ export declare namespace platform {
|
|
|
4971
4971
|
* Account is the internal customer account ID
|
|
4972
4972
|
*/
|
|
4973
4973
|
account?: string;
|
|
4974
|
-
/**
|
|
4975
|
-
* Organization identifier
|
|
4976
|
-
*/
|
|
4977
|
-
org?: string;
|
|
4978
4974
|
/**
|
|
4979
4975
|
* Pipelines where the testing is enabled
|
|
4980
4976
|
*/
|
|
4981
4977
|
pipelines?: string[];
|
|
4982
|
-
/**
|
|
4983
|
-
* Project identifier
|
|
4984
|
-
*/
|
|
4985
|
-
project?: string;
|
|
4986
4978
|
/**
|
|
4987
4979
|
* Provider connector for testing purposes
|
|
4988
4980
|
*/
|
|
@@ -5005,18 +4997,10 @@ export declare namespace platform {
|
|
|
5005
4997
|
* Account is the internal customer account ID
|
|
5006
4998
|
*/
|
|
5007
4999
|
account?: pulumi.Input<string>;
|
|
5008
|
-
/**
|
|
5009
|
-
* Organization identifier
|
|
5010
|
-
*/
|
|
5011
|
-
org?: pulumi.Input<string>;
|
|
5012
5000
|
/**
|
|
5013
5001
|
* Pipelines where the testing is enabled
|
|
5014
5002
|
*/
|
|
5015
5003
|
pipelines?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5016
|
-
/**
|
|
5017
|
-
* Project identifier
|
|
5018
|
-
*/
|
|
5019
|
-
project?: pulumi.Input<string>;
|
|
5020
5004
|
/**
|
|
5021
5005
|
* Provider connector for testing purposes
|
|
5022
5006
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -5916,18 +5916,10 @@ export declare namespace platform {
|
|
|
5916
5916
|
* Account is the internal customer account ID
|
|
5917
5917
|
*/
|
|
5918
5918
|
account: string;
|
|
5919
|
-
/**
|
|
5920
|
-
* Organization identifier
|
|
5921
|
-
*/
|
|
5922
|
-
org: string;
|
|
5923
5919
|
/**
|
|
5924
5920
|
* Pipelines where the testing is enabled
|
|
5925
5921
|
*/
|
|
5926
5922
|
pipelines: string[];
|
|
5927
|
-
/**
|
|
5928
|
-
* Project identifier
|
|
5929
|
-
*/
|
|
5930
|
-
project: string;
|
|
5931
5923
|
/**
|
|
5932
5924
|
* Provider connector for testing purposes
|
|
5933
5925
|
*/
|
|
@@ -6025,15 +6017,7 @@ export declare namespace platform {
|
|
|
6025
6017
|
*/
|
|
6026
6018
|
onboardingPipelineSync?: boolean;
|
|
6027
6019
|
/**
|
|
6028
|
-
*
|
|
6029
|
-
*/
|
|
6030
|
-
org: string;
|
|
6031
|
-
/**
|
|
6032
|
-
* Project that owns the module
|
|
6033
|
-
*/
|
|
6034
|
-
project: string;
|
|
6035
|
-
/**
|
|
6036
|
-
* Repository where the module is stored
|
|
6020
|
+
* Repository name where the module is stored
|
|
6037
6021
|
*/
|
|
6038
6022
|
repository: string;
|
|
6039
6023
|
/**
|