pulumi-azuredevops 3.6.0a1737523387__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.
Files changed (119) hide show
  1. pulumi_azuredevops/__init__.py +64 -0
  2. pulumi_azuredevops/_inputs.py +120 -117
  3. pulumi_azuredevops/area_permissions.py +49 -49
  4. pulumi_azuredevops/branch_policy_auto_reviewers.py +7 -7
  5. pulumi_azuredevops/branch_policy_build_validation.py +7 -7
  6. pulumi_azuredevops/branch_policy_comment_resolution.py +7 -7
  7. pulumi_azuredevops/branch_policy_merge_types.py +7 -7
  8. pulumi_azuredevops/branch_policy_status_check.py +7 -7
  9. pulumi_azuredevops/branch_policy_work_item_linking.py +7 -7
  10. pulumi_azuredevops/build_definition.py +7 -7
  11. pulumi_azuredevops/check_branch_control.py +7 -7
  12. pulumi_azuredevops/check_business_hours.py +7 -7
  13. pulumi_azuredevops/check_exclusive_lock.py +7 -7
  14. pulumi_azuredevops/check_rest_api.py +986 -0
  15. pulumi_azuredevops/feed.py +8 -8
  16. pulumi_azuredevops/feed_permission.py +9 -9
  17. pulumi_azuredevops/feed_retention_policy.py +422 -0
  18. pulumi_azuredevops/get_agent_queue.py +2 -2
  19. pulumi_azuredevops/get_area.py +1 -1
  20. pulumi_azuredevops/get_client_config.py +3 -0
  21. pulumi_azuredevops/get_feed.py +4 -4
  22. pulumi_azuredevops/get_git_repository.py +8 -8
  23. pulumi_azuredevops/get_group.py +4 -4
  24. pulumi_azuredevops/get_groups.py +3 -3
  25. pulumi_azuredevops/get_identity_group.py +3 -0
  26. pulumi_azuredevops/get_identity_groups.py +1 -1
  27. pulumi_azuredevops/get_identity_users.py +5 -5
  28. pulumi_azuredevops/get_pool.py +14 -2
  29. pulumi_azuredevops/get_pools.py +3 -3
  30. pulumi_azuredevops/get_project.py +32 -0
  31. pulumi_azuredevops/get_projects.py +4 -4
  32. pulumi_azuredevops/get_repositories.py +7 -3
  33. pulumi_azuredevops/get_securityrole_definitions.py +4 -4
  34. pulumi_azuredevops/get_service_endpoint_azure_rm.py +5 -5
  35. pulumi_azuredevops/get_service_endpoint_github.py +6 -6
  36. pulumi_azuredevops/get_service_principal.py +153 -0
  37. pulumi_azuredevops/get_serviceendpoint_azurecr.py +1 -1
  38. pulumi_azuredevops/get_serviceendpoint_bitbucket.py +6 -6
  39. pulumi_azuredevops/get_serviceendpoint_npm.py +3 -3
  40. pulumi_azuredevops/get_serviceendpoint_sonarcloud.py +2 -2
  41. pulumi_azuredevops/get_team.py +4 -3
  42. pulumi_azuredevops/get_teams.py +2 -3
  43. pulumi_azuredevops/get_users.py +5 -9
  44. pulumi_azuredevops/git.py +7 -7
  45. pulumi_azuredevops/git_permissions.py +14 -21
  46. pulumi_azuredevops/git_repository_file.py +7 -14
  47. pulumi_azuredevops/group.py +21 -7
  48. pulumi_azuredevops/group_entitlement.py +16 -20
  49. pulumi_azuredevops/group_membership.py +35 -50
  50. pulumi_azuredevops/iterative_permissions.py +34 -34
  51. pulumi_azuredevops/library_permissions.py +75 -75
  52. pulumi_azuredevops/outputs.py +129 -102
  53. pulumi_azuredevops/pipeline_authorization.py +7 -7
  54. pulumi_azuredevops/pool.py +4 -4
  55. pulumi_azuredevops/project.py +114 -63
  56. pulumi_azuredevops/project_features.py +87 -45
  57. pulumi_azuredevops/project_permissions.py +7 -7
  58. pulumi_azuredevops/project_pipeline_settings.py +28 -35
  59. pulumi_azuredevops/project_tags.py +263 -0
  60. pulumi_azuredevops/pulumi-plugin.json +1 -1
  61. pulumi_azuredevops/queue.py +7 -14
  62. pulumi_azuredevops/repository_policy_author_email_pattern.py +21 -14
  63. pulumi_azuredevops/repository_policy_max_file_size.py +7 -7
  64. pulumi_azuredevops/resource_authorization.py +35 -35
  65. pulumi_azuredevops/service_endpoint_artifactory.py +24 -18
  66. pulumi_azuredevops/service_endpoint_aws.py +2 -2
  67. pulumi_azuredevops/service_endpoint_azure_ecr.py +13 -15
  68. pulumi_azuredevops/service_endpoint_azure_rm.py +25 -25
  69. pulumi_azuredevops/service_endpoint_bit_bucket.py +2 -2
  70. pulumi_azuredevops/service_endpoint_docker_registry.py +2 -2
  71. pulumi_azuredevops/service_endpoint_generic.py +2 -2
  72. pulumi_azuredevops/service_endpoint_generic_git.py +4 -8
  73. pulumi_azuredevops/service_endpoint_git_hub.py +15 -2
  74. pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +15 -2
  75. pulumi_azuredevops/service_endpoint_kubernetes.py +23 -23
  76. pulumi_azuredevops/service_endpoint_npm.py +4 -4
  77. pulumi_azuredevops/service_endpoint_pipeline.py +4 -4
  78. pulumi_azuredevops/service_endpoint_service_fabric.py +48 -9
  79. pulumi_azuredevops/service_endpoint_sonar_cloud.py +11 -11
  80. pulumi_azuredevops/service_endpoint_sonar_qube.py +11 -11
  81. pulumi_azuredevops/service_endpoint_ssh.py +2 -6
  82. pulumi_azuredevops/service_principal_entitlement.py +386 -0
  83. pulumi_azuredevops/serviceendpoint_argocd.py +2 -2
  84. pulumi_azuredevops/serviceendpoint_azure_service_bus.py +2 -2
  85. pulumi_azuredevops/serviceendpoint_checkmarx_one.py +627 -0
  86. pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +575 -0
  87. pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +674 -0
  88. pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +2 -2
  89. pulumi_azuredevops/serviceendpoint_externaltfs.py +63 -11
  90. pulumi_azuredevops/serviceendpoint_gcp_terraform.py +2 -2
  91. pulumi_azuredevops/serviceendpoint_incomingwebhook.py +2 -2
  92. pulumi_azuredevops/serviceendpoint_jenkins.py +2 -2
  93. pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +18 -18
  94. pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +18 -18
  95. pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +18 -18
  96. pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +18 -18
  97. pulumi_azuredevops/serviceendpoint_maven.py +2 -2
  98. pulumi_azuredevops/serviceendpoint_nexus.py +2 -2
  99. pulumi_azuredevops/serviceendpoint_nuget.py +2 -2
  100. pulumi_azuredevops/serviceendpoint_octopusdeploy.py +2 -2
  101. pulumi_azuredevops/serviceendpoint_permissions.py +40 -40
  102. pulumi_azuredevops/serviceendpoint_snyk.py +2 -2
  103. pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +4 -6
  104. pulumi_azuredevops/servicehook_permissions.py +51 -51
  105. pulumi_azuredevops/servicehook_storage_queue_pipelines.py +4 -4
  106. pulumi_azuredevops/tagging_permissions.py +49 -49
  107. pulumi_azuredevops/team.py +76 -56
  108. pulumi_azuredevops/team_administrators.py +83 -56
  109. pulumi_azuredevops/team_members.py +56 -49
  110. pulumi_azuredevops/variable_group.py +4 -2
  111. pulumi_azuredevops/variable_group_permissions.py +75 -75
  112. pulumi_azuredevops/wiki.py +15 -2
  113. pulumi_azuredevops/wiki_page.py +2 -2
  114. pulumi_azuredevops/work_item_query_permissions.py +7 -7
  115. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/METADATA +1 -1
  116. pulumi_azuredevops-3.6.0a1737710622.dist-info/RECORD +148 -0
  117. pulumi_azuredevops-3.6.0a1737523387.dist-info/RECORD +0 -140
  118. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/WHEEL +0 -0
  119. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/top_level.txt +0 -0
