@pulumi/azuredevops 2.10.0 → 2.11.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.
Files changed (69) hide show
  1. package/checkBranchControl.d.ts +13 -0
  2. package/checkBranchControl.js +3 -0
  3. package/checkBranchControl.js.map +1 -1
  4. package/checkBusinessHours.d.ts +13 -0
  5. package/checkBusinessHours.js +3 -0
  6. package/checkBusinessHours.js.map +1 -1
  7. package/getEnvironment.d.ts +62 -0
  8. package/getEnvironment.js +34 -0
  9. package/getEnvironment.js.map +1 -0
  10. package/getGroups.d.ts +2 -2
  11. package/getGroups.js +2 -2
  12. package/getTeam.d.ts +9 -0
  13. package/getTeam.js +1 -0
  14. package/getTeam.js.map +1 -1
  15. package/getTeams.d.ts +9 -0
  16. package/getTeams.js +1 -0
  17. package/getTeams.js.map +1 -1
  18. package/index.d.ts +12 -0
  19. package/index.js +21 -3
  20. package/index.js.map +1 -1
  21. package/package.json +2 -2
  22. package/package.json.dev +2 -2
  23. package/serviceEndpointAws.d.ts +0 -16
  24. package/serviceEndpointAws.js +1 -5
  25. package/serviceEndpointAws.js.map +1 -1
  26. package/serviceEndpointAzureDevOps.d.ts +0 -8
  27. package/serviceEndpointAzureDevOps.js +1 -3
  28. package/serviceEndpointAzureDevOps.js.map +1 -1
  29. package/serviceEndpointAzureRM.d.ts +3 -2
  30. package/serviceEndpointAzureRM.js +3 -2
  31. package/serviceEndpointAzureRM.js.map +1 -1
  32. package/serviceEndpointBitBucket.d.ts +0 -8
  33. package/serviceEndpointBitBucket.js +1 -3
  34. package/serviceEndpointBitBucket.js.map +1 -1
  35. package/serviceEndpointDockerRegistry.d.ts +0 -8
  36. package/serviceEndpointDockerRegistry.js +1 -3
  37. package/serviceEndpointDockerRegistry.js.map +1 -1
  38. package/serviceEndpointGeneric.d.ts +0 -8
  39. package/serviceEndpointGeneric.js +1 -3
  40. package/serviceEndpointGeneric.js.map +1 -1
  41. package/serviceEndpointGenericGit.d.ts +0 -8
  42. package/serviceEndpointGenericGit.js +1 -3
  43. package/serviceEndpointGenericGit.js.map +1 -1
  44. package/serviceEndpointSonarQube.d.ts +0 -8
  45. package/serviceEndpointSonarQube.js +1 -3
  46. package/serviceEndpointSonarQube.js.map +1 -1
  47. package/serviceEndpointSsh.d.ts +0 -16
  48. package/serviceEndpointSsh.js +1 -5
  49. package/serviceEndpointSsh.js.map +1 -1
  50. package/serviceendpoint/azureRM.d.ts +3 -2
  51. package/serviceendpoint/azureRM.js +3 -2
  52. package/serviceendpoint/azureRM.js.map +1 -1
  53. package/serviceendpoint/bitBucket.d.ts +0 -8
  54. package/serviceendpoint/bitBucket.js +1 -3
  55. package/serviceendpoint/bitBucket.js.map +1 -1
  56. package/serviceendpoint/dockerRegistry.d.ts +0 -8
  57. package/serviceendpoint/dockerRegistry.js +1 -3
  58. package/serviceendpoint/dockerRegistry.js.map +1 -1
  59. package/serviceendpointJenkins.d.ts +154 -0
  60. package/serviceendpointJenkins.js +114 -0
  61. package/serviceendpointJenkins.js.map +1 -0
  62. package/serviceendpointMaven.d.ts +182 -0
  63. package/serviceendpointMaven.js +135 -0
  64. package/serviceendpointMaven.js.map +1 -0
  65. package/serviceendpointNexus.d.ts +142 -0
  66. package/serviceendpointNexus.js +112 -0
  67. package/serviceendpointNexus.js.map +1 -0
  68. package/types/input.d.ts +18 -12
  69. package/types/output.d.ts +18 -12
@@ -24,6 +24,7 @@ import * as pulumi from "@pulumi/pulumi";
24
24
  * targetResourceId: exampleServiceEndpointGeneric.id,
25
25
  * targetResourceType: "endpoint",
26
26
  * allowedBranches: "refs/heads/main, refs/heads/features/*",
27
+ * timeout: 1440,
27
28
  * });
