@pulumi/harness 0.11.1 → 0.11.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/package.json +2 -2
- package/platform/centralNotificationChannel.d.ts +0 -54
- package/platform/centralNotificationChannel.js +0 -4
- package/platform/centralNotificationChannel.js.map +1 -1
- package/platform/defaultNotificationTemplateSet.d.ts +0 -60
- package/platform/defaultNotificationTemplateSet.js +0 -8
- package/platform/defaultNotificationTemplateSet.js.map +1 -1
- package/platform/delegatetoken.d.ts +0 -3
- package/platform/delegatetoken.js +0 -2
- package/platform/delegatetoken.js.map +1 -1
- package/platform/getCentralNotificationChannel.d.ts +6 -42
- package/platform/getCentralNotificationChannel.js +0 -4
- package/platform/getCentralNotificationChannel.js.map +1 -1
- package/platform/getDefaultNotificationTemplateSet.d.ts +6 -42
- package/platform/getDefaultNotificationTemplateSet.js +0 -4
- package/platform/getDefaultNotificationTemplateSet.js.map +1 -1
- package/platform/getDelegateList.d.ts +239 -0
- package/platform/getDelegateList.js +112 -0
- package/platform/getDelegateList.js.map +1 -0
- package/platform/index.d.ts +3 -0
- package/platform/index.js +9 -6
- package/platform/index.js.map +1 -1
- package/types/input.d.ts +3 -3
- package/types/output.d.ts +32 -2
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data source for retrieving a list of Harness delegates.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as harness from "@pulumi/harness";
|
|
11
|
+
*
|
|
12
|
+
* // Get all delegates in an account
|
|
13
|
+
* const all = harness.platform.getDelegateList({
|
|
14
|
+
* accountId: "your_account_id",
|
|
15
|
+
* fetchAll: true,
|
|
16
|
+
* });
|
|
17
|
+
* // Get only connected delegates with specific tags
|
|
18
|
+
* const connectedWithTags = harness.platform.getDelegateList({
|
|
19
|
+
* accountId: "your_account_id",
|
|
20
|
+
* orgId: "your_org_id",
|
|
21
|
+
* projectId: "your_project_id",
|
|
22
|
+
* status: "CONNECTED",
|
|
23
|
+
* delegateTags: [
|
|
24
|
+
* "production",
|
|
25
|
+
* "kubernetes",
|
|
26
|
+
* ],
|
|
27
|
+
* });
|
|
28
|
+
* // Get delegates by name pattern and group
|
|
29
|
+
* const specificGroup = harness.platform.getDelegateList({
|
|
30
|
+
* accountId: "your_account_id",
|
|
31
|
+
* delegateName: "prod-delegate",
|
|
32
|
+
* delegateGroupIdentifier: "production-group",
|
|
33
|
+
* versionStatus: "ACTIVE",
|
|
34
|
+
* });
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
export declare function getDelegateList(args: GetDelegateListArgs, opts?: pulumi.InvokeOptions): Promise<GetDelegateListResult>;
|
|
38
|
+
/**
|
|
39
|
+
* A collection of arguments for invoking getDelegateList.
|
|
40
|
+
*/
|
|
41
|
+
export interface GetDelegateListArgs {
|
|
42
|
+
/**
|
|
43
|
+
* Account identifier.
|
|
44
|
+
*/
|
|
45
|
+
accountId: string;
|
|
46
|
+
/**
|
|
47
|
+
* Filter delegates by auto upgrade setting.
|
|
48
|
+
*/
|
|
49
|
+
autoUpgrade?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Filter delegates by group identifier.
|
|
52
|
+
*/
|
|
53
|
+
delegateGroupIdentifier?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Filter delegate instances. Valid values: AVAILABLE, EXPIRED.
|
|
56
|
+
*/
|
|
57
|
+
delegateInstanceFilter?: string;
|
|
58
|
+
/**
|
|
59
|
+
* Filter delegates by name.
|
|
60
|
+
*/
|
|
61
|
+
delegateName?: string;
|
|
62
|
+
/**
|
|
63
|
+
* Filter delegates by tags.
|
|
64
|
+
*/
|
|
65
|
+
delegateTags?: string[];
|
|
66
|
+
/**
|
|
67
|
+
* Whether to fetch all delegates.
|
|
68
|
+
*/
|
|
69
|
+
fetchAll?: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* Filter type for delegates.
|
|
72
|
+
*/
|
|
73
|
+
filterType: string;
|
|
74
|
+
/**
|
|
75
|
+
* Organization identifier.
|
|
76
|
+
*/
|
|
77
|
+
orgId?: string;
|
|
78
|
+
/**
|
|
79
|
+
* Project identifier.
|
|
80
|
+
*/
|
|
81
|
+
projectId?: string;
|
|
82
|
+
/**
|
|
83
|
+
* Filter delegates by status. Valid values: CONNECTED, DISCONNECTED, ENABLED, DISABLED, WAITING*FOR*APPROVAL, DELETED.
|
|
84
|
+
*/
|
|
85
|
+
status?: string;
|
|
86
|
+
/**
|
|
87
|
+
* Filter delegates by version status. Valid values: ACTIVE, EXPIRED, EXPIRING, UNSUPPORTED.
|
|
88
|
+
*/
|
|
89
|
+
versionStatus?: string;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* A collection of values returned by getDelegateList.
|
|
93
|
+
*/
|
|
94
|
+
export interface GetDelegateListResult {
|
|
95
|
+
/**
|
|
96
|
+
* Account identifier.
|
|
97
|
+
*/
|
|
98
|
+
readonly accountId: string;
|
|
99
|
+
/**
|
|
100
|
+
* Filter delegates by auto upgrade setting.
|
|
101
|
+
*/
|
|
102
|
+
readonly autoUpgrade?: string;
|
|
103
|
+
/**
|
|
104
|
+
* Filter delegates by group identifier.
|
|
105
|
+
*/
|
|
106
|
+
readonly delegateGroupIdentifier?: string;
|
|
107
|
+
/**
|
|
108
|
+
* Filter delegate instances. Valid values: AVAILABLE, EXPIRED.
|
|
109
|
+
*/
|
|
110
|
+
readonly delegateInstanceFilter?: string;
|
|
111
|
+
/**
|
|
112
|
+
* Filter delegates by name.
|
|
113
|
+
*/
|
|
114
|
+
readonly delegateName?: string;
|
|
115
|
+
/**
|
|
116
|
+
* Filter delegates by tags.
|
|
117
|
+
*/
|
|
118
|
+
readonly delegateTags?: string[];
|
|
119
|
+
/**
|
|
120
|
+
* List of delegates.
|
|
121
|
+
*/
|
|
122
|
+
readonly delegates: outputs.platform.GetDelegateListDelegate[];
|
|
123
|
+
/**
|
|
124
|
+
* Whether to fetch all delegates.
|
|
125
|
+
*/
|
|
126
|
+
readonly fetchAll?: boolean;
|
|
127
|
+
/**
|
|
128
|
+
* Filter type for delegates.
|
|
129
|
+
*/
|
|
130
|
+
readonly filterType: string;
|
|
131
|
+
/**
|
|
132
|
+
* The provider-assigned unique ID for this managed resource.
|
|
133
|
+
*/
|
|
134
|
+
readonly id: string;
|
|
135
|
+
/**
|
|
136
|
+
* Organization identifier.
|
|
137
|
+
*/
|
|
138
|
+
readonly orgId?: string;
|
|
139
|
+
/**
|
|
140
|
+
* Project identifier.
|
|
141
|
+
*/
|
|
142
|
+
readonly projectId?: string;
|
|
143
|
+
/**
|
|
144
|
+
* Filter delegates by status. Valid values: CONNECTED, DISCONNECTED, ENABLED, DISABLED, WAITING*FOR*APPROVAL, DELETED.
|
|
145
|
+
*/
|
|
146
|
+
readonly status?: string;
|
|
147
|
+
/**
|
|
148
|
+
* Filter delegates by version status. Valid values: ACTIVE, EXPIRED, EXPIRING, UNSUPPORTED.
|
|
149
|
+
*/
|
|
150
|
+
readonly versionStatus?: string;
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
* Data source for retrieving a list of Harness delegates.
|
|
154
|
+
*
|
|
155
|
+
* ## Example Usage
|
|
156
|
+
*
|
|
157
|
+
* ```typescript
|
|
158
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
159
|
+
* import * as harness from "@pulumi/harness";
|
|
160
|
+
*
|
|
161
|
+
* // Get all delegates in an account
|
|
162
|
+
* const all = harness.platform.getDelegateList({
|
|
163
|
+
* accountId: "your_account_id",
|
|
164
|
+
* fetchAll: true,
|
|
165
|
+
* });
|
|
166
|
+
* // Get only connected delegates with specific tags
|
|
167
|
+
* const connectedWithTags = harness.platform.getDelegateList({
|
|
168
|
+
* accountId: "your_account_id",
|
|
169
|
+
* orgId: "your_org_id",
|
|
170
|
+
* projectId: "your_project_id",
|
|
171
|
+
* status: "CONNECTED",
|
|
172
|
+
* delegateTags: [
|
|
173
|
+
* "production",
|
|
174
|
+
* "kubernetes",
|
|
175
|
+
* ],
|
|
176
|
+
* });
|
|
177
|
+
* // Get delegates by name pattern and group
|
|
178
|
+
* const specificGroup = harness.platform.getDelegateList({
|
|
179
|
+
* accountId: "your_account_id",
|
|
180
|
+
* delegateName: "prod-delegate",
|
|
181
|
+
* delegateGroupIdentifier: "production-group",
|
|
182
|
+
* versionStatus: "ACTIVE",
|
|
183
|
+
* });
|
|
184
|
+
* ```
|
|
185
|
+
*/
|
|
186
|
+
export declare function getDelegateListOutput(args: GetDelegateListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDelegateListResult>;
|
|
187
|
+
/**
|
|
188
|
+
* A collection of arguments for invoking getDelegateList.
|
|
189
|
+
*/
|
|
190
|
+
export interface GetDelegateListOutputArgs {
|
|
191
|
+
/**
|
|
192
|
+
* Account identifier.
|
|
193
|
+
*/
|
|
194
|
+
accountId: pulumi.Input<string>;
|
|
195
|
+
/**
|
|
196
|
+
* Filter delegates by auto upgrade setting.
|
|
197
|
+
*/
|
|
198
|
+
autoUpgrade?: pulumi.Input<string>;
|
|
199
|
+
/**
|
|
200
|
+
* Filter delegates by group identifier.
|
|
201
|
+
*/
|
|
202
|
+
delegateGroupIdentifier?: pulumi.Input<string>;
|
|
203
|
+
/**
|
|
204
|
+
* Filter delegate instances. Valid values: AVAILABLE, EXPIRED.
|
|
205
|
+
*/
|
|
206
|
+
delegateInstanceFilter?: pulumi.Input<string>;
|
|
207
|
+
/**
|
|
208
|
+
* Filter delegates by name.
|
|
209
|
+
*/
|
|
210
|
+
delegateName?: pulumi.Input<string>;
|
|
211
|
+
/**
|
|
212
|
+
* Filter delegates by tags.
|
|
213
|
+
*/
|
|
214
|
+
delegateTags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
215
|
+
/**
|
|
216
|
+
* Whether to fetch all delegates.
|
|
217
|
+
*/
|
|
218
|
+
fetchAll?: pulumi.Input<boolean>;
|
|
219
|
+
/**
|
|
220
|
+
* Filter type for delegates.
|
|
221
|
+
*/
|
|
222
|
+
filterType: pulumi.Input<string>;
|
|
223
|
+
/**
|
|
224
|
+
* Organization identifier.
|
|
225
|
+
*/
|
|
226
|
+
orgId?: pulumi.Input<string>;
|
|
227
|
+
/**
|
|
228
|
+
* Project identifier.
|
|
229
|
+
*/
|
|
230
|
+
projectId?: pulumi.Input<string>;
|
|
231
|
+
/**
|
|
232
|
+
* Filter delegates by status. Valid values: CONNECTED, DISCONNECTED, ENABLED, DISABLED, WAITING*FOR*APPROVAL, DELETED.
|
|
233
|
+
*/
|
|
234
|
+
status?: pulumi.Input<string>;
|
|
235
|
+
/**
|
|
236
|
+
* Filter delegates by version status. Valid values: ACTIVE, EXPIRED, EXPIRING, UNSUPPORTED.
|
|
237
|
+
*/
|
|
238
|
+
versionStatus?: pulumi.Input<string>;
|
|
239
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
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.getDelegateListOutput = exports.getDelegateList = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data source for retrieving a list of Harness delegates.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as harness from "@pulumi/harness";
|
|
16
|
+
*
|
|
17
|
+
* // Get all delegates in an account
|
|
18
|
+
* const all = harness.platform.getDelegateList({
|
|
19
|
+
* accountId: "your_account_id",
|
|
20
|
+
* fetchAll: true,
|
|
21
|
+
* });
|
|
22
|
+
* // Get only connected delegates with specific tags
|
|
23
|
+
* const connectedWithTags = harness.platform.getDelegateList({
|
|
24
|
+
* accountId: "your_account_id",
|
|
25
|
+
* orgId: "your_org_id",
|
|
26
|
+
* projectId: "your_project_id",
|
|
27
|
+
* status: "CONNECTED",
|
|
28
|
+
* delegateTags: [
|
|
29
|
+
* "production",
|
|
30
|
+
* "kubernetes",
|
|
31
|
+
* ],
|
|
32
|
+
* });
|
|
33
|
+
* // Get delegates by name pattern and group
|
|
34
|
+
* const specificGroup = harness.platform.getDelegateList({
|
|
35
|
+
* accountId: "your_account_id",
|
|
36
|
+
* delegateName: "prod-delegate",
|
|
37
|
+
* delegateGroupIdentifier: "production-group",
|
|
38
|
+
* versionStatus: "ACTIVE",
|
|
39
|
+
* });
|
|
40
|
+
* ```
|
|
41
|
+
*/
|
|
42
|
+
function getDelegateList(args, opts) {
|
|
43
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
44
|
+
return pulumi.runtime.invoke("harness:platform/getDelegateList:getDelegateList", {
|
|
45
|
+
"accountId": args.accountId,
|
|
46
|
+
"autoUpgrade": args.autoUpgrade,
|
|
47
|
+
"delegateGroupIdentifier": args.delegateGroupIdentifier,
|
|
48
|
+
"delegateInstanceFilter": args.delegateInstanceFilter,
|
|
49
|
+
"delegateName": args.delegateName,
|
|
50
|
+
"delegateTags": args.delegateTags,
|
|
51
|
+
"fetchAll": args.fetchAll,
|
|
52
|
+
"filterType": args.filterType,
|
|
53
|
+
"orgId": args.orgId,
|
|
54
|
+
"projectId": args.projectId,
|
|
55
|
+
"status": args.status,
|
|
56
|
+
"versionStatus": args.versionStatus,
|
|
57
|
+
}, opts);
|
|
58
|
+
}
|
|
59
|
+
exports.getDelegateList = getDelegateList;
|
|
60
|
+
/**
|
|
61
|
+
* Data source for retrieving a list of Harness delegates.
|
|
62
|
+
*
|
|
63
|
+
* ## Example Usage
|
|
64
|
+
*
|
|
65
|
+
* ```typescript
|
|
66
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
67
|
+
* import * as harness from "@pulumi/harness";
|
|
68
|
+
*
|
|
69
|
+
* // Get all delegates in an account
|
|
70
|
+
* const all = harness.platform.getDelegateList({
|
|
71
|
+
* accountId: "your_account_id",
|
|
72
|
+
* fetchAll: true,
|
|
73
|
+
* });
|
|
74
|
+
* // Get only connected delegates with specific tags
|
|
75
|
+
* const connectedWithTags = harness.platform.getDelegateList({
|
|
76
|
+
* accountId: "your_account_id",
|
|
77
|
+
* orgId: "your_org_id",
|
|
78
|
+
* projectId: "your_project_id",
|
|
79
|
+
* status: "CONNECTED",
|
|
80
|
+
* delegateTags: [
|
|
81
|
+
* "production",
|
|
82
|
+
* "kubernetes",
|
|
83
|
+
* ],
|
|
84
|
+
* });
|
|
85
|
+
* // Get delegates by name pattern and group
|
|
86
|
+
* const specificGroup = harness.platform.getDelegateList({
|
|
87
|
+
* accountId: "your_account_id",
|
|
88
|
+
* delegateName: "prod-delegate",
|
|
89
|
+
* delegateGroupIdentifier: "production-group",
|
|
90
|
+
* versionStatus: "ACTIVE",
|
|
91
|
+
* });
|
|
92
|
+
* ```
|
|
93
|
+
*/
|
|
94
|
+
function getDelegateListOutput(args, opts) {
|
|
95
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
96
|
+
return pulumi.runtime.invokeOutput("harness:platform/getDelegateList:getDelegateList", {
|
|
97
|
+
"accountId": args.accountId,
|
|
98
|
+
"autoUpgrade": args.autoUpgrade,
|
|
99
|
+
"delegateGroupIdentifier": args.delegateGroupIdentifier,
|
|
100
|
+
"delegateInstanceFilter": args.delegateInstanceFilter,
|
|
101
|
+
"delegateName": args.delegateName,
|
|
102
|
+
"delegateTags": args.delegateTags,
|
|
103
|
+
"fetchAll": args.fetchAll,
|
|
104
|
+
"filterType": args.filterType,
|
|
105
|
+
"orgId": args.orgId,
|
|
106
|
+
"projectId": args.projectId,
|
|
107
|
+
"status": args.status,
|
|
108
|
+
"versionStatus": args.versionStatus,
|
|
109
|
+
}, opts);
|
|
110
|
+
}
|
|
111
|
+
exports.getDelegateListOutput = getDelegateListOutput;
|
|
112
|
+
//# sourceMappingURL=getDelegateList.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDelegateList.js","sourceRoot":"","sources":["../../platform/getDelegateList.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,0CAgBC;AAqHD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAAiC;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kDAAkD,EAAE;QACnF,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,sDAgBC"}
|
package/platform/index.d.ts
CHANGED
|
@@ -217,6 +217,9 @@ export declare const getDbSchemaOutput: typeof import("./getDbSchema").getDbSche
|
|
|
217
217
|
export { GetDefaultNotificationTemplateSetArgs, GetDefaultNotificationTemplateSetResult, GetDefaultNotificationTemplateSetOutputArgs } from "./getDefaultNotificationTemplateSet";
|
|
218
218
|
export declare const getDefaultNotificationTemplateSet: typeof import("./getDefaultNotificationTemplateSet").getDefaultNotificationTemplateSet;
|
|
219
219
|
export declare const getDefaultNotificationTemplateSetOutput: typeof import("./getDefaultNotificationTemplateSet").getDefaultNotificationTemplateSetOutput;
|
|
220
|
+
export { GetDelegateListArgs, GetDelegateListResult, GetDelegateListOutputArgs } from "./getDelegateList";
|
|
221
|
+
export declare const getDelegateList: typeof import("./getDelegateList").getDelegateList;
|
|
222
|
+
export declare const getDelegateListOutput: typeof import("./getDelegateList").getDelegateListOutput;
|
|
220
223
|
export { GetDelegatetokenArgs, GetDelegatetokenResult, GetDelegatetokenOutputArgs } from "./getDelegatetoken";
|
|
221
224
|
export declare const getDelegatetoken: typeof import("./getDelegatetoken").getDelegatetoken;
|
|
222
225
|
export declare const getDelegatetokenOutput: typeof import("./getDelegatetoken").getDelegatetokenOutput;
|
package/platform/index.js
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
exports.getArtifactoryConnectorOutput = exports.getArtifactoryConnector = exports.getAppDynamicsConnectorOutput = exports.getAppDynamicsConnector = exports.getApiKeyOutput = exports.getApiKey = exports.GcpSecretManagerConnector = exports.GcpConnector = exports.GcpCloudCostConnector = exports.Filters = exports.FileStoreFolder = exports.FileStoreFile = exports.FeatureFlagTargetGroup = exports.FeatureFlagTarget = exports.FeatureFlagApiKey = exports.FeatureFlag = exports.EnvironmentServiceOverrides = exports.EnvironmentGroup = exports.EnvironmentClustersMapping = exports.Environment = exports.ElasticsearchConnector = exports.DynatraceConnector = exports.DockerConnector = exports.Delegatetoken = exports.DefaultNotificationTemplateSet = exports.DbSchema = exports.DbInstance = exports.DatadogConnector = exports.Dashboards = exports.DashboardFolders = exports.ConnectorRancher = exports.ConnectorPdc = exports.ConnectorJdbc = exports.ConnectorGcpKms = exports.ConnectorCustomhealthsource = exports.ConnectorCustomSecretManager = exports.ConnectorAzureRepo = exports.ConnectorAzureArtifacts = exports.CentralNotificationRule = exports.CentralNotificationChannel = exports.BitbucketConnector = exports.AzureKeyVaultConnector = exports.AzureCloudProviderConnector = exports.AzureCloudCostConnector = exports.AwsSecretManagerConnector = exports.AwsKmsConnector = exports.AwsConnector = exports.AwsCCConnector = exports.ArtifactoryConnector = exports.AppDynamicsConnector = void 0;
|
|
6
6
|
exports.getDbSchemaOutput = exports.getDbSchema = exports.getDbInstanceOutput = exports.getDbInstance = exports.getDatadogConnectorOutput = exports.getDatadogConnector = exports.getDashboardsOutput = exports.getDashboards = exports.getDashboardFoldersOutput = exports.getDashboardFolders = exports.getCurrentUserOutput = exports.getCurrentUser = exports.getCurrentAccountOutput = exports.getCurrentAccount = exports.getConnectorRancherOutput = exports.getConnectorRancher = exports.getConnectorPdcOutput = exports.getConnectorPdc = exports.getConnectorJdbcOutput = exports.getConnectorJdbc = exports.getConnectorGcpKmsOutput = exports.getConnectorGcpKms = exports.getConnectorCustomhealthsourceOutput = exports.getConnectorCustomhealthsource = exports.getConnectorCustomSecretManagerOutput = exports.getConnectorCustomSecretManager = exports.getConnectorAzureRepoOutput = exports.getConnectorAzureRepo = exports.getCentralNotificationRuleOutput = exports.getCentralNotificationRule = exports.getCentralNotificationChannelOutput = exports.getCentralNotificationChannel = exports.getCcmFiltersOutput = exports.getCcmFilters = exports.getBitbucketConnectorOutput = exports.getBitbucketConnector = exports.getAzureKeyVaultConnectorOutput = exports.getAzureKeyVaultConnector = exports.getAzureCloudProviderConnectorOutput = exports.getAzureCloudProviderConnector = exports.getAzureCloudCostConnectorOutput = exports.getAzureCloudCostConnector = exports.getAwsSecretManagerConnectorOutput = exports.getAwsSecretManagerConnector = exports.getAwsKmsConnectorOutput = exports.getAwsKmsConnector = exports.getAwsConnectorOutput = exports.getAwsConnector = exports.getAwsCCConnectorOutput = exports.getAwsCCConnector = void 0;
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.Workspace = exports.VaultConnector = exports.Variables = exports.Usergroup = exports.User = exports.Triggers = exports.Token = exports.TerraformCloudConnector = exports.TemplateFilters = exports.Template = exports.TasConnector = exports.SumologicConnector = exports.SpotConnector = exports.SplunkConnector = exports.Slo = exports.ServiceOverridesV2 = exports.ServiceNowConnector = exports.ServiceAccount = exports.Service = exports.SecretWinrm = exports.SecretText = exports.SecretSshkey = exports.SecretFile = exports.Roles = exports.RoleAssignments = void 0;
|
|
7
|
+
exports.getGitopsAppProjectOutput = exports.getGitopsAppProject = exports.getGitopsAgentOperatorYamlOutput = exports.getGitopsAgentOperatorYaml = exports.getGitopsAgentDeployYamlOutput = exports.getGitopsAgentDeployYaml = exports.getGitopsAgentOutput = exports.getGitopsAgent = exports.getGitlabConnectorOutput = exports.getGitlabConnector = exports.getGithubConnectorOutput = exports.getGithubConnector = exports.getGitConnectorOutput = exports.getGitConnector = exports.getGcpSecretManagerConnectorOutput = exports.getGcpSecretManagerConnector = exports.getGcpProjectsOutput = exports.getGcpProjects = exports.getGcpConnectorOutput = exports.getGcpConnector = exports.getGcpCloudCostConnectorOutput = exports.getGcpCloudCostConnector = exports.getFiltersOutput = exports.getFilters = exports.getFileStoreFolderOutput = exports.getFileStoreFolder = exports.getFileStoreFileOutput = exports.getFileStoreFile = exports.getEnvironmentServiceOverridesOutput = exports.getEnvironmentServiceOverrides = exports.getEnvironmentListOutput = exports.getEnvironmentList = exports.getEnvironmentGroupOutput = exports.getEnvironmentGroup = exports.getEnvironmentClustersMappingOutput = exports.getEnvironmentClustersMapping = exports.getEnvironmentOutput = exports.getEnvironment = exports.getElasticsearchConnectorOutput = exports.getElasticsearchConnector = exports.getDynatraceConnectorOutput = exports.getDynatraceConnector = exports.getDockerConnectorOutput = exports.getDockerConnector = exports.getDelegatetokenOutput = exports.getDelegatetoken = exports.getDelegateListOutput = exports.getDelegateList = exports.getDefaultNotificationTemplateSetOutput = exports.getDefaultNotificationTemplateSet = void 0;
|
|
8
|
+
exports.getKubernetesConnectorOutput = exports.getKubernetesConnector = exports.getKubernetesCloudCostConnectorOutput = exports.getKubernetesCloudCostConnector = exports.getJiraConnectorOutput = exports.getJiraConnector = exports.getJenkinsConnectorOutput = exports.getJenkinsConnector = exports.getInputSetOutput = exports.getInputSet = exports.getInfrastructureOutput = exports.getInfrastructure = exports.getInfraVariableSetOutput = exports.getInfraVariableSet = exports.getInfraModulesOutput = exports.getInfraModules = exports.getInfraModuleTestingOutput = exports.getInfraModuleTesting = exports.getInfraModuleOutput = exports.getInfraModule = exports.getIdpEnvironmentBlueprintOutput = exports.getIdpEnvironmentBlueprint = exports.getIdpEnvironmentOutput = exports.getIdpEnvironment = exports.getIdpCatalogEntityOutput = exports.getIdpCatalogEntity = exports.getIacmDefaultPipelineOutput = exports.getIacmDefaultPipeline = exports.getHelmConnectorOutput = exports.getHelmConnector = exports.getHarRegistryOutput = exports.getHarRegistry = exports.getGitxWebhookOutput = exports.getGitxWebhook = exports.getGitopsRepositoryOutput = exports.getGitopsRepository = exports.getGitopsRepoCredOutput = exports.getGitopsRepoCred = exports.getGitopsRepoCertOutput = exports.getGitopsRepoCert = exports.getGitopsGnupgOutput = exports.getGitopsGnupg = exports.getGitopsFiltersOutput = exports.getGitopsFilters = exports.getGitopsClusterOutput = exports.getGitopsCluster = exports.getGitopsApplicationsOutput = exports.getGitopsApplications = exports.getGitopsAppProjectMappingOutput = exports.getGitopsAppProjectMapping = void 0;
|
|
9
|
+
exports.getRolesOutput = exports.getRoles = exports.getRoleAssignmentsOutput = exports.getRoleAssignments = exports.getResourceGroupOutput = exports.getResourceGroup = exports.getRepoWebhookOutput = exports.getRepoWebhook = exports.getRepoRuleBranchOutput = exports.getRepoRuleBranch = exports.getRepoOutput = exports.getRepo = exports.getProviderOutput = exports.getProvider = exports.getPrometheusConnectorOutput = exports.getPrometheusConnector = exports.getProjectListOutput = exports.getProjectList = exports.getProjectOutput = exports.getProject = exports.getPolicySetOutput = exports.getPolicySet = exports.getPolicyOutput = exports.getPolicy = exports.getPipelineListOutput = exports.getPipelineList = exports.getPipelineFiltersOutput = exports.getPipelineFilters = exports.getPipelineCentralNotificationRuleOutput = exports.getPipelineCentralNotificationRule = exports.getPipelineOutput = exports.getPipeline = exports.getPermissionsOutput = exports.getPermissions = exports.getPagerdutyConnectorOutput = exports.getPagerdutyConnector = exports.getOverridesOutput = exports.getOverrides = exports.getOrganizationOutput = exports.getOrganization = exports.getOciHelmConnectorOutput = exports.getOciHelmConnector = exports.getNotificationRuleOutput = exports.getNotificationRule = exports.getNexusConnectorOutput = exports.getNexusConnector = exports.getMonitoredServiceOutput = exports.getMonitoredService = exports.getManualFreezeOutput = exports.getManualFreeze = void 0;
|
|
10
|
+
exports.getWorkspaceOutputValueOutput = exports.getWorkspaceOutputValue = exports.getWorkspaceOutput = exports.getWorkspace = exports.getVaultConnectorOutput = exports.getVaultConnector = exports.getVariablesOutput = exports.getVariables = exports.getUsergroupOutput = exports.getUsergroup = exports.getUserOutput = exports.getUser = exports.getTriggersOutput = exports.getTriggers = exports.getTokenOutput = exports.getToken = exports.getTerraformCloudConnectorOutput = exports.getTerraformCloudConnector = exports.getTemplateFiltersOutput = exports.getTemplateFilters = exports.getTemplateOutput = exports.getTemplate = exports.getTasConnectorOutput = exports.getTasConnector = exports.getSumologicConnectorOutput = exports.getSumologicConnector = exports.getSpotConnectorOutput = exports.getSpotConnector = exports.getSplunkConnectorOutput = exports.getSplunkConnector = exports.getSloOutput = exports.getSlo = exports.getServiceOverridesV2Output = exports.getServiceOverridesV2 = exports.getServiceNowConnectorOutput = exports.getServiceNowConnector = exports.getServiceListOutput = exports.getServiceList = exports.getServiceAccountOutput = exports.getServiceAccount = exports.getServiceOutput = exports.getService = exports.getSecretWinrmOutput = exports.getSecretWinrm = exports.getSecretTextOutput = exports.getSecretText = exports.getSecretSshkeyOutput = exports.getSecretSshkey = exports.getSecretFileOutput = exports.getSecretFile = void 0;
|
|
11
|
+
exports.RepoRuleBranch = exports.Repo = exports.Provider = exports.PrometheusConnector = exports.Project = exports.PolicySet = exports.Policy = exports.PipelineFilters = exports.PipelineCentralNotificationRule = exports.Pipeline = exports.PagerdutyConnector = exports.Overrides = exports.Organization = exports.OciHelmConnector = exports.NotificationRule = exports.NexusConnector = exports.NewrelicConnector = exports.MonitoredService = exports.ManualFreeze = exports.KubernetesConnector = exports.KubernetesCloudCostConnector = exports.JiraConnector = exports.JenkinsConnector = exports.IpAllowlist = exports.InputSet = exports.Infrastructure = exports.InfraVariableSet = exports.InfraModuleTesting = exports.InfraModule = exports.IdpEnvironmentBlueprint = exports.IdpEnvironment = exports.IdpCatalogEntity = exports.IacmDefaultPipeline = exports.HelmConnector = exports.HarRegistry = exports.GitxWebhook = exports.GitopsFilters = exports.GitopsApplicationset = exports.GitopsAppProjectMapping = exports.GitopsAppProject = exports.GitlabConnector = exports.GithubConnector = exports.GitOpsRepository = exports.GitOpsRepoCred = exports.GitOpsRepoCert = exports.GitOpsGnupg = exports.GitOpsCluster = exports.GitOpsApplications = exports.GitOpsAgent = exports.GitConnector = void 0;
|
|
12
|
+
exports.Workspace = exports.VaultConnector = exports.Variables = exports.Usergroup = exports.User = exports.Triggers = exports.Token = exports.TerraformCloudConnector = exports.TemplateFilters = exports.Template = exports.TasConnector = exports.SumologicConnector = exports.SpotConnector = exports.SplunkConnector = exports.Slo = exports.ServiceOverridesV2 = exports.ServiceNowConnector = exports.ServiceAccount = exports.Service = exports.SecretWinrm = exports.SecretText = exports.SecretSshkey = exports.SecretFile = exports.Roles = exports.RoleAssignments = exports.ResourceGroup = exports.RepoWebhook = void 0;
|
|
13
13
|
const pulumi = require("@pulumi/pulumi");
|
|
14
14
|
const utilities = require("../utilities");
|
|
15
15
|
exports.AppDynamicsConnector = null;
|
|
@@ -187,6 +187,9 @@ utilities.lazyLoad(exports, ["getDbSchema", "getDbSchemaOutput"], () => require(
|
|
|
187
187
|
exports.getDefaultNotificationTemplateSet = null;
|
|
188
188
|
exports.getDefaultNotificationTemplateSetOutput = null;
|
|
189
189
|
utilities.lazyLoad(exports, ["getDefaultNotificationTemplateSet", "getDefaultNotificationTemplateSetOutput"], () => require("./getDefaultNotificationTemplateSet"));
|
|
190
|
+
exports.getDelegateList = null;
|
|
191
|
+
exports.getDelegateListOutput = null;
|
|
192
|
+
utilities.lazyLoad(exports, ["getDelegateList", "getDelegateListOutput"], () => require("./getDelegateList"));
|
|
190
193
|
exports.getDelegatetoken = null;
|
|
191
194
|
exports.getDelegatetokenOutput = null;
|
|
192
195
|
utilities.lazyLoad(exports, ["getDelegatetoken", "getDelegatetokenOutput"], () => require("./getDelegatetoken"));
|