@@ -27,10 +27,6 @@ class AreaPermissionsArgs:
27
27
  """
28
28
  The set of arguments for constructing a AreaPermissions resource.
29
29
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
30
- :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
31
- :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
32
- :param pulumi.Input[str] path: The name of the branch to assign the permissions.
33
- :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`.
34
30
 
35
31
  | Permission | Description |
36
32
  |------------------------|--------------------------------------|
@@ -43,6 +39,10 @@ class AreaPermissionsArgs:
43
39
  | MANAGE_TEST_PLANS | Manage test plans |
44
40
  | MANAGE_TEST_SUITES | Manage test suites |
45
41
  | WORK_ITEM_SAVE_COMMENT | Edit work item comments in this node |
42
+ :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
43
+ :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
44
+ :param pulumi.Input[str] path: The name of the branch to assign the permissions.
45
+ :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`.
46
46
  """
47
47
  pulumi.set(__self__, "permissions", permissions)
48
48
  pulumi.set(__self__, "principal", principal)
@@ -57,6 +57,18 @@ class AreaPermissionsArgs:
57
57
  def permissions(self) -> pulumi.Input[Mapping[str, pulumi.Input[str]]]:
58
58
  """
59
59
  the permissions to assign. The following permissions are available.
60
+
61
+ | Permission | Description |
62
+ |------------------------|--------------------------------------|
63
+ | GENERIC_READ | View permissions for this node |
64
+ | GENERIC_WRITE | Edit this node |
65
+ | CREATE_CHILDREN | Create child nodes |
66
+ | DELETE | Delete this node |
67
+ | WORK_ITEM_READ | View work items in this node |
68
+ | WORK_ITEM_WRITE | Edit work items in this node |
69
+ | MANAGE_TEST_PLANS | Manage test plans |
70
+ | MANAGE_TEST_SUITES | Manage test suites |
71
+ | WORK_ITEM_SAVE_COMMENT | Edit work item comments in this node |
60
72
  """
61
73
  return pulumi.get(self, "permissions")
62
74
 
@@ -105,18 +117,6 @@ class AreaPermissionsArgs:
105
117
  def replace(self) -> Optional[pulumi.Input[bool]]:
106
118
  """
107
119
  Replace (`true`) or merge (`false`) the permissions. Default: `true`.
108
-
109
- | Permission | Description |
110
- |------------------------|--------------------------------------|
111
- | GENERIC_READ | View permissions for this node |
112
- | GENERIC_WRITE | Edit this node |
113
- | CREATE_CHILDREN | Create child nodes |
114
- | DELETE | Delete this node |
115
- | WORK_ITEM_READ | View work items in this node |
116
- | WORK_ITEM_WRITE | Edit work items in this node |
117
- | MANAGE_TEST_PLANS | Manage test plans |
118
- | MANAGE_TEST_SUITES | Manage test suites |
119
- | WORK_ITEM_SAVE_COMMENT | Edit work item comments in this node |
120
120
  """
