azuredevops.BranchPolicyMinReviewers
Explore with Pulumi AI
Branch policy for reviewers on pull requests. Includes the minimum number of reviewers and other conditions.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azuredevops from "@pulumi/azuredevops";
const example = new azuredevops.Project("example", {name: "Example Project"});
const exampleGit = new azuredevops.Git("example", {
    projectId: example.id,
    name: "Example Repository",
    initialization: {
        initType: "Clean",
    },
});
const exampleBranchPolicyMinReviewers = new azuredevops.BranchPolicyMinReviewers("example", {
    projectId: example.id,
    enabled: true,
    blocking: true,
    settings: {
        reviewerCount: 7,
        submitterCanVote: false,
        lastPusherCannotApprove: true,
        allowCompletionWithRejectsOrWaits: false,
        onPushResetApprovedVotes: true,
        onLastIterationRequireVote: false,
        scopes: [
            {
                repositoryId: exampleGit.id,
                repositoryRef: exampleGit.defaultBranch,
                matchType: "Exact",
            },
            {
                repositoryId: undefined,
                repositoryRef: "refs/heads/releases",
                matchType: "Prefix",
            },
            {
                matchType: "DefaultBranch",
            },
        ],
    },
});
import pulumi
import pulumi_azuredevops as azuredevops
example = azuredevops.Project("example", name="Example Project")
example_git = azuredevops.Git("example",
    project_id=example.id,
    name="Example Repository",
    initialization={
        "init_type": "Clean",
    })
example_branch_policy_min_reviewers = azuredevops.BranchPolicyMinReviewers("example",
    project_id=example.id,
    enabled=True,
    blocking=True,
    settings={
        "reviewer_count": 7,
        "submitter_can_vote": False,
        "last_pusher_cannot_approve": True,
        "allow_completion_with_rejects_or_waits": False,
        "on_push_reset_approved_votes": True,
        "on_last_iteration_require_vote": False,
        "scopes": [
            {
                "repository_id": example_git.id,
                "repository_ref": example_git.default_branch,
                "match_type": "Exact",
            },
            {
                "repository_id": None,
                "repository_ref": "refs/heads/releases",
                "match_type": "Prefix",
            },
            {
                "match_type": "DefaultBranch",
            },
        ],
    })
