pulumi-azuredevops 3.6.0a1737523387__py3-none-any.whl → 3.7.0a1738589303__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.0a1737523387.dist-info → pulumi_azuredevops-3.7.0a1738589303.dist-info}/METADATA +1 -1
- pulumi_azuredevops-3.7.0a1738589303.dist-info/RECORD +148 -0
- pulumi_azuredevops-3.6.0a1737523387.dist-info/RECORD +0 -140
- {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0a1738589303.dist-info}/WHEEL +0 -0
- {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0a1738589303.dist-info}/top_level.txt +0 -0
@@ -309,7 +309,7 @@ class ServicehookStorageQueuePipelines(pulumi.CustomResource):
|
|
309
309
|
visi_timeout: Optional[pulumi.Input[int]] = None,
|
310
310
|
__props__=None):
|
311
311
|
"""
|
312
|
-
Manages a
|
312
|
+
Manages a Storage Queue Pipelines Service Hook .
|
313
313
|
|
314
314
|
## Example Usage
|
315
315
|
|
@@ -360,7 +360,7 @@ class ServicehookStorageQueuePipelines(pulumi.CustomResource):
|
|
360
360
|
|
361
361
|
## Import
|
362
362
|
|
363
|
-
|
363
|
+
Storage Queue Pipelines Service Hook can be imported using the `resource id`, e.g.
|
364
364
|
|
365
365
|
```sh
|
366
366
|
$ pulumi import azuredevops:index/servicehookStorageQueuePipelines:ServicehookStorageQueuePipelines example 00000000-0000-0000-0000-000000000000
|
@@ -386,7 +386,7 @@ class ServicehookStorageQueuePipelines(pulumi.CustomResource):
|
|
386
386
|
args: ServicehookStorageQueuePipelinesArgs,
|
387
387
|
opts: Optional[pulumi.ResourceOptions] = None):
|
388
388
|
"""
|
389
|
-
Manages a
|
389
|
+
Manages a Storage Queue Pipelines Service Hook .
|
390
390
|
|
391
391
|
## Example Usage
|
392
392
|
|
@@ -437,7 +437,7 @@ class ServicehookStorageQueuePipelines(pulumi.CustomResource):
|
|
437
437
|
|
438
438
|
## Import
|
439
439
|
|
440
|
-
|
440
|
+
Storage Queue Pipelines Service Hook can be imported using the `resource id`, e.g.
|
441
441
|
|
442
442
|
```sh
|
443
443
|
$ pulumi import azuredevops:index/servicehookStorageQueuePipelines:ServicehookStorageQueuePipelines example 00000000-0000-0000-0000-000000000000
|
@@ -26,16 +26,16 @@ class TaggingPermissionsArgs:
|
|
26
26
|
"""
|
27
27
|
The set of arguments for constructing a TaggingPermissions resource.
|
28
28
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
|
29
|
+
|
30
|
+
| Name | Permission Description |
|
31
|
+
|-----------|---------------------------|
|
32
|
+
| Enumerate | Enumerate tag definitions |
|
33
|
+
| Create | Create tag definition |
|
34
|
+
| Update | Update tag definition |
|
35
|
+
| Delete | Delete tag definition |
|
29
36
|
:param pulumi.Input[str] principal: The **group or user** principal to assign the permissions.
|
30
37
|
:param pulumi.Input[str] project_id: The ID of the project to assign the permissions. If omitted, organization wide permissions for tagging are managed.
|
31
38
|
:param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
|
32
|
-
|
33
|
-
| Name | Permission Description |
|
34
|
-
| ------------------ | -------------------------- |
|
35
|
-
| Enumerate | Enumerate tag definitions |
|
36
|
-
| Create | Create tag definition |
|
37
|
-
| Update | Update tag definition |
|
38
|
-
| Delete | Delete tag definition |
|
39
39
|
"""
|
40
40
|
pulumi.set(__self__, "permissions", permissions)
|
41
41
|
pulumi.set(__self__, "principal", principal)
|
@@ -49,6 +49,13 @@ class TaggingPermissionsArgs:
|
|
49
49
|
def permissions(self) -> pulumi.Input[Mapping[str, pulumi.Input[str]]]:
|
50
50
|
"""
|
51
51
|
the permissions to assign. The following permissions are available.
|
52
|
+
|
53
|
+
| Name | Permission Description |
|
54
|
+
|-----------|---------------------------|
|
55
|
+
| Enumerate | Enumerate tag definitions |
|
56
|
+
| Create | Create tag definition |
|
57
|
+
| Update | Update tag definition |
|
58
|
+
| Delete | Delete tag definition |
|
52
59
|
"""
|
53
60
|
return pulumi.get(self, "permissions")
|
54
61
|
|
@@ -85,13 +92,6 @@ class TaggingPermissionsArgs:
|
|
85
92
|
def replace(self) -> Optional[pulumi.Input[bool]]:
|
86
93
|
"""
|
87
94
|
Replace (`true`) or merge (`false`) the permissions. Default: `true`
|
88
|
-
|
89
|
-
| Name | Permission Description |
|
90
|
-
| ------------------ | -------------------------- |
|
91
|
-
| Enumerate | Enumerate tag definitions |
|
92
|
-
| Create | Create tag definition |
|
93
|
-
| Update | Update tag definition |
|
94
|
-
| Delete | Delete tag definition |
|
95
95
|
"""
|
96
96
|
return pulumi.get(self, "replace")
|
97
97
|
|
@@ -110,16 +110,16 @@ class _TaggingPermissionsState:
|
|
110
110
|
"""
|
111
111
|
Input properties used for looking up and filtering TaggingPermissions resources.
|
112
112
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
|
113
|
+
|
114
|
+
| Name | Permission Description |
|
115
|
+
|-----------|---------------------------|
|
116
|
+
| Enumerate | Enumerate tag definitions |
|
117
|
+
| Create | Create tag definition |
|
118
|
+
| Update | Update tag definition |
|
119
|
+
| Delete | Delete tag definition |
|
113
120
|
:param pulumi.Input[str] principal: The **group or user** principal to assign the permissions.
|
114
121
|
:param pulumi.Input[str] project_id: The ID of the project to assign the permissions. If omitted, organization wide permissions for tagging are managed.
|
115
122
|
:param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
|
116
|
-
|
117
|
-
| Name | Permission Description |
|
118
|
-
| ------------------ | -------------------------- |
|
119
|
-
| Enumerate | Enumerate tag definitions |
|
120
|
-
| Create | Create tag definition |
|
121
|
-
| Update | Update tag definition |
|
122
|
-
| Delete | Delete tag definition |
|
123
123
|
"""
|
124
124
|
if permissions is not None:
|
125
125
|
pulumi.set(__self__, "permissions", permissions)
|
@@ -135,6 +135,13 @@ class _TaggingPermissionsState:
|
|
135
135
|
def permissions(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
136
136
|
"""
|
137
137
|
the permissions to assign. The following permissions are available.
|
138
|
+
|
139
|
+
| Name | Permission Description |
|
140
|
+
|-----------|---------------------------|
|
141
|
+
| Enumerate | Enumerate tag definitions |
|
142
|
+
| Create | Create tag definition |
|
143
|
+
| Update | Update tag definition |
|
144
|
+
| Delete | Delete tag definition |
|
138
145
|
"""
|
139
146
|
return pulumi.get(self, "permissions")
|
140
147
|
|
@@ -171,13 +178,6 @@ class _TaggingPermissionsState:
|
|
171
178
|
def replace(self) -> Optional[pulumi.Input[bool]]:
|
172
179
|
"""
|
173
180
|
Replace (`true`) or merge (`false`) the permissions. Default: `true`
|
174
|
-
|
175
|
-
| Name | Permission Description |
|
176
|
-
| ------------------ | -------------------------- |
|
177
|
-
| Enumerate | Enumerate tag definitions |
|
178
|
-
| Create | Create tag definition |
|
179
|
-
| Update | Update tag definition |
|
180
|
-
| Delete | Delete tag definition |
|
181
181
|
"""
|
182
182
|
return pulumi.get(self, "replace")
|
183
183
|
|
@@ -244,16 +244,16 @@ class TaggingPermissions(pulumi.CustomResource):
|
|
244
244
|
:param str resource_name: The name of the resource.
|
245
245
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
246
246
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
|
247
|
+
|
248
|
+
| Name | Permission Description |
|
249
|
+
|-----------|---------------------------|
|
250
|
+
| Enumerate | Enumerate tag definitions |
|
251
|
+
| Create | Create tag definition |
|
252
|
+
| Update | Update tag definition |
|
253
|
+
| Delete | Delete tag definition |
|
247
254
|
:param pulumi.Input[str] principal: The **group or user** principal to assign the permissions.
|
248
255
|
:param pulumi.Input[str] project_id: The ID of the project to assign the permissions. If omitted, organization wide permissions for tagging are managed.
|
249
256
|
:param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
|
250
|
-
|
251
|
-
| Name | Permission Description |
|
252
|
-
| ------------------ | -------------------------- |
|
253
|
-
| Enumerate | Enumerate tag definitions |
|
254
|
-
| Create | Create tag definition |
|
255
|
-
| Update | Update tag definition |
|
256
|
-
| Delete | Delete tag definition |
|
257
257
|
"""
|
258
258
|
...
|
259
259
|
@overload
|
@@ -364,16 +364,16 @@ class TaggingPermissions(pulumi.CustomResource):
|
|
364
364
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
365
365
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
366
366
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
|
367
|
+
|
368
|
+
| Name | Permission Description |
|
369
|
+
|-----------|---------------------------|
|
370
|
+
| Enumerate | Enumerate tag definitions |
|
371
|
+
| Create | Create tag definition |
|
372
|
+
| Update | Update tag definition |
|
373
|
+
| Delete | Delete tag definition |
|
367
374
|
:param pulumi.Input[str] principal: The **group or user** principal to assign the permissions.
|
368
375
|
:param pulumi.Input[str] project_id: The ID of the project to assign the permissions. If omitted, organization wide permissions for tagging are managed.
|
369
376
|
:param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
|
370
|
-
|
371
|
-
| Name | Permission Description |
|
372
|
-
| ------------------ | -------------------------- |
|
373
|
-
| Enumerate | Enumerate tag definitions |
|
374
|
-
| Create | Create tag definition |
|
375
|
-
| Update | Update tag definition |
|
376
|
-
| Delete | Delete tag definition |
|
377
377
|
"""
|
378
378
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
379
379
|
|
@@ -390,6 +390,13 @@ class TaggingPermissions(pulumi.CustomResource):
|
|
390
390
|
def permissions(self) -> pulumi.Output[Mapping[str, str]]:
|
391
391
|
"""
|
392
392
|
the permissions to assign. The following permissions are available.
|
393
|
+
|
394
|
+
| Name | Permission Description |
|
395
|
+
|-----------|---------------------------|
|
396
|
+
| Enumerate | Enumerate tag definitions |
|
397
|
+
| Create | Create tag definition |
|
398
|
+
| Update | Update tag definition |
|
399
|
+
| Delete | Delete tag definition |
|
393
400
|
"""
|
394
401
|
return pulumi.get(self, "permissions")
|
395
402
|
|
@@ -414,13 +421,6 @@ class TaggingPermissions(pulumi.CustomResource):
|
|
414
421
|
def replace(self) -> pulumi.Output[Optional[bool]]:
|
415
422
|
"""
|
416
423
|
Replace (`true`) or merge (`false`) the permissions. Default: `true`
|
417
|
-
|
418
|
-
| Name | Permission Description |
|
419
|
-
| ------------------ | -------------------------- |
|
420
|
-
| Enumerate | Enumerate tag definitions |
|
421
|
-
| Create | Create tag definition |
|
422
|
-
| Update | Update tag definition |
|
423
|
-
| Delete | Delete tag definition |
|
424
424
|
"""
|
425
425
|
return pulumi.get(self, "replace")
|
426
426
|
|
pulumi_azuredevops/team.py
CHANGED
@@ -29,17 +29,17 @@ class TeamArgs:
|
|
29
29
|
:param pulumi.Input[str] project_id: The Project ID.
|
30
30
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: List of subject descriptors to define administrators of the team.
|
31
31
|
|
32
|
-
> NOTE
|
33
|
-
|
34
|
-
|
35
|
-
|
32
|
+
> **NOTE:** It's possible to define team administrators both within the
|
33
|
+
`Team` resource via the `administrators` block and by using the
|
34
|
+
`TeamAdministrators` resource. However it's not possible to use
|
35
|
+
both methods to manage team administrators, since there'll be conflicts.
|
36
36
|
:param pulumi.Input[str] description: The description of the Team.
|
37
37
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: List of subject descriptors to define members of the team.
|
38
38
|
|
39
|
-
> NOTE
|
40
|
-
|
41
|
-
|
42
|
-
|
39
|
+
> **NOTE:** It's possible to define team members both within the
|
40
|
+
`Team` resource via the `members` block and by using the
|
41
|
+
`TeamMembers` resource. However it's not possible to use
|
42
|
+
both methods to manage team members, since there'll be conflicts.
|
43
43
|
:param pulumi.Input[str] name: The name of the Team.
|
44
44
|
"""
|
45
45
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -70,10 +70,10 @@ class TeamArgs:
|
|
70
70
|
"""
|
71
71
|
List of subject descriptors to define administrators of the team.
|
72
72
|
|
73
|
-
> NOTE
|
74
|
-
|
75
|
-
|
76
|
-
|
73
|
+
> **NOTE:** It's possible to define team administrators both within the
|
74
|
+
`Team` resource via the `administrators` block and by using the
|
75
|
+
`TeamAdministrators` resource. However it's not possible to use
|
76
|
+
both methods to manage team administrators, since there'll be conflicts.
|
77
77
|
"""
|
78
78
|
return pulumi.get(self, "administrators")
|
79
79
|
|
@@ -99,10 +99,10 @@ class TeamArgs:
|
|
99
99
|
"""
|
100
100
|
List of subject descriptors to define members of the team.
|
101
101
|
|
102
|
-
> NOTE
|
103
|
-
|
104
|
-
|
105
|
-
|
102
|
+
> **NOTE:** It's possible to define team members both within the
|
103
|
+
`Team` resource via the `members` block and by using the
|
104
|
+
`TeamMembers` resource. However it's not possible to use
|
105
|
+
both methods to manage team members, since there'll be conflicts.
|
106
106
|
"""
|
107
107
|
return pulumi.get(self, "members")
|
108
108
|
|
@@ -136,18 +136,18 @@ class _TeamState:
|
|
136
136
|
Input properties used for looking up and filtering Team resources.
|
137
137
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: List of subject descriptors to define administrators of the team.
|
138
138
|
|
139
|
-
> NOTE
|
140
|
-
|
141
|
-
|
142
|
-
|
139
|
+
> **NOTE:** It's possible to define team administrators both within the
|
140
|
+
`Team` resource via the `administrators` block and by using the
|
141
|
+
`TeamAdministrators` resource. However it's not possible to use
|
142
|
+
both methods to manage team administrators, since there'll be conflicts.
|
143
143
|
:param pulumi.Input[str] description: The description of the Team.
|
144
144
|
:param pulumi.Input[str] descriptor: The descriptor of the Team.
|
145
145
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: List of subject descriptors to define members of the team.
|
146
146
|
|
147
|
-
> NOTE
|
148
|
-
|
149
|
-
|
150
|
-
|
147
|
+
> **NOTE:** It's possible to define team members both within the
|
148
|
+
`Team` resource via the `members` block and by using the
|
149
|
+
`TeamMembers` resource. However it's not possible to use
|
150
|
+
both methods to manage team members, since there'll be conflicts.
|
151
151
|
:param pulumi.Input[str] name: The name of the Team.
|
152
152
|
:param pulumi.Input[str] project_id: The Project ID.
|
153
153
|
"""
|
@@ -170,10 +170,10 @@ class _TeamState:
|
|
170
170
|
"""
|
171
171
|
List of subject descriptors to define administrators of the team.
|
172
172
|
|
173
|
-
> NOTE
|
174
|
-
|
175
|
-
|
176
|
-
|
173
|
+
> **NOTE:** It's possible to define team administrators both within the
|
174
|
+
`Team` resource via the `administrators` block and by using the
|
175
|
+
`TeamAdministrators` resource. However it's not possible to use
|
176
|
+
both methods to manage team administrators, since there'll be conflicts.
|
177
177
|
"""
|
178
178
|
return pulumi.get(self, "administrators")
|
179
179
|
|
@@ -211,10 +211,10 @@ class _TeamState:
|
|
211
211
|
"""
|
212
212
|
List of subject descriptors to define members of the team.
|
213
213
|
|
214
|
-
> NOTE
|
215
|
-
|
216
|
-
|
217
|
-
|
214
|
+
> **NOTE:** It's possible to define team members both within the
|
215
|
+
`Team` resource via the `members` block and by using the
|
216
|
+
`TeamMembers` resource. However it's not possible to use
|
217
|
+
both methods to manage team members, since there'll be conflicts.
|
218
218
|
"""
|
219
219
|
return pulumi.get(self, "members")
|
220
220
|
|
@@ -259,6 +259,16 @@ class Team(pulumi.CustomResource):
|
|
259
259
|
project_id: Optional[pulumi.Input[str]] = None,
|
260
260
|
__props__=None):
|
261
261
|
"""
|
262
|
+
## *---
|
263
|
+
|
264
|
+
layout: "azuredevops"
|
265
|
+
page_title: "AzureDevops: Team"
|
266
|
+
description: |-
|
267
|
+
Manages a team within a project in a Azure DevOps organization.
|
268
|
+
---
|
269
|
+
|
270
|
+
# Team
|
271
|
+
|
262
272
|
Manages a team within a project in a Azure DevOps organization.
|
263
273
|
|
264
274
|
## Example Usage
|
@@ -304,17 +314,17 @@ class Team(pulumi.CustomResource):
|
|
304
314
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
305
315
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: List of subject descriptors to define administrators of the team.
|
306
316
|
|
307
|
-
> NOTE
|
308
|
-
|
309
|
-
|
310
|
-
|
317
|
+
> **NOTE:** It's possible to define team administrators both within the
|
318
|
+
`Team` resource via the `administrators` block and by using the
|
319
|
+
`TeamAdministrators` resource. However it's not possible to use
|
320
|
+
both methods to manage team administrators, since there'll be conflicts.
|
311
321
|
:param pulumi.Input[str] description: The description of the Team.
|
312
322
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: List of subject descriptors to define members of the team.
|
313
323
|
|
314
|
-
> NOTE
|
315
|
-
|
316
|
-
|
317
|
-
|
324
|
+
> **NOTE:** It's possible to define team members both within the
|
325
|
+
`Team` resource via the `members` block and by using the
|
326
|
+
`TeamMembers` resource. However it's not possible to use
|
327
|
+
both methods to manage team members, since there'll be conflicts.
|
318
328
|
:param pulumi.Input[str] name: The name of the Team.
|
319
329
|
:param pulumi.Input[str] project_id: The Project ID.
|
320
330
|
"""
|
@@ -325,6 +335,16 @@ class Team(pulumi.CustomResource):
|
|
325
335
|
args: TeamArgs,
|
326
336
|
opts: Optional[pulumi.ResourceOptions] = None):
|
327
337
|
"""
|
338
|
+
## *---
|
339
|
+
|
340
|
+
layout: "azuredevops"
|
341
|
+
page_title: "AzureDevops: Team"
|
342
|
+
description: |-
|
343
|
+
Manages a team within a project in a Azure DevOps organization.
|
344
|
+
---
|
345
|
+
|
346
|
+
# Team
|
347
|
+
|
328
348
|
Manages a team within a project in a Azure DevOps organization.
|
329
349
|
|
330
350
|
## Example Usage
|
@@ -428,18 +448,18 @@ class Team(pulumi.CustomResource):
|
|
428
448
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
429
449
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] administrators: List of subject descriptors to define administrators of the team.
|
430
450
|
|
431
|
-
> NOTE
|
432
|
-
|
433
|
-
|
434
|
-
|
451
|
+
> **NOTE:** It's possible to define team administrators both within the
|
452
|
+
`Team` resource via the `administrators` block and by using the
|
453
|
+
`TeamAdministrators` resource. However it's not possible to use
|
454
|
+
both methods to manage team administrators, since there'll be conflicts.
|
435
455
|
:param pulumi.Input[str] description: The description of the Team.
|
436
456
|
:param pulumi.Input[str] descriptor: The descriptor of the Team.
|
437
457
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: List of subject descriptors to define members of the team.
|
438
458
|
|
439
|
-
> NOTE
|
440
|
-
|
441
|
-
|
442
|
-
|
459
|
+
> **NOTE:** It's possible to define team members both within the
|
460
|
+
`Team` resource via the `members` block and by using the
|
461
|
+
`TeamMembers` resource. However it's not possible to use
|
462
|
+
both methods to manage team members, since there'll be conflicts.
|
443
463
|
:param pulumi.Input[str] name: The name of the Team.
|
444
464
|
:param pulumi.Input[str] project_id: The Project ID.
|
445
465
|
"""
|
@@ -461,10 +481,10 @@ class Team(pulumi.CustomResource):
|
|
461
481
|
"""
|
462
482
|
List of subject descriptors to define administrators of the team.
|
463
483
|
|
464
|
-
> NOTE
|
465
|
-
|
466
|
-
|
467
|
-
|
484
|
+
> **NOTE:** It's possible to define team administrators both within the
|
485
|
+
`Team` resource via the `administrators` block and by using the
|
486
|
+
`TeamAdministrators` resource. However it's not possible to use
|
487
|
+
both methods to manage team administrators, since there'll be conflicts.
|
468
488
|
"""
|
469
489
|
return pulumi.get(self, "administrators")
|
470
490
|
|
@@ -490,10 +510,10 @@ class Team(pulumi.CustomResource):
|
|
490
510
|
"""
|
491
511
|
List of subject descriptors to define members of the team.
|
492
512
|
|
493
|
-
> NOTE
|
494
|
-
|
495
|
-
|
496
|
-
|
513
|
+
> **NOTE:** It's possible to define team members both within the
|
514
|
+
`Team` resource via the `members` block and by using the
|
515
|
+
`TeamMembers` resource. However it's not possible to use
|
516
|
+
both methods to manage team members, since there'll be conflicts.
|
497
517
|
"""
|
498
518
|
return pulumi.get(self, "members")
|
499
519
|
|