121
121
  return pulumi.get(self, "replace")
122
122
 
@@ -137,9 +137,6 @@ class _AreaPermissionsState:
137
137
  Input properties used for looking up and filtering AreaPermissions resources.
138
138
  :param pulumi.Input[str] path: The name of the branch to assign the permissions.
139
139
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
140
- :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
141
- :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
142
- :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`.
143
140
 
144
141
  | Permission | Description |
145
142
  |------------------------|--------------------------------------|
@@ -152,6 +149,9 @@ class _AreaPermissionsState:
152
149
  | MANAGE_TEST_PLANS | Manage test plans |
153
150
  | MANAGE_TEST_SUITES | Manage test suites |
154
151
  | WORK_ITEM_SAVE_COMMENT | Edit work item comments in this node |
152
+ :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
153
+ :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
154
+ :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`.
155
155
  """
156
156
  if path is not None:
157
157
  pulumi.set(__self__, "path", path)
@@ -181,6 +181,18 @@ class _AreaPermissionsState:
181
181
  def permissions(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
182
182
  """
183
183
  the permissions to assign. The following permissions are available.
184
+
185
+ | Permission | Description |
186
+ |------------------------|--------------------------------------|
187
+ | GENERIC_READ | View permissions for this node |
188
+ | GENERIC_WRITE | Edit this node |
189
+ | CREATE_CHILDREN | Create child nodes |
190
+ | DELETE | Delete this node |
191
+ | WORK_ITEM_READ | View work items in this node |
192
+ | WORK_ITEM_WRITE | Edit work items in this node |
193
+ | MANAGE_TEST_PLANS | Manage test plans |
194
+ | MANAGE_TEST_SUITES | Manage test suites |
195
+ | WORK_ITEM_SAVE_COMMENT | Edit work item comments in this node |
184
196
  """
185
197
  return pulumi.get(self, "permissions")
186
198
 
@@ -217,18 +229,6 @@ class _AreaPermissionsState:
217
229
  def replace(self) -> Optional[pulumi.Input[bool]]:
218
230
  """
219
231
  Replace (`true`) or merge (`false`) the permissions. Default: `true`.
220
-
221
- | Permission | Description |
222
- |------------------------|--------------------------------------|
223
- | GENERIC_READ | View permissions for this node |
224
- | GENERIC_WRITE | Edit this node |
225
- | CREATE_CHILDREN | Create child nodes |
226
- | DELETE | Delete this node |
227
- | WORK_ITEM_READ | View work items in this node |
228
- | WORK_ITEM_WRITE | Edit work items in this node |
229
- | MANAGE_TEST_PLANS | Manage test plans |
230
- | MANAGE_TEST_SUITES | Manage test suites |
231
- | WORK_ITEM_SAVE_COMMENT | Edit work item comments in this node |
232
232
  """
233
233
  return pulumi.get(self, "replace")
234
234
 
@@ -300,9 +300,6 @@ class AreaPermissions(pulumi.CustomResource):
300
300
  :param pulumi.ResourceOptions opts: Options for the resource.
301
301
  :param pulumi.Input[str] path: The name of the branch to assign the permissions.
302
302
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
303
- :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
304
- :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
305
- :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`.
306
303
 
307
304
  | Permission | Description |
308
305
  |------------------------|--------------------------------------|
@@ -315,6 +312,9 @@ class AreaPermissions(pulumi.CustomResource):
315
312
  | MANAGE_TEST_PLANS | Manage test plans |
316
313
  | MANAGE_TEST_SUITES | Manage test suites |
317
314
  | WORK_ITEM_SAVE_COMMENT | Edit work item comments in this node |
315
+ :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
316
+ :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
317
+ :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`.
318
318
  """
319
319
  ...
320
320
  @overload
@@ -434,9 +434,6 @@ class AreaPermissions(pulumi.CustomResource):
434
434
  :param pulumi.ResourceOptions opts: Options for the resource.
435
435
  :param pulumi.Input[str] path: The name of the branch to assign the permissions.
436
436
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
437
- :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
438
- :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
439
- :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`.
440
437
 
441
438
  | Permission | Description |
442
439
  |------------------------|--------------------------------------|
@@ -449,6 +446,9 @@ class AreaPermissions(pulumi.CustomResource):
449
446
  | MANAGE_TEST_PLANS | Manage test plans |
450
447
  | MANAGE_TEST_SUITES | Manage test suites |
451
448
  | WORK_ITEM_SAVE_COMMENT | Edit work item comments in this node |
449
+ :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
450
+ :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
451
+ :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`.
452
452
  """
453
453
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
454
454
 
@@ -474,6 +474,18 @@ class AreaPermissions(pulumi.CustomResource):
474
474
  def permissions(self) -> pulumi.Output[Mapping[str, str]]:
475
475
  """
476
476
  the permissions to assign. The following permissions are available.
