@pulumi/azuredevops 3.5.0-alpha.1735017670 → 3.5.0
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/buildDefinition.d.ts +86 -7
- package/buildDefinition.js +70 -1
- package/buildDefinition.js.map +1 -1
- package/getServiceEndpointAzureRM.d.ts +16 -12
- package/getServiceEndpointAzureRM.js.map +1 -1
- package/gitPermissions.d.ts +3 -3
- package/index.d.ts +15 -0
- package/index.js +27 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/securityroleAssignment.d.ts +3 -3
- package/serviceEndpointAws.d.ts +16 -4
- package/serviceEndpointAws.js +2 -6
- package/serviceEndpointAws.js.map +1 -1
- package/serviceEndpointAzureRM.d.ts +24 -12
- package/serviceEndpointAzureRM.js +2 -0
- package/serviceEndpointAzureRM.js.map +1 -1
- package/serviceEndpointBitBucket.d.ts +1 -1
- package/serviceEndpointBitBucket.js +1 -1
- package/serviceEndpointGeneric.d.ts +1 -3
- package/serviceEndpointGeneric.js +1 -3
- package/serviceEndpointGeneric.js.map +1 -1
- package/serviceEndpointGitLab.d.ts +146 -0
- package/serviceEndpointGitLab.js +116 -0
- package/serviceEndpointGitLab.js.map +1 -0
- package/serviceendpointAzureServiceBus.d.ts +133 -0
- package/serviceendpointAzureServiceBus.js +110 -0
- package/serviceendpointAzureServiceBus.js.map +1 -0
- package/serviceendpointDynamicsLifecycleServices.d.ts +172 -0
- package/serviceendpointDynamicsLifecycleServices.js +128 -0
- package/serviceendpointDynamicsLifecycleServices.js.map +1 -0
- package/serviceendpointSnyk.d.ts +133 -0
- package/serviceendpointSnyk.js +110 -0
- package/serviceendpointSnyk.js.map +1 -0
- package/serviceendpointVisualstudiomarketplace.d.ts +182 -0
- package/serviceendpointVisualstudiomarketplace.js +136 -0
- package/serviceendpointVisualstudiomarketplace.js.map +1 -0
- package/types/input.d.ts +62 -7
- package/types/output.d.ts +62 -7
- package/user.d.ts +11 -1
- package/user.js +11 -1
- package/user.js.map +1 -1
package/buildDefinition.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import * as outputs from "./types/output";
|
|
|
6
6
|
*
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*
|
|
9
|
-
* ###
|
|
9
|
+
* ### Azure DevOps
|
|
10
10
|
* ```typescript
|
|
11
11
|
* import * as pulumi from "@pulumi/pulumi";
|
|
12
12
|
* import * as azuredevops from "@pulumi/azuredevops";
|
|
@@ -134,6 +134,73 @@ import * as outputs from "./types/output";
|
|
|
134
134
|
* });
|
|
135
135
|
* ```
|
|
136
136
|
*
|
|
137
|
+
* ### Build Completion Trigger
|
|
138
|
+
* ```typescript
|
|
139
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
140
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
141
|
+
*
|
|
142
|
+
* const example = new azuredevops.BuildDefinition("example", {
|
|
143
|
+
* projectId: exampleAzuredevopsProject.id,
|
|
144
|
+
* name: "Example Build Definition",
|
|
145
|
+
* path: "\\ExampleFolder",
|
|
146
|
+
* ciTrigger: {
|
|
147
|
+
* useYaml: false,
|
|
148
|
+
* },
|
|
149
|
+
* repository: {
|
|
150
|
+
* repoType: "GitHubEnterprise",
|
|
151
|
+
* repoId: "<GitHub Org>/<Repo Name>",
|
|
152
|
+
* githubEnterpriseUrl: "https://github.company.com",
|
|
153
|
+
* branchName: "main",
|
|
154
|
+
* ymlPath: "azure-pipelines.yml",
|
|
155
|
+
* serviceConnectionId: exampleAzuredevopsServiceendpointGithubEnterprise.id,
|
|
156
|
+
* },
|
|
157
|
+
* buildCompletionTriggers: [{
|
|
158
|
+
* buildDefinitionId: 10,
|
|
159
|
+
* branchFilters: [{
|
|
160
|
+
* includes: ["main"],
|
|
161
|
+
* excludes: ["test"],
|
|
162
|
+
* }],
|
|
163
|
+
* }],
|
|
164
|
+
* });
|
|
165
|
+
* ```
|
|
166
|
+
*
|
|
167
|
+
* ### Pull Request Trigger
|
|
168
|
+
* ```typescript
|
|
169
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
170
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
171
|
+
*
|
|
172
|
+
* const example = azuredevops.getServiceEndpointGithub({
|
|
173
|
+
* projectId: exampleAzuredevopsProject.id,
|
|
174
|
+
* serviceEndpointId: "00000000-0000-0000-0000-000000000000",
|
|
175
|
+
* });
|
|
176
|
+
* const exampleBuildDefinition = new azuredevops.BuildDefinition("example", {
|
|
177
|
+
* projectId: exampleAzuredevopsProject2.id,
|
|
178
|
+
* name: "Example Build Definition",
|
|
179
|
+
* path: "\\ExampleFolder",
|
|
180
|
+
* ciTrigger: {
|
|
181
|
+
* useYaml: false,
|
|
182
|
+
* },
|
|
183
|
+
* repository: {
|
|
184
|
+
* repoType: "GitHub",
|
|
185
|
+
* repoId: "<GitHub Org>/<Repo Name>",
|
|
186
|
+
* branchName: "main",
|
|
187
|
+
* ymlPath: "azure-pipelines.yml",
|
|
188
|
+
* serviceConnectionId: example.then(example => example.id),
|
|
189
|
+
* },
|
|
190
|
+
* pullRequestTrigger: {
|
|
191
|
+
* override: {
|
|
192
|
+
* branchFilters: [{
|
|
193
|
+
* includes: ["main"],
|
|
194
|
+
* }],
|
|
195
|
+
* },
|
|
196
|
+
* forks: {
|
|
197
|
+
* enabled: false,
|
|
198
|
+
* shareSecrets: false,
|
|
199
|
+
* },
|
|
200
|
+
* },
|
|
201
|
+
* });
|
|
202
|
+
* ```
|
|
203
|
+
*
|
|
137
204
|
* ## Remarks
|
|
138
205
|
*
|
|
139
206
|
* The path attribute can not end in `\` unless the path is the root value of `\`.
|
|
@@ -184,7 +251,11 @@ export declare class BuildDefinition extends pulumi.CustomResource {
|
|
|
184
251
|
*/
|
|
185
252
|
readonly agentPoolName: pulumi.Output<string | undefined>;
|
|
186
253
|
/**
|
|
187
|
-
*
|
|
254
|
+
* A `buildCompletionTrigger` block as documented below.
|
|
255
|
+
*/
|
|
256
|
+
readonly buildCompletionTriggers: pulumi.Output<outputs.BuildDefinitionBuildCompletionTrigger[] | undefined>;
|
|
257
|
+
/**
|
|
258
|
+
* A `ciTrigger` block as documented below.
|
|
188
259
|
*/
|
|
189
260
|
readonly ciTrigger: pulumi.Output<outputs.BuildDefinitionCiTrigger | undefined>;
|
|
190
261
|
/**
|
|
@@ -204,7 +275,7 @@ export declare class BuildDefinition extends pulumi.CustomResource {
|
|
|
204
275
|
*/
|
|
205
276
|
readonly projectId: pulumi.Output<string>;
|
|
206
277
|
/**
|
|
207
|
-
*
|
|
278
|
+
* A `pullRequestTrigger` block as documented below.
|
|
208
279
|
*/
|
|
209
280
|
readonly pullRequestTrigger: pulumi.Output<outputs.BuildDefinitionPullRequestTrigger | undefined>;
|
|
210
281
|
/**
|
|
@@ -246,7 +317,11 @@ export interface BuildDefinitionState {
|
|
|
246
317
|
*/
|
|
247
318
|
agentPoolName?: pulumi.Input<string>;
|
|
248
319
|
/**
|
|
249
|
-
*
|
|
320
|
+
* A `buildCompletionTrigger` block as documented below.
|
|
321
|
+
*/
|
|
322
|
+
buildCompletionTriggers?: pulumi.Input<pulumi.Input<inputs.BuildDefinitionBuildCompletionTrigger>[]>;
|
|
323
|
+
/**
|
|
324
|
+
* A `ciTrigger` block as documented below.
|
|
250
325
|
*/
|
|
251
326
|
ciTrigger?: pulumi.Input<inputs.BuildDefinitionCiTrigger>;
|
|
252
327
|
/**
|
|
@@ -266,7 +341,7 @@ export interface BuildDefinitionState {
|
|
|
266
341
|
*/
|
|
267
342
|
projectId?: pulumi.Input<string>;
|
|
268
343
|
/**
|
|
269
|
-
*
|
|
344
|
+
* A `pullRequestTrigger` block as documented below.
|
|
270
345
|
*/
|
|
271
346
|
pullRequestTrigger?: pulumi.Input<inputs.BuildDefinitionPullRequestTrigger>;
|
|
272
347
|
/**
|
|
@@ -300,7 +375,11 @@ export interface BuildDefinitionArgs {
|
|
|
300
375
|
*/
|
|
301
376
|
agentPoolName?: pulumi.Input<string>;
|
|
302
377
|
/**
|
|
303
|
-
*
|
|
378
|
+
* A `buildCompletionTrigger` block as documented below.
|
|
379
|
+
*/
|
|
380
|
+
buildCompletionTriggers?: pulumi.Input<pulumi.Input<inputs.BuildDefinitionBuildCompletionTrigger>[]>;
|
|
381
|
+
/**
|
|
382
|
+
* A `ciTrigger` block as documented below.
|
|
304
383
|
*/
|
|
305
384
|
ciTrigger?: pulumi.Input<inputs.BuildDefinitionCiTrigger>;
|
|
306
385
|
/**
|
|
@@ -320,7 +399,7 @@ export interface BuildDefinitionArgs {
|
|
|
320
399
|
*/
|
|
321
400
|
projectId: pulumi.Input<string>;
|
|
322
401
|
/**
|
|
323
|
-
*
|
|
402
|
+
* A `pullRequestTrigger` block as documented below.
|
|
324
403
|
*/
|
|
325
404
|
pullRequestTrigger?: pulumi.Input<inputs.BuildDefinitionPullRequestTrigger>;
|
|
326
405
|
/**
|
package/buildDefinition.js
CHANGED
|
@@ -10,7 +10,7 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
13
|
-
* ###
|
|
13
|
+
* ### Azure DevOps
|
|
14
14
|
* ```typescript
|
|
15
15
|
* import * as pulumi from "@pulumi/pulumi";
|
|
16
16
|
* import * as azuredevops from "@pulumi/azuredevops";
|
|
@@ -138,6 +138,73 @@ const utilities = require("./utilities");
|
|
|
138
138
|
* });
|
|
139
139
|
* ```
|
|
140
140
|
*
|
|
141
|
+
* ### Build Completion Trigger
|
|
142
|
+
* ```typescript
|
|
143
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
144
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
145
|
+
*
|
|
146
|
+
* const example = new azuredevops.BuildDefinition("example", {
|
|
147
|
+
* projectId: exampleAzuredevopsProject.id,
|
|
148
|
+
* name: "Example Build Definition",
|
|
149
|
+
* path: "\\ExampleFolder",
|
|
150
|
+
* ciTrigger: {
|
|
151
|
+
* useYaml: false,
|
|
152
|
+
* },
|
|
153
|
+
* repository: {
|
|
154
|
+
* repoType: "GitHubEnterprise",
|
|
155
|
+
* repoId: "<GitHub Org>/<Repo Name>",
|
|
156
|
+
* githubEnterpriseUrl: "https://github.company.com",
|
|
157
|
+
* branchName: "main",
|
|
158
|
+
* ymlPath: "azure-pipelines.yml",
|
|
159
|
+
* serviceConnectionId: exampleAzuredevopsServiceendpointGithubEnterprise.id,
|
|
160
|
+
* },
|
|
161
|
+
* buildCompletionTriggers: [{
|
|
162
|
+
* buildDefinitionId: 10,
|
|
163
|
+
* branchFilters: [{
|
|
164
|
+
* includes: ["main"],
|
|
165
|
+
* excludes: ["test"],
|
|
166
|
+
* }],
|
|
167
|
+
* }],
|
|
168
|
+
* });
|
|
169
|
+
* ```
|
|
170
|
+
*
|
|
171
|
+
* ### Pull Request Trigger
|
|
172
|
+
* ```typescript
|
|
173
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
174
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
175
|
+
*
|
|
176
|
+
* const example = azuredevops.getServiceEndpointGithub({
|
|
177
|
+
* projectId: exampleAzuredevopsProject.id,
|
|
178
|
+
* serviceEndpointId: "00000000-0000-0000-0000-000000000000",
|
|
179
|
+
* });
|
|
180
|
+
* const exampleBuildDefinition = new azuredevops.BuildDefinition("example", {
|
|
181
|
+
* projectId: exampleAzuredevopsProject2.id,
|
|
182
|
+
* name: "Example Build Definition",
|
|
183
|
+
* path: "\\ExampleFolder",
|
|
184
|
+
* ciTrigger: {
|
|
185
|
+
* useYaml: false,
|
|
186
|
+
* },
|
|
187
|
+
* repository: {
|
|
188
|
+
* repoType: "GitHub",
|
|
189
|
+
* repoId: "<GitHub Org>/<Repo Name>",
|
|
190
|
+
* branchName: "main",
|
|
191
|
+
* ymlPath: "azure-pipelines.yml",
|
|
192
|
+
* serviceConnectionId: example.then(example => example.id),
|
|
193
|
+
* },
|
|
194
|
+
* pullRequestTrigger: {
|
|
195
|
+
* override: {
|
|
196
|
+
* branchFilters: [{
|
|
197
|
+
* includes: ["main"],
|
|
198
|
+
* }],
|
|
199
|
+
* },
|
|
200
|
+
* forks: {
|
|
201
|
+
* enabled: false,
|
|
202
|
+
* shareSecrets: false,
|
|
203
|
+
* },
|
|
204
|
+
* },
|
|
205
|
+
* });
|
|
206
|
+
* ```
|
|
207
|
+
*
|
|
141
208
|
* ## Remarks
|
|
142
209
|
*
|
|
143
210
|
* The path attribute can not end in `\` unless the path is the root value of `\`.
|
|
@@ -196,6 +263,7 @@ class BuildDefinition extends pulumi.CustomResource {
|
|
|
196
263
|
if (opts.id) {
|
|
197
264
|
const state = argsOrState;
|
|
198
265
|
resourceInputs["agentPoolName"] = state ? state.agentPoolName : undefined;
|
|
266
|
+
resourceInputs["buildCompletionTriggers"] = state ? state.buildCompletionTriggers : undefined;
|
|
199
267
|
resourceInputs["ciTrigger"] = state ? state.ciTrigger : undefined;
|
|
200
268
|
resourceInputs["features"] = state ? state.features : undefined;
|
|
201
269
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
@@ -218,6 +286,7 @@ class BuildDefinition extends pulumi.CustomResource {
|
|
|
218
286
|
throw new Error("Missing required property 'repository'");
|
|
219
287
|
}
|
|
220
288
|
resourceInputs["agentPoolName"] = args ? args.agentPoolName : undefined;
|
|
289
|
+
resourceInputs["buildCompletionTriggers"] = args ? args.buildCompletionTriggers : undefined;
|
|
221
290
|
resourceInputs["ciTrigger"] = args ? args.ciTrigger : undefined;
|
|
222
291
|
resourceInputs["features"] = args ? args.features : undefined;
|
|
223
292
|
resourceInputs["name"] = args ? args.name : undefined;
|
package/buildDefinition.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buildDefinition.js","sourceRoot":"","sources":["../buildDefinition.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"buildDefinition.js","sourceRoot":"","sources":["../buildDefinition.ts"],"names":[],"mappings":"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"}
|
|
@@ -62,37 +62,37 @@ export interface GetServiceEndpointAzureRMArgs {
|
|
|
62
62
|
*/
|
|
63
63
|
export interface GetServiceEndpointAzureRMResult {
|
|
64
64
|
/**
|
|
65
|
-
*
|
|
65
|
+
* The Authorization Scheme Map.
|
|
66
66
|
*/
|
|
67
67
|
readonly authorization: {
|
|
68
68
|
[key: string]: string;
|
|
69
69
|
};
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
* The Management Group ID of the Service Endpoint is target, if available.
|
|
72
72
|
*/
|
|
73
73
|
readonly azurermManagementGroupId: string;
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* The Management Group Name of the Service Endpoint target, if available.
|
|
76
76
|
*/
|
|
77
77
|
readonly azurermManagementGroupName: string;
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
* The Tenant ID of the Azure targets.
|
|
80
80
|
*/
|
|
81
81
|
readonly azurermSpnTenantid: string;
|
|
82
82
|
/**
|
|
83
|
-
*
|
|
83
|
+
* The Subscription ID of the Service Endpoint target, if available.
|
|
84
84
|
*/
|
|
85
85
|
readonly azurermSubscriptionId: string;
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* The Subscription Name of the Service Endpoint target, if available.
|
|
88
88
|
*/
|
|
89
89
|
readonly azurermSubscriptionName: string;
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* The description of the Service Endpoint.
|
|
92
92
|
*/
|
|
93
93
|
readonly description: string;
|
|
94
94
|
/**
|
|
95
|
-
* The Cloud Environment.
|
|
95
|
+
* The Cloud Environment.
|
|
96
96
|
*/
|
|
97
97
|
readonly environment: string;
|
|
98
98
|
/**
|
|
@@ -101,11 +101,15 @@ export interface GetServiceEndpointAzureRMResult {
|
|
|
101
101
|
readonly id: string;
|
|
102
102
|
readonly projectId: string;
|
|
103
103
|
/**
|
|
104
|
-
*
|
|
104
|
+
* The Resource Group of the Service Endpoint target, if available.
|
|
105
105
|
*/
|
|
106
106
|
readonly resourceGroup: string;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* The server URL of the service Endpoint.
|
|
109
|
+
*/
|
|
110
|
+
readonly serverUrl: string;
|
|
111
|
+
/**
|
|
112
|
+
* The authentication scheme of Azure Resource Management Endpoint
|
|
109
113
|
*/
|
|
110
114
|
readonly serviceEndpointAuthenticationScheme: string;
|
|
111
115
|
readonly serviceEndpointId: string;
|
|
@@ -115,11 +119,11 @@ export interface GetServiceEndpointAzureRMResult {
|
|
|
115
119
|
*/
|
|
116
120
|
readonly servicePrincipalId: string;
|
|
117
121
|
/**
|
|
118
|
-
* The issuer if `
|
|
122
|
+
* The issuer if `of the Workload Identity Federation Subject
|
|
119
123
|
*/
|
|
120
124
|
readonly workloadIdentityFederationIssuer: string;
|
|
121
125
|
/**
|
|
122
|
-
* The subject
|
|
126
|
+
* The subject of the Workload Identity Federation Subject.
|
|
123
127
|
*/
|
|
124
128
|
readonly workloadIdentityFederationSubject: string;
|
|
125
129
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getServiceEndpointAzureRM.js","sourceRoot":"","sources":["../getServiceEndpointAzureRM.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uEAAuE,EAAE;QAClG,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;KAClD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8DAOC;
|
|
1
|
+
{"version":3,"file":"getServiceEndpointAzureRM.js","sourceRoot":"","sources":["../getServiceEndpointAzureRM.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uEAAuE,EAAE;QAClG,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;KAClD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8DAOC;AA2FD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,SAAgB,+BAA+B,CAAC,IAAyC,EAAE,IAAiC;IACxH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uEAAuE,EAAE;QACxG,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;KAClD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0EAOC"}
|
package/gitPermissions.d.ts
CHANGED
|
@@ -220,7 +220,7 @@ export declare class GitPermissions extends pulumi.CustomResource {
|
|
|
220
220
|
*/
|
|
221
221
|
readonly branchName: pulumi.Output<string | undefined>;
|
|
222
222
|
/**
|
|
223
|
-
* the permissions to assign. The
|
|
223
|
+
* the permissions to assign. The following permissions are available
|
|
224
224
|
*
|
|
225
225
|
*
|
|
226
226
|
* | Permissions | Description |
|
|
@@ -281,7 +281,7 @@ export interface GitPermissionsState {
|
|
|
281
281
|
*/
|
|
282
282
|
branchName?: pulumi.Input<string>;
|
|
283
283
|
/**
|
|
284
|
-
* the permissions to assign. The
|
|
284
|
+
* the permissions to assign. The following permissions are available
|
|
285
285
|
*
|
|
286
286
|
*
|
|
287
287
|
* | Permissions | Description |
|
|
@@ -334,7 +334,7 @@ export interface GitPermissionsArgs {
|
|
|
334
334
|
*/
|
|
335
335
|
branchName?: pulumi.Input<string>;
|
|
336
336
|
/**
|
|
337
|
-
* the permissions to assign. The
|
|
337
|
+
* the permissions to assign. The following permissions are available
|
|
338
338
|
*
|
|
339
339
|
*
|
|
340
340
|
* | Permissions | Description |
|
package/index.d.ts
CHANGED
|
@@ -262,6 +262,9 @@ export declare const ServiceEndpointGitHub: typeof import("./serviceEndpointGitH
|
|
|
262
262
|
export { ServiceEndpointGitHubEnterpriseArgs, ServiceEndpointGitHubEnterpriseState } from "./serviceEndpointGitHubEnterprise";
|
|
263
263
|
export type ServiceEndpointGitHubEnterprise = import("./serviceEndpointGitHubEnterprise").ServiceEndpointGitHubEnterprise;
|
|
264
264
|
export declare const ServiceEndpointGitHubEnterprise: typeof import("./serviceEndpointGitHubEnterprise").ServiceEndpointGitHubEnterprise;
|
|
265
|
+
export { ServiceEndpointGitLabArgs, ServiceEndpointGitLabState } from "./serviceEndpointGitLab";
|
|
266
|
+
export type ServiceEndpointGitLab = import("./serviceEndpointGitLab").ServiceEndpointGitLab;
|
|
267
|
+
export declare const ServiceEndpointGitLab: typeof import("./serviceEndpointGitLab").ServiceEndpointGitLab;
|
|
265
268
|
export { ServiceEndpointKubernetesArgs, ServiceEndpointKubernetesState } from "./serviceEndpointKubernetes";
|
|
266
269
|
export type ServiceEndpointKubernetes = import("./serviceEndpointKubernetes").ServiceEndpointKubernetes;
|
|
267
270
|
export declare const ServiceEndpointKubernetes: typeof import("./serviceEndpointKubernetes").ServiceEndpointKubernetes;
|
|
@@ -286,6 +289,12 @@ export declare const ServiceEndpointSsh: typeof import("./serviceEndpointSsh").S
|
|
|
286
289
|
export { ServiceendpointArgocdArgs, ServiceendpointArgocdState } from "./serviceendpointArgocd";
|
|
287
290
|
export type ServiceendpointArgocd = import("./serviceendpointArgocd").ServiceendpointArgocd;
|
|
288
291
|
export declare const ServiceendpointArgocd: typeof import("./serviceendpointArgocd").ServiceendpointArgocd;
|
|
292
|
+
export { ServiceendpointAzureServiceBusArgs, ServiceendpointAzureServiceBusState } from "./serviceendpointAzureServiceBus";
|
|
293
|
+
export type ServiceendpointAzureServiceBus = import("./serviceendpointAzureServiceBus").ServiceendpointAzureServiceBus;
|
|
294
|
+
export declare const ServiceendpointAzureServiceBus: typeof import("./serviceendpointAzureServiceBus").ServiceendpointAzureServiceBus;
|
|
295
|
+
export { ServiceendpointDynamicsLifecycleServicesArgs, ServiceendpointDynamicsLifecycleServicesState } from "./serviceendpointDynamicsLifecycleServices";
|
|
296
|
+
export type ServiceendpointDynamicsLifecycleServices = import("./serviceendpointDynamicsLifecycleServices").ServiceendpointDynamicsLifecycleServices;
|
|
297
|
+
export declare const ServiceendpointDynamicsLifecycleServices: typeof import("./serviceendpointDynamicsLifecycleServices").ServiceendpointDynamicsLifecycleServices;
|
|
289
298
|
export { ServiceendpointExternaltfsArgs, ServiceendpointExternaltfsState } from "./serviceendpointExternaltfs";
|
|
290
299
|
export type ServiceendpointExternaltfs = import("./serviceendpointExternaltfs").ServiceendpointExternaltfs;
|
|
291
300
|
export declare const ServiceendpointExternaltfs: typeof import("./serviceendpointExternaltfs").ServiceendpointExternaltfs;
|
|
@@ -325,6 +334,12 @@ export declare const ServiceendpointOctopusdeploy: typeof import("./serviceendpo
|
|
|
325
334
|
export { ServiceendpointPermissionsArgs, ServiceendpointPermissionsState } from "./serviceendpointPermissions";
|
|
326
335
|
export type ServiceendpointPermissions = import("./serviceendpointPermissions").ServiceendpointPermissions;
|
|
327
336
|
export declare const ServiceendpointPermissions: typeof import("./serviceendpointPermissions").ServiceendpointPermissions;
|
|
337
|
+
export { ServiceendpointSnykArgs, ServiceendpointSnykState } from "./serviceendpointSnyk";
|
|
338
|
+
export type ServiceendpointSnyk = import("./serviceendpointSnyk").ServiceendpointSnyk;
|
|
339
|
+
export declare const ServiceendpointSnyk: typeof import("./serviceendpointSnyk").ServiceendpointSnyk;
|
|
340
|
+
export { ServiceendpointVisualstudiomarketplaceArgs, ServiceendpointVisualstudiomarketplaceState } from "./serviceendpointVisualstudiomarketplace";
|
|
341
|
+
export type ServiceendpointVisualstudiomarketplace = import("./serviceendpointVisualstudiomarketplace").ServiceendpointVisualstudiomarketplace;
|
|
342
|
+
export declare const ServiceendpointVisualstudiomarketplace: typeof import("./serviceendpointVisualstudiomarketplace").ServiceendpointVisualstudiomarketplace;
|
|
328
343
|
export { ServicehookPermissionsArgs, ServicehookPermissionsState } from "./servicehookPermissions";
|
|
329
344
|
export type ServicehookPermissions = import("./servicehookPermissions").ServicehookPermissions;
|
|
330
345
|
export declare const ServicehookPermissions: typeof import("./servicehookPermissions").ServicehookPermissions;
|
package/index.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
exports.getPoolOutput = exports.getPool = exports.getIterationOutput = exports.getIteration = exports.getIdentityUsersOutput = exports.getIdentityUsers = exports.getIdentityGroupsOutput = exports.getIdentityGroups = exports.getIdentityGroupOutput = exports.getIdentityGroup = exports.getGroupsOutput = exports.getGroups = exports.getGroupOutput = exports.getGroup = exports.getGitRepositoryOutput = exports.getGitRepository = exports.getFeedOutput = exports.getFeed = exports.getEnvironmentOutput = exports.getEnvironment = exports.getClientConfigOutput = exports.getClientConfig = exports.getBuildDefinitionOutput = exports.getBuildDefinition = exports.getAreaOutput = exports.getArea = exports.getAgentQueueOutput = exports.getAgentQueue = exports.FeedPermission = exports.Feed = exports.EnvironmentResourceKubernetes = exports.Environment = exports.ElasticPool = exports.CheckRequiredTemplate = exports.CheckExclusiveLock = exports.CheckBusinessHours = exports.CheckBranchControl = exports.CheckApproval = exports.BuildFolderPermissions = exports.BuildFolder = exports.BuildDefinitionPermissions = exports.BuildDefinition = exports.BranchPolicyWorkItemLinking = exports.BranchPolicyStatusCheck = exports.BranchPolicyMinReviewers = exports.BranchPolicyMergeTypes = exports.BranchPolicyCommentResolution = exports.BranchPolicyBuildValidation = exports.BranchPolicyAutoReviewers = exports.AreaPermissions = void 0;
|
|
6
6
|
exports.RepositoryPolicyCheckCredentials = exports.RepositoryPolicyCaseEnforcement = exports.RepositoryPolicyAuthorEmailPattern = exports.Queue = exports.Provider = exports.ProjectPipelineSettings = exports.ProjectPermissions = exports.ProjectFeatures = exports.Project = exports.Pool = exports.PipelineAuthorization = exports.LibraryPermissions = exports.IterativePermissions = exports.GroupMembership = exports.GroupEntitlement = exports.Group = exports.GitRepositoryFile = exports.GitRepositoryBranch = exports.GitPermissions = exports.Git = exports.getVariableGroupOutput = exports.getVariableGroup = exports.getUsersOutput = exports.getUsers = exports.getTeamsOutput = exports.getTeams = exports.getTeamOutput = exports.getTeam = exports.getServiceendpointSonarcloudOutput = exports.getServiceendpointSonarcloud = exports.getServiceendpointNpmOutput = exports.getServiceendpointNpm = exports.getServiceendpointBitbucketOutput = exports.getServiceendpointBitbucket = exports.getServiceendpointAzurecrOutput = exports.getServiceendpointAzurecr = exports.getServiceEndpointGithubOutput = exports.getServiceEndpointGithub = exports.getServiceEndpointAzureRMOutput = exports.getServiceEndpointAzureRM = exports.getSecurityroleDefinitionsOutput = exports.getSecurityroleDefinitions = exports.getRepositoriesOutput = exports.getRepositories = exports.getProjectsOutput = exports.getProjects = exports.getProjectOutput = exports.getProject = exports.getPoolsOutput = exports.getPools = void 0;
|
|
7
|
-
exports.
|
|
8
|
-
exports.types = exports.config = exports.Workitem = void 0;
|
|
7
|
+
exports.User = exports.TeamMembers = exports.TeamAdministrators = exports.Team = exports.TaggingPermissions = exports.ServicehookStorageQueuePipelines = exports.ServicehookPermissions = exports.ServiceendpointVisualstudiomarketplace = exports.ServiceendpointSnyk = exports.ServiceendpointPermissions = exports.ServiceendpointOctopusdeploy = exports.ServiceendpointNuget = exports.ServiceendpointNexus = exports.ServiceendpointMaven = exports.ServiceendpointJfrogXrayV2 = exports.ServiceendpointJfrogPlatformV2 = exports.ServiceendpointJfrogDistributionV2 = exports.ServiceendpointJfrogArtifactoryV2 = exports.ServiceendpointJenkins = exports.ServiceendpointIncomingwebhook = exports.ServiceendpointGcpTerraform = exports.ServiceendpointExternaltfs = exports.ServiceendpointDynamicsLifecycleServices = exports.ServiceendpointAzureServiceBus = exports.ServiceendpointArgocd = exports.ServiceEndpointSsh = exports.ServiceEndpointSonarQube = exports.ServiceEndpointSonarCloud = exports.ServiceEndpointServiceFabric = exports.ServiceEndpointPipeline = exports.ServiceEndpointNpm = exports.ServiceEndpointKubernetes = exports.ServiceEndpointGitLab = exports.ServiceEndpointGitHubEnterprise = exports.ServiceEndpointGitHub = exports.ServiceEndpointGenericGit = exports.ServiceEndpointGeneric = exports.ServiceEndpointDockerRegistry = exports.ServiceEndpointBitBucket = exports.ServiceEndpointAzureRM = exports.ServiceEndpointAzureEcr = exports.ServiceEndpointAzureDevOps = exports.ServiceEndpointAws = exports.ServiceEndpointArtifactory = exports.SecurityroleAssignment = exports.ResourceAuthorization = exports.RepositoryPolicyReservedNames = exports.RepositoryPolicyMaxPathLength = exports.RepositoryPolicyMaxFileSize = exports.RepositoryPolicyFilePathPattern = void 0;
|
|
8
|
+
exports.types = exports.config = exports.Workitem = exports.WorkItemQueryPermissions = exports.WikiPage = exports.Wiki = exports.VariableGroupPermissions = exports.VariableGroup = void 0;
|
|
9
9
|
const pulumi = require("@pulumi/pulumi");
|
|
10
10
|
const utilities = require("./utilities");
|
|
11
11
|
exports.AreaPermissions = null;
|
|
@@ -213,6 +213,8 @@ exports.ServiceEndpointGitHub = null;
|
|
|
213
213
|
utilities.lazyLoad(exports, ["ServiceEndpointGitHub"], () => require("./serviceEndpointGitHub"));
|
|
214
214
|
exports.ServiceEndpointGitHubEnterprise = null;
|
|
215
215
|
utilities.lazyLoad(exports, ["ServiceEndpointGitHubEnterprise"], () => require("./serviceEndpointGitHubEnterprise"));
|
|
216
|
+
exports.ServiceEndpointGitLab = null;
|
|
217
|
+
utilities.lazyLoad(exports, ["ServiceEndpointGitLab"], () => require("./serviceEndpointGitLab"));
|
|
216
218
|
exports.ServiceEndpointKubernetes = null;
|
|
217
219
|
utilities.lazyLoad(exports, ["ServiceEndpointKubernetes"], () => require("./serviceEndpointKubernetes"));
|
|
218
220
|
exports.ServiceEndpointNpm = null;
|
|
@@ -229,6 +231,10 @@ exports.ServiceEndpointSsh = null;
|
|
|
229
231
|
utilities.lazyLoad(exports, ["ServiceEndpointSsh"], () => require("./serviceEndpointSsh"));
|
|
230
232
|
exports.ServiceendpointArgocd = null;
|
|
231
233
|
utilities.lazyLoad(exports, ["ServiceendpointArgocd"], () => require("./serviceendpointArgocd"));
|
|
234
|
+
exports.ServiceendpointAzureServiceBus = null;
|
|
235
|
+
utilities.lazyLoad(exports, ["ServiceendpointAzureServiceBus"], () => require("./serviceendpointAzureServiceBus"));
|
|
236
|
+
exports.ServiceendpointDynamicsLifecycleServices = null;
|
|
237
|
+
utilities.lazyLoad(exports, ["ServiceendpointDynamicsLifecycleServices"], () => require("./serviceendpointDynamicsLifecycleServices"));
|
|
232
238
|
exports.ServiceendpointExternaltfs = null;
|
|
233
239
|
utilities.lazyLoad(exports, ["ServiceendpointExternaltfs"], () => require("./serviceendpointExternaltfs"));
|
|
234
240
|
exports.ServiceendpointGcpTerraform = null;
|
|
@@ -255,6 +261,10 @@ exports.ServiceendpointOctopusdeploy = null;
|
|
|
255
261
|
utilities.lazyLoad(exports, ["ServiceendpointOctopusdeploy"], () => require("./serviceendpointOctopusdeploy"));
|
|
256
262
|
exports.ServiceendpointPermissions = null;
|
|
257
263
|
utilities.lazyLoad(exports, ["ServiceendpointPermissions"], () => require("./serviceendpointPermissions"));
|
|
264
|
+
exports.ServiceendpointSnyk = null;
|
|
265
|
+
utilities.lazyLoad(exports, ["ServiceendpointSnyk"], () => require("./serviceendpointSnyk"));
|
|
266
|
+
exports.ServiceendpointVisualstudiomarketplace = null;
|
|
267
|
+
utilities.lazyLoad(exports, ["ServiceendpointVisualstudiomarketplace"], () => require("./serviceendpointVisualstudiomarketplace"));
|
|
258
268
|
exports.ServicehookPermissions = null;
|
|
259
269
|
utilities.lazyLoad(exports, ["ServicehookPermissions"], () => require("./servicehookPermissions"));
|
|
260
270
|
exports.ServicehookStorageQueuePipelines = null;
|
|
@@ -406,6 +416,8 @@ const _module = {
|
|
|
406
416
|
return new exports.ServiceEndpointGitHub(name, undefined, { urn });
|
|
407
417
|
case "azuredevops:index/serviceEndpointGitHubEnterprise:ServiceEndpointGitHubEnterprise":
|
|
408
418
|
return new exports.ServiceEndpointGitHubEnterprise(name, undefined, { urn });
|
|
419
|
+
case "azuredevops:index/serviceEndpointGitLab:ServiceEndpointGitLab":
|
|
420
|
+
return new exports.ServiceEndpointGitLab(name, undefined, { urn });
|
|
409
421
|
case "azuredevops:index/serviceEndpointKubernetes:ServiceEndpointKubernetes":
|
|
410
422
|
return new exports.ServiceEndpointKubernetes(name, undefined, { urn });
|
|
411
423
|
case "azuredevops:index/serviceEndpointNpm:ServiceEndpointNpm":
|
|
@@ -422,6 +434,10 @@ const _module = {
|
|
|
422
434
|
return new exports.ServiceEndpointSsh(name, undefined, { urn });
|
|
423
435
|
case "azuredevops:index/serviceendpointArgocd:ServiceendpointArgocd":
|
|
424
436
|
return new exports.ServiceendpointArgocd(name, undefined, { urn });
|
|
437
|
+
case "azuredevops:index/serviceendpointAzureServiceBus:ServiceendpointAzureServiceBus":
|
|
438
|
+
return new exports.ServiceendpointAzureServiceBus(name, undefined, { urn });
|
|
439
|
+
case "azuredevops:index/serviceendpointDynamicsLifecycleServices:ServiceendpointDynamicsLifecycleServices":
|
|
440
|
+
return new exports.ServiceendpointDynamicsLifecycleServices(name, undefined, { urn });
|
|
425
441
|
case "azuredevops:index/serviceendpointExternaltfs:ServiceendpointExternaltfs":
|
|
426
442
|
return new exports.ServiceendpointExternaltfs(name, undefined, { urn });
|
|
427
443
|
case "azuredevops:index/serviceendpointGcpTerraform:ServiceendpointGcpTerraform":
|
|
@@ -448,6 +464,10 @@ const _module = {
|
|
|
448
464
|
return new exports.ServiceendpointOctopusdeploy(name, undefined, { urn });
|
|
449
465
|
case "azuredevops:index/serviceendpointPermissions:ServiceendpointPermissions":
|
|
450
466
|
return new exports.ServiceendpointPermissions(name, undefined, { urn });
|
|
467
|
+
case "azuredevops:index/serviceendpointSnyk:ServiceendpointSnyk":
|
|
468
|
+
return new exports.ServiceendpointSnyk(name, undefined, { urn });
|
|
469
|
+
case "azuredevops:index/serviceendpointVisualstudiomarketplace:ServiceendpointVisualstudiomarketplace":
|
|
470
|
+
return new exports.ServiceendpointVisualstudiomarketplace(name, undefined, { urn });
|
|
451
471
|
case "azuredevops:index/servicehookPermissions:ServicehookPermissions":
|
|
452
472
|
return new exports.ServicehookPermissions(name, undefined, { urn });
|
|
453
473
|
case "azuredevops:index/servicehookStorageQueuePipelines:ServicehookStorageQueuePipelines":
|
|
@@ -537,6 +557,7 @@ pulumi.runtime.registerResourceModule("azuredevops", "index/serviceEndpointGener
|
|
|
537
557
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceEndpointGenericGit", _module);
|
|
538
558
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceEndpointGitHub", _module);
|
|
539
559
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceEndpointGitHubEnterprise", _module);
|
|
560
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceEndpointGitLab", _module);
|
|
540
561
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceEndpointKubernetes", _module);
|
|
541
562
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceEndpointNpm", _module);
|
|
542
563
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceEndpointPipeline", _module);
|
|
@@ -545,6 +566,8 @@ pulumi.runtime.registerResourceModule("azuredevops", "index/serviceEndpointSonar
|
|
|
545
566
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceEndpointSonarQube", _module);
|
|
546
567
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceEndpointSsh", _module);
|
|
547
568
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointArgocd", _module);
|
|
569
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointAzureServiceBus", _module);
|
|
570
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointDynamicsLifecycleServices", _module);
|
|
548
571
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointExternaltfs", _module);
|
|
549
572
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointGcpTerraform", _module);
|
|
550
573
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointIncomingwebhook", _module);
|
|
@@ -558,6 +581,8 @@ pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointNexus
|
|
|
558
581
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointNuget", _module);
|
|
559
582
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointOctopusdeploy", _module);
|
|
560
583
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointPermissions", _module);
|
|
584
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointSnyk", _module);
|
|
585
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointVisualstudiomarketplace", _module);
|
|
561
586
|
pulumi.runtime.registerResourceModule("azuredevops", "index/servicehookPermissions", _module);
|
|
562
587
|
pulumi.runtime.registerResourceModule("azuredevops", "index/servicehookStorageQueuePipelines", _module);
|
|
563
588
|
pulumi.runtime.registerResourceModule("azuredevops", "index/taggingPermissions", _module);
|