pulumi-azuredevops 3.6.0a1737523387__py3-none-any.whl → 3.7.0__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.
Files changed (126) hide show
  1. pulumi_azuredevops/__init__.py +76 -0
  2. pulumi_azuredevops/_inputs.py +120 -117
  3. pulumi_azuredevops/_utilities.py +8 -4
  4. pulumi_azuredevops/area_permissions.py +49 -49
  5. pulumi_azuredevops/branch_policy_auto_reviewers.py +7 -7
  6. pulumi_azuredevops/branch_policy_build_validation.py +7 -7
  7. pulumi_azuredevops/branch_policy_comment_resolution.py +7 -7
  8. pulumi_azuredevops/branch_policy_merge_types.py +7 -7
  9. pulumi_azuredevops/branch_policy_status_check.py +7 -7
  10. pulumi_azuredevops/branch_policy_work_item_linking.py +7 -7
  11. pulumi_azuredevops/build_definition.py +7 -7
  12. pulumi_azuredevops/check_branch_control.py +7 -7
  13. pulumi_azuredevops/check_business_hours.py +7 -7
  14. pulumi_azuredevops/check_exclusive_lock.py +7 -7
  15. pulumi_azuredevops/check_rest_api.py +986 -0
  16. pulumi_azuredevops/dashboard.py +475 -0
  17. pulumi_azuredevops/feed.py +8 -8
  18. pulumi_azuredevops/feed_permission.py +9 -9
  19. pulumi_azuredevops/feed_retention_policy.py +400 -0
  20. pulumi_azuredevops/get_agent_queue.py +2 -2
  21. pulumi_azuredevops/get_area.py +1 -1
  22. pulumi_azuredevops/get_client_config.py +3 -0
  23. pulumi_azuredevops/get_descriptor.py +133 -0
  24. pulumi_azuredevops/get_feed.py +4 -4
  25. pulumi_azuredevops/get_git_repository.py +8 -8
  26. pulumi_azuredevops/get_group.py +4 -4
  27. pulumi_azuredevops/get_groups.py +3 -3
  28. pulumi_azuredevops/get_identity_group.py +23 -6
  29. pulumi_azuredevops/get_identity_groups.py +3 -3
  30. pulumi_azuredevops/get_identity_users.py +23 -9
  31. pulumi_azuredevops/get_pool.py +14 -2
  32. pulumi_azuredevops/get_pools.py +3 -3
  33. pulumi_azuredevops/get_project.py +32 -0
  34. pulumi_azuredevops/get_projects.py +4 -4
  35. pulumi_azuredevops/get_repositories.py +7 -3
  36. pulumi_azuredevops/get_securityrole_definitions.py +4 -4
  37. pulumi_azuredevops/get_service_endpoint_azure_rm.py +5 -5
  38. pulumi_azuredevops/get_service_endpoint_github.py +6 -6
  39. pulumi_azuredevops/get_service_principal.py +153 -0
  40. pulumi_azuredevops/get_serviceendpoint_azurecr.py +1 -1
  41. pulumi_azuredevops/get_serviceendpoint_bitbucket.py +6 -6
  42. pulumi_azuredevops/get_serviceendpoint_npm.py +3 -3
  43. pulumi_azuredevops/get_serviceendpoint_sonarcloud.py +2 -2
  44. pulumi_azuredevops/get_storage_key.py +133 -0
  45. pulumi_azuredevops/get_team.py +4 -3
  46. pulumi_azuredevops/get_teams.py +2 -3
  47. pulumi_azuredevops/get_user.py +193 -0
  48. pulumi_azuredevops/get_users.py +5 -9
  49. pulumi_azuredevops/git.py +7 -7
  50. pulumi_azuredevops/git_permissions.py +14 -21
  51. pulumi_azuredevops/git_repository_file.py +7 -14
  52. pulumi_azuredevops/group.py +21 -7
  53. pulumi_azuredevops/group_entitlement.py +16 -20
  54. pulumi_azuredevops/group_membership.py +35 -50
  55. pulumi_azuredevops/iterative_permissions.py +34 -34
  56. pulumi_azuredevops/library_permissions.py +75 -75
  57. pulumi_azuredevops/outputs.py +141 -103
  58. pulumi_azuredevops/pipeline_authorization.py +7 -7
  59. pulumi_azuredevops/pool.py +4 -4
  60. pulumi_azuredevops/project.py +114 -63
  61. pulumi_azuredevops/project_features.py +87 -45
  62. pulumi_azuredevops/project_permissions.py +7 -7
  63. pulumi_azuredevops/project_pipeline_settings.py +28 -35
  64. pulumi_azuredevops/project_tags.py +263 -0
  65. pulumi_azuredevops/pulumi-plugin.json +1 -1
  66. pulumi_azuredevops/queue.py +7 -14
  67. pulumi_azuredevops/repository_policy_author_email_pattern.py +21 -14
  68. pulumi_azuredevops/repository_policy_max_file_size.py +7 -7
  69. pulumi_azuredevops/resource_authorization.py +35 -35
  70. pulumi_azuredevops/service_endpoint_artifactory.py +25 -33
  71. pulumi_azuredevops/service_endpoint_aws.py +3 -17
  72. pulumi_azuredevops/service_endpoint_azure_dev_ops.py +1 -15
  73. pulumi_azuredevops/service_endpoint_azure_ecr.py +14 -30
  74. pulumi_azuredevops/service_endpoint_azure_rm.py +26 -40
  75. pulumi_azuredevops/service_endpoint_bit_bucket.py +3 -17
  76. pulumi_azuredevops/service_endpoint_docker_registry.py +3 -17
  77. pulumi_azuredevops/service_endpoint_generic.py +3 -17
  78. pulumi_azuredevops/service_endpoint_generic_git.py +5 -23
  79. pulumi_azuredevops/service_endpoint_git_hub.py +16 -17
  80. pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +16 -17
  81. pulumi_azuredevops/service_endpoint_git_lab.py +1 -15
  82. pulumi_azuredevops/service_endpoint_kubernetes.py +24 -38
  83. pulumi_azuredevops/service_endpoint_npm.py +5 -19
  84. pulumi_azuredevops/service_endpoint_pipeline.py +5 -19
  85. pulumi_azuredevops/service_endpoint_service_fabric.py +49 -24
  86. pulumi_azuredevops/service_endpoint_sonar_cloud.py +12 -26
  87. pulumi_azuredevops/service_endpoint_sonar_qube.py +12 -26
  88. pulumi_azuredevops/service_endpoint_ssh.py +3 -21
  89. pulumi_azuredevops/service_principal_entitlement.py +386 -0
  90. pulumi_azuredevops/serviceendpoint_argocd.py +3 -17
  91. pulumi_azuredevops/serviceendpoint_azure_service_bus.py +3 -17
  92. pulumi_azuredevops/serviceendpoint_checkmarx_one.py +613 -0
  93. pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +561 -0
  94. pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +660 -0
  95. pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +3 -17
  96. pulumi_azuredevops/serviceendpoint_externaltfs.py +64 -26
  97. pulumi_azuredevops/serviceendpoint_gcp_terraform.py +3 -17
  98. pulumi_azuredevops/serviceendpoint_incomingwebhook.py +3 -17
  99. pulumi_azuredevops/serviceendpoint_jenkins.py +3 -17
  100. pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +19 -33
  101. pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +19 -33
  102. pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +19 -33
  103. pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +19 -33
  104. pulumi_azuredevops/serviceendpoint_maven.py +3 -17
  105. pulumi_azuredevops/serviceendpoint_nexus.py +3 -17
  106. pulumi_azuredevops/serviceendpoint_nuget.py +3 -17
  107. pulumi_azuredevops/serviceendpoint_octopusdeploy.py +3 -17
  108. pulumi_azuredevops/serviceendpoint_permissions.py +40 -40
  109. pulumi_azuredevops/serviceendpoint_snyk.py +3 -17
  110. pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +5 -21
  111. pulumi_azuredevops/servicehook_permissions.py +51 -51
  112. pulumi_azuredevops/servicehook_storage_queue_pipelines.py +4 -4
  113. pulumi_azuredevops/tagging_permissions.py +49 -49
  114. pulumi_azuredevops/team.py +76 -56
  115. pulumi_azuredevops/team_administrators.py +83 -56
  116. pulumi_azuredevops/team_members.py +56 -49
  117. pulumi_azuredevops/variable_group.py +4 -2
  118. pulumi_azuredevops/variable_group_permissions.py +75 -75
  119. pulumi_azuredevops/wiki.py +15 -2
  120. pulumi_azuredevops/wiki_page.py +2 -2
  121. pulumi_azuredevops/work_item_query_permissions.py +7 -7
  122. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0.dist-info}/METADATA +1 -1
  123. pulumi_azuredevops-3.7.0.dist-info/RECORD +152 -0
  124. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0.dist-info}/WHEEL +1 -1
  125. pulumi_azuredevops-3.6.0a1737523387.dist-info/RECORD +0 -140
  126. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0.dist-info}/top_level.txt +0 -0