package main
import (
	"github.com/pulumi/pulumi-azuredevops/sdk/v3/go/azuredevops"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := azuredevops.NewProject(ctx, "example", &azuredevops.ProjectArgs{
			Name: pulumi.String("Example Project"),
		})
		if err != nil {
			return err
		}
		exampleGit, err := azuredevops.NewGit(ctx, "example", &azuredevops.GitArgs{
			ProjectId: example.ID(),
			Name:      pulumi.String("Example Repository"),
			Initialization: &azuredevops.GitInitializationArgs{
				InitType: pulumi.String("Clean"),
			},
		})
		if err != nil {
			return err
		}
		_, err = azuredevops.NewBranchPolicyMinReviewers(ctx, "example", &azuredevops.BranchPolicyMinReviewersArgs{
			ProjectId: example.ID(),
			Enabled:   pulumi.Bool(true),
			Blocking:  pulumi.Bool(true),
			Settings: &azuredevops.BranchPolicyMinReviewersSettingsArgs{
				ReviewerCount:                     pulumi.Int(7),
				SubmitterCanVote:                  pulumi.Bool(false),
				LastPusherCannotApprove:           pulumi.Bool(true),
				AllowCompletionWithRejectsOrWaits: pulumi.Bool(false),
				OnPushResetApprovedVotes:          pulumi.Bool(true),
				OnLastIterationRequireVote:        pulumi.Bool(false),
				Scopes: azuredevops.BranchPolicyMinReviewersSettingsScopeArray{
					&azuredevops.BranchPolicyMinReviewersSettingsScopeArgs{
						RepositoryId:  exampleGit.ID(),
						RepositoryRef: exampleGit.DefaultBranch,
						MatchType:     pulumi.String("Exact"),
					},
					&azuredevops.BranchPolicyMinReviewersSettingsScopeArgs{
						RepositoryId:  nil,
						RepositoryRef: pulumi.String("refs/heads/releases"),
						MatchType:     pulumi.String("Prefix"),
					},
					&azuredevops.BranchPolicyMinReviewersSettingsScopeArgs{
						MatchType: pulumi.String("DefaultBranch"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureDevOps = Pulumi.AzureDevOps;
return await Deployment.RunAsync(() => 
{
    var example = new AzureDevOps.Project("example", new()
    {
        Name = "Example Project",
    });
    var exampleGit = new AzureDevOps.Git("example", new()
    {
        ProjectId = example.Id,
        Name = "Example Repository",
        Initialization = new AzureDevOps.Inputs.GitInitializationArgs
        {
            InitType = "Clean",
        },
    });
    var exampleBranchPolicyMinReviewers = new AzureDevOps.BranchPolicyMinReviewers("example", new()
    {
        ProjectId = example.Id,
        Enabled = true,
        Blocking = true,
        Settings = new AzureDevOps.Inputs.BranchPolicyMinReviewersSettingsArgs
        {
            ReviewerCount = 7,
            SubmitterCanVote = false,
            LastPusherCannotApprove = true,
            AllowCompletionWithRejectsOrWaits = false,
            OnPushResetApprovedVotes = true,
            OnLastIterationRequireVote = false,
            Scopes = new[]
            {
                new AzureDevOps.Inputs.BranchPolicyMinReviewersSettingsScopeArgs
                {
                    RepositoryId = exampleGit.Id,
                    RepositoryRef = exampleGit.DefaultBranch,
                    MatchType = "Exact",
                },
                new AzureDevOps.Inputs.BranchPolicyMinReviewersSettingsScopeArgs
                {
                    RepositoryId = null,
                    RepositoryRef = "refs/heads/releases",
                    MatchType = "Prefix",
                },
                new AzureDevOps.Inputs.BranchPolicyMinReviewersSettingsScopeArgs
                {
                    MatchType = "DefaultBranch",
                },
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azuredevops.Project;
import com.pulumi.azuredevops.ProjectArgs;
import com.pulumi.azuredevops.Git;
import com.pulumi.azuredevops.GitArgs;
import com.pulumi.azuredevops.inputs.GitInitializationArgs;
import com.pulumi.azuredevops.BranchPolicyMinReviewers;
import com.pulumi.azuredevops.BranchPolicyMinReviewersArgs;
import com.pulumi.azuredevops.inputs.BranchPolicyMinReviewersSettingsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var example = new Project("example", ProjectArgs.builder()
            .name("Example Project")
            .build());
        var exampleGit = new Git("exampleGit", GitArgs.builder()
            .projectId(example.id())
            .name("Example Repository")
            .initialization(GitInitializationArgs.builder()
                .initType("Clean")
                .build())
            .build());
        var exampleBranchPolicyMinReviewers = new BranchPolicyMinReviewers("exampleBranchPolicyMinReviewers", BranchPolicyMinReviewersArgs.builder()
            .projectId(example.id())
            .enabled(true)
            .blocking(true)
            .settings(BranchPolicyMinReviewersSettingsArgs.builder()
                .reviewerCount(7)
                .submitterCanVote(false)
                .lastPusherCannotApprove(true)
                .allowCompletionWithRejectsOrWaits(false)
                .onPushResetApprovedVotes(true)
                .onLastIterationRequireVote(false)
                .scopes(                
                    BranchPolicyMinReviewersSettingsScopeArgs.builder()
                        .repositoryId(exampleGit.id())
                        .repositoryRef(exampleGit.defaultBranch())
                        .matchType("Exact")
                        .build(),
                    BranchPolicyMinReviewersSettingsScopeArgs.builder()
                        .repositoryId(null)
                        .repositoryRef("refs/heads/releases")
                        .matchType("Prefix")
                        .build(),
                    BranchPolicyMinReviewersSettingsScopeArgs.builder()
                        .matchType("DefaultBranch")
                        .build())
                .build())
            .build());
    }
}
resources:
  example:
    type: azuredevops:Project
    properties:
      name: Example Project
  exampleGit:
    type: azuredevops:Git
    name: example
    properties:
      projectId: ${example.id}
      name: Example Repository
      initialization:
        initType: Clean
  exampleBranchPolicyMinReviewers:
    type: azuredevops:BranchPolicyMinReviewers
    name: example
    properties:
      projectId: ${example.id}
      enabled: true
      blocking: true
      settings:
        reviewerCount: 7
        submitterCanVote: false
        lastPusherCannotApprove: true
        allowCompletionWithRejectsOrWaits: false
        onPushResetApprovedVotes: true
        onLastIterationRequireVote: false
        scopes:
          - repositoryId: ${exampleGit.id}
            repositoryRef: ${exampleGit.defaultBranch}
            matchType: Exact
          - repositoryId: null
            repositoryRef: refs/heads/releases
            matchType: Prefix
          - matchType: DefaultBranch
Relevant Links
Create BranchPolicyMinReviewers Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BranchPolicyMinReviewers(name: string, args: BranchPolicyMinReviewersArgs, opts?: CustomResourceOptions);@overload
def BranchPolicyMinReviewers(resource_name: str,
                             args: BranchPolicyMinReviewersArgs,
                             opts: Optional[ResourceOptions] = None)
@overload
def BranchPolicyMinReviewers(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             project_id: Optional[str] = None,
                             settings: Optional[BranchPolicyMinReviewersSettingsArgs] = None,
                             blocking: Optional[bool] = None,
                             enabled: Optional[bool] = None)func NewBranchPolicyMinReviewers(ctx *Context, name string, args BranchPolicyMinReviewersArgs, opts ...ResourceOption) (*BranchPolicyMinReviewers, error)public BranchPolicyMinReviewers(string name, BranchPolicyMinReviewersArgs args, CustomResourceOptions? opts = null)
public BranchPolicyMinReviewers(String name, BranchPolicyMinReviewersArgs args)
public BranchPolicyMinReviewers(String name, BranchPolicyMinReviewersArgs args, CustomResourceOptions options)
type: azuredevops:BranchPolicyMinReviewers
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BranchPolicyMinReviewersArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BranchPolicyMinReviewersArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BranchPolicyMinReviewersArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BranchPolicyMinReviewersArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BranchPolicyMinReviewersArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var branchPolicyMinReviewersResource = new AzureDevOps.BranchPolicyMinReviewers("branchPolicyMinReviewersResource", new()
{
    ProjectId = "string",
    Settings = new AzureDevOps.Inputs.BranchPolicyMinReviewersSettingsArgs
    {
        Scopes = new[]
        {
            new AzureDevOps.Inputs.BranchPolicyMinReviewersSettingsScopeArgs
            {
                MatchType = "string",
                RepositoryId = "string",
                RepositoryRef = "string",
            },
        },
        AllowCompletionWithRejectsOrWaits = false,
        LastPusherCannotApprove = false,
        OnLastIterationRequireVote = false,
        OnPushResetAllVotes = false,
        OnPushResetApprovedVotes = false,
        ReviewerCount = 0,
        SubmitterCanVote = false,
    },
    Blocking = false,
    Enabled = false,
});
example, err := azuredevops.NewBranchPolicyMinReviewers(ctx, "branchPolicyMinReviewersResource", &azuredevops.BranchPolicyMinReviewersArgs{
	ProjectId: pulumi.String("string"),
	Settings: &azuredevops.BranchPolicyMinReviewersSettingsArgs{
		Scopes: azuredevops.BranchPolicyMinReviewersSettingsScopeArray{
			&azuredevops.BranchPolicyMinReviewersSettingsScopeArgs{
				MatchType:     pulumi.String("string"),
				RepositoryId:  pulumi.String("string"),
				RepositoryRef: pulumi.String("string"),
			},
		},
		AllowCompletionWithRejectsOrWaits: pulumi.Bool(false),
		LastPusherCannotApprove:           pulumi.Bool(false),
		OnLastIterationRequireVote:        pulumi.Bool(false),
		OnPushResetAllVotes:               pulumi.Bool(false),
		OnPushResetApprovedVotes:          pulumi.Bool(false),
		ReviewerCount:                     pulumi.Int(0),
		SubmitterCanVote:                  pulumi.Bool(false),
	},
	Blocking: pulumi.Bool(false),
	Enabled:  pulumi.Bool(false),
})
var branchPolicyMinReviewersResource = new BranchPolicyMinReviewers("branchPolicyMinReviewersResource", BranchPolicyMinReviewersArgs.builder()
    .projectId("string")
    .settings(BranchPolicyMinReviewersSettingsArgs.builder()
        .scopes(BranchPolicyMinReviewersSettingsScopeArgs.builder()
            .matchType("string")
            .repositoryId("string")
            .repositoryRef("string")
            .build())
        .allowCompletionWithRejectsOrWaits(false)
        .lastPusherCannotApprove(false)
        .onLastIterationRequireVote(false)
        .onPushResetAllVotes(false)
        .onPushResetApprovedVotes(false)
        .reviewerCount(0)
        .submitterCanVote(false)
        .build())
    .blocking(false)
    .enabled(false)
    .build());
branch_policy_min_reviewers_resource = azuredevops.BranchPolicyMinReviewers("branchPolicyMinReviewersResource",
    project_id="string",
    settings={
        "scopes": [{
            "match_type": "string",
            "repository_id": "string",
            "repository_ref": "string",
        }],
        "allow_completion_with_rejects_or_waits": False,
        "last_pusher_cannot_approve": False,
        "on_last_iteration_require_vote": False,
        "on_push_reset_all_votes": False,
        "on_push_reset_approved_votes": False,
        "reviewer_count": 0,
        "submitter_can_vote": False,
    },
    blocking=False,
    enabled=False)
const branchPolicyMinReviewersResource = new azuredevops.BranchPolicyMinReviewers("branchPolicyMinReviewersResource", {
    projectId: "string",
    settings: {
        scopes: [{
            matchType: "string",
            repositoryId: "string",
            repositoryRef: "string",
        }],
        allowCompletionWithRejectsOrWaits: false,
        lastPusherCannotApprove: false,
        onLastIterationRequireVote: false,
        onPushResetAllVotes: false,
        onPushResetApprovedVotes: false,
        reviewerCount: 0,
        submitterCanVote: false,
    },
    blocking: false,
    enabled: false,
});
type: azuredevops:BranchPolicyMinReviewers
properties:
    blocking: false
    enabled: false
    projectId: string
    settings:
        allowCompletionWithRejectsOrWaits: false
        lastPusherCannotApprove: false
        onLastIterationRequireVote: false
        onPushResetAllVotes: false
        onPushResetApprovedVotes: false
        reviewerCount: 0
        scopes:
            - matchType: string
              repositoryId: string
              repositoryRef: string
        submitterCanVote: false
BranchPolicyMinReviewers Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The BranchPolicyMinReviewers resource accepts the following input properties:
- ProjectId string
- The ID of the project in which the policy will be created.
- Settings
Pulumi.Azure Dev Ops. Inputs. Branch Policy Min Reviewers Settings 
- A settingsblock as defined below.. This block must be defined exactly once.
- Blocking bool
- A flag indicating if the policy should be blocking. Defaults to true.
- Enabled bool
- A flag indicating if the policy should be enabled. Defaults to true.
- ProjectId string
- The ID of the project in which the policy will be created.
- Settings
BranchPolicy Min Reviewers Settings Args 
- A settingsblock as defined below.. This block must be defined exactly once.
- Blocking bool
- A flag indicating if the policy should be blocking. Defaults to true.
- Enabled bool
- A flag indicating if the policy should be enabled. Defaults to true.
- projectId String
- The ID of the project in which the policy will be created.
- settings
BranchPolicy Min Reviewers Settings 
- A settingsblock as defined below.. This block must be defined exactly once.
- blocking Boolean
- A flag indicating if the policy should be blocking. Defaults to true.
- enabled Boolean
- A flag indicating if the policy should be enabled. Defaults to true.
- projectId string
- The ID of the project in which the policy will be created.
- settings
BranchPolicy Min Reviewers Settings 
- A settingsblock as defined below.. This block must be defined exactly once.
- blocking boolean
- A flag indicating if the policy should be blocking. Defaults to true.
- enabled boolean
- A flag indicating if the policy should be enabled. Defaults to true.
- project_id str
- The ID of the project in which the policy will be created.
- settings
BranchPolicy Min Reviewers Settings Args 
- A settingsblock as defined below.. This block must be defined exactly once.
- blocking bool
- A flag indicating if the policy should be blocking. Defaults to true.
- enabled bool
- A flag indicating if the policy should be enabled. Defaults to true.
- projectId String
- The ID of the project in which the policy will be created.
- settings Property Map
- A settingsblock as defined below.. This block must be defined exactly once.
- blocking Boolean
- A flag indicating if the policy should be blocking. Defaults to true.
- enabled Boolean
- A flag indicating if the policy should be enabled. Defaults to true.
Outputs
All input properties are implicitly available as output properties. Additionally, the BranchPolicyMinReviewers resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing BranchPolicyMinReviewers Resource
Get an existing BranchPolicyMinReviewers resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: BranchPolicyMinReviewersState, opts?: CustomResourceOptions): BranchPolicyMinReviewers@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        blocking: Optional[bool] = None,
        enabled: Optional[bool] = None,
        project_id: Optional[str] = None,
        settings: Optional[BranchPolicyMinReviewersSettingsArgs] = None) -> BranchPolicyMinReviewersfunc GetBranchPolicyMinReviewers(ctx *Context, name string, id IDInput, state *BranchPolicyMinReviewersState, opts ...ResourceOption) (*BranchPolicyMinReviewers, error)public static BranchPolicyMinReviewers Get(string name, Input<string> id, BranchPolicyMinReviewersState? state, CustomResourceOptions? opts = null)public static BranchPolicyMinReviewers get(String name, Output<String> id, BranchPolicyMinReviewersState state, CustomResourceOptions options)resources:  _:    type: azuredevops:BranchPolicyMinReviewers    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Blocking bool
- A flag indicating if the policy should be blocking. Defaults to true.
- Enabled bool
- A flag indicating if the policy should be enabled. Defaults to true.
- ProjectId string
- The ID of the project in which the policy will be created.
- Settings
Pulumi.Azure Dev Ops. Inputs. Branch Policy Min Reviewers Settings 
- A settingsblock as defined below.. This block must be defined exactly once.
- Blocking bool
- A flag indicating if the policy should be blocking. Defaults to true.
- Enabled bool
- A flag indicating if the policy should be enabled. Defaults to true.
- ProjectId string
- The ID of the project in which the policy will be created.
- Settings
BranchPolicy Min Reviewers Settings Args 
- A settingsblock as defined below.. This block must be defined exactly once.
- blocking Boolean
- A flag indicating if the policy should be blocking. Defaults to true.
- enabled Boolean
- A flag indicating if the policy should be enabled. Defaults to true.
- projectId String
- The ID of the project in which the policy will be created.
- settings
BranchPolicy Min Reviewers Settings 
- A settingsblock as defined below.. This block must be defined exactly once.
- blocking boolean
- A flag indicating if the policy should be blocking. Defaults to true.
- enabled boolean
- A flag indicating if the policy should be enabled. Defaults to true.
- projectId string
- The ID of the project in which the policy will be created.
- settings
BranchPolicy Min Reviewers Settings 
- A settingsblock as defined below.. This block must be defined exactly once.
- blocking bool
- A flag indicating if the policy should be blocking. Defaults to true.
- enabled bool
- A flag indicating if the policy should be enabled. Defaults to true.
- project_id str
- The ID of the project in which the policy will be created.
- settings
BranchPolicy Min Reviewers Settings Args 
- A settingsblock as defined below.. This block must be defined exactly once.
- blocking Boolean
- A flag indicating if the policy should be blocking. Defaults to true.
- enabled Boolean
- A flag indicating if the policy should be enabled. Defaults to true.
- projectId String
- The ID of the project in which the policy will be created.
- settings Property Map
- A settingsblock as defined below.. This block must be defined exactly once.
Supporting Types
BranchPolicyMinReviewersSettings, BranchPolicyMinReviewersSettingsArgs          
- Scopes
List<Pulumi.Azure Dev Ops. Inputs. Branch Policy Min Reviewers Settings Scope> 
- A scopeblock as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
- AllowCompletion boolWith Rejects Or Waits 
- Allow completion even if some reviewers vote to wait or reject. Defaults to false.
- LastPusher boolCannot Approve 
- Prohibit the most recent pusher from approving their own changes. Defaults to false.
- OnLast boolIteration Require Vote 
- On last iteration require vote. Defaults to false.
- OnPush boolReset All Votes 
- When new changes are pushed reset all code reviewer votes. Defaults to - false.- Note: If - on_push_reset_all_votesis- truethen- on_push_reset_approved_voteswill be set to- true. To enable- on_push_reset_approved_votes, you need explicitly set- on_push_reset_all_votes- falseor not configure.
- OnPush boolReset Approved Votes 
- When new changes are pushed reset all approval votes (does not reset votes to reject or wait). Defaults to false.
- ReviewerCount int
- The number of reviewers needed to approve.
- SubmitterCan boolVote 
- Allow requesters to approve their own changes. Defaults to false.
- Scopes
[]BranchPolicy Min Reviewers Settings Scope 
- A scopeblock as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
- AllowCompletion boolWith Rejects Or Waits 
- Allow completion even if some reviewers vote to wait or reject. Defaults to false.
- LastPusher boolCannot Approve 
- Prohibit the most recent pusher from approving their own changes. Defaults to false.
- OnLast boolIteration Require Vote 
- On last iteration require vote. Defaults to false.
- OnPush boolReset All Votes 
- When new changes are pushed reset all code reviewer votes. Defaults to - false.- Note: If - on_push_reset_all_votesis- truethen- on_push_reset_approved_voteswill be set to- true. To enable- on_push_reset_approved_votes, you need explicitly set- on_push_reset_all_votes- falseor not configure.
- OnPush boolReset Approved Votes 
- When new changes are pushed reset all approval votes (does not reset votes to reject or wait). Defaults to false.
- ReviewerCount int
- The number of reviewers needed to approve.
- SubmitterCan boolVote 
- Allow requesters to approve their own changes. Defaults to false.
- scopes
List<BranchPolicy Min Reviewers Settings Scope> 
- A scopeblock as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
- allowCompletion BooleanWith Rejects Or Waits 
- Allow completion even if some reviewers vote to wait or reject. Defaults to false.
- lastPusher BooleanCannot Approve 
- Prohibit the most recent pusher from approving their own changes. Defaults to false.
- onLast BooleanIteration Require Vote 
- On last iteration require vote. Defaults to false.
- onPush BooleanReset All Votes 
- When new changes are pushed reset all code reviewer votes. Defaults to - false.- Note: If - on_push_reset_all_votesis- truethen- on_push_reset_approved_voteswill be set to- true. To enable- on_push_reset_approved_votes, you need explicitly set- on_push_reset_all_votes- falseor not configure.
- onPush BooleanReset Approved Votes 
- When new changes are pushed reset all approval votes (does not reset votes to reject or wait). Defaults to false.
- reviewerCount Integer
- The number of reviewers needed to approve.
- submitterCan BooleanVote 
- Allow requesters to approve their own changes. Defaults to false.
- scopes
BranchPolicy Min Reviewers Settings Scope[] 
- A scopeblock as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
- allowCompletion booleanWith Rejects Or Waits 
- Allow completion even if some reviewers vote to wait or reject. Defaults to false.
- lastPusher booleanCannot Approve 
- Prohibit the most recent pusher from approving their own changes. Defaults to false.
- onLast booleanIteration Require Vote 
- On last iteration require vote. Defaults to false.
- onPush booleanReset All Votes 
- When new changes are pushed reset all code reviewer votes. Defaults to - false.- Note: If - on_push_reset_all_votesis- truethen- on_push_reset_approved_voteswill be set to- true. To enable- on_push_reset_approved_votes, you need explicitly set- on_push_reset_all_votes- falseor not configure.
- onPush booleanReset Approved Votes 
- When new changes are pushed reset all approval votes (does not reset votes to reject or wait). Defaults to false.
- reviewerCount number
- The number of reviewers needed to approve.
- submitterCan booleanVote 
- Allow requesters to approve their own changes. Defaults to false.
- scopes
Sequence[BranchPolicy Min Reviewers Settings Scope] 
- A scopeblock as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
- allow_completion_ boolwith_ rejects_ or_ waits 
- Allow completion even if some reviewers vote to wait or reject. Defaults to false.
- last_pusher_ boolcannot_ approve 
- Prohibit the most recent pusher from approving their own changes. Defaults to false.
- on_last_ booliteration_ require_ vote 
- On last iteration require vote. Defaults to false.
- on_push_ boolreset_ all_ votes 
- When new changes are pushed reset all code reviewer votes. Defaults to - false.- Note: If - on_push_reset_all_votesis- truethen- on_push_reset_approved_voteswill be set to- true. To enable- on_push_reset_approved_votes, you need explicitly set- on_push_reset_all_votes- falseor not configure.
- on_push_ boolreset_ approved_ votes 
- When new changes are pushed reset all approval votes (does not reset votes to reject or wait). Defaults to false.
- reviewer_count int
- The number of reviewers needed to approve.
- submitter_can_ boolvote 
- Allow requesters to approve their own changes. Defaults to false.
- scopes List<Property Map>
- A scopeblock as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
- allowCompletion BooleanWith Rejects Or Waits 
- Allow completion even if some reviewers vote to wait or reject. Defaults to false.
- lastPusher BooleanCannot Approve 
- Prohibit the most recent pusher from approving their own changes. Defaults to false.
- onLast BooleanIteration Require Vote 
- On last iteration require vote. Defaults to false.
- onPush BooleanReset All Votes 
- When new changes are pushed reset all code reviewer votes. Defaults to - false.- Note: If - on_push_reset_all_votesis- truethen- on_push_reset_approved_voteswill be set to- true. To enable- on_push_reset_approved_votes, you need explicitly set- on_push_reset_all_votes- falseor not configure.
- onPush BooleanReset Approved Votes 
- When new changes are pushed reset all approval votes (does not reset votes to reject or wait). Defaults to false.
- reviewerCount Number
- The number of reviewers needed to approve.
- submitterCan BooleanVote 
- Allow requesters to approve their own changes. Defaults to false.
BranchPolicyMinReviewersSettingsScope, BranchPolicyMinReviewersSettingsScopeArgs            
- MatchType string
- The match type to use when applying the policy. Supported values are Exact(default),PrefixorDefaultBranch.
- RepositoryId string
- The repository ID. Needed only if the scope of the policy will be limited to a single repository. If match_typeisDefaultBranch, this should not be defined.
- RepositoryRef string
- The ref pattern to use for the match when match_typeother thanDefaultBranch. Ifmatch_typeisExact, this should be a qualified ref such asrefs/heads/master. Ifmatch_typeisPrefix, this should be a ref path such asrefs/heads/releases.
- MatchType string
- The match type to use when applying the policy. Supported values are Exact(default),PrefixorDefaultBranch.
- RepositoryId string
- The repository ID. Needed only if the scope of the policy will be limited to a single repository. If match_typeisDefaultBranch, this should not be defined.
- RepositoryRef string
- The ref pattern to use for the match when match_typeother thanDefaultBranch. Ifmatch_typeisExact, this should be a qualified ref such asrefs/heads/master. Ifmatch_typeisPrefix, this should be a ref path such asrefs/heads/releases.
- matchType String
- The match type to use when applying the policy. Supported values are Exact(default),PrefixorDefaultBranch.
- repositoryId String
- The repository ID. Needed only if the scope of the policy will be limited to a single repository. If match_typeisDefaultBranch, this should not be defined.
- repositoryRef String
- The ref pattern to use for the match when match_typeother thanDefaultBranch. Ifmatch_typeisExact, this should be a qualified ref such asrefs/heads/master. Ifmatch_typeisPrefix, this should be a ref path such asrefs/heads/releases.
- matchType string
- The match type to use when applying the policy. Supported values are Exact(default),PrefixorDefaultBranch.
- repositoryId string
- The repository ID. Needed only if the scope of the policy will be limited to a single repository. If match_typeisDefaultBranch, this should not be defined.
- repositoryRef string
- The ref pattern to use for the match when match_typeother thanDefaultBranch. Ifmatch_typeisExact, this should be a qualified ref such asrefs/heads/master. Ifmatch_typeisPrefix, this should be a ref path such asrefs/heads/releases.
- match_type str
- The match type to use when applying the policy. Supported values are Exact(default),PrefixorDefaultBranch.
- repository_id str
- The repository ID. Needed only if the scope of the policy will be limited to a single repository. If match_typeisDefaultBranch, this should not be defined.
- repository_ref str
- The ref pattern to use for the match when match_typeother thanDefaultBranch. Ifmatch_typeisExact, this should be a qualified ref such asrefs/heads/master. Ifmatch_typeisPrefix, this should be a ref path such asrefs/heads/releases.
- matchType String
- The match type to use when applying the policy. Supported values are Exact(default),PrefixorDefaultBranch.
- repositoryId String
- The repository ID. Needed only if the scope of the policy will be limited to a single repository. If match_typeisDefaultBranch, this should not be defined.
- repositoryRef String
- The ref pattern to use for the match when match_typeother thanDefaultBranch. Ifmatch_typeisExact, this should be a qualified ref such asrefs/heads/master. Ifmatch_typeisPrefix, this should be a ref path such asrefs/heads/releases.
Import
Azure DevOps Branch Policies can be imported using the project ID and policy configuration ID:
$ pulumi import azuredevops:index/branchPolicyMinReviewers:BranchPolicyMinReviewers example 00000000-0000-0000-0000-000000000000/0
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure DevOps pulumi/pulumi-azuredevops
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azuredevopsTerraform Provider.