28
29
  * ```
29
30
  * ### Protect an environment
@@ -162,6 +163,10 @@ export declare class CheckBranchControl extends pulumi.CustomResource {
162
163
  * The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
163
164
  */
164
165
  readonly targetResourceType: pulumi.Output<string>;
166
+ /**
167
+ * The timeout in minutes for the branch control check. Defaults to `1440`.
168
+ */
169
+ readonly timeout: pulumi.Output<number | undefined>;
165
170
  /**
166
171
  * Validate the branches being deployed are protected. Defaults to `false`.
167
172
  */
@@ -203,6 +208,10 @@ export interface CheckBranchControlState {
203
208
  * The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
204
209
  */
205
210
  targetResourceType?: pulumi.Input<string>;
211
+ /**
212
+ * The timeout in minutes for the branch control check. Defaults to `1440`.
213
+ */
214
+ timeout?: pulumi.Input<number>;
206
215
  /**
207
216
  * Validate the branches being deployed are protected. Defaults to `false`.
208
217
  */
@@ -236,6 +245,10 @@ export interface CheckBranchControlArgs {
236
245
  * The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
237
246
  */
238
247
  targetResourceType: pulumi.Input<string>;
248
+ /**
249
+ * The timeout in minutes for the branch control check. Defaults to `1440`.
250
+ */
251
+ timeout?: pulumi.Input<number>;
239
252
  /**
240
253
  * Validate the branches being deployed are protected. Defaults to `false`.
241
254
  */
@@ -30,6 +30,7 @@ const utilities = require("./utilities");
30
30
  * targetResourceId: exampleServiceEndpointGeneric.id,
31
31
  * targetResourceType: "endpoint",
32
32
  * allowedBranches: "refs/heads/main, refs/heads/features/*",
33
+ * timeout: 1440,
33
34
  * });
34
35
  * ```
35
36
  * ### Protect an environment
@@ -162,6 +163,7 @@ class CheckBranchControl extends pulumi.CustomResource {
162
163
  resourceInputs["projectId"] = state ? state.projectId : undefined;
163
164
  resourceInputs["targetResourceId"] = state ? state.targetResourceId : undefined;
164
165
  resourceInputs["targetResourceType"] = state ? state.targetResourceType : undefined;
166
+ resourceInputs["timeout"] = state ? state.timeout : undefined;
165
167
  resourceInputs["verifyBranchProtection"] = state ? state.verifyBranchProtection : undefined;
166
168
  }