pulumi_azuredevops/git.py CHANGED
@@ -29,7 +29,7 @@ class GitArgs:
29
29
  parent_repository_id: Optional[pulumi.Input[str]] = None):
30
30
  """
31
31
  The set of arguments for constructing a Git resource.
32
- :param pulumi.Input['GitInitializationArgs'] initialization: An `initialization` block as documented below.
32
+ :param pulumi.Input['GitInitializationArgs'] initialization: A `initialization` block as documented below.
33
33
  :param pulumi.Input[str] project_id: The project ID or project name.
34
34
  :param pulumi.Input[str] default_branch: The ref of the default branch. Will be used as the branch name for initialized repositories.
35
35
  :param pulumi.Input[bool] disabled: The ability to disable or enable the repository. Defaults to `false`.
@@ -51,7 +51,7 @@ class GitArgs:
51
51
  @pulumi.getter
52
52
  def initialization(self) -> pulumi.Input['GitInitializationArgs']:
53
53
  """
54
- An `initialization` block as documented below.
54
+ A `initialization` block as documented below.
55
55
  """
56
56
  return pulumi.get(self, "initialization")
57
57
 
@@ -139,7 +139,7 @@ class _GitState:
139
139
  Input properties used for looking up and filtering Git resources.
140
140
  :param pulumi.Input[str] default_branch: The ref of the default branch. Will be used as the branch name for initialized repositories.
141
141
  :param pulumi.Input[bool] disabled: The ability to disable or enable the repository. Defaults to `false`.
142
- :param pulumi.Input['GitInitializationArgs'] initialization: An `initialization` block as documented below.
142
+ :param pulumi.Input['GitInitializationArgs'] initialization: A `initialization` block as documented below.
143
143
  :param pulumi.Input[bool] is_fork: True if the repository was created as a fork.
144
144
  :param pulumi.Input[str] name: The name of the git repository.
145
145
  :param pulumi.Input[str] parent_repository_id: The ID of a Git project from which a fork is to be created.
@@ -203,7 +203,7 @@ class _GitState:
203
203
  @pulumi.getter
204
204
  def initialization(self) -> Optional[pulumi.Input['GitInitializationArgs']]:
205
205
  """