477
+
478
+ | Permission | Description |
479
+ |------------------------|--------------------------------------|
480
+ | GENERIC_READ | View permissions for this node |
481
+ | GENERIC_WRITE | Edit this node |
482
+ | CREATE_CHILDREN | Create child nodes |
483
+ | DELETE | Delete this node |
484
+ | WORK_ITEM_READ | View work items in this node |
485
+ | WORK_ITEM_WRITE | Edit work items in this node |
486
+ | MANAGE_TEST_PLANS | Manage test plans |
487
+ | MANAGE_TEST_SUITES | Manage test suites |
488
+ | WORK_ITEM_SAVE_COMMENT | Edit work item comments in this node |
477
489
  """
478
490
  return pulumi.get(self, "permissions")
479
491
 
@@ -498,18 +510,6 @@ class AreaPermissions(pulumi.CustomResource):
498
510
  def replace(self) -> pulumi.Output[Optional[bool]]:
499
511
  """
500
512
  Replace (`true`) or merge (`false`) the permissions. Default: `true`.
501
-
502
- | Permission | Description |
503
- |------------------------|--------------------------------------|
504
- | GENERIC_READ | View permissions for this node |
505
- | GENERIC_WRITE | Edit this node |
506
- | CREATE_CHILDREN | Create child nodes |
507
- | DELETE | Delete this node |
508
- | WORK_ITEM_READ | View work items in this node |
509
- | WORK_ITEM_WRITE | Edit work items in this node |
510
- | MANAGE_TEST_PLANS | Manage test plans |
511
- | MANAGE_TEST_SUITES | Manage test suites |
512
- | WORK_ITEM_SAVE_COMMENT | Edit work item comments in this node |
513
513
  """
514
514
  return pulumi.get(self, "replace")
515
515
 
@@ -28,7 +28,7 @@ class BranchPolicyAutoReviewersArgs:
28
28
  """
29
29
  The set of arguments for constructing a BranchPolicyAutoReviewers resource.
30
30
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
31
- :param pulumi.Input['BranchPolicyAutoReviewersSettingsArgs'] settings: Configuration for the policy. This block must be defined exactly once.
31
+ :param pulumi.Input['BranchPolicyAutoReviewersSettingsArgs'] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
32
32
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. This relates to the Azure DevOps terms "optional" and "required" reviewers. Defaults to `true`.
33
33
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
34
34
  """
@@ -55,7 +55,7 @@ class BranchPolicyAutoReviewersArgs:
55
55
  @pulumi.getter
56
56
  def settings(self) -> pulumi.Input['BranchPolicyAutoReviewersSettingsArgs']:
57
57
  """
58
- Configuration for the policy. This block must be defined exactly once.
58
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
59
59
  """
60
60
  return pulumi.get(self, "settings")
61
61
 
@@ -100,7 +100,7 @@ class _BranchPolicyAutoReviewersState:
100
100
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. This relates to the Azure DevOps terms "optional" and "required" reviewers. Defaults to `true`.
101
101
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
102
102
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
103
- :param pulumi.Input['BranchPolicyAutoReviewersSettingsArgs'] settings: Configuration for the policy. This block must be defined exactly once.
103
+ :param pulumi.Input['BranchPolicyAutoReviewersSettingsArgs'] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
104
104
  """
105
105
  if blocking is not None:
106
106
  pulumi.set(__self__, "blocking", blocking)
@@ -151,7 +151,7 @@ class _BranchPolicyAutoReviewersState:
151
151
  @pulumi.getter
152
152
  def settings(self) -> Optional[pulumi.Input['BranchPolicyAutoReviewersSettingsArgs']]:
153
153
  """
154
- Configuration for the policy. This block must be defined exactly once.
154
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
155
155
  """
156
156
  return pulumi.get(self, "settings")
157
157
 
@@ -223,7 +223,7 @@ class BranchPolicyAutoReviewers(pulumi.CustomResource):
223
223
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. This relates to the Azure DevOps terms "optional" and "required" reviewers. Defaults to `true`.
224
224
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
225
225
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
226
- :param pulumi.Input[Union['BranchPolicyAutoReviewersSettingsArgs', 'BranchPolicyAutoReviewersSettingsArgsDict']] settings: Configuration for the policy. This block must be defined exactly once.
226
+ :param pulumi.Input[Union['BranchPolicyAutoReviewersSettingsArgs', 'BranchPolicyAutoReviewersSettingsArgsDict']] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
227
227
  """
228
228
  ...
229
229
  @overload
@@ -339,7 +339,7 @@ class BranchPolicyAutoReviewers(pulumi.CustomResource):
339
339
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. This relates to the Azure DevOps terms "optional" and "required" reviewers. Defaults to `true`.
340
340
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
341
341
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
342
- :param pulumi.Input[Union['BranchPolicyAutoReviewersSettingsArgs', 'BranchPolicyAutoReviewersSettingsArgsDict']] settings: Configuration for the policy. This block must be defined exactly once.
342
+ :param pulumi.Input[Union['BranchPolicyAutoReviewersSettingsArgs', 'BranchPolicyAutoReviewersSettingsArgsDict']] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
343
343
  """
344
344
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
345
345
 
@@ -379,7 +379,7 @@ class BranchPolicyAutoReviewers(pulumi.CustomResource):
379
379
  @pulumi.getter
380
380
  def settings(self) -> pulumi.Output['outputs.BranchPolicyAutoReviewersSettings']:
381
381
  """
382
- Configuration for the policy. This block must be defined exactly once.
382
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
383
383
  """
384
384
  return pulumi.get(self, "settings")
385
385
 
@@ -28,7 +28,7 @@ class BranchPolicyBuildValidationArgs:
28
28
  """
29
29
  The set of arguments for constructing a BranchPolicyBuildValidation resource.
30
30
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
31
- :param pulumi.Input['BranchPolicyBuildValidationSettingsArgs'] settings: Configuration for the policy. This block must be defined exactly once.
31
+ :param pulumi.Input['BranchPolicyBuildValidationSettingsArgs'] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
32
32
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
33
33
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
34
34
  """
