@pulumi/harness 0.9.0-alpha.1760681338 → 0.9.0-alpha.1761104282
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/cluster/getOrchestratorConfig.d.ts +12 -0
- package/cluster/getOrchestratorConfig.js +2 -0
- package/cluster/getOrchestratorConfig.js.map +1 -1
- package/cluster/orchestratorConfig.d.ts +13 -0
- package/cluster/orchestratorConfig.js +3 -0
- package/cluster/orchestratorConfig.js.map +1 -1
- package/package.json +2 -2
- package/platform/dbInstance.d.ts +19 -19
- package/platform/dbInstance.js +3 -3
- package/platform/dbInstance.js.map +1 -1
- package/platform/getDbInstance.d.ts +18 -18
- package/platform/getDbInstance.js +2 -2
- package/platform/getDbInstance.js.map +1 -1
- package/platform/getInfraModule.d.ts +110 -0
- package/platform/getInfraModule.js +18 -0
- package/platform/getInfraModule.js.map +1 -1
- package/platform/getInfraModuleTesting.d.ts +225 -0
- package/platform/getInfraModuleTesting.js +50 -0
- package/platform/getInfraModuleTesting.js.map +1 -0
- package/platform/getInfraModules.d.ts +41 -0
- package/platform/getInfraModules.js +42 -0
- package/platform/getInfraModules.js.map +1 -0
- package/platform/getPipelineCentralNotificationRule.d.ts +0 -36
- package/platform/getPipelineCentralNotificationRule.js.map +1 -1
- package/platform/gitOpsApplications.d.ts +0 -2
- package/platform/gitOpsApplications.js +0 -2
- package/platform/gitOpsApplications.js.map +1 -1
- package/platform/gitopsApplicationset.d.ts +157 -3
- package/platform/gitopsApplicationset.js +157 -3
- package/platform/gitopsApplicationset.js.map +1 -1
- package/platform/index.d.ts +9 -0
- package/platform/index.js +16 -5
- package/platform/index.js.map +1 -1
- package/platform/infraModuleTesting.d.ts +304 -0
- package/platform/infraModuleTesting.js +133 -0
- package/platform/infraModuleTesting.js.map +1 -0
- package/platform/pipelineCentralNotificationRule.d.ts +9 -0
- package/platform/pipelineCentralNotificationRule.js.map +1 -1
- package/types/input.d.ts +1143 -74
- package/types/output.d.ts +1201 -126
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ## Import
|
|
8
|
+
*
|
|
9
|
+
* The `pulumi import` command can be used, for example:
|
|
10
|
+
*
|
|
11
|
+
* ```sh
|
|
12
|
+
* $ pulumi import harness:platform/infraModuleTesting:InfraModuleTesting example <module_id>
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class InfraModuleTesting extends pulumi.CustomResource {
|
|
16
|
+
/**
|
|
17
|
+
* Get an existing InfraModuleTesting resource's state with the given name, ID, and optional extra
|
|
18
|
+
* properties used to qualify the lookup.
|
|
19
|
+
*
|
|
20
|
+
* @param name The _unique_ name of the resulting resource.
|
|
21
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
22
|
+
* @param state Any extra arguments used during the lookup.
|
|
23
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
24
|
+
*/
|
|
25
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: InfraModuleTestingState, opts?: pulumi.CustomResourceOptions): InfraModuleTesting;
|
|
26
|
+
/**
|
|
27
|
+
* Returns true if the given object is an instance of InfraModuleTesting. This is designed to work even
|
|
28
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
29
|
+
*/
|
|
30
|
+
static isInstance(obj: any): obj is InfraModuleTesting;
|
|
31
|
+
/**
|
|
32
|
+
* Account that owns the module
|
|
33
|
+
*/
|
|
34
|
+
readonly account: pulumi.Output<string>;
|
|
35
|
+
/**
|
|
36
|
+
* Timestamp when the module was created
|
|
37
|
+
*/
|
|
38
|
+
readonly created: pulumi.Output<number>;
|
|
39
|
+
/**
|
|
40
|
+
* Description of the module
|
|
41
|
+
*/
|
|
42
|
+
readonly description: pulumi.Output<string>;
|
|
43
|
+
/**
|
|
44
|
+
* Git Tag Style
|
|
45
|
+
*/
|
|
46
|
+
readonly gitTagStyle: pulumi.Output<string>;
|
|
47
|
+
/**
|
|
48
|
+
* Error while retrieving the module
|
|
49
|
+
*/
|
|
50
|
+
readonly moduleError: pulumi.Output<string>;
|
|
51
|
+
/**
|
|
52
|
+
* Identifier of the module to enable testing for
|
|
53
|
+
*/
|
|
54
|
+
readonly moduleId: pulumi.Output<string>;
|
|
55
|
+
/**
|
|
56
|
+
* Name of the module
|
|
57
|
+
*/
|
|
58
|
+
readonly name: pulumi.Output<string>;
|
|
59
|
+
/**
|
|
60
|
+
* Organization identifier
|
|
61
|
+
*/
|
|
62
|
+
readonly org: pulumi.Output<string>;
|
|
63
|
+
/**
|
|
64
|
+
* List of pipeline IDs to create webhooks for triggering test executions
|
|
65
|
+
*/
|
|
66
|
+
readonly pipelines: pulumi.Output<string[]>;
|
|
67
|
+
/**
|
|
68
|
+
* Project identifier
|
|
69
|
+
*/
|
|
70
|
+
readonly project: pulumi.Output<string>;
|
|
71
|
+
/**
|
|
72
|
+
* Provider connector for testing purposes
|
|
73
|
+
*/
|
|
74
|
+
readonly providerConnector: pulumi.Output<string>;
|
|
75
|
+
readonly provisionerType: pulumi.Output<string>;
|
|
76
|
+
/**
|
|
77
|
+
* Provisioner version for testing purposes
|
|
78
|
+
*/
|
|
79
|
+
readonly provisionerVersion: pulumi.Output<string>;
|
|
80
|
+
/**
|
|
81
|
+
* Pipeline ID to create webhooks for releases
|
|
82
|
+
*/
|
|
83
|
+
readonly releasePipeline: pulumi.Output<string | undefined>;
|
|
84
|
+
/**
|
|
85
|
+
* For account connectors, the repository where the module is stored
|
|
86
|
+
*/
|
|
87
|
+
readonly repository: pulumi.Output<string>;
|
|
88
|
+
/**
|
|
89
|
+
* Repository Branch in which the module should be accessed
|
|
90
|
+
*/
|
|
91
|
+
readonly repositoryBranch: pulumi.Output<string>;
|
|
92
|
+
/**
|
|
93
|
+
* Repository Commit in which the module should be accessed
|
|
94
|
+
*/
|
|
95
|
+
readonly repositoryCommit: pulumi.Output<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Repository Connector is the reference to the connector for the repository
|
|
98
|
+
*/
|
|
99
|
+
readonly repositoryConnector: pulumi.Output<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Repository Path is the path in which the module resides
|
|
102
|
+
*/
|
|
103
|
+
readonly repositoryPath: pulumi.Output<string>;
|
|
104
|
+
/**
|
|
105
|
+
* URL where the module is stored
|
|
106
|
+
*/
|
|
107
|
+
readonly repositoryUrl: pulumi.Output<string>;
|
|
108
|
+
/**
|
|
109
|
+
* Timestamp when the module was last synced
|
|
110
|
+
*/
|
|
111
|
+
readonly synced: pulumi.Output<number>;
|
|
112
|
+
/**
|
|
113
|
+
* Provider of the module
|
|
114
|
+
*/
|
|
115
|
+
readonly system: pulumi.Output<string>;
|
|
116
|
+
/**
|
|
117
|
+
* Tags associated with the module
|
|
118
|
+
*/
|
|
119
|
+
readonly tags: pulumi.Output<string>;
|
|
120
|
+
/**
|
|
121
|
+
* Whether testing is enabled for the module
|
|
122
|
+
*/
|
|
123
|
+
readonly testingEnabled: pulumi.Output<boolean>;
|
|
124
|
+
/**
|
|
125
|
+
* Testing metadata for the module
|
|
126
|
+
*/
|
|
127
|
+
readonly testingMetadata: pulumi.Output<outputs.platform.InfraModuleTestingTestingMetadata>;
|
|
128
|
+
/**
|
|
129
|
+
* Timestamp when the module was last modified
|
|
130
|
+
*/
|
|
131
|
+
readonly updated: pulumi.Output<number>;
|
|
132
|
+
/**
|
|
133
|
+
* Versions of the module
|
|
134
|
+
*/
|
|
135
|
+
readonly versions: pulumi.Output<string[]>;
|
|
136
|
+
/**
|
|
137
|
+
* Create a InfraModuleTesting resource with the given unique name, arguments, and options.
|
|
138
|
+
*
|
|
139
|
+
* @param name The _unique_ name of the resource.
|
|
140
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
141
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
142
|
+
*/
|
|
143
|
+
constructor(name: string, args: InfraModuleTestingArgs, opts?: pulumi.CustomResourceOptions);
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* Input properties used for looking up and filtering InfraModuleTesting resources.
|
|
147
|
+
*/
|
|
148
|
+
export interface InfraModuleTestingState {
|
|
149
|
+
/**
|
|
150
|
+
* Account that owns the module
|
|
151
|
+
*/
|
|
152
|
+
account?: pulumi.Input<string>;
|
|
153
|
+
/**
|
|
154
|
+
* Timestamp when the module was created
|
|
155
|
+
*/
|
|
156
|
+
created?: pulumi.Input<number>;
|
|
157
|
+
/**
|
|
158
|
+
* Description of the module
|
|
159
|
+
*/
|
|
160
|
+
description?: pulumi.Input<string>;
|
|
161
|
+
/**
|
|
162
|
+
* Git Tag Style
|
|
163
|
+
*/
|
|
164
|
+
gitTagStyle?: pulumi.Input<string>;
|
|
165
|
+
/**
|
|
166
|
+
* Error while retrieving the module
|
|
167
|
+
*/
|
|
168
|
+
moduleError?: pulumi.Input<string>;
|
|
169
|
+
/**
|
|
170
|
+
* Identifier of the module to enable testing for
|
|
171
|
+
*/
|
|
172
|
+
moduleId?: pulumi.Input<string>;
|
|
173
|
+
/**
|
|
174
|
+
* Name of the module
|
|
175
|
+
*/
|
|
176
|
+
name?: pulumi.Input<string>;
|
|
177
|
+
/**
|
|
178
|
+
* Organization identifier
|
|
179
|
+
*/
|
|
180
|
+
org?: pulumi.Input<string>;
|
|
181
|
+
/**
|
|
182
|
+
* List of pipeline IDs to create webhooks for triggering test executions
|
|
183
|
+
*/
|
|
184
|
+
pipelines?: pulumi.Input<pulumi.Input<string>[]>;
|
|
185
|
+
/**
|
|
186
|
+
* Project identifier
|
|
187
|
+
*/
|
|
188
|
+
project?: pulumi.Input<string>;
|
|
189
|
+
/**
|
|
190
|
+
* Provider connector for testing purposes
|
|
191
|
+
*/
|
|
192
|
+
providerConnector?: pulumi.Input<string>;
|
|
193
|
+
provisionerType?: pulumi.Input<string>;
|
|
194
|
+
/**
|
|
195
|
+
* Provisioner version for testing purposes
|
|
196
|
+
*/
|
|
197
|
+
provisionerVersion?: pulumi.Input<string>;
|
|
198
|
+
/**
|
|
199
|
+
* Pipeline ID to create webhooks for releases
|
|
200
|
+
*/
|
|
201
|
+
releasePipeline?: pulumi.Input<string>;
|
|
202
|
+
/**
|
|
203
|
+
* For account connectors, the repository where the module is stored
|
|
204
|
+
*/
|
|
205
|
+
repository?: pulumi.Input<string>;
|
|
206
|
+
/**
|
|
207
|
+
* Repository Branch in which the module should be accessed
|
|
208
|
+
*/
|
|
209
|
+
repositoryBranch?: pulumi.Input<string>;
|
|
210
|
+
/**
|
|
211
|
+
* Repository Commit in which the module should be accessed
|
|
212
|
+
*/
|
|
213
|
+
repositoryCommit?: pulumi.Input<string>;
|
|
214
|
+
/**
|
|
215
|
+
* Repository Connector is the reference to the connector for the repository
|
|
216
|
+
*/
|
|
217
|
+
repositoryConnector?: pulumi.Input<string>;
|
|
218
|
+
/**
|
|
219
|
+
* Repository Path is the path in which the module resides
|
|
220
|
+
*/
|
|
221
|
+
repositoryPath?: pulumi.Input<string>;
|
|
222
|
+
/**
|
|
223
|
+
* URL where the module is stored
|
|
224
|
+
*/
|
|
225
|
+
repositoryUrl?: pulumi.Input<string>;
|
|
226
|
+
/**
|
|
227
|
+
* Timestamp when the module was last synced
|
|
228
|
+
*/
|
|
229
|
+
synced?: pulumi.Input<number>;
|
|
230
|
+
/**
|
|
231
|
+
* Provider of the module
|
|
232
|
+
*/
|
|
233
|
+
system?: pulumi.Input<string>;
|
|
234
|
+
/**
|
|
235
|
+
* Tags associated with the module
|
|
236
|
+
*/
|
|
237
|
+
tags?: pulumi.Input<string>;
|
|
238
|
+
/**
|
|
239
|
+
* Whether testing is enabled for the module
|
|
240
|
+
*/
|
|
241
|
+
testingEnabled?: pulumi.Input<boolean>;
|
|
242
|
+
/**
|
|
243
|
+
* Testing metadata for the module
|
|
244
|
+
*/
|
|
245
|
+
testingMetadata?: pulumi.Input<inputs.platform.InfraModuleTestingTestingMetadata>;
|
|
246
|
+
/**
|
|
247
|
+
* Timestamp when the module was last modified
|
|
248
|
+
*/
|
|
249
|
+
updated?: pulumi.Input<number>;
|
|
250
|
+
/**
|
|
251
|
+
* Versions of the module
|
|
252
|
+
*/
|
|
253
|
+
versions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* The set of arguments for constructing a InfraModuleTesting resource.
|
|
257
|
+
*/
|
|
258
|
+
export interface InfraModuleTestingArgs {
|
|
259
|
+
/**
|
|
260
|
+
* Identifier of the module to enable testing for
|
|
261
|
+
*/
|
|
262
|
+
moduleId: pulumi.Input<string>;
|
|
263
|
+
/**
|
|
264
|
+
* Organization identifier
|
|
265
|
+
*/
|
|
266
|
+
org: pulumi.Input<string>;
|
|
267
|
+
/**
|
|
268
|
+
* List of pipeline IDs to create webhooks for triggering test executions
|
|
269
|
+
*/
|
|
270
|
+
pipelines: pulumi.Input<pulumi.Input<string>[]>;
|
|
271
|
+
/**
|
|
272
|
+
* Project identifier
|
|
273
|
+
*/
|
|
274
|
+
project: pulumi.Input<string>;
|
|
275
|
+
/**
|
|
276
|
+
* Provider connector for testing purposes
|
|
277
|
+
*/
|
|
278
|
+
providerConnector: pulumi.Input<string>;
|
|
279
|
+
provisionerType: pulumi.Input<string>;
|
|
280
|
+
/**
|
|
281
|
+
* Provisioner version for testing purposes
|
|
282
|
+
*/
|
|
283
|
+
provisionerVersion: pulumi.Input<string>;
|
|
284
|
+
/**
|
|
285
|
+
* Pipeline ID to create webhooks for releases
|
|
286
|
+
*/
|
|
287
|
+
releasePipeline?: pulumi.Input<string>;
|
|
288
|
+
/**
|
|
289
|
+
* Whether testing is enabled for the module
|
|
290
|
+
*/
|
|
291
|
+
testingEnabled?: pulumi.Input<boolean>;
|
|
292
|
+
/**
|
|
293
|
+
* Testing metadata for the module
|
|
294
|
+
*/
|
|
295
|
+
testingMetadata?: pulumi.Input<inputs.platform.InfraModuleTestingTestingMetadata>;
|
|
296
|
+
/**
|
|
297
|
+
* Timestamp when the module was last modified
|
|
298
|
+
*/
|
|
299
|
+
updated?: pulumi.Input<number>;
|
|
300
|
+
/**
|
|
301
|
+
* Versions of the module
|
|
302
|
+
*/
|
|
303
|
+
versions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
304
|
+
}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.InfraModuleTesting = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ## Import
|
|
12
|
+
*
|
|
13
|
+
* The `pulumi import` command can be used, for example:
|
|
14
|
+
*
|
|
15
|
+
* ```sh
|
|
16
|
+
* $ pulumi import harness:platform/infraModuleTesting:InfraModuleTesting example <module_id>
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
class InfraModuleTesting extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing InfraModuleTesting resource's state with the given name, ID, and optional extra
|
|
22
|
+
* properties used to qualify the lookup.
|
|
23
|
+
*
|
|
24
|
+
* @param name The _unique_ name of the resulting resource.
|
|
25
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
26
|
+
* @param state Any extra arguments used during the lookup.
|
|
27
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
28
|
+
*/
|
|
29
|
+
static get(name, id, state, opts) {
|
|
30
|
+
return new InfraModuleTesting(name, state, { ...opts, id: id });
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of InfraModuleTesting. This is designed to work even
|
|
34
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
35
|
+
*/
|
|
36
|
+
static isInstance(obj) {
|
|
37
|
+
if (obj === undefined || obj === null) {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
return obj['__pulumiType'] === InfraModuleTesting.__pulumiType;
|
|
41
|
+
}
|
|
42
|
+
constructor(name, argsOrState, opts) {
|
|
43
|
+
let resourceInputs = {};
|
|
44
|
+
opts = opts || {};
|
|
45
|
+
if (opts.id) {
|
|
46
|
+
const state = argsOrState;
|
|
47
|
+
resourceInputs["account"] = state?.account;
|
|
48
|
+
resourceInputs["created"] = state?.created;
|
|
49
|
+
resourceInputs["description"] = state?.description;
|
|
50
|
+
resourceInputs["gitTagStyle"] = state?.gitTagStyle;
|
|
51
|
+
resourceInputs["moduleError"] = state?.moduleError;
|
|
52
|
+
resourceInputs["moduleId"] = state?.moduleId;
|
|
53
|
+
resourceInputs["name"] = state?.name;
|
|
54
|
+
resourceInputs["org"] = state?.org;
|
|
55
|
+
resourceInputs["pipelines"] = state?.pipelines;
|
|
56
|
+
resourceInputs["project"] = state?.project;
|
|
57
|
+
resourceInputs["providerConnector"] = state?.providerConnector;
|
|
58
|
+
resourceInputs["provisionerType"] = state?.provisionerType;
|
|
59
|
+
resourceInputs["provisionerVersion"] = state?.provisionerVersion;
|
|
60
|
+
resourceInputs["releasePipeline"] = state?.releasePipeline;
|
|
61
|
+
resourceInputs["repository"] = state?.repository;
|
|
62
|
+
resourceInputs["repositoryBranch"] = state?.repositoryBranch;
|
|
63
|
+
resourceInputs["repositoryCommit"] = state?.repositoryCommit;
|
|
64
|
+
resourceInputs["repositoryConnector"] = state?.repositoryConnector;
|
|
65
|
+
resourceInputs["repositoryPath"] = state?.repositoryPath;
|
|
66
|
+
resourceInputs["repositoryUrl"] = state?.repositoryUrl;
|
|
67
|
+
resourceInputs["synced"] = state?.synced;
|
|
68
|
+
resourceInputs["system"] = state?.system;
|
|
69
|
+
resourceInputs["tags"] = state?.tags;
|
|
70
|
+
resourceInputs["testingEnabled"] = state?.testingEnabled;
|
|
71
|
+
resourceInputs["testingMetadata"] = state?.testingMetadata;
|
|
72
|
+
resourceInputs["updated"] = state?.updated;
|
|
73
|
+
resourceInputs["versions"] = state?.versions;
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
const args = argsOrState;
|
|
77
|
+
if (args?.moduleId === undefined && !opts.urn) {
|
|
78
|
+
throw new Error("Missing required property 'moduleId'");
|
|
79
|
+
}
|
|
80
|
+
if (args?.org === undefined && !opts.urn) {
|
|
81
|
+
throw new Error("Missing required property 'org'");
|
|
82
|
+
}
|
|
83
|
+
if (args?.pipelines === undefined && !opts.urn) {
|
|
84
|
+
throw new Error("Missing required property 'pipelines'");
|
|
85
|
+
}
|
|
86
|
+
if (args?.project === undefined && !opts.urn) {
|
|
87
|
+
throw new Error("Missing required property 'project'");
|
|
88
|
+
}
|
|
89
|
+
if (args?.providerConnector === undefined && !opts.urn) {
|
|
90
|
+
throw new Error("Missing required property 'providerConnector'");
|
|
91
|
+
}
|
|
92
|
+
if (args?.provisionerType === undefined && !opts.urn) {
|
|
93
|
+
throw new Error("Missing required property 'provisionerType'");
|
|
94
|
+
}
|
|
95
|
+
if (args?.provisionerVersion === undefined && !opts.urn) {
|
|
96
|
+
throw new Error("Missing required property 'provisionerVersion'");
|
|
97
|
+
}
|
|
98
|
+
resourceInputs["moduleId"] = args?.moduleId;
|
|
99
|
+
resourceInputs["org"] = args?.org;
|
|
100
|
+
resourceInputs["pipelines"] = args?.pipelines;
|
|
101
|
+
resourceInputs["project"] = args?.project;
|
|
102
|
+
resourceInputs["providerConnector"] = args?.providerConnector;
|
|
103
|
+
resourceInputs["provisionerType"] = args?.provisionerType;
|
|
104
|
+
resourceInputs["provisionerVersion"] = args?.provisionerVersion;
|
|
105
|
+
resourceInputs["releasePipeline"] = args?.releasePipeline;
|
|
106
|
+
resourceInputs["testingEnabled"] = args?.testingEnabled;
|
|
107
|
+
resourceInputs["testingMetadata"] = args?.testingMetadata;
|
|
108
|
+
resourceInputs["updated"] = args?.updated;
|
|
109
|
+
resourceInputs["versions"] = args?.versions;
|
|
110
|
+
resourceInputs["account"] = undefined /*out*/;
|
|
111
|
+
resourceInputs["created"] = undefined /*out*/;
|
|
112
|
+
resourceInputs["description"] = undefined /*out*/;
|
|
113
|
+
resourceInputs["gitTagStyle"] = undefined /*out*/;
|
|
114
|
+
resourceInputs["moduleError"] = undefined /*out*/;
|
|
115
|
+
resourceInputs["name"] = undefined /*out*/;
|
|
116
|
+
resourceInputs["repository"] = undefined /*out*/;
|
|
117
|
+
resourceInputs["repositoryBranch"] = undefined /*out*/;
|
|
118
|
+
resourceInputs["repositoryCommit"] = undefined /*out*/;
|
|
119
|
+
resourceInputs["repositoryConnector"] = undefined /*out*/;
|
|
120
|
+
resourceInputs["repositoryPath"] = undefined /*out*/;
|
|
121
|
+
resourceInputs["repositoryUrl"] = undefined /*out*/;
|
|
122
|
+
resourceInputs["synced"] = undefined /*out*/;
|
|
123
|
+
resourceInputs["system"] = undefined /*out*/;
|
|
124
|
+
resourceInputs["tags"] = undefined /*out*/;
|
|
125
|
+
}
|
|
126
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
127
|
+
super(InfraModuleTesting.__pulumiType, name, resourceInputs, opts);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
exports.InfraModuleTesting = InfraModuleTesting;
|
|
131
|
+
/** @internal */
|
|
132
|
+
InfraModuleTesting.__pulumiType = 'harness:platform/infraModuleTesting:InfraModuleTesting';
|
|
133
|
+
//# sourceMappingURL=infraModuleTesting.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"infraModuleTesting.js","sourceRoot":"","sources":["../../platform/infraModuleTesting.ts"],"names":[],"mappings":"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"}
|
|
@@ -39,6 +39,9 @@ export declare class PipelineCentralNotificationRule extends pulumi.CustomResour
|
|
|
39
39
|
readonly notificationConditions: pulumi.Output<outputs.platform.PipelineCentralNotificationRuleNotificationCondition[]>;
|
|
40
40
|
readonly org: pulumi.Output<string | undefined>;
|
|
41
41
|
readonly project: pulumi.Output<string | undefined>;
|
|
42
|
+
/**
|
|
43
|
+
* Status of the notification rule. Supported values: `ENABLED`, `DISABLED`. Default: `ENABLED`.
|
|
44
|
+
*/
|
|
42
45
|
readonly status: pulumi.Output<string | undefined>;
|
|
43
46
|
/**
|
|
44
47
|
* Create a PipelineCentralNotificationRule resource with the given unique name, arguments, and options.
|
|
@@ -72,6 +75,9 @@ export interface PipelineCentralNotificationRuleState {
|
|
|
72
75
|
notificationConditions?: pulumi.Input<pulumi.Input<inputs.platform.PipelineCentralNotificationRuleNotificationCondition>[]>;
|
|
73
76
|
org?: pulumi.Input<string>;
|
|
74
77
|
project?: pulumi.Input<string>;
|
|
78
|
+
/**
|
|
79
|
+
* Status of the notification rule. Supported values: `ENABLED`, `DISABLED`. Default: `ENABLED`.
|
|
80
|
+
*/
|
|
75
81
|
status?: pulumi.Input<string>;
|
|
76
82
|
}
|
|
77
83
|
/**
|
|
@@ -85,5 +91,8 @@ export interface PipelineCentralNotificationRuleArgs {
|
|
|
85
91
|
notificationConditions: pulumi.Input<pulumi.Input<inputs.platform.PipelineCentralNotificationRuleNotificationCondition>[]>;
|
|
86
92
|
org?: pulumi.Input<string>;
|
|
87
93
|
project?: pulumi.Input<string>;
|
|
94
|
+
/**
|
|
95
|
+
* Status of the notification rule. Supported values: `ENABLED`, `DISABLED`. Default: `ENABLED`.
|
|
96
|
+
*/
|
|
88
97
|
status?: pulumi.Input<string>;
|
|
89
98
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pipelineCentralNotificationRule.js","sourceRoot":"","sources":["../../platform/pipelineCentralNotificationRule.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,MAAa,+BAAgC,SAAQ,MAAM,CAAC,cAAc;IACtE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4C,EAAE,IAAmC;QAC1I,OAAO,IAAI,+BAA+B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACtF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,+BAA+B,CAAC,YAAY,CAAC;IAChF,CAAC;
|
|
1
|
+
{"version":3,"file":"pipelineCentralNotificationRule.js","sourceRoot":"","sources":["../../platform/pipelineCentralNotificationRule.ts"],"names":[],"mappings":"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"}
|