206
- An `initialization` block as documented below.
206
+ A `initialization` block as documented below.
207
207
  """
208
208
  return pulumi.get(self, "initialization")
209
209
 
@@ -351,7 +351,7 @@ class Git(pulumi.CustomResource):
351
351
  :param pulumi.ResourceOptions opts: Options for the resource.
352
352
  :param pulumi.Input[str] default_branch: The ref of the default branch. Will be used as the branch name for initialized repositories.
353
353
  :param pulumi.Input[bool] disabled: The ability to disable or enable the repository. Defaults to `false`.
354
- :param pulumi.Input[Union['GitInitializationArgs', 'GitInitializationArgsDict']] initialization: An `initialization` block as documented below.
354
+ :param pulumi.Input[Union['GitInitializationArgs', 'GitInitializationArgsDict']] initialization: A `initialization` block as documented below.
355
355
  :param pulumi.Input[str] name: The name of the git repository.
356
356
  :param pulumi.Input[str] parent_repository_id: The ID of a Git project from which a fork is to be created.
357
357
  :param pulumi.Input[str] project_id: The project ID or project name.
@@ -454,7 +454,7 @@ class Git(pulumi.CustomResource):
454
454
  :param pulumi.ResourceOptions opts: Options for the resource.
455
455
  :param pulumi.Input[str] default_branch: The ref of the default branch. Will be used as the branch name for initialized repositories.
456
456
  :param pulumi.Input[bool] disabled: The ability to disable or enable the repository. Defaults to `false`.
457
- :param pulumi.Input[Union['GitInitializationArgs', 'GitInitializationArgsDict']] initialization: An `initialization` block as documented below.
457
+ :param pulumi.Input[Union['GitInitializationArgs', 'GitInitializationArgsDict']] initialization: A `initialization` block as documented below.
458
458
  :param pulumi.Input[bool] is_fork: True if the repository was created as a fork.
459
459
  :param pulumi.Input[str] name: The name of the git repository.
460
460
  :param pulumi.Input[str] parent_repository_id: The ID of a Git project from which a fork is to be created.
@@ -503,7 +503,7 @@ class Git(pulumi.CustomResource):
503
503
  @pulumi.getter
504
504
  def initialization(self) -> pulumi.Output['outputs.GitInitialization']:
505
505
  """