@@ -55,7 +55,7 @@ class BranchPolicyBuildValidationArgs:
55
55
  @pulumi.getter
56
56
  def settings(self) -> pulumi.Input['BranchPolicyBuildValidationSettingsArgs']:
57
57
  """
58
- Configuration for the policy. This block must be defined exactly once.
58
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
59
59
  """
60
60
  return pulumi.get(self, "settings")
61
61
 
@@ -100,7 +100,7 @@ class _BranchPolicyBuildValidationState:
100
100
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
101
101
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
102
102
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
103
- :param pulumi.Input['BranchPolicyBuildValidationSettingsArgs'] settings: Configuration for the policy. This block must be defined exactly once.
103
+ :param pulumi.Input['BranchPolicyBuildValidationSettingsArgs'] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
104
104
  """
105
105
  if blocking is not None:
106
106
  pulumi.set(__self__, "blocking", blocking)
@@ -151,7 +151,7 @@ class _BranchPolicyBuildValidationState:
151
151
  @pulumi.getter
152
152
  def settings(self) -> Optional[pulumi.Input['BranchPolicyBuildValidationSettingsArgs']]:
153
153
  """
154
- Configuration for the policy. This block must be defined exactly once.
154
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
155
155
  """
156
156
  return pulumi.get(self, "settings")
157
157
 
@@ -243,7 +243,7 @@ class BranchPolicyBuildValidation(pulumi.CustomResource):
243
243
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
244
244
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
245
245
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
246
- :param pulumi.Input[Union['BranchPolicyBuildValidationSettingsArgs', 'BranchPolicyBuildValidationSettingsArgsDict']] settings: Configuration for the policy. This block must be defined exactly once.
246
+ :param pulumi.Input[Union['BranchPolicyBuildValidationSettingsArgs', 'BranchPolicyBuildValidationSettingsArgsDict']] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
247
247
  """
248
248
  ...
249
249
  @overload
@@ -381,7 +381,7 @@ class BranchPolicyBuildValidation(pulumi.CustomResource):
381
381
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
382
382
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
383
383
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
384
- :param pulumi.Input[Union['BranchPolicyBuildValidationSettingsArgs', 'BranchPolicyBuildValidationSettingsArgsDict']] settings: Configuration for the policy. This block must be defined exactly once.
384
+ :param pulumi.Input[Union['BranchPolicyBuildValidationSettingsArgs', 'BranchPolicyBuildValidationSettingsArgsDict']] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
385
385
  """
386
386
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
387
387
 
@@ -421,7 +421,7 @@ class BranchPolicyBuildValidation(pulumi.CustomResource):
421
421
  @pulumi.getter
422
422
  def settings(self) -> pulumi.Output['outputs.BranchPolicyBuildValidationSettings']:
423
423
  """
424
- Configuration for the policy. This block must be defined exactly once.
424
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
425
425
  """
426
426
  return pulumi.get(self, "settings")
427
427
 
@@ -28,7 +28,7 @@ class BranchPolicyCommentResolutionArgs:
28
28
  """
29
29
  The set of arguments for constructing a BranchPolicyCommentResolution resource.
30
30
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
31
- :param pulumi.Input['BranchPolicyCommentResolutionSettingsArgs'] settings: Configuration for the policy. This block must be defined exactly once.
31
+ :param pulumi.Input['BranchPolicyCommentResolutionSettingsArgs'] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
32
32
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
33
33
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
34
34
  """
@@ -55,7 +55,7 @@ class BranchPolicyCommentResolutionArgs:
55
55
  @pulumi.getter
56
56
  def settings(self) -> pulumi.Input['BranchPolicyCommentResolutionSettingsArgs']:
57
57
  """
58
- Configuration for the policy. This block must be defined exactly once.
58
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
59
59
  """
60
60
  return pulumi.get(self, "settings")
61
61
 
@@ -100,7 +100,7 @@ class _BranchPolicyCommentResolutionState:
100
100
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
101
101
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
102
102
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
103
- :param pulumi.Input['BranchPolicyCommentResolutionSettingsArgs'] settings: Configuration for the policy. This block must be defined exactly once.
103
+ :param pulumi.Input['BranchPolicyCommentResolutionSettingsArgs'] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
104
104
  """
105
105
  if blocking is not None:
106
106
  pulumi.set(__self__, "blocking", blocking)
@@ -151,7 +151,7 @@ class _BranchPolicyCommentResolutionState:
151
151
  @pulumi.getter
152
152
  def settings(self) -> Optional[pulumi.Input['BranchPolicyCommentResolutionSettingsArgs']]:
153
153
  """
154
- Configuration for the policy. This block must be defined exactly once.
154
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
155
155
  """
156
156
  return pulumi.get(self, "settings")
157
157
 
@@ -226,7 +226,7 @@ class BranchPolicyCommentResolution(pulumi.CustomResource):
226
226
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
227
227
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
228
228
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
229
- :param pulumi.Input[Union['BranchPolicyCommentResolutionSettingsArgs', 'BranchPolicyCommentResolutionSettingsArgsDict']] settings: Configuration for the policy. This block must be defined exactly once.
229
+ :param pulumi.Input[Union['BranchPolicyCommentResolutionSettingsArgs', 'BranchPolicyCommentResolutionSettingsArgsDict']] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
230
230
  """
231
231
  ...
232
232
  @overload
@@ -345,7 +345,7 @@ class BranchPolicyCommentResolution(pulumi.CustomResource):
345
345
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
346
346
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
347
347
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
348
- :param pulumi.Input[Union['BranchPolicyCommentResolutionSettingsArgs', 'BranchPolicyCommentResolutionSettingsArgsDict']] settings: Configuration for the policy. This block must be defined exactly once.
348
+ :param pulumi.Input[Union['BranchPolicyCommentResolutionSettingsArgs', 'BranchPolicyCommentResolutionSettingsArgsDict']] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
349
349
  """
