pulumi-azuredevops 3.6.0a1737091250__py3-none-any.whl → 3.6.0a1737710622__py3-none-any.whl
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.
- pulumi_azuredevops/__init__.py +64 -0
- pulumi_azuredevops/_inputs.py +120 -117
- pulumi_azuredevops/area_permissions.py +49 -49
- pulumi_azuredevops/branch_policy_auto_reviewers.py +7 -7
- pulumi_azuredevops/branch_policy_build_validation.py +7 -7
- pulumi_azuredevops/branch_policy_comment_resolution.py +7 -7
- pulumi_azuredevops/branch_policy_merge_types.py +7 -7
- pulumi_azuredevops/branch_policy_status_check.py +7 -7
- pulumi_azuredevops/branch_policy_work_item_linking.py +7 -7
- pulumi_azuredevops/build_definition.py +7 -7
- pulumi_azuredevops/check_branch_control.py +7 -7
- pulumi_azuredevops/check_business_hours.py +7 -7
- pulumi_azuredevops/check_exclusive_lock.py +7 -7
- pulumi_azuredevops/check_rest_api.py +986 -0
- pulumi_azuredevops/feed.py +8 -8
- pulumi_azuredevops/feed_permission.py +9 -9
- pulumi_azuredevops/feed_retention_policy.py +422 -0
- pulumi_azuredevops/get_agent_queue.py +2 -2
- pulumi_azuredevops/get_area.py +1 -1
- pulumi_azuredevops/get_client_config.py +3 -0
- pulumi_azuredevops/get_feed.py +4 -4
- pulumi_azuredevops/get_git_repository.py +8 -8
- pulumi_azuredevops/get_group.py +4 -4
- pulumi_azuredevops/get_groups.py +3 -3
- pulumi_azuredevops/get_identity_group.py +3 -0
- pulumi_azuredevops/get_identity_groups.py +1 -1
- pulumi_azuredevops/get_identity_users.py +5 -5
- pulumi_azuredevops/get_pool.py +14 -2
- pulumi_azuredevops/get_pools.py +3 -3
- pulumi_azuredevops/get_project.py +32 -0
- pulumi_azuredevops/get_projects.py +4 -4
- pulumi_azuredevops/get_repositories.py +7 -3
- pulumi_azuredevops/get_securityrole_definitions.py +4 -4
- pulumi_azuredevops/get_service_endpoint_azure_rm.py +5 -5
- pulumi_azuredevops/get_service_endpoint_github.py +6 -6
- pulumi_azuredevops/get_service_principal.py +153 -0
- pulumi_azuredevops/get_serviceendpoint_azurecr.py +1 -1
- pulumi_azuredevops/get_serviceendpoint_bitbucket.py +6 -6
- pulumi_azuredevops/get_serviceendpoint_npm.py +3 -3
- pulumi_azuredevops/get_serviceendpoint_sonarcloud.py +2 -2
- pulumi_azuredevops/get_team.py +4 -3
- pulumi_azuredevops/get_teams.py +2 -3
- pulumi_azuredevops/get_users.py +5 -9
- pulumi_azuredevops/git.py +7 -7
- pulumi_azuredevops/git_permissions.py +14 -21
- pulumi_azuredevops/git_repository_file.py +7 -14
- pulumi_azuredevops/group.py +21 -7
- pulumi_azuredevops/group_entitlement.py +16 -20
- pulumi_azuredevops/group_membership.py +35 -50
- pulumi_azuredevops/iterative_permissions.py +34 -34
- pulumi_azuredevops/library_permissions.py +75 -75
- pulumi_azuredevops/outputs.py +129 -102
- pulumi_azuredevops/pipeline_authorization.py +7 -7
- pulumi_azuredevops/pool.py +4 -4
- pulumi_azuredevops/project.py +114 -63
- pulumi_azuredevops/project_features.py +87 -45
- pulumi_azuredevops/project_permissions.py +7 -7
- pulumi_azuredevops/project_pipeline_settings.py +28 -35
- pulumi_azuredevops/project_tags.py +263 -0
- pulumi_azuredevops/pulumi-plugin.json +1 -1
- pulumi_azuredevops/queue.py +7 -14
- pulumi_azuredevops/repository_policy_author_email_pattern.py +21 -14
- pulumi_azuredevops/repository_policy_max_file_size.py +7 -7
- pulumi_azuredevops/resource_authorization.py +35 -35
- pulumi_azuredevops/service_endpoint_artifactory.py +24 -18
- pulumi_azuredevops/service_endpoint_aws.py +2 -2
- pulumi_azuredevops/service_endpoint_azure_ecr.py +13 -15
- pulumi_azuredevops/service_endpoint_azure_rm.py +25 -25
- pulumi_azuredevops/service_endpoint_bit_bucket.py +2 -2
- pulumi_azuredevops/service_endpoint_docker_registry.py +2 -2
- pulumi_azuredevops/service_endpoint_generic.py +2 -2
- pulumi_azuredevops/service_endpoint_generic_git.py +4 -8
- pulumi_azuredevops/service_endpoint_git_hub.py +15 -2
- pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +15 -2
- pulumi_azuredevops/service_endpoint_kubernetes.py +23 -23
- pulumi_azuredevops/service_endpoint_npm.py +4 -4
- pulumi_azuredevops/service_endpoint_pipeline.py +4 -4
- pulumi_azuredevops/service_endpoint_service_fabric.py +48 -9
- pulumi_azuredevops/service_endpoint_sonar_cloud.py +11 -11
- pulumi_azuredevops/service_endpoint_sonar_qube.py +11 -11
- pulumi_azuredevops/service_endpoint_ssh.py +2 -6
- pulumi_azuredevops/service_principal_entitlement.py +386 -0
- pulumi_azuredevops/serviceendpoint_argocd.py +2 -2
- pulumi_azuredevops/serviceendpoint_azure_service_bus.py +2 -2
- pulumi_azuredevops/serviceendpoint_checkmarx_one.py +627 -0
- pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +575 -0
- pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +674 -0
- pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +2 -2
- pulumi_azuredevops/serviceendpoint_externaltfs.py +63 -11
- pulumi_azuredevops/serviceendpoint_gcp_terraform.py +2 -2
- pulumi_azuredevops/serviceendpoint_incomingwebhook.py +2 -2
- pulumi_azuredevops/serviceendpoint_jenkins.py +2 -2
- pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_maven.py +2 -2
- pulumi_azuredevops/serviceendpoint_nexus.py +2 -2
- pulumi_azuredevops/serviceendpoint_nuget.py +2 -2
- pulumi_azuredevops/serviceendpoint_octopusdeploy.py +2 -2
- pulumi_azuredevops/serviceendpoint_permissions.py +40 -40
- pulumi_azuredevops/serviceendpoint_snyk.py +2 -2
- pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +4 -6
- pulumi_azuredevops/servicehook_permissions.py +51 -51
- pulumi_azuredevops/servicehook_storage_queue_pipelines.py +4 -4
- pulumi_azuredevops/tagging_permissions.py +49 -49
- pulumi_azuredevops/team.py +76 -56
- pulumi_azuredevops/team_administrators.py +83 -56
- pulumi_azuredevops/team_members.py +56 -49
- pulumi_azuredevops/variable_group.py +4 -2
- pulumi_azuredevops/variable_group_permissions.py +75 -75
- pulumi_azuredevops/wiki.py +15 -2
- pulumi_azuredevops/wiki_page.py +2 -2
- pulumi_azuredevops/work_item_query_permissions.py +7 -7
- {pulumi_azuredevops-3.6.0a1737091250.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/METADATA +1 -1
- pulumi_azuredevops-3.6.0a1737710622.dist-info/RECORD +148 -0
- pulumi_azuredevops-3.6.0a1737091250.dist-info/RECORD +0 -140
- {pulumi_azuredevops-3.6.0a1737091250.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/WHEEL +0 -0
- {pulumi_azuredevops-3.6.0a1737091250.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/top_level.txt +0 -0
@@ -25,17 +25,18 @@ class TeamAdministratorsArgs:
|
|
25
25
|
mode: Optional[pulumi.Input[str]] = None):
|
26
26
|
"""
|
27
27
|
The set of arguments for constructing a TeamAdministrators resource.
|
28
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: List of subject descriptors to define
|
28
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: List of subject descriptors to define administrators of the team.
|
29
29
|
|
30
|
-
> NOTE
|
31
|
-
|
32
|
-
|
33
|
-
|
30
|
+
> **NOTE** It's possible to define team administrators both within the
|
31
|
+
`Team` resource via the `administrators` block and by using the
|
32
|
+
`TeamAdministrators` resource. However it's not possible to use
|
33
|
+
both methods to manage team administrators, since there'll be conflicts.
|
34
34
|
:param pulumi.Input[str] project_id: The Project ID.
|
35
35
|
:param pulumi.Input[str] team_id: The ID of the Team.
|
36
|
-
:param pulumi.Input[str] mode: The mode how the resource manages team administrators.
|
37
|
-
|
38
|
-
|
36
|
+
:param pulumi.Input[str] mode: The mode how the resource manages team administrators. Possible values: `add`, `overwrite`. Defaults to `add`.
|
37
|
+
|
38
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified administrators will be part of the referenced team
|
39
|
+
<br> 2. `mode = overwrite`: the resource will replace all existing administrators with the administrators specified within the `administrators` block
|
39
40
|
"""
|
40
41
|
pulumi.set(__self__, "administrators", administrators)
|
41
42
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -47,12 +48,12 @@ class TeamAdministratorsArgs:
|
|
47
48
|
@pulumi.getter
|
48
49
|
def administrators(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
49
50
|
"""
|
50
|
-
List of subject descriptors to define
|
51
|
+
List of subject descriptors to define administrators of the team.
|
51
52
|
|
52
|
-
> NOTE
|
53
|
-
|
54
|
-
|
55
|
-
|
53
|
+
> **NOTE** It's possible to define team administrators both within the
|
54
|
+
`Team` resource via the `administrators` block and by using the
|
55
|
+
`TeamAdministrators` resource. However it's not possible to use
|
56
|
+
both methods to manage team administrators, since there'll be conflicts.
|
56
57
|
"""
|
57
58
|
return pulumi.get(self, "administrators")
|
58
59
|
|
@@ -88,9 +89,10 @@ class TeamAdministratorsArgs:
|
|
88
89
|
@pulumi.getter
|
89
90
|
def mode(self) -> Optional[pulumi.Input[str]]:
|
90
91
|
"""
|
91
|
-
The mode how the resource manages team administrators.
|
92
|
-
|
93
|
-
|
92
|
+
The mode how the resource manages team administrators. Possible values: `add`, `overwrite`. Defaults to `add`.
|
93
|
+
|
94
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified administrators will be part of the referenced team
|
95
|
+
<br> 2. `mode = overwrite`: the resource will replace all existing administrators with the administrators specified within the `administrators` block
|
94
96
|
"""
|
95
97
|
return pulumi.get(self, "mode")
|
96
98
|
|
@@ -108,15 +110,16 @@ class _TeamAdministratorsState:
|
|
108
110
|
team_id: Optional[pulumi.Input[str]] = None):
|
109
111
|
"""
|
110
112
|
Input properties used for looking up and filtering TeamAdministrators resources.
|
111
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: List of subject descriptors to define
|
113
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: List of subject descriptors to define administrators of the team.
|
112
114
|
|
113
|
-
> NOTE
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
:param pulumi.Input[str] mode: The mode how the resource manages team administrators.
|
118
|
-
|
119
|
-
|
115
|
+
> **NOTE** It's possible to define team administrators both within the
|
116
|
+
`Team` resource via the `administrators` block and by using the
|
117
|
+
`TeamAdministrators` resource. However it's not possible to use
|
118
|
+
both methods to manage team administrators, since there'll be conflicts.
|
119
|
+
:param pulumi.Input[str] mode: The mode how the resource manages team administrators. Possible values: `add`, `overwrite`. Defaults to `add`.
|
120
|
+
|
121
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified administrators will be part of the referenced team
|
122
|
+
<br> 2. `mode = overwrite`: the resource will replace all existing administrators with the administrators specified within the `administrators` block
|
120
123
|
:param pulumi.Input[str] project_id: The Project ID.
|
121
124
|
:param pulumi.Input[str] team_id: The ID of the Team.
|
122
125
|
"""
|
@@ -133,12 +136,12 @@ class _TeamAdministratorsState:
|
|
133
136
|
@pulumi.getter
|
134
137
|
def administrators(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
135
138
|
"""
|
136
|
-
List of subject descriptors to define
|
139
|
+
List of subject descriptors to define administrators of the team.
|
137
140
|
|
138
|
-
> NOTE
|
139
|
-
|
140
|
-
|
141
|
-
|
141
|
+
> **NOTE** It's possible to define team administrators both within the
|
142
|
+
`Team` resource via the `administrators` block and by using the
|
143
|
+
`TeamAdministrators` resource. However it's not possible to use
|
144
|
+
both methods to manage team administrators, since there'll be conflicts.
|
142
145
|
"""
|
143
146
|
return pulumi.get(self, "administrators")
|
144
147
|
|
@@ -150,9 +153,10 @@ class _TeamAdministratorsState:
|
|
150
153
|
@pulumi.getter
|
151
154
|
def mode(self) -> Optional[pulumi.Input[str]]:
|
152
155
|
"""
|
153
|
-
The mode how the resource manages team administrators.
|
154
|
-
|
155
|
-
|
156
|
+
The mode how the resource manages team administrators. Possible values: `add`, `overwrite`. Defaults to `add`.
|
157
|
+
|
158
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified administrators will be part of the referenced team
|
159
|
+
<br> 2. `mode = overwrite`: the resource will replace all existing administrators with the administrators specified within the `administrators` block
|
156
160
|
"""
|
157
161
|
return pulumi.get(self, "mode")
|
158
162
|
|
@@ -196,6 +200,16 @@ class TeamAdministrators(pulumi.CustomResource):
|
|
196
200
|
team_id: Optional[pulumi.Input[str]] = None,
|
197
201
|
__props__=None):
|
198
202
|
"""
|
203
|
+
## *---
|
204
|
+
|
205
|
+
layout: "azuredevops"
|
206
|
+
page_title: "AzureDevops: TeamAdministrators"
|
207
|
+
description: |-
|
208
|
+
Manages administrators of a team within a project in a Azure DevOps organization.
|
209
|
+
---
|
210
|
+
|
211
|
+
# TeamAdministrators
|
212
|
+
|
199
213
|
Manages administrators of a team within a project in a Azure DevOps organization.
|
200
214
|
|
201
215
|
## Example Usage
|
@@ -236,15 +250,16 @@ class TeamAdministrators(pulumi.CustomResource):
|
|
236
250
|
|
237
251
|
:param str resource_name: The name of the resource.
|
238
252
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
239
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: List of subject descriptors to define
|
253
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: List of subject descriptors to define administrators of the team.
|
240
254
|
|
241
|
-
> NOTE
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
:param pulumi.Input[str] mode: The mode how the resource manages team administrators.
|
246
|
-
|
247
|
-
|
255
|
+
> **NOTE** It's possible to define team administrators both within the
|
256
|
+
`Team` resource via the `administrators` block and by using the
|
257
|
+
`TeamAdministrators` resource. However it's not possible to use
|
258
|
+
both methods to manage team administrators, since there'll be conflicts.
|
259
|
+
:param pulumi.Input[str] mode: The mode how the resource manages team administrators. Possible values: `add`, `overwrite`. Defaults to `add`.
|
260
|
+
|
261
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified administrators will be part of the referenced team
|
262
|
+
<br> 2. `mode = overwrite`: the resource will replace all existing administrators with the administrators specified within the `administrators` block
|
248
263
|
:param pulumi.Input[str] project_id: The Project ID.
|
249
264
|
:param pulumi.Input[str] team_id: The ID of the Team.
|
250
265
|
"""
|
@@ -255,6 +270,16 @@ class TeamAdministrators(pulumi.CustomResource):
|
|
255
270
|
args: TeamAdministratorsArgs,
|
256
271
|
opts: Optional[pulumi.ResourceOptions] = None):
|
257
272
|
"""
|
273
|
+
## *---
|
274
|
+
|
275
|
+
layout: "azuredevops"
|
276
|
+
page_title: "AzureDevops: TeamAdministrators"
|
277
|
+
description: |-
|
278
|
+
Manages administrators of a team within a project in a Azure DevOps organization.
|
279
|
+
---
|
280
|
+
|
281
|
+
# TeamAdministrators
|
282
|
+
|
258
283
|
Manages administrators of a team within a project in a Azure DevOps organization.
|
259
284
|
|
260
285
|
## Example Usage
|
@@ -352,15 +377,16 @@ class TeamAdministrators(pulumi.CustomResource):
|
|
352
377
|
:param str resource_name: The unique name of the resulting resource.
|
353
378
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
354
379
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
355
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: List of subject descriptors to define
|
380
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: List of subject descriptors to define administrators of the team.
|
381
|
+
|
382
|
+
> **NOTE** It's possible to define team administrators both within the
|
383
|
+
`Team` resource via the `administrators` block and by using the
|
384
|
+
`TeamAdministrators` resource. However it's not possible to use
|
385
|
+
both methods to manage team administrators, since there'll be conflicts.
|
386
|
+
:param pulumi.Input[str] mode: The mode how the resource manages team administrators. Possible values: `add`, `overwrite`. Defaults to `add`.
|
356
387
|
|
357
|
-
> NOTE
|
358
|
-
> `
|
359
|
-
> `TeamAdministrators` resource. However it's not possible to use
|
360
|
-
> both methods to manage team administrators, since there'll be conflicts.
|
361
|
-
:param pulumi.Input[str] mode: The mode how the resource manages team administrators.
|
362
|
-
- `mode == add`: the resource will ensure that all specified administrators will be part of the referenced team
|
363
|
-
- `mode == overwrite`: the resource will replace all existing administrators with the administrators specified within the `administrators` block
|
388
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified administrators will be part of the referenced team
|
389
|
+
<br> 2. `mode = overwrite`: the resource will replace all existing administrators with the administrators specified within the `administrators` block
|
364
390
|
:param pulumi.Input[str] project_id: The Project ID.
|
365
391
|
:param pulumi.Input[str] team_id: The ID of the Team.
|
366
392
|
"""
|
@@ -378,12 +404,12 @@ class TeamAdministrators(pulumi.CustomResource):
|
|
378
404
|
@pulumi.getter
|
379
405
|
def administrators(self) -> pulumi.Output[Sequence[str]]:
|
380
406
|
"""
|
381
|
-
List of subject descriptors to define
|
407
|
+
List of subject descriptors to define administrators of the team.
|
382
408
|
|
383
|
-
> NOTE
|
384
|
-
|
385
|
-
|
386
|
-
|
409
|
+
> **NOTE** It's possible to define team administrators both within the
|
410
|
+
`Team` resource via the `administrators` block and by using the
|
411
|
+
`TeamAdministrators` resource. However it's not possible to use
|
412
|
+
both methods to manage team administrators, since there'll be conflicts.
|
387
413
|
"""
|
388
414
|
return pulumi.get(self, "administrators")
|
389
415
|
|
@@ -391,9 +417,10 @@ class TeamAdministrators(pulumi.CustomResource):
|
|
391
417
|
@pulumi.getter
|
392
418
|
def mode(self) -> pulumi.Output[Optional[str]]:
|
393
419
|
"""
|
394
|
-
The mode how the resource manages team administrators.
|
395
|
-
|
396
|
-
|
420
|
+
The mode how the resource manages team administrators. Possible values: `add`, `overwrite`. Defaults to `add`.
|
421
|
+
|
422
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified administrators will be part of the referenced team
|
423
|
+
<br> 2. `mode = overwrite`: the resource will replace all existing administrators with the administrators specified within the `administrators` block
|
397
424
|
"""
|
398
425
|
return pulumi.get(self, "mode")
|
399
426
|
|
@@ -27,15 +27,16 @@ class TeamMembersArgs:
|
|
27
27
|
The set of arguments for constructing a TeamMembers resource.
|
28
28
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: List of subject descriptors to define members of the team.
|
29
29
|
|
30
|
-
> NOTE
|
31
|
-
|
32
|
-
|
33
|
-
|
30
|
+
> **NOTE:** It's possible to define team members both within the
|
31
|
+
`Team` resource via the `members` block and by using the
|
32
|
+
`TeamMembers` resource. However, it's not possible to use
|
33
|
+
both methods to manage team members, since there'll be conflicts.
|
34
34
|
:param pulumi.Input[str] project_id: The Project ID.
|
35
35
|
:param pulumi.Input[str] team_id: The ID of the Team.
|
36
|
-
:param pulumi.Input[str] mode: The mode how the resource manages team members.
|
37
|
-
|
38
|
-
|
36
|
+
:param pulumi.Input[str] mode: The mode how the resource manages team members. Possible values: `add`, `overwrite`. Defaults to `add`.
|
37
|
+
|
38
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced team
|
39
|
+
<br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
|
39
40
|
"""
|
40
41
|
pulumi.set(__self__, "members", members)
|
41
42
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -49,10 +50,10 @@ class TeamMembersArgs:
|
|
49
50
|
"""
|
50
51
|
List of subject descriptors to define members of the team.
|
51
52
|
|
52
|
-
> NOTE
|
53
|
-
|
54
|
-
|
55
|
-
|
53
|
+
> **NOTE:** It's possible to define team members both within the
|
54
|
+
`Team` resource via the `members` block and by using the
|
55
|
+
`TeamMembers` resource. However, it's not possible to use
|
56
|
+
both methods to manage team members, since there'll be conflicts.
|
56
57
|
"""
|
57
58
|
return pulumi.get(self, "members")
|
58
59
|
|
@@ -88,9 +89,10 @@ class TeamMembersArgs:
|
|
88
89
|
@pulumi.getter
|
89
90
|
def mode(self) -> Optional[pulumi.Input[str]]:
|
90
91
|
"""
|
91
|
-
The mode how the resource manages team members.
|
92
|
-
|
93
|
-
|
92
|
+
The mode how the resource manages team members. Possible values: `add`, `overwrite`. Defaults to `add`.
|
93
|
+
|
94
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced team
|
95
|
+
<br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
|
94
96
|
"""
|
95
97
|
return pulumi.get(self, "mode")
|
96
98
|
|
@@ -110,13 +112,14 @@ class _TeamMembersState:
|
|
110
112
|
Input properties used for looking up and filtering TeamMembers resources.
|
111
113
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: List of subject descriptors to define members of the team.
|
112
114
|
|
113
|
-
> NOTE
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
:param pulumi.Input[str] mode: The mode how the resource manages team members.
|
118
|
-
|
119
|
-
|
115
|
+
> **NOTE:** It's possible to define team members both within the
|
116
|
+
`Team` resource via the `members` block and by using the
|
117
|
+
`TeamMembers` resource. However, it's not possible to use
|
118
|
+
both methods to manage team members, since there'll be conflicts.
|
119
|
+
:param pulumi.Input[str] mode: The mode how the resource manages team members. Possible values: `add`, `overwrite`. Defaults to `add`.
|
120
|
+
|
121
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced team
|
122
|
+
<br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
|
120
123
|
:param pulumi.Input[str] project_id: The Project ID.
|
121
124
|
:param pulumi.Input[str] team_id: The ID of the Team.
|
122
125
|
"""
|
@@ -135,10 +138,10 @@ class _TeamMembersState:
|
|
135
138
|
"""
|
136
139
|
List of subject descriptors to define members of the team.
|
137
140
|
|
138
|
-
> NOTE
|
139
|
-
|
140
|
-
|
141
|
-
|
141
|
+
> **NOTE:** It's possible to define team members both within the
|
142
|
+
`Team` resource via the `members` block and by using the
|
143
|
+
`TeamMembers` resource. However, it's not possible to use
|
144
|
+
both methods to manage team members, since there'll be conflicts.
|
142
145
|
"""
|
143
146
|
return pulumi.get(self, "members")
|
144
147
|
|
@@ -150,9 +153,10 @@ class _TeamMembersState:
|
|
150
153
|
@pulumi.getter
|
151
154
|
def mode(self) -> Optional[pulumi.Input[str]]:
|
152
155
|
"""
|
153
|
-
The mode how the resource manages team members.
|
154
|
-
|
155
|
-
|
156
|
+
The mode how the resource manages team members. Possible values: `add`, `overwrite`. Defaults to `add`.
|
157
|
+
|
158
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced team
|
159
|
+
<br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
|
156
160
|
"""
|
157
161
|
return pulumi.get(self, "mode")
|
158
162
|
|
@@ -238,13 +242,14 @@ class TeamMembers(pulumi.CustomResource):
|
|
238
242
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
239
243
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: List of subject descriptors to define members of the team.
|
240
244
|
|
241
|
-
> NOTE
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
:param pulumi.Input[str] mode: The mode how the resource manages team members.
|
246
|
-
|
247
|
-
|
245
|
+
> **NOTE:** It's possible to define team members both within the
|
246
|
+
`Team` resource via the `members` block and by using the
|
247
|
+
`TeamMembers` resource. However, it's not possible to use
|
248
|
+
both methods to manage team members, since there'll be conflicts.
|
249
|
+
:param pulumi.Input[str] mode: The mode how the resource manages team members. Possible values: `add`, `overwrite`. Defaults to `add`.
|
250
|
+
|
251
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced team
|
252
|
+
<br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
|
248
253
|
:param pulumi.Input[str] project_id: The Project ID.
|
249
254
|
:param pulumi.Input[str] team_id: The ID of the Team.
|
250
255
|
"""
|
@@ -354,13 +359,14 @@ class TeamMembers(pulumi.CustomResource):
|
|
354
359
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
355
360
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: List of subject descriptors to define members of the team.
|
356
361
|
|
357
|
-
> NOTE
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
:param pulumi.Input[str] mode: The mode how the resource manages team members.
|
362
|
-
|
363
|
-
|
362
|
+
> **NOTE:** It's possible to define team members both within the
|
363
|
+
`Team` resource via the `members` block and by using the
|
364
|
+
`TeamMembers` resource. However, it's not possible to use
|
365
|
+
both methods to manage team members, since there'll be conflicts.
|
366
|
+
:param pulumi.Input[str] mode: The mode how the resource manages team members. Possible values: `add`, `overwrite`. Defaults to `add`.
|
367
|
+
|
368
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced team
|
369
|
+
<br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
|
364
370
|
:param pulumi.Input[str] project_id: The Project ID.
|
365
371
|
:param pulumi.Input[str] team_id: The ID of the Team.
|
366
372
|
"""
|
@@ -380,10 +386,10 @@ class TeamMembers(pulumi.CustomResource):
|
|
380
386
|
"""
|
381
387
|
List of subject descriptors to define members of the team.
|
382
388
|
|
383
|
-
> NOTE
|
384
|
-
|
385
|
-
|
386
|
-
|
389
|
+
> **NOTE:** It's possible to define team members both within the
|
390
|
+
`Team` resource via the `members` block and by using the
|
391
|
+
`TeamMembers` resource. However, it's not possible to use
|
392
|
+
both methods to manage team members, since there'll be conflicts.
|
387
393
|
"""
|
388
394
|
return pulumi.get(self, "members")
|
389
395
|
|
@@ -391,9 +397,10 @@ class TeamMembers(pulumi.CustomResource):
|
|
391
397
|
@pulumi.getter
|
392
398
|
def mode(self) -> pulumi.Output[Optional[str]]:
|
393
399
|
"""
|
394
|
-
The mode how the resource manages team members.
|
395
|
-
|
396
|
-
|
400
|
+
The mode how the resource manages team members. Possible values: `add`, `overwrite`. Defaults to `add`.
|
401
|
+
|
402
|
+
> **NOTE:** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced team
|
403
|
+
<br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
|
397
404
|
"""
|
398
405
|
return pulumi.get(self, "mode")
|
399
406
|
|
@@ -239,6 +239,7 @@ class VariableGroup(pulumi.CustomResource):
|
|
239
239
|
"""
|
240
240
|
## Example Usage
|
241
241
|
|
242
|
+
### Basic usage
|
242
243
|
```python
|
243
244
|
import pulumi
|
244
245
|
import pulumi_azuredevops as azuredevops
|
@@ -267,7 +268,7 @@ class VariableGroup(pulumi.CustomResource):
|
|
267
268
|
])
|
268
269
|
```
|
269
270
|
|
270
|
-
###
|
271
|
+
### Link to AzureRM Key Vault
|
271
272
|
|
272
273
|
```python
|
273
274
|
import pulumi
|
@@ -359,6 +360,7 @@ class VariableGroup(pulumi.CustomResource):
|
|
359
360
|
"""
|
360
361
|
## Example Usage
|
361
362
|
|
363
|
+
### Basic usage
|
362
364
|
```python
|
363
365
|
import pulumi
|
364
366
|
import pulumi_azuredevops as azuredevops
|
@@ -387,7 +389,7 @@ class VariableGroup(pulumi.CustomResource):
|
|
387
389
|
])
|
388
390
|
```
|
389
391
|
|
390
|
-
###
|
392
|
+
### Link to AzureRM Key Vault
|
391
393
|
|
392
394
|
```python
|
393
395
|
import pulumi
|