506
- An `initialization` block as documented below.
506
+ A `initialization` block as documented below.
507
507
  """
508
508
  return pulumi.get(self, "initialization")
509
509
 
@@ -29,7 +29,6 @@ class GitPermissionsArgs:
29
29
  The set of arguments for constructing a GitPermissions resource.
30
30
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available
31
31
 
32
-
33
32
  | Permissions | Description |
34
33
  |-------------------------|--------------------------------------------------------|
35
34
  | Administer | Administer |
@@ -50,9 +49,9 @@ class GitPermissionsArgs:
50
49
  | PullRequestBypassPolicy | Bypass policies when completing pull requests |
51
50
  :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
52
51
  :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
53
- :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
52
+ :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
54
53
 
55
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
54
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
56
55
  :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
57
56
  :param pulumi.Input[str] repository_id: The ID of the GIT repository to assign the permissions
58
57
  """
@@ -72,7 +71,6 @@ class GitPermissionsArgs:
72
71
  """
73
72
  the permissions to assign. The following permissions are available
74
73
 
75
-
76
74
  | Permissions | Description |
77
75
  |-------------------------|--------------------------------------------------------|
78
76
  | Administer | Administer |
@@ -126,9 +124,9 @@ class GitPermissionsArgs:
126
124
  @pulumi.getter(name="branchName")
127
125
  def branch_name(self) -> Optional[pulumi.Input[str]]:
128
126
  """
129
- The name of the branch to assign the permissions.
127
+ The name of the branch to assign the permissions.
130
128
 
131
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
129
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
132
130
  """
133
131
  return pulumi.get(self, "branch_name")
134
132
 
@@ -172,12 +170,11 @@ class _GitPermissionsState:
172
170
  repository_id: Optional[pulumi.Input[str]] = None):
173
171
  """
174
172
  Input properties used for looking up and filtering GitPermissions resources.
175
- :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
173
+ :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
176
174
 
177
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
175
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
178
176
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available
179
177
 
180
-
181
178
  | Permissions | Description |
182
179
  |-------------------------|--------------------------------------------------------|
183
180
  | Administer | Administer |
@@ -218,9 +215,9 @@ class _GitPermissionsState:
218
215
  @pulumi.getter(name="branchName")
219
216
  def branch_name(self) -> Optional[pulumi.Input[str]]:
220
217
  """
221
- The name of the branch to assign the permissions.
218
+ The name of the branch to assign the permissions.
222
219
 
223
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
220
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
224
221
  """
225
222
  return pulumi.get(self, "branch_name")
226
223
 
