@pulumi/azuredevops 3.1.0 → 3.1.2-alpha.1721235900
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/types/input.d.ts +17 -3
- package/types/output.d.ts +17 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/azuredevops",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.2-alpha.1721235900",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Azure DevOps.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "azuredevops",
|
|
26
|
-
"version": "3.1.
|
|
26
|
+
"version": "3.1.2-alpha.1721235900"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -230,8 +230,17 @@ export interface BranchPolicyStatusCheckSettings {
|
|
|
230
230
|
scopes: pulumi.Input<pulumi.Input<inputs.BranchPolicyStatusCheckSettingsScope>[]>;
|
|
231
231
|
}
|
|
232
232
|
export interface BranchPolicyStatusCheckSettingsScope {
|
|
233
|
+
/**
|
|
234
|
+
* The match type to use when applying the policy. Supported values are `Exact` (default), `Prefix` or `DefaultBranch`.
|
|
235
|
+
*/
|
|
233
236
|
matchType?: pulumi.Input<string>;
|
|
237
|
+
/**
|
|
238
|
+
* The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `matchType` is `DefaultBranch`, this should not be defined.
|
|
239
|
+
*/
|
|
234
240
|
repositoryId?: pulumi.Input<string>;
|
|
241
|
+
/**
|
|
242
|
+
* The ref pattern to use for the match when `matchType` other than `DefaultBranch`. If `matchType` is `Exact`, this should be a qualified ref such as `refs/heads/master`. If `matchType` is `Prefix`, this should be a ref path such as `refs/heads/releases`.
|
|
243
|
+
*/
|
|
235
244
|
repositoryRef?: pulumi.Input<string>;
|
|
236
245
|
}
|
|
237
246
|
export interface BranchPolicyWorkItemLinkingSettings {
|
|
@@ -311,6 +320,11 @@ export interface BuildDefinitionCiTriggerOverridePathFilter {
|
|
|
311
320
|
includes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
312
321
|
}
|
|
313
322
|
export interface BuildDefinitionFeature {
|
|
323
|
+
/**
|
|
324
|
+
* Trigger the pipeline to run after the creation. Defaults to `true`.
|
|
325
|
+
*
|
|
326
|
+
* > **Note** The first run(`skipFirstRun = false`) will only be triggered on create. If the first run fails, the build definition will still be marked as successfully created. A warning message indicating the inability to run pipeline will be displayed.
|
|
327
|
+
*/
|
|
314
328
|
skipFirstRun?: pulumi.Input<boolean>;
|
|
315
329
|
}
|
|
316
330
|
export interface BuildDefinitionPullRequestTrigger {
|
|
@@ -835,17 +849,17 @@ export interface ServiceEndpointServiceFabricNone {
|
|
|
835
849
|
}
|
|
836
850
|
export interface ServiceendpointArgocdAuthenticationBasic {
|
|
837
851
|
/**
|
|
838
|
-
*
|
|
852
|
+
* ArgoCD Password.
|
|
839
853
|
*/
|
|
840
854
|
password: pulumi.Input<string>;
|
|
841
855
|
/**
|
|
842
|
-
*
|
|
856
|
+
* ArgoCD Username.
|
|
843
857
|
*/
|
|
844
858
|
username: pulumi.Input<string>;
|
|
845
859
|
}
|
|
846
860
|
export interface ServiceendpointArgocdAuthenticationToken {
|
|
847
861
|
/**
|
|
848
|
-
*
|
|
862
|
+
* Authentication Token generated through ArgoCD.
|
|
849
863
|
*/
|
|
850
864
|
token: pulumi.Input<string>;
|
|
851
865
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -229,8 +229,17 @@ export interface BranchPolicyStatusCheckSettings {
|
|
|
229
229
|
scopes: outputs.BranchPolicyStatusCheckSettingsScope[];
|
|
230
230
|
}
|
|
231
231
|
export interface BranchPolicyStatusCheckSettingsScope {
|
|
232
|
+
/**
|
|
233
|
+
* The match type to use when applying the policy. Supported values are `Exact` (default), `Prefix` or `DefaultBranch`.
|
|
234
|
+
*/
|
|
232
235
|
matchType?: string;
|
|
236
|
+
/**
|
|
237
|
+
* The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `matchType` is `DefaultBranch`, this should not be defined.
|
|
238
|
+
*/
|
|
233
239
|
repositoryId?: string;
|
|
240
|
+
/**
|
|
241
|
+
* The ref pattern to use for the match when `matchType` other than `DefaultBranch`. If `matchType` is `Exact`, this should be a qualified ref such as `refs/heads/master`. If `matchType` is `Prefix`, this should be a ref path such as `refs/heads/releases`.
|
|
242
|
+
*/
|
|
234
243
|
repositoryRef?: string;
|
|
235
244
|
}
|
|
236
245
|
export interface BranchPolicyWorkItemLinkingSettings {
|
|
@@ -310,6 +319,11 @@ export interface BuildDefinitionCiTriggerOverridePathFilter {
|
|
|
310
319
|
includes?: string[];
|
|
311
320
|
}
|
|
312
321
|
export interface BuildDefinitionFeature {
|
|
322
|
+
/**
|
|
323
|
+
* Trigger the pipeline to run after the creation. Defaults to `true`.
|
|
324
|
+
*
|
|
325
|
+
* > **Note** The first run(`skipFirstRun = false`) will only be triggered on create. If the first run fails, the build definition will still be marked as successfully created. A warning message indicating the inability to run pipeline will be displayed.
|
|
326
|
+
*/
|
|
313
327
|
skipFirstRun?: boolean;
|
|
314
328
|
}
|
|
315
329
|
export interface BuildDefinitionPullRequestTrigger {
|
|
@@ -1330,17 +1344,17 @@ export interface ServiceEndpointServiceFabricNone {
|
|
|
1330
1344
|
}
|
|
1331
1345
|
export interface ServiceendpointArgocdAuthenticationBasic {
|
|
1332
1346
|
/**
|
|
1333
|
-
*
|
|
1347
|
+
* ArgoCD Password.
|
|
1334
1348
|
*/
|
|
1335
1349
|
password: string;
|
|
1336
1350
|
/**
|
|
1337
|
-
*
|
|
1351
|
+
* ArgoCD Username.
|
|
1338
1352
|
*/
|
|
1339
1353
|
username: string;
|
|
1340
1354
|
}
|
|
1341
1355
|
export interface ServiceendpointArgocdAuthenticationToken {
|
|
1342
1356
|
/**
|
|
1343
|
-
*
|
|
1357
|
+
* Authentication Token generated through ArgoCD.
|
|
1344
1358
|
*/
|
|
1345
1359
|
token: string;
|
|
1346
1360
|
}
|