@pulumi/harness 0.8.3 → 0.8.4
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/harness",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.4",
|
|
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.8.
|
|
26
|
+
"version": "0.8.4",
|
|
27
27
|
"server": "github://api.github.com/pulumi"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -16,7 +16,7 @@ import * as outputs from "../types/output";
|
|
|
16
16
|
* action: "onrun",
|
|
17
17
|
* type: "pipeline",
|
|
18
18
|
* enabled: true,
|
|
19
|
-
*
|
|
19
|
+
* policyReferences: [{
|
|
20
20
|
* identifier: "always_run",
|
|
21
21
|
* severity: "warning",
|
|
22
22
|
* }],
|
|
@@ -49,11 +49,14 @@ export interface GetPolicySetArgs {
|
|
|
49
49
|
*/
|
|
50
50
|
orgId?: string;
|
|
51
51
|
/**
|
|
52
|
-
* List of policy identifiers / severity for the policyset.
|
|
52
|
+
* List of policy identifiers / severity for the policyset. Deprecated: Use 'policy_references' instead.
|
|
53
53
|
*
|
|
54
54
|
* @deprecated Use 'policy_references' instead. This field will be removed in a future version.
|
|
55
55
|
*/
|
|
56
56
|
policies?: inputs.platform.GetPolicySetPolicy[];
|
|
57
|
+
/**
|
|
58
|
+
* Set of policy identifiers / severity for the policyset. Order is not significant.
|
|
59
|
+
*/
|
|
57
60
|
policyReferences?: inputs.platform.GetPolicySetPolicyReference[];
|
|
58
61
|
/**
|
|
59
62
|
* Unique identifier of the project.
|
|
@@ -97,11 +100,14 @@ export interface GetPolicySetResult {
|
|
|
97
100
|
*/
|
|
98
101
|
readonly orgId?: string;
|
|
99
102
|
/**
|
|
100
|
-
* List of policy identifiers / severity for the policyset.
|
|
103
|
+
* List of policy identifiers / severity for the policyset. Deprecated: Use 'policy_references' instead.
|
|
101
104
|
*
|
|
102
105
|
* @deprecated Use 'policy_references' instead. This field will be removed in a future version.
|
|
103
106
|
*/
|
|
104
107
|
readonly policies: outputs.platform.GetPolicySetPolicy[];
|
|
108
|
+
/**
|
|
109
|
+
* Set of policy identifiers / severity for the policyset. Order is not significant.
|
|
110
|
+
*/
|
|
105
111
|
readonly policyReferences: outputs.platform.GetPolicySetPolicyReference[];
|
|
106
112
|
/**
|
|
107
113
|
* Unique identifier of the project.
|
|
@@ -131,7 +137,7 @@ export interface GetPolicySetResult {
|
|
|
131
137
|
* action: "onrun",
|
|
132
138
|
* type: "pipeline",
|
|
133
139
|
* enabled: true,
|
|
134
|
-
*
|
|
140
|
+
* policyReferences: [{
|
|
135
141
|
* identifier: "always_run",
|
|
136
142
|
* severity: "warning",
|
|
137
143
|
* }],
|
|
@@ -164,11 +170,14 @@ export interface GetPolicySetOutputArgs {
|
|
|
164
170
|
*/
|
|
165
171
|
orgId?: pulumi.Input<string>;
|
|
166
172
|
/**
|
|
167
|
-
* List of policy identifiers / severity for the policyset.
|
|
173
|
+
* List of policy identifiers / severity for the policyset. Deprecated: Use 'policy_references' instead.
|
|
168
174
|
*
|
|
169
175
|
* @deprecated Use 'policy_references' instead. This field will be removed in a future version.
|
|
170
176
|
*/
|
|
171
177
|
policies?: pulumi.Input<pulumi.Input<inputs.platform.GetPolicySetPolicyArgs>[]>;
|
|
178
|
+
/**
|
|
179
|
+
* Set of policy identifiers / severity for the policyset. Order is not significant.
|
|
180
|
+
*/
|
|
172
181
|
policyReferences?: pulumi.Input<pulumi.Input<inputs.platform.GetPolicySetPolicyReferenceArgs>[]>;
|
|
173
182
|
/**
|
|
174
183
|
* Unique identifier of the project.
|
package/platform/getPolicySet.js
CHANGED
|
@@ -20,7 +20,7 @@ const utilities = require("../utilities");
|
|
|
20
20
|
* action: "onrun",
|
|
21
21
|
* type: "pipeline",
|
|
22
22
|
* enabled: true,
|
|
23
|
-
*
|
|
23
|
+
* policyReferences: [{
|
|
24
24
|
* identifier: "always_run",
|
|
25
25
|
* severity: "warning",
|
|
26
26
|
* }],
|
|
@@ -57,7 +57,7 @@ exports.getPolicySet = getPolicySet;
|
|
|
57
57
|
* action: "onrun",
|
|
58
58
|
* type: "pipeline",
|
|
59
59
|
* enabled: true,
|
|
60
|
-
*
|
|
60
|
+
* policyReferences: [{
|
|
61
61
|
* identifier: "always_run",
|
|
62
62
|
* severity: "warning",
|
|
63
63
|
* }],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPolicySet.js","sourceRoot":"","sources":["../../platform/getPolicySet.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,oCAaC;
|
|
1
|
+
{"version":3,"file":"getPolicySet.js","sourceRoot":"","sources":["../../platform/getPolicySet.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,oCAaC;AAqGD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAAiC;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE;QAC7E,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,gDAaC"}
|
package/types/input.d.ts
CHANGED
|
@@ -4884,7 +4884,7 @@ export declare namespace platform {
|
|
|
4884
4884
|
}
|
|
4885
4885
|
interface GetPolicySetPolicy {
|
|
4886
4886
|
/**
|
|
4887
|
-
*
|
|
4887
|
+
* Unique identifier of the policy
|
|
4888
4888
|
*/
|
|
4889
4889
|
identifier: string;
|
|
4890
4890
|
/**
|
|
@@ -4894,7 +4894,7 @@ export declare namespace platform {
|
|
|
4894
4894
|
}
|
|
4895
4895
|
interface GetPolicySetPolicyArgs {
|
|
4896
4896
|
/**
|
|
4897
|
-
*
|
|
4897
|
+
* Unique identifier of the policy
|
|
4898
4898
|
*/
|
|
4899
4899
|
identifier: pulumi.Input<string>;
|
|
4900
4900
|
/**
|
|
@@ -4904,7 +4904,7 @@ export declare namespace platform {
|
|
|
4904
4904
|
}
|
|
4905
4905
|
interface GetPolicySetPolicyReference {
|
|
4906
4906
|
/**
|
|
4907
|
-
* Unique identifier of the
|
|
4907
|
+
* Unique identifier of the policy
|
|
4908
4908
|
*/
|
|
4909
4909
|
identifier: string;
|
|
4910
4910
|
/**
|
|
@@ -4914,7 +4914,7 @@ export declare namespace platform {
|
|
|
4914
4914
|
}
|
|
4915
4915
|
interface GetPolicySetPolicyReferenceArgs {
|
|
4916
4916
|
/**
|
|
4917
|
-
* Unique identifier of the
|
|
4917
|
+
* Unique identifier of the policy
|
|
4918
4918
|
*/
|
|
4919
4919
|
identifier: pulumi.Input<string>;
|
|
4920
4920
|
/**
|
|
@@ -32328,7 +32328,7 @@ export declare namespace platform {
|
|
|
32328
32328
|
}
|
|
32329
32329
|
interface PolicySetPolicyReference {
|
|
32330
32330
|
/**
|
|
32331
|
-
* Unique identifier of the
|
|
32331
|
+
* Unique identifier of the policy
|
|
32332
32332
|
*/
|
|
32333
32333
|
identifier: pulumi.Input<string>;
|
|
32334
32334
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -6020,7 +6020,7 @@ export declare namespace platform {
|
|
|
6020
6020
|
}
|
|
6021
6021
|
interface GetPolicySetPolicy {
|
|
6022
6022
|
/**
|
|
6023
|
-
*
|
|
6023
|
+
* Unique identifier of the policy
|
|
6024
6024
|
*/
|
|
6025
6025
|
identifier: string;
|
|
6026
6026
|
/**
|
|
@@ -6030,7 +6030,7 @@ export declare namespace platform {
|
|
|
6030
6030
|
}
|
|
6031
6031
|
interface GetPolicySetPolicyReference {
|
|
6032
6032
|
/**
|
|
6033
|
-
* Unique identifier of the
|
|
6033
|
+
* Unique identifier of the policy
|
|
6034
6034
|
*/
|
|
6035
6035
|
identifier: string;
|
|
6036
6036
|
/**
|
|
@@ -33548,7 +33548,7 @@ export declare namespace platform {
|
|
|
33548
33548
|
}
|
|
33549
33549
|
interface PolicySetPolicyReference {
|
|
33550
33550
|
/**
|
|
33551
|
-
* Unique identifier of the
|
|
33551
|
+
* Unique identifier of the policy
|
|
33552
33552
|
*/
|
|
33553
33553
|
identifier: string;
|
|
33554
33554
|
/**
|