@@ -234,7 +231,6 @@ class _GitPermissionsState:
234
231
  """
235
232
  the permissions to assign. The following permissions are available
236
233
 
237
-
238
234
  | Permissions | Description |
239
235
  |-------------------------|--------------------------------------------------------|
240
236
  | Administer | Administer |
@@ -496,12 +492,11 @@ class GitPermissions(pulumi.CustomResource):
496
492
 
497
493
  :param str resource_name: The name of the resource.
498
494
  :param pulumi.ResourceOptions opts: Options for the resource.
499
- :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
495
+ :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
500
496
 
501
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
497
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
502
498
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available
503
499
 
504
-
505
500
  | Permissions | Description |
506
501
  |-------------------------|--------------------------------------------------------|
507
502
  | Administer | Administer |
@@ -769,12 +764,11 @@ class GitPermissions(pulumi.CustomResource):
769
764
  :param str resource_name: The unique name of the resulting resource.
770
765
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
771
766
  :param pulumi.ResourceOptions opts: Options for the resource.
772
- :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
767
+ :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
773
768
 
774
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
769
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
775
770
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available
776
771
 
777
-
778
772
  | Permissions | Description |
779
773
  |-------------------------|--------------------------------------------------------|
780
774
  | Administer | Administer |
@@ -814,9 +808,9 @@ class GitPermissions(pulumi.CustomResource):
814
808
  @pulumi.getter(name="branchName")
815
809
  def branch_name(self) -> pulumi.Output[Optional[str]]:
816
810
  """
817
- The name of the branch to assign the permissions.
811
+ The name of the branch to assign the permissions.
818
812
 
819
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
813
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
820
814
  """
821
815
  return pulumi.get(self, "branch_name")
822
816
 
@@ -826,7 +820,6 @@ class GitPermissions(pulumi.CustomResource):
826
820
  """
827
821
  the permissions to assign. The following permissions are available
828
822
 
829
-
830
823
  | Permissions | Description |
831
824
  |-------------------------|--------------------------------------------------------|
832
825
  | Administer | Administer |
@@ -30,8 +30,7 @@ class GitRepositoryFileArgs:
30
30
  :param pulumi.Input[str] content: The file content.
31
31
  :param pulumi.Input[str] file: The path of the file to manage.
32
32
  :param pulumi.Input[str] repository_id: The ID of the Git repository.
33
- :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
34
- does not already exist.
33
+ :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
35
34
  :param pulumi.Input[str] commit_message: Commit message when adding or updating the managed file.
36
35
  :param pulumi.Input[bool] overwrite_on_create: Enable overwriting existing files (defaults to `false`).
37
36
  """
@@ -85,8 +84,7 @@ class GitRepositoryFileArgs:
85
84
  @pulumi.getter
86
85
  def branch(self) -> Optional[pulumi.Input[str]]:
87
86
  """
88
- Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
89
- does not already exist.
87
+ Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
90
88
  """
91
89
  return pulumi.get(self, "branch")
92
90
 
@@ -130,8 +128,7 @@ class _GitRepositoryFileState:
130
128
  repository_id: Optional[pulumi.Input[str]] = None):
131
129
  """
132
130
  Input properties used for looking up and filtering GitRepositoryFile resources.
133
- :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
134
- does not already exist.
131
+ :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
135
132
  :param pulumi.Input[str] commit_message: Commit message when adding or updating the managed file.
136
133
  :param pulumi.Input[str] content: The file content.
137
134
  :param pulumi.Input[str] file: The path of the file to manage.
@@ -155,8 +152,7 @@ class _GitRepositoryFileState:
155
152
  @pulumi.getter
156
153
  def branch(self) -> Optional[pulumi.Input[str]]:
157
154
  """
158
- Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
159
- does not already exist.
155
+ Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
160
156
  """
161
157
  return pulumi.get(self, "branch")
162
158
 
@@ -286,8 +282,7 @@ class GitRepositoryFile(pulumi.CustomResource):
286
282
 
287
283
  :param str resource_name: The name of the resource.
288
284
  :param pulumi.ResourceOptions opts: Options for the resource.
289
- :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
290
- does not already exist.
285
+ :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
291
286
  :param pulumi.Input[str] commit_message: Commit message when adding or updating the managed file.