350
350
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
351
351
 
@@ -385,7 +385,7 @@ class BranchPolicyCommentResolution(pulumi.CustomResource):
385
385
  @pulumi.getter
386
386
  def settings(self) -> pulumi.Output['outputs.BranchPolicyCommentResolutionSettings']:
387
387
  """
388
- Configuration for the policy. This block must be defined exactly once.
388
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
389
389
  """
390
390
  return pulumi.get(self, "settings")
391
391
 
@@ -28,7 +28,7 @@ class BranchPolicyMergeTypesArgs:
28
28
  """
29
29
  The set of arguments for constructing a BranchPolicyMergeTypes resource.
30
30
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
31
- :param pulumi.Input['BranchPolicyMergeTypesSettingsArgs'] settings: Configuration for the policy. This block must be defined exactly once.
31
+ :param pulumi.Input['BranchPolicyMergeTypesSettingsArgs'] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
32
32
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
33
33
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
34
34
  """
@@ -55,7 +55,7 @@ class BranchPolicyMergeTypesArgs:
55
55
  @pulumi.getter
56
56
  def settings(self) -> pulumi.Input['BranchPolicyMergeTypesSettingsArgs']:
57
57
  """
58
- Configuration for the policy. This block must be defined exactly once.
58
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
59
59
  """
60
60
  return pulumi.get(self, "settings")
61
61
 
@@ -100,7 +100,7 @@ class _BranchPolicyMergeTypesState:
100
100
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
101
101
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
102
102
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
103
- :param pulumi.Input['BranchPolicyMergeTypesSettingsArgs'] settings: Configuration for the policy. This block must be defined exactly once.
103
+ :param pulumi.Input['BranchPolicyMergeTypesSettingsArgs'] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
104
104
  """
105
105
  if blocking is not None:
106
106
  pulumi.set(__self__, "blocking", blocking)
@@ -151,7 +151,7 @@ class _BranchPolicyMergeTypesState:
151
151
  @pulumi.getter
152
152
  def settings(self) -> Optional[pulumi.Input['BranchPolicyMergeTypesSettingsArgs']]:
153
153
  """
154
- Configuration for the policy. This block must be defined exactly once.
154
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
155
155
  """
156
156
  return pulumi.get(self, "settings")
157
157
 
@@ -230,7 +230,7 @@ class BranchPolicyMergeTypes(pulumi.CustomResource):
230
230
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
231
231
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
232
232
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
233
- :param pulumi.Input[Union['BranchPolicyMergeTypesSettingsArgs', 'BranchPolicyMergeTypesSettingsArgsDict']] settings: Configuration for the policy. This block must be defined exactly once.
233
+ :param pulumi.Input[Union['BranchPolicyMergeTypesSettingsArgs', 'BranchPolicyMergeTypesSettingsArgsDict']] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
234
234
  """
235
235
  ...
236
236
  @overload
@@ -353,7 +353,7 @@ class BranchPolicyMergeTypes(pulumi.CustomResource):
353
353
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
354
354
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
355
355
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
356
- :param pulumi.Input[Union['BranchPolicyMergeTypesSettingsArgs', 'BranchPolicyMergeTypesSettingsArgsDict']] settings: Configuration for the policy. This block must be defined exactly once.
356
+ :param pulumi.Input[Union['BranchPolicyMergeTypesSettingsArgs', 'BranchPolicyMergeTypesSettingsArgsDict']] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
357
357
  """
358
358
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
359
359
 
@@ -393,7 +393,7 @@ class BranchPolicyMergeTypes(pulumi.CustomResource):
393
393
  @pulumi.getter
394
394
  def settings(self) -> pulumi.Output['outputs.BranchPolicyMergeTypesSettings']:
395
395
  """
396
- Configuration for the policy. This block must be defined exactly once.
396
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
397
397
  """
398
398
  return pulumi.get(self, "settings")
399
399
 
@@ -28,7 +28,7 @@ class BranchPolicyStatusCheckArgs:
28
28
  """
29
29
  The set of arguments for constructing a BranchPolicyStatusCheck resource.
30
30
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
31
- :param pulumi.Input['BranchPolicyStatusCheckSettingsArgs'] settings: Configuration for the policy. This block must be defined exactly once.
31
+ :param pulumi.Input['BranchPolicyStatusCheckSettingsArgs'] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
32
32
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
33
33
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
34
34
  """
@@ -55,7 +55,7 @@ class BranchPolicyStatusCheckArgs:
55
55
  @pulumi.getter
56
56
  def settings(self) -> pulumi.Input['BranchPolicyStatusCheckSettingsArgs']:
57
57
  """
58
- Configuration for the policy. This block must be defined exactly once.
58
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
59
59
  """
60
60
  return pulumi.get(self, "settings")
61
61
 
@@ -100,7 +100,7 @@ class _BranchPolicyStatusCheckState:
100
100
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
101
101
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
102
102
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
103
- :param pulumi.Input['BranchPolicyStatusCheckSettingsArgs'] settings: Configuration for the policy. This block must be defined exactly once.
103
+ :param pulumi.Input['BranchPolicyStatusCheckSettingsArgs'] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
104
104
  """
105
105
  if blocking is not None:
106
106
  pulumi.set(__self__, "blocking", blocking)