167
169
  else {
@@ -181,6 +183,7 @@ class CheckBranchControl extends pulumi.CustomResource {
181
183
  resourceInputs["projectId"] = args ? args.projectId : undefined;
182
184
  resourceInputs["targetResourceId"] = args ? args.targetResourceId : undefined;
183
185
  resourceInputs["targetResourceType"] = args ? args.targetResourceType : undefined;
186
+ resourceInputs["timeout"] = args ? args.timeout : undefined;
184
187
  resourceInputs["verifyBranchProtection"] = args ? args.verifyBranchProtection : undefined;
185
188
  }
186
189
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
@@ -1 +1 @@
1
- {"version":3,"file":"checkBranchControl.js","sourceRoot":"","sources":["../checkBranchControl.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"checkBranchControl.js","sourceRoot":"","sources":["../checkBranchControl.ts"],"names":[],"mappings":"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"}
@@ -28,6 +28,7 @@ import * as pulumi from "@pulumi/pulumi";
28
28
  * timeZone: "UTC",
29
29
  * monday: true,
30
30
  * tuesday: true,
31
+ * timeout: 1440,
31
32
  * });
32
33
  * ```
33
34
  * ### Protect an environment
@@ -350,6 +351,10 @@ export declare class CheckBusinessHours extends pulumi.CustomResource {
350
351
  * The time zone this check will be evaluated in. See below for supported values.
351
352
  */
352
353
  readonly timeZone: pulumi.Output<string>;
354
+ /**
355
+ * The timeout in minutes for the business hours check. Defaults to `1440`.
356
+ */
357
+ readonly timeout: pulumi.Output<number | undefined>;
353
358
  /**
354
359
  * This check will pass on Tuesday. Defaults to `false`.
355
360
  */
@@ -419,6 +424,10 @@ export interface CheckBusinessHoursState {
419
424
  * The time zone this check will be evaluated in. See below for supported values.
420
425
  */
421
426
  timeZone?: pulumi.Input<string>;
427
+ /**
428
+ * The timeout in minutes for the business hours check. Defaults to `1440`.
429
+ */
430
+ timeout?: pulumi.Input<number>;
422
431
  /**
423
432
  * This check will pass on Tuesday. Defaults to `false`.
424
433
  */
@@ -480,6 +489,10 @@ export interface CheckBusinessHoursArgs {
480
489
  * The time zone this check will be evaluated in. See below for supported values.
481
490
  */
482
491
  timeZone: pulumi.Input<string>;
492
+ /**
493
+ * The timeout in minutes for the business hours check. Defaults to `1440`.
494
+ */
495
+ timeout?: pulumi.Input<number>;
483
496
  /**
484
497
  * This check will pass on Tuesday. Defaults to `false`.
485
498
  */
@@ -34,6 +34,7 @@ const utilities = require("./utilities");
34
34
  * timeZone: "UTC",
35
35
  * monday: true,
36
36
  * tuesday: true,
37
+ * timeout: 1440,
37
38
  * });
38
39
  * ```
39
40
  * ### Protect an environment
@@ -332,6 +333,7 @@ class CheckBusinessHours extends pulumi.CustomResource {
332
333
  resourceInputs["targetResourceType"] = state ? state.targetResourceType : undefined;
333
334
  resourceInputs["thursday"] = state ? state.thursday : undefined;
334
335
  resourceInputs["timeZone"] = state ? state.timeZone : undefined;
336
+ resourceInputs["timeout"] = state ? state.timeout : undefined;
335
337
  resourceInputs["tuesday"] = state ? state.tuesday : undefined;
336
338
  resourceInputs["wednesday"] = state ? state.wednesday : undefined;
337
339
  }
@@ -367,6 +369,7 @@ class CheckBusinessHours extends pulumi.CustomResource {
367
369
  resourceInputs["targetResourceType"] = args ? args.targetResourceType : undefined;
368
370
  resourceInputs["thursday"] = args ? args.thursday : undefined;
369
371
  resourceInputs["timeZone"] = args ? args.timeZone : undefined;
372
+ resourceInputs["timeout"] = args ? args.timeout : undefined;
370
373
  resourceInputs["tuesday"] = args ? args.tuesday : undefined;
371
374
  resourceInputs["wednesday"] = args ? args.wednesday : undefined;
372
375
  }
@@ -1 +1 @@
1
- {"version":3,"file":"checkBusinessHours.js","sourceRoot":"","sources":["../checkBusinessHours.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"checkBusinessHours.js","sourceRoot":"","sources":["../checkBusinessHours.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,62 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Use this data source to access information about an Environment.
4
+ *
5
+ * ## Relevant Links
6
+ *
7
+ * * [Azure DevOps Service REST API 7.0 - Environments](https://docs.microsoft.com/en-us/rest/api/azure/devops/distributedtask/environments?view=azure-devops-rest-7.0)
8
+ */
9
+ export declare function getEnvironment(args: GetEnvironmentArgs, opts?: pulumi.InvokeOptions): Promise<GetEnvironmentResult>;
10
+ /**
11
+ * A collection of arguments for invoking getEnvironment.
12
+ */
13
+ export interface GetEnvironmentArgs {
14
+ /**
15
+ * The ID of the Environment.
16
+ */
17
+ environmentId: number;
18
+ /**
19
+ * The ID of the project.
20
+ */
21
+ projectId: string;
22
+ }
23
+ /**
24
+ * A collection of values returned by getEnvironment.
25
+ */
26
+ export interface GetEnvironmentResult {
27
+ /**
28
+ * A description for the Environment.
29
+ */
30
+ readonly description: string;
31
+ readonly environmentId: number;
32
+ /**
33
+ * The provider-assigned unique ID for this managed resource.
34
+ */
35
+ readonly id: string;
36
+ /**
37
+ * The name of the Environment.
38
+ */
39
+ readonly name: string;
40
+ readonly projectId: string;
41
+ }
42
+ /**
43
+ * Use this data source to access information about an Environment.
44
+ *
45
+ * ## Relevant Links
46
+ *
47
+ * * [Azure DevOps Service REST API 7.0 - Environments](https://docs.microsoft.com/en-us/rest/api/azure/devops/distributedtask/environments?view=azure-devops-rest-7.0)
48
+ */
49
+ export declare function getEnvironmentOutput(args: GetEnvironmentOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetEnvironmentResult>;
50
+ /**
51
+ * A collection of arguments for invoking getEnvironment.
52
+ */
53
+ export interface GetEnvironmentOutputArgs {
54
+ /**
55
+ * The ID of the Environment.
56
+ */
57
+ environmentId: pulumi.Input<number>;
58
+ /**
59
+ * The ID of the project.
60
+ */
61
+ projectId: pulumi.Input<string>;
62
+ }
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.getEnvironmentOutput = exports.getEnvironment = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Use this data source to access information about an Environment.
10
+ *
11
+ * ## Relevant Links
12
+ *
13
+ * * [Azure DevOps Service REST API 7.0 - Environments](https://docs.microsoft.com/en-us/rest/api/azure/devops/distributedtask/environments?view=azure-devops-rest-7.0)
14
+ */
15
+ function getEnvironment(args, opts) {
16
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
17
+ return pulumi.runtime.invoke("azuredevops:index/getEnvironment:getEnvironment", {
18
+ "environmentId": args.environmentId,
19
+ "projectId": args.projectId,
20
+ }, opts);
21
+ }
22
+ exports.getEnvironment = getEnvironment;
23
+ /**
24
+ * Use this data source to access information about an Environment.
25
+ *
26
+ * ## Relevant Links
27
+ *
28
+ * * [Azure DevOps Service REST API 7.0 - Environments](https://docs.microsoft.com/en-us/rest/api/azure/devops/distributedtask/environments?view=azure-devops-rest-7.0)
29
+ */
30
+ function getEnvironmentOutput(args, opts) {
31
+ return pulumi.output(args).apply((a) => getEnvironment(a, opts));
32
+ }
33
+ exports.getEnvironmentOutput = getEnvironmentOutput;
34
+ //# sourceMappingURL=getEnvironment.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getEnvironment.js","sourceRoot":"","sources":["../getEnvironment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC;AAmCD;;;;;;GAMG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
package/getGroups.d.ts CHANGED
@@ -19,7 +19,7 @@ import * as outputs from "./types/output";
19
19
  * ```
20
20
  * ## Relevant Links
21
21
  *
22
- * - [Azure DevOps Service REST API 6.0 - Groups - List](https://docs.microsoft.com/en-us/rest/api/azure/devops/graph/groups/list?view=azure-devops-rest-6.0)
22
+ * - [Azure DevOps Service REST API 7.0 - Groups - List](https://docs.microsoft.com/en-us/rest/api/azure/devops/graph/groups/list?view=azure-devops-rest-7.0)
23
23
  */
24
24
  export declare function getGroups(args?: GetGroupsArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupsResult>;
25
25
  /**
@@ -64,7 +64,7 @@ export interface GetGroupsResult {
64
64
  * ```
65
65
  * ## Relevant Links
66
66
  *
67
- * - [Azure DevOps Service REST API 6.0 - Groups - List](https://docs.microsoft.com/en-us/rest/api/azure/devops/graph/groups/list?view=azure-devops-rest-6.0)
67
+ * - [Azure DevOps Service REST API 7.0 - Groups - List](https://docs.microsoft.com/en-us/rest/api/azure/devops/graph/groups/list?view=azure-devops-rest-7.0)
68
68
  */
69
69
  export declare function getGroupsOutput(args?: GetGroupsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetGroupsResult>;
70
70
  /**
package/getGroups.js CHANGED
@@ -24,7 +24,7 @@ const utilities = require("./utilities");
24
24
  * ```
25
25
  * ## Relevant Links
26
26
  *
27
- * - [Azure DevOps Service REST API 6.0 - Groups - List](https://docs.microsoft.com/en-us/rest/api/azure/devops/graph/groups/list?view=azure-devops-rest-6.0)
27
+ * - [Azure DevOps Service REST API 7.0 - Groups - List](https://docs.microsoft.com/en-us/rest/api/azure/devops/graph/groups/list?view=azure-devops-rest-7.0)
28
28
  */
29
29
  function getGroups(args, opts) {
30
30
  args = args || {};
@@ -53,7 +53,7 @@ exports.getGroups = getGroups;
53
53
  * ```
54
54
  * ## Relevant Links
55
55
  *
56
- * - [Azure DevOps Service REST API 6.0 - Groups - List](https://docs.microsoft.com/en-us/rest/api/azure/devops/graph/groups/list?view=azure-devops-rest-6.0)
56
+ * - [Azure DevOps Service REST API 7.0 - Groups - List](https://docs.microsoft.com/en-us/rest/api/azure/devops/graph/groups/list?view=azure-devops-rest-7.0)
57
57
  */
58
58
  function getGroupsOutput(args, opts) {
59
59
  return pulumi.output(args).apply((a) => getGroups(a, opts));
package/getTeam.d.ts CHANGED
@@ -40,6 +40,10 @@ export interface GetTeamArgs {
40
40
  * The Project ID.
41
41
  */
42
42
  projectId: string;
43
+ /**
44
+ * The maximum number of teams to return. Defaults to `100`.
45
+ */
46
+ top?: number;
43
47
  }
44
48
  /**
45
49
  * A collection of values returned by getTeam.
@@ -67,6 +71,7 @@ export interface GetTeamResult {
67
71
  readonly members: string[];
68
72
  readonly name: string;
69
73
  readonly projectId: string;
74
+ readonly top?: number;
70
75
  }
71
76
  /**
72
77
  * Use this data source to access information about an existing Team in a Project within Azure DevOps.
@@ -109,4 +114,8 @@ export interface GetTeamOutputArgs {
109
114
  * The Project ID.
110
115
  */
111
116
  projectId: pulumi.Input<string>;
117
+ /**
118
+ * The maximum number of teams to return. Defaults to `100`.
119
+ */
120
+ top?: pulumi.Input<number>;
112
121
  }
package/getTeam.js CHANGED
@@ -38,6 +38,7 @@ function getTeam(args, opts) {
38
38
  return pulumi.runtime.invoke("azuredevops:index/getTeam:getTeam", {
39
39
  "name": args.name,
40
40
  "projectId": args.projectId,
41
+ "top": args.top,
41
42
  }, opts);
42
43
  }
43
44
  exports.getTeam = getTeam;
package/getTeam.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getTeam.js","sourceRoot":"","sources":["../getTeam.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAElE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0BAOC;AA2CD;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,sCAEC"}
1
+ {"version":3,"file":"getTeam.js","sourceRoot":"","sources":["../getTeam.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAElE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0BAQC;AAgDD;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,sCAEC"}
package/getTeams.d.ts CHANGED
@@ -32,6 +32,10 @@ export interface GetTeamsArgs {
32
32
  * The Project ID. If no project ID all teams of the organization will be returned.
33
33
  */
34
34
  projectId?: string;
35
+ /**
36
+ * The maximum number of teams to return. Defaults to `100`.
37
+ */
38
+ top?: number;
35
39
  }
36
40
  /**
37
41
  * A collection of values returned by getTeams.
@@ -50,6 +54,7 @@ export interface GetTeamsResult {
50
54
  * A list of existing projects in your Azure DevOps Organization with details about every project which includes:
51
55
  */
52
56
  readonly teams: outputs.GetTeamsTeam[];
57
+ readonly top?: number;
53
58
  }
54
59
  /**
55
60
  * Use this data source to access information about existing Teams in a Project or globally within an Azure DevOps organization
@@ -83,4 +88,8 @@ export interface GetTeamsOutputArgs {
83
88
  * The Project ID. If no project ID all teams of the organization will be returned.
84
89
  */
85
90
  projectId?: pulumi.Input<string>;
91
+ /**
92
+ * The maximum number of teams to return. Defaults to `100`.
93
+ */
94
+ top?: pulumi.Input<number>;
86
95
  }
package/getTeams.js CHANGED
@@ -33,6 +33,7 @@ function getTeams(args, opts) {
33
33
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
34
34
  return pulumi.runtime.invoke("azuredevops:index/getTeams:getTeams", {
35
35
  "projectId": args.projectId,
36
+ "top": args.top,
36
37
  }, opts);
37
38
  }
38
39
  exports.getTeams = getTeams;
package/getTeams.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getTeams.js","sourceRoot":"","sources":["../getTeams.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4BAOC;AA8BD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
1
+ {"version":3,"file":"getTeams.js","sourceRoot":"","sources":["../getTeams.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,4BAQC;AAmCD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
package/index.d.ts CHANGED
@@ -66,6 +66,9 @@ export declare const getBuildDefinition: typeof import("./getBuildDefinition").g
66
66
  export declare const getBuildDefinitionOutput: typeof import("./getBuildDefinition").getBuildDefinitionOutput;
67
67
  export { GetClientConfigResult } from "./getClientConfig";
68
68
  export declare const getClientConfig: typeof import("./getClientConfig").getClientConfig;
69
+ export { GetEnvironmentArgs, GetEnvironmentResult, GetEnvironmentOutputArgs } from "./getEnvironment";
70
+ export declare const getEnvironment: typeof import("./getEnvironment").getEnvironment;
71
+ export declare const getEnvironmentOutput: typeof import("./getEnvironment").getEnvironmentOutput;
69
72
  export { GetGitRepositoryArgs, GetGitRepositoryResult, GetGitRepositoryOutputArgs } from "./getGitRepository";
70
73
  export declare const getGitRepository: typeof import("./getGitRepository").getGitRepository;
71
74
  export declare const getGitRepositoryOutput: typeof import("./getGitRepository").getGitRepositoryOutput;
@@ -251,6 +254,9 @@ export declare const ServiceendpointGcpTerraform: typeof import("./serviceendpoi
251
254
  export { ServiceendpointIncomingwebhookArgs, ServiceendpointIncomingwebhookState } from "./serviceendpointIncomingwebhook";
252
255
  export type ServiceendpointIncomingwebhook = import("./serviceendpointIncomingwebhook").ServiceendpointIncomingwebhook;
253
256
  export declare const ServiceendpointIncomingwebhook: typeof import("./serviceendpointIncomingwebhook").ServiceendpointIncomingwebhook;
257
+ export { ServiceendpointJenkinsArgs, ServiceendpointJenkinsState } from "./serviceendpointJenkins";
258
+ export type ServiceendpointJenkins = import("./serviceendpointJenkins").ServiceendpointJenkins;
259
+ export declare const ServiceendpointJenkins: typeof import("./serviceendpointJenkins").ServiceendpointJenkins;
254
260
  export { ServiceendpointJfrogArtifactoryV2Args, ServiceendpointJfrogArtifactoryV2State } from "./serviceendpointJfrogArtifactoryV2";
255
261
  export type ServiceendpointJfrogArtifactoryV2 = import("./serviceendpointJfrogArtifactoryV2").ServiceendpointJfrogArtifactoryV2;
256
262
  export declare const ServiceendpointJfrogArtifactoryV2: typeof import("./serviceendpointJfrogArtifactoryV2").ServiceendpointJfrogArtifactoryV2;
@@ -263,6 +269,12 @@ export declare const ServiceendpointJfrogPlatformV2: typeof import("./serviceend
263
269
  export { ServiceendpointJfrogXrayV2Args, ServiceendpointJfrogXrayV2State } from "./serviceendpointJfrogXrayV2";
264
270
  export type ServiceendpointJfrogXrayV2 = import("./serviceendpointJfrogXrayV2").ServiceendpointJfrogXrayV2;
265
271
  export declare const ServiceendpointJfrogXrayV2: typeof import("./serviceendpointJfrogXrayV2").ServiceendpointJfrogXrayV2;
272
+ export { ServiceendpointMavenArgs, ServiceendpointMavenState } from "./serviceendpointMaven";
273
+ export type ServiceendpointMaven = import("./serviceendpointMaven").ServiceendpointMaven;
274
+ export declare const ServiceendpointMaven: typeof import("./serviceendpointMaven").ServiceendpointMaven;
275
+ export { ServiceendpointNexusArgs, ServiceendpointNexusState } from "./serviceendpointNexus";
276
+ export type ServiceendpointNexus = import("./serviceendpointNexus").ServiceendpointNexus;
277
+ export declare const ServiceendpointNexus: typeof import("./serviceendpointNexus").ServiceendpointNexus;
266
278
  export { ServiceendpointOctopusdeployArgs, ServiceendpointOctopusdeployState } from "./serviceendpointOctopusdeploy";
267
279
  export type ServiceendpointOctopusdeploy = import("./serviceendpointOctopusdeploy").ServiceendpointOctopusdeploy;
268
280
  export declare const ServiceendpointOctopusdeploy: typeof import("./serviceendpointOctopusdeploy").ServiceendpointOctopusdeploy;
package/index.js CHANGED
@@ -2,9 +2,9 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.getServiceendpointSonarcloud = exports.getServiceendpointNpmOutput = exports.getServiceendpointNpm = exports.getServiceEndpointGithubOutput = exports.getServiceEndpointGithub = exports.getServiceEndpointAzureRMOutput = exports.getServiceEndpointAzureRM = exports.getRepositoriesOutput = exports.getRepositories = exports.getProjectsOutput = exports.getProjects = exports.getProjectOutput = exports.getProject = exports.getPools = exports.getPoolOutput = exports.getPool = exports.getIterationOutput = exports.getIteration = exports.getGroupsOutput = exports.getGroups = exports.getGroupOutput = exports.getGroup = exports.getGitRepositoryOutput = exports.getGitRepository = exports.getClientConfig = exports.getBuildDefinitionOutput = exports.getBuildDefinition = exports.getAreaOutput = exports.getArea = exports.getAgentQueueOutput = exports.getAgentQueue = 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
- exports.ServiceEndpointSsh = exports.ServiceEndpointSonarQube = exports.ServiceEndpointSonarCloud = exports.ServiceEndpointServiceFabric = exports.ServiceEndpointPipeline = exports.ServiceEndpointNpm = exports.ServiceEndpointKubernetes = exports.ServiceEndpointGitHubEnterprise = exports.ServiceEndpointGitHub = exports.ServiceEndpointGenericGit = exports.ServiceEndpointGeneric = exports.ServiceEndpointDockerRegistry = exports.ServiceEndpointBitBucket = exports.ServiceEndpointAzureRM = exports.ServiceEndpointAzureEcr = exports.ServiceEndpointAzureDevOps = exports.ServiceEndpointAws = exports.ServiceEndpointArtifactory = exports.ResourceAuthorization = exports.RepositoryPolicyReservedNames = exports.RepositoryPolicyMaxPathLength = exports.RepositoryPolicyMaxFileSize = exports.RepositoryPolicyFilePathPattern = exports.RepositoryPolicyCheckCredentials = exports.RepositoryPolicyCaseEnforcement = exports.RepositoryPolicyAuthorEmailPattern = exports.Queue = exports.Provider = exports.ProjectPipelineSettings = exports.ProjectPermissions = exports.ProjectFeatures = exports.Project = exports.Pool = exports.PipelineAuthorization = exports.IterativePermissions = exports.GroupMembership = 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 = void 0;
7
- exports.types = exports.serviceendpoint = exports.security = exports.repository = exports.policy = exports.pipeline = exports.identities = exports.entitlement = exports.core = exports.config = exports.build = exports.agent = exports.Workitem = exports.WorkItemQueryPermissions = exports.VariableGroup = exports.User = exports.TeamMembers = exports.TeamAdministrators = exports.Team = exports.TaggingPermissions = exports.ServicehookPermissions = exports.ServiceendpointPermissions = exports.ServiceendpointOctopusdeploy = exports.ServiceendpointJfrogXrayV2 = exports.ServiceendpointJfrogPlatformV2 = exports.ServiceendpointJfrogDistributionV2 = exports.ServiceendpointJfrogArtifactoryV2 = exports.ServiceendpointIncomingwebhook = exports.ServiceendpointGcpTerraform = exports.ServiceendpointExternaltfs = exports.ServiceendpointArgocd = void 0;
5
+ exports.getServiceendpointNpm = exports.getServiceEndpointGithubOutput = exports.getServiceEndpointGithub = exports.getServiceEndpointAzureRMOutput = exports.getServiceEndpointAzureRM = exports.getRepositoriesOutput = exports.getRepositories = exports.getProjectsOutput = exports.getProjects = exports.getProjectOutput = exports.getProject = exports.getPools = exports.getPoolOutput = exports.getPool = exports.getIterationOutput = exports.getIteration = exports.getGroupsOutput = exports.getGroups = exports.getGroupOutput = exports.getGroup = exports.getGitRepositoryOutput = exports.getGitRepository = exports.getEnvironmentOutput = exports.getEnvironment = exports.getClientConfig = exports.getBuildDefinitionOutput = exports.getBuildDefinition = exports.getAreaOutput = exports.getArea = exports.getAgentQueueOutput = exports.getAgentQueue = 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
+ exports.ServiceEndpointSonarCloud = exports.ServiceEndpointServiceFabric = exports.ServiceEndpointPipeline = exports.ServiceEndpointNpm = exports.ServiceEndpointKubernetes = exports.ServiceEndpointGitHubEnterprise = exports.ServiceEndpointGitHub = exports.ServiceEndpointGenericGit = exports.ServiceEndpointGeneric = exports.ServiceEndpointDockerRegistry = exports.ServiceEndpointBitBucket = exports.ServiceEndpointAzureRM = exports.ServiceEndpointAzureEcr = exports.ServiceEndpointAzureDevOps = exports.ServiceEndpointAws = exports.ServiceEndpointArtifactory = exports.ResourceAuthorization = exports.RepositoryPolicyReservedNames = exports.RepositoryPolicyMaxPathLength = exports.RepositoryPolicyMaxFileSize = exports.RepositoryPolicyFilePathPattern = exports.RepositoryPolicyCheckCredentials = exports.RepositoryPolicyCaseEnforcement = exports.RepositoryPolicyAuthorEmailPattern = exports.Queue = exports.Provider = exports.ProjectPipelineSettings = exports.ProjectPermissions = exports.ProjectFeatures = exports.Project = exports.Pool = exports.PipelineAuthorization = exports.IterativePermissions = exports.GroupMembership = 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 = void 0;
7
+ exports.types = exports.serviceendpoint = exports.security = exports.repository = exports.policy = exports.pipeline = exports.identities = exports.entitlement = exports.core = exports.config = exports.build = exports.agent = exports.Workitem = exports.WorkItemQueryPermissions = exports.VariableGroup = exports.User = exports.TeamMembers = exports.TeamAdministrators = exports.Team = exports.TaggingPermissions = exports.ServicehookPermissions = exports.ServiceendpointPermissions = exports.ServiceendpointOctopusdeploy = exports.ServiceendpointNexus = exports.ServiceendpointMaven = exports.ServiceendpointJfrogXrayV2 = exports.ServiceendpointJfrogPlatformV2 = exports.ServiceendpointJfrogDistributionV2 = exports.ServiceendpointJfrogArtifactoryV2 = exports.ServiceendpointJenkins = exports.ServiceendpointIncomingwebhook = exports.ServiceendpointGcpTerraform = exports.ServiceendpointExternaltfs = exports.ServiceendpointArgocd = exports.ServiceEndpointSsh = exports.ServiceEndpointSonarQube = void 0;
8
8
  const pulumi = require("@pulumi/pulumi");
9
9
  const utilities = require("./utilities");
10
10
  exports.AreaPermissions = null;
@@ -56,6 +56,9 @@ exports.getBuildDefinitionOutput = null;
56
56
  utilities.lazyLoad(exports, ["getBuildDefinition", "getBuildDefinitionOutput"], () => require("./getBuildDefinition"));
57
57
  exports.getClientConfig = null;
58
58
  utilities.lazyLoad(exports, ["getClientConfig"], () => require("./getClientConfig"));
59
+ exports.getEnvironment = null;
60
+ exports.getEnvironmentOutput = null;
61
+ utilities.lazyLoad(exports, ["getEnvironment", "getEnvironmentOutput"], () => require("./getEnvironment"));
59
62
  exports.getGitRepository = null;
60
63
  exports.getGitRepositoryOutput = null;
61
64
  utilities.lazyLoad(exports, ["getGitRepository", "getGitRepositoryOutput"], () => require("./getGitRepository"));
@@ -196,6 +199,8 @@ exports.ServiceendpointGcpTerraform = null;
196
199
  utilities.lazyLoad(exports, ["ServiceendpointGcpTerraform"], () => require("./serviceendpointGcpTerraform"));
197
200
  exports.ServiceendpointIncomingwebhook = null;
198
201
  utilities.lazyLoad(exports, ["ServiceendpointIncomingwebhook"], () => require("./serviceendpointIncomingwebhook"));
202
+ exports.ServiceendpointJenkins = null;
203
+ utilities.lazyLoad(exports, ["ServiceendpointJenkins"], () => require("./serviceendpointJenkins"));
199
204
  exports.ServiceendpointJfrogArtifactoryV2 = null;
200
205
  utilities.lazyLoad(exports, ["ServiceendpointJfrogArtifactoryV2"], () => require("./serviceendpointJfrogArtifactoryV2"));
201
206
  exports.ServiceendpointJfrogDistributionV2 = null;
@@ -204,6 +209,10 @@ exports.ServiceendpointJfrogPlatformV2 = null;
204
209
  utilities.lazyLoad(exports, ["ServiceendpointJfrogPlatformV2"], () => require("./serviceendpointJfrogPlatformV2"));
205
210
  exports.ServiceendpointJfrogXrayV2 = null;
206
211
  utilities.lazyLoad(exports, ["ServiceendpointJfrogXrayV2"], () => require("./serviceendpointJfrogXrayV2"));
212
+ exports.ServiceendpointMaven = null;
213
+ utilities.lazyLoad(exports, ["ServiceendpointMaven"], () => require("./serviceendpointMaven"));
214
+ exports.ServiceendpointNexus = null;
215
+ utilities.lazyLoad(exports, ["ServiceendpointNexus"], () => require("./serviceendpointNexus"));
207
216
  exports.ServiceendpointOctopusdeploy = null;
208
217
  utilities.lazyLoad(exports, ["ServiceendpointOctopusdeploy"], () => require("./serviceendpointOctopusdeploy"));
209
218
  exports.ServiceendpointPermissions = null;
@@ -381,6 +390,8 @@ const _module = {
381
390
  return new exports.ServiceendpointGcpTerraform(name, undefined, { urn });
382
391
  case "azuredevops:index/serviceendpointIncomingwebhook:ServiceendpointIncomingwebhook":
383
392
  return new exports.ServiceendpointIncomingwebhook(name, undefined, { urn });
393
+ case "azuredevops:index/serviceendpointJenkins:ServiceendpointJenkins":
394
+ return new exports.ServiceendpointJenkins(name, undefined, { urn });
384
395
  case "azuredevops:index/serviceendpointJfrogArtifactoryV2:ServiceendpointJfrogArtifactoryV2":
385
396
  return new exports.ServiceendpointJfrogArtifactoryV2(name, undefined, { urn });
386
397
  case "azuredevops:index/serviceendpointJfrogDistributionV2:ServiceendpointJfrogDistributionV2":
@@ -389,6 +400,10 @@ const _module = {
389
400
  return new exports.ServiceendpointJfrogPlatformV2(name, undefined, { urn });
390
401
  case "azuredevops:index/serviceendpointJfrogXrayV2:ServiceendpointJfrogXrayV2":
391
402
  return new exports.ServiceendpointJfrogXrayV2(name, undefined, { urn });
403
+ case "azuredevops:index/serviceendpointMaven:ServiceendpointMaven":
404
+ return new exports.ServiceendpointMaven(name, undefined, { urn });
405
+ case "azuredevops:index/serviceendpointNexus:ServiceendpointNexus":
406
+ return new exports.ServiceendpointNexus(name, undefined, { urn });
392
407
  case "azuredevops:index/serviceendpointOctopusdeploy:ServiceendpointOctopusdeploy":
393
408
  return new exports.ServiceendpointOctopusdeploy(name, undefined, { urn });
394
409
  case "azuredevops:index/serviceendpointPermissions:ServiceendpointPermissions":
@@ -479,10 +494,13 @@ pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointArgoc
479
494
  pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointExternaltfs", _module);
480
495
  pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointGcpTerraform", _module);
481
496
  pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointIncomingwebhook", _module);
497
+ pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointJenkins", _module);
482
498
  pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointJfrogArtifactoryV2", _module);
483
499
  pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointJfrogDistributionV2", _module);
484
500
  pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointJfrogPlatformV2", _module);
485
501
  pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointJfrogXrayV2", _module);
502
+ pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointMaven", _module);
503
+ pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointNexus", _module);
486
504
  pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointOctopusdeploy", _module);
487
505
  pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointPermissions", _module);
488
506
  pulumi.runtime.registerResourceModule("azuredevops", "index/servicehookPermissions", _module);