292
287
  :param pulumi.Input[str] content: The file content.
293
288
  :param pulumi.Input[str] file: The path of the file to manage.
@@ -412,8 +407,7 @@ class GitRepositoryFile(pulumi.CustomResource):
412
407
  :param str resource_name: The unique name of the resulting resource.
413
408
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
414
409
  :param pulumi.ResourceOptions opts: Options for the resource.
415
- :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
416
- does not already exist.
410
+ :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
417
411
  :param pulumi.Input[str] commit_message: Commit message when adding or updating the managed file.
418
412
  :param pulumi.Input[str] content: The file content.
419
413
  :param pulumi.Input[str] file: The path of the file to manage.
@@ -436,8 +430,7 @@ class GitRepositoryFile(pulumi.CustomResource):
436
430
  @pulumi.getter
437
431
  def branch(self) -> pulumi.Output[Optional[str]]:
438
432
  """
439
- Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
440
- does not already exist.
433
+ Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
441
434
  """
442
435
  return pulumi.get(self, "branch")
443
436
 
@@ -30,7 +30,9 @@ class GroupArgs:
30
30
  :param pulumi.Input[str] description: The Description of the Project.
31
31
  :param pulumi.Input[str] display_name: The name of a new Azure DevOps group that is not backed by an external provider. The `origin_id` and `mail` arguments cannot be used simultaneously with `display_name`.
32
32
  :param pulumi.Input[str] mail: The mail address as a reference to an existing group from an external AD or AAD backed provider. The `scope`, `origin_id` and `display_name` arguments cannot be used simultaneously with `mail`.
33
- :param pulumi.Input[Sequence[pulumi.Input[str]]] members: > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
33
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] members: The member of the Group.
34
+
35
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
34
36
  :param pulumi.Input[str] origin_id: The OriginID as a reference to a group from an external AD or AAD backed provider. The `scope`, `mail` and `display_name` arguments cannot be used simultaneously with `origin_id`.
35
37
  :param pulumi.Input[str] scope: The scope of the group. A descriptor referencing the scope (collection, project) in which the group should be created. If omitted, will be created in the scope of the enclosing account or organization.x
36
38
  """
@@ -87,7 +89,9 @@ class GroupArgs:
87
89
  @pulumi.getter
88
90
  def members(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
89
91
  """
90
- > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
92
+ The member of the Group.
93
+
94
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
91
95
  """
92
96
  return pulumi.get(self, "members")
93
97
 
@@ -144,7 +148,9 @@ class _GroupState:
144
148
  :param pulumi.Input[str] domain: This represents the name of the container of origin for a graph member.
145
149
  :param pulumi.Input[str] group_id: The ID of the Group.
146
150
  :param pulumi.Input[str] mail: The mail address as a reference to an existing group from an external AD or AAD backed provider. The `scope`, `origin_id` and `display_name` arguments cannot be used simultaneously with `mail`.
147
- :param pulumi.Input[Sequence[pulumi.Input[str]]] members: > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
151
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] members: The member of the Group.
152
+
153
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
148
154
  :param pulumi.Input[str] origin: The type of source provider for the origin identifier (ex:AD, AAD, MSA)
149
155
  :param pulumi.Input[str] origin_id: The OriginID as a reference to a group from an external AD or AAD backed provider. The `scope`, `mail` and `display_name` arguments cannot be used simultaneously with `origin_id`.
150
156
  :param pulumi.Input[str] principal_name: This is the PrincipalName of this graph member from the source provider.
@@ -255,7 +261,9 @@ class _GroupState:
255
261
  @pulumi.getter
256
262
  def members(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
257
263
  """