@@ -151,7 +151,7 @@ class _BranchPolicyStatusCheckState:
151
151
  @pulumi.getter
152
152
  def settings(self) -> Optional[pulumi.Input['BranchPolicyStatusCheckSettingsArgs']]:
153
153
  """
154
- Configuration for the policy. This block must be defined exactly once.
154
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
155
155
  """
156
156
  return pulumi.get(self, "settings")
157
157
 
@@ -238,7 +238,7 @@ class BranchPolicyStatusCheck(pulumi.CustomResource):
238
238
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
239
239
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
240
240
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
241
- :param pulumi.Input[Union['BranchPolicyStatusCheckSettingsArgs', 'BranchPolicyStatusCheckSettingsArgsDict']] settings: Configuration for the policy. This block must be defined exactly once.
241
+ :param pulumi.Input[Union['BranchPolicyStatusCheckSettingsArgs', 'BranchPolicyStatusCheckSettingsArgsDict']] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
242
242
  """
243
243
  ...
244
244
  @overload
@@ -369,7 +369,7 @@ class BranchPolicyStatusCheck(pulumi.CustomResource):
369
369
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
370
370
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
371
371
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
372
- :param pulumi.Input[Union['BranchPolicyStatusCheckSettingsArgs', 'BranchPolicyStatusCheckSettingsArgsDict']] settings: Configuration for the policy. This block must be defined exactly once.
372
+ :param pulumi.Input[Union['BranchPolicyStatusCheckSettingsArgs', 'BranchPolicyStatusCheckSettingsArgsDict']] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
373
373
  """
374
374
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
375
375
 
@@ -409,7 +409,7 @@ class BranchPolicyStatusCheck(pulumi.CustomResource):
409
409
  @pulumi.getter
410
410
  def settings(self) -> pulumi.Output['outputs.BranchPolicyStatusCheckSettings']:
411
411
  """
412
- Configuration for the policy. This block must be defined exactly once.
412
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
413
413
  """
414
414
  return pulumi.get(self, "settings")
415
415
 
@@ -28,7 +28,7 @@ class BranchPolicyWorkItemLinkingArgs:
28
28
  """
29
29
  The set of arguments for constructing a BranchPolicyWorkItemLinking resource.
30
30
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
31
- :param pulumi.Input['BranchPolicyWorkItemLinkingSettingsArgs'] settings: Configuration for the policy. This block must be defined exactly once.
31
+ :param pulumi.Input['BranchPolicyWorkItemLinkingSettingsArgs'] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
32
32
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
33
33
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
34
34
  """
@@ -55,7 +55,7 @@ class BranchPolicyWorkItemLinkingArgs:
55
55
  @pulumi.getter
56
56
  def settings(self) -> pulumi.Input['BranchPolicyWorkItemLinkingSettingsArgs']:
57
57
  """
58
- Configuration for the policy. This block must be defined exactly once.
58
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
59
59
  """
60
60
  return pulumi.get(self, "settings")
61
61
 
@@ -100,7 +100,7 @@ class _BranchPolicyWorkItemLinkingState:
100
100
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
101
101
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
102
102
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
103
- :param pulumi.Input['BranchPolicyWorkItemLinkingSettingsArgs'] settings: Configuration for the policy. This block must be defined exactly once.
103
+ :param pulumi.Input['BranchPolicyWorkItemLinkingSettingsArgs'] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
104
104
  """
105
105
  if blocking is not None:
106
106
  pulumi.set(__self__, "blocking", blocking)
@@ -151,7 +151,7 @@ class _BranchPolicyWorkItemLinkingState:
151
151
  @pulumi.getter
152
152
  def settings(self) -> Optional[pulumi.Input['BranchPolicyWorkItemLinkingSettingsArgs']]:
153
153
  """
154
- Configuration for the policy. This block must be defined exactly once.
154
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
155
155
  """
156
156
  return pulumi.get(self, "settings")
157
157
 
@@ -226,7 +226,7 @@ class BranchPolicyWorkItemLinking(pulumi.CustomResource):
226
226
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
227
227
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
228
228
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
229
- :param pulumi.Input[Union['BranchPolicyWorkItemLinkingSettingsArgs', 'BranchPolicyWorkItemLinkingSettingsArgsDict']] settings: Configuration for the policy. This block must be defined exactly once.
229
+ :param pulumi.Input[Union['BranchPolicyWorkItemLinkingSettingsArgs', 'BranchPolicyWorkItemLinkingSettingsArgsDict']] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
230
230
  """
231
231
  ...
232
232
  @overload
@@ -345,7 +345,7 @@ class BranchPolicyWorkItemLinking(pulumi.CustomResource):
345
345
  :param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
346
346
  :param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
347
347
  :param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
348
- :param pulumi.Input[Union['BranchPolicyWorkItemLinkingSettingsArgs', 'BranchPolicyWorkItemLinkingSettingsArgsDict']] settings: Configuration for the policy. This block must be defined exactly once.
348
+ :param pulumi.Input[Union['BranchPolicyWorkItemLinkingSettingsArgs', 'BranchPolicyWorkItemLinkingSettingsArgsDict']] settings: A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
349
349
  """
350
350
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
351
351
 
@@ -385,7 +385,7 @@ class BranchPolicyWorkItemLinking(pulumi.CustomResource):
385
385
  @pulumi.getter
386
386
  def settings(self) -> pulumi.Output['outputs.BranchPolicyWorkItemLinkingSettings']:
387
387
  """
