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
@@ -89,12 +89,16 @@ def _get_semver_version():
89
89
  elif pep440_version.pre_tag == 'rc':
90
90
  prerelease = f"rc.{pep440_version.pre}"
91
91
  elif pep440_version.dev is not None:
92
+ # PEP440 has explicit support for dev builds, while semver encodes them as "prerelease" versions. To bridge
93
+ # between the two, we convert our dev build version into a prerelease tag. This matches what all of our other
94
+ # packages do when constructing their own semver string.
92
95
  prerelease = f"dev.{pep440_version.dev}"
96
+ elif pep440_version.local is not None:
97
+ # PEP440 only allows a small set of prerelease tags, so when converting an arbitrary prerelease,
98
+ # PypiVersion in /pkg/codegen/python/utilities.go converts it to a local version. Therefore, we need to
99
+ # do the reverse conversion here and set the local version as the prerelease tag.
100
+ prerelease = pep440_version.local
93
101
 
94
- # The only significant difference between PEP440 and semver as it pertains to us is that PEP440 has explicit support
95
- # for dev builds, while semver encodes them as "prerelease" versions. In order to bridge between the two, we convert
96
- # our dev build version into a prerelease tag. This matches what all of our other packages do when constructing
97
- # their own semver string.
98
102
  return SemverVersion(major=major, minor=minor, patch=patch, prerelease=prerelease)
99
103
 
100
104
 
@@ -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