258
- > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
264
+ The member of the Group.
265
+
266
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
259
267
  """
260
268
  return pulumi.get(self, "members")
261
269
 
@@ -393,7 +401,9 @@ class Group(pulumi.CustomResource):
393
401
  :param pulumi.Input[str] description: The Description of the Project.
394
402
  :param pulumi.Input[str] display_name: The name of a new Azure DevOps group that is not backed by an external provider. The `origin_id` and `mail` arguments cannot be used simultaneously with `display_name`.
395
403
  :param pulumi.Input[str] mail: The mail address as a reference to an existing group from an external AD or AAD backed provider. The `scope`, `origin_id` and `display_name` arguments cannot be used simultaneously with `mail`.
396
- :param pulumi.Input[Sequence[pulumi.Input[str]]] members: > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
404
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] members: The member of the Group.
405
+
406
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
397
407
  :param pulumi.Input[str] origin_id: The OriginID as a reference to a group from an external AD or AAD backed provider. The `scope`, `mail` and `display_name` arguments cannot be used simultaneously with `origin_id`.
398
408
  :param pulumi.Input[str] scope: The scope of the group. A descriptor referencing the scope (collection, project) in which the group should be created. If omitted, will be created in the scope of the enclosing account or organization.x
399
409
  """
@@ -522,7 +532,9 @@ class Group(pulumi.CustomResource):
522
532
  :param pulumi.Input[str] domain: This represents the name of the container of origin for a graph member.
523
533
  :param pulumi.Input[str] group_id: The ID of the Group.
524
534
  :param pulumi.Input[str] mail: The mail address as a reference to an existing group from an external AD or AAD backed provider. The `scope`, `origin_id` and `display_name` arguments cannot be used simultaneously with `mail`.
525
- :param pulumi.Input[Sequence[pulumi.Input[str]]] members: > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
535
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] members: The member of the Group.
536
+
537
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
526
538
  :param pulumi.Input[str] origin: The type of source provider for the origin identifier (ex:AD, AAD, MSA)
527
539
  :param pulumi.Input[str] origin_id: The OriginID as a reference to a group from an external AD or AAD backed provider. The `scope`, `mail` and `display_name` arguments cannot be used simultaneously with `origin_id`.
528
540
  :param pulumi.Input[str] principal_name: This is the PrincipalName of this graph member from the source provider.
@@ -601,7 +613,9 @@ class Group(pulumi.CustomResource):
601
613
  @pulumi.getter
602
614
  def members(self) -> pulumi.Output[Sequence[str]]:
603
615
  """
604
- > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
616
+ The member of the Group.
617
+
618
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
605
619
  """
606
620
  return pulumi.get(self, "members")
607
621
 
@@ -26,9 +26,9 @@ class GroupEntitlementArgs:
26
26
  origin_id: Optional[pulumi.Input[str]] = None):
27
27
  """
28
28
  The set of arguments for constructing a GroupEntitlement resource.
29
- :param pulumi.Input[str] account_license_type: Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
29
+ :param pulumi.Input[str] account_license_type: Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
30
30
  :param pulumi.Input[str] display_name: The display name is the name used in Azure DevOps UI. Cannot be set together with `origin_id` and `origin`.
31
- :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
31
+ :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
32
32
 
33
33
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
34
34
  :param pulumi.Input[str] origin: The type of source provider for the origin identifier.
@@ -49,7 +49,7 @@ class GroupEntitlementArgs:
49
49
  @pulumi.getter(name="accountLicenseType")
50
50
  def account_license_type(self) -> Optional[pulumi.Input[str]]:
51
51
  """
52
- Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
52
+ Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
53
53
  """
54
54
  return pulumi.get(self, "account_license_type")
55
55
 
@@ -73,7 +73,7 @@ class GroupEntitlementArgs:
73
73
  @pulumi.getter(name="licensingSource")
74
74
  def licensing_source(self) -> Optional[pulumi.Input[str]]:
75
75
  """
76
- The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
76
+ The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
77
77
 
78
78
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
79
79
  """
@@ -120,10 +120,10 @@ class _GroupEntitlementState:
120
120
  principal_name: Optional[pulumi.Input[str]] = None):
121
121
  """
122
122
  Input properties used for looking up and filtering GroupEntitlement resources.
123
- :param pulumi.Input[str] account_license_type: Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
123
+ :param pulumi.Input[str] account_license_type: Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
124
124
  :param pulumi.Input[str] descriptor: The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the group graph subject.