388
- Configuration for the policy. This block must be defined exactly once.
388
+ A `settings` block as defined below. Configuration for the policy. This block must be defined exactly once.
389
389
  """
390
390
  return pulumi.get(self, "settings")
391
391
 
@@ -45,7 +45,7 @@ class BuildDefinitionArgs:
45
45
  :param pulumi.Input[str] name: The name of the build definition.
46
46
  :param pulumi.Input[str] path: The folder path of the build definition.
47
47
  :param pulumi.Input['BuildDefinitionPullRequestTriggerArgs'] pull_request_trigger: A `pull_request_trigger` block as documented below.
48
- :param pulumi.Input[str] queue_status: The queue status of the build definition. Valid values: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
48
+ :param pulumi.Input[str] queue_status: The queue status of the build definition. Possible values are: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
49
49
  :param pulumi.Input[Sequence[pulumi.Input[int]]] variable_groups: A list of variable group IDs (integers) to link to the build definition.
50
50
  :param pulumi.Input[Sequence[pulumi.Input['BuildDefinitionVariableArgs']]] variables: A list of `variable` blocks, as documented below.
51
51
  """
@@ -186,7 +186,7 @@ class BuildDefinitionArgs:
186
186
  @pulumi.getter(name="queueStatus")
187
187
  def queue_status(self) -> Optional[pulumi.Input[str]]:
188
188
  """
189
- The queue status of the build definition. Valid values: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
189
+ The queue status of the build definition. Possible values are: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
190
190
  """
191
191
  return pulumi.get(self, "queue_status")
192
192
 
@@ -255,7 +255,7 @@ class _BuildDefinitionState:
255
255
  :param pulumi.Input[str] path: The folder path of the build definition.
256
256
  :param pulumi.Input[str] project_id: The project ID or project name.
257
257
  :param pulumi.Input['BuildDefinitionPullRequestTriggerArgs'] pull_request_trigger: A `pull_request_trigger` block as documented below.
258
- :param pulumi.Input[str] queue_status: The queue status of the build definition. Valid values: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
258
+ :param pulumi.Input[str] queue_status: The queue status of the build definition. Possible values are: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
259
259
  :param pulumi.Input['BuildDefinitionRepositoryArgs'] repository: A `repository` block as documented below.
260
260
  :param pulumi.Input[int] revision: The revision of the build definition
261
261
  :param pulumi.Input[Sequence[pulumi.Input[int]]] variable_groups: A list of variable group IDs (integers) to link to the build definition.
@@ -390,7 +390,7 @@ class _BuildDefinitionState:
390
390
  @pulumi.getter(name="queueStatus")
391
391
  def queue_status(self) -> Optional[pulumi.Input[str]]:
392
392
  """
393
- The queue status of the build definition. Valid values: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
393
+ The queue status of the build definition. Possible values are: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
394
394
  """
395
395
  return pulumi.get(self, "queue_status")
396
396
 
@@ -703,7 +703,7 @@ class BuildDefinition(pulumi.CustomResource):
703
703
  :param pulumi.Input[str] path: The folder path of the build definition.
704
704
  :param pulumi.Input[str] project_id: The project ID or project name.
705
705
  :param pulumi.Input[Union['BuildDefinitionPullRequestTriggerArgs', 'BuildDefinitionPullRequestTriggerArgsDict']] pull_request_trigger: A `pull_request_trigger` block as documented below.
706
- :param pulumi.Input[str] queue_status: The queue status of the build definition. Valid values: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
706
+ :param pulumi.Input[str] queue_status: The queue status of the build definition. Possible values are: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
707
707
  :param pulumi.Input[Union['BuildDefinitionRepositoryArgs', 'BuildDefinitionRepositoryArgsDict']] repository: A `repository` block as documented below.
708
708
  :param pulumi.Input[Sequence[pulumi.Input[int]]] variable_groups: A list of variable group IDs (integers) to link to the build definition.
709
709
  :param pulumi.Input[Sequence[pulumi.Input[Union['BuildDefinitionVariableArgs', 'BuildDefinitionVariableArgsDict']]]] variables: A list of `variable` blocks, as documented below.
@@ -1026,7 +1026,7 @@ class BuildDefinition(pulumi.CustomResource):
1026
1026
  :param pulumi.Input[str] path: The folder path of the build definition.
1027
1027
  :param pulumi.Input[str] project_id: The project ID or project name.
1028
1028
  :param pulumi.Input[Union['BuildDefinitionPullRequestTriggerArgs', 'BuildDefinitionPullRequestTriggerArgsDict']] pull_request_trigger: A `pull_request_trigger` block as documented below.
1029
- :param pulumi.Input[str] queue_status: The queue status of the build definition. Valid values: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
1029
+ :param pulumi.Input[str] queue_status: The queue status of the build definition. Possible values are: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
1030
1030
  :param pulumi.Input[Union['BuildDefinitionRepositoryArgs', 'BuildDefinitionRepositoryArgsDict']] repository: A `repository` block as documented below.
1031
1031
  :param pulumi.Input[int] revision: The revision of the build definition
1032
1032
  :param pulumi.Input[Sequence[pulumi.Input[int]]] variable_groups: A list of variable group IDs (integers) to link to the build definition.
@@ -1120,7 +1120,7 @@ class BuildDefinition(pulumi.CustomResource):
1120
1120
  @pulumi.getter(name="queueStatus")
1121
1121
  def queue_status(self) -> pulumi.Output[Optional[str]]:
1122
1122
  """
1123
- The queue status of the build definition. Valid values: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
1123
+ The queue status of the build definition. Possible values are: `enabled` or `paused` or `disabled`. Defaults to `enabled`.
1124
1124
  """
1125
1125
  return pulumi.get(self, "queue_status")
1126
1126