125
125
  :param pulumi.Input[str] display_name: The display name is the name used in Azure DevOps UI. Cannot be set together with `origin_id` and `origin`.
126
- :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
126
+ :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
127
127
 
128
128
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
129
129
  :param pulumi.Input[str] origin: The type of source provider for the origin identifier.
@@ -149,7 +149,7 @@ class _GroupEntitlementState:
149
149
  @pulumi.getter(name="accountLicenseType")
150
150
  def account_license_type(self) -> Optional[pulumi.Input[str]]:
151
151
  """
152
- Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
152
+ Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
153
153
  """
154
154
  return pulumi.get(self, "account_license_type")
155
155
 
@@ -185,7 +185,7 @@ class _GroupEntitlementState:
185
185
  @pulumi.getter(name="licensingSource")
186
186
  def licensing_source(self) -> Optional[pulumi.Input[str]]:
187
187
  """
188
- The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
188
+ The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
189
189
 
190
190
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
191
191
  """
@@ -277,9 +277,7 @@ class GroupEntitlement(pulumi.CustomResource):
277
277
 
278
278
  ## Import
279
279
 
280
- The resource allows the import via the ID of a group entitlement, which is a
281
-
282
- UUID.
280
+ The resource allows the import via the ID of a group entitlement, which is a UUID.
283
281
 
284
282
  ```sh
285
283
  $ pulumi import azuredevops:index/groupEntitlement:GroupEntitlement example 00000000-0000-0000-0000-000000000000
@@ -287,9 +285,9 @@ class GroupEntitlement(pulumi.CustomResource):
287
285
 
288
286
  :param str resource_name: The name of the resource.
289
287
  :param pulumi.ResourceOptions opts: Options for the resource.
290
- :param pulumi.Input[str] account_license_type: Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
288
+ :param pulumi.Input[str] account_license_type: Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
291
289
  :param pulumi.Input[str] display_name: The display name is the name used in Azure DevOps UI. Cannot be set together with `origin_id` and `origin`.
292
- :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
290
+ :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
293
291
 
294
292
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
295
293
  :param pulumi.Input[str] origin: The type of source provider for the origin identifier.
@@ -335,9 +333,7 @@ class GroupEntitlement(pulumi.CustomResource):
335
333
 
336
334
  ## Import
337
335
 
338
- The resource allows the import via the ID of a group entitlement, which is a
339
-
340
- UUID.
336
+ The resource allows the import via the ID of a group entitlement, which is a UUID.
341
337
 
342
338
  ```sh
343
339
  $ pulumi import azuredevops:index/groupEntitlement:GroupEntitlement example 00000000-0000-0000-0000-000000000000
@@ -403,10 +399,10 @@ class GroupEntitlement(pulumi.CustomResource):
403
399
  :param str resource_name: The unique name of the resulting resource.
404
400
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
405
401
  :param pulumi.ResourceOptions opts: Options for the resource.
406
- :param pulumi.Input[str] account_license_type: Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
402
+ :param pulumi.Input[str] account_license_type: Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
407
403
  :param pulumi.Input[str] descriptor: The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the group graph subject.
408
404
  :param pulumi.Input[str] display_name: The display name is the name used in Azure DevOps UI. Cannot be set together with `origin_id` and `origin`.
409
- :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
405
+ :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
410
406
 
411
407
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
412
408
  :param pulumi.Input[str] origin: The type of source provider for the origin identifier.
@@ -430,7 +426,7 @@ class GroupEntitlement(pulumi.CustomResource):
430
426
  @pulumi.getter(name="accountLicenseType")
431
427
  def account_license_type(self) -> pulumi.Output[Optional[str]]:
432
428
  """
433
- Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
429
+ Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
434
430
  """
435
431
  return pulumi.get(self, "account_license_type")
436
432
 
@@ -454,7 +450,7 @@ class GroupEntitlement(pulumi.CustomResource):
454
450
  @pulumi.getter(name="licensingSource")
455
451
  def licensing_source(self) -> pulumi.Output[Optional[str]]:
456
452
  """
457
- The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
453
+ The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
458
454
 
459
455
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
460
456
  """