azuredevops.RepositoryPolicyMaxPathLength
Explore with Pulumi AI
Manage a max path length repository policy within Azure DevOps project.
If both project and project policy are enabled, the repository policy has high priority.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azuredevops from "@pulumi/azuredevops";
const example = new azuredevops.Project("example", {
name: "Example Project",
visibility: "private",
versionControl: "Git",
workItemTemplate: "Agile",
description: "Managed by Terraform",
});
const exampleGit = new azuredevops.Git("example", {
projectId: example.id,
name: "Sample Repo",
initialization: {
initType: "Clean",
},
});
const exampleRepositoryPolicyMaxPathLength = new azuredevops.RepositoryPolicyMaxPathLength("example", {
projectId: example.id,
enabled: true,
blocking: true,
maxPathLength: 500,
repositoryIds: [exampleGit.id],
});
import pulumi
import pulumi_azuredevops as azuredevops
example = azuredevops.Project("example",
name="Example Project",
visibility="private",
version_control="Git",
work_item_template="Agile",
description="Managed by Terraform")
example_git = azuredevops.Git("example",
project_id=example.id,
name="Sample Repo",
initialization={
"init_type": "Clean",
})
example_repository_policy_max_path_length = azuredevops.RepositoryPolicyMaxPathLength("example",
project_id=example.id,
enabled=True,
blocking=True,
max_path_length=500,
repository_ids=[example_git.id])
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"),
Visibility: pulumi.String("private"),
VersionControl: pulumi.String("Git"),
WorkItemTemplate: pulumi.String("Agile"),
Description: pulumi.String("Managed by Terraform"),
})
if err != nil {
return err
}
exampleGit, err := azuredevops.NewGit(ctx, "example", &azuredevops.GitArgs{
ProjectId: example.ID(),
Name: pulumi.String("Sample Repo"),
Initialization: &azuredevops.GitInitializationArgs{
InitType: pulumi.String("Clean"),
},
})
if err != nil {
return err
}
_, err = azuredevops.NewRepositoryPolicyMaxPathLength(ctx, "example", &azuredevops.RepositoryPolicyMaxPathLengthArgs{
ProjectId: example.ID(),
Enabled: pulumi.Bool(true),
Blocking: pulumi.Bool(true),
MaxPathLength: pulumi.Int(500),
RepositoryIds: pulumi.StringArray{
exampleGit.ID(),
},
})
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",
Visibility = "private",
VersionControl = "Git",
WorkItemTemplate = "Agile",
Description = "Managed by Terraform",
});
var exampleGit = new AzureDevOps.Git("example", new()
{
ProjectId = example.Id,
Name = "Sample Repo",
Initialization = new AzureDevOps.Inputs.GitInitializationArgs
{
InitType = "Clean",
},
});
var exampleRepositoryPolicyMaxPathLength = new AzureDevOps.RepositoryPolicyMaxPathLength("example", new()
{
ProjectId = example.Id,
Enabled = true,
Blocking = true,
MaxPathLength = 500,
RepositoryIds = new[]
{
exampleGit.Id,
},
});
});
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.RepositoryPolicyMaxPathLength;
import com.pulumi.azuredevops.RepositoryPolicyMaxPathLengthArgs;
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")
.visibility("private")
.versionControl("Git")
.workItemTemplate("Agile")
.description("Managed by Terraform")
.build());
var exampleGit = new Git("exampleGit", GitArgs.builder()
.projectId(example.id())
.name("Sample Repo")
.initialization(GitInitializationArgs.builder()
.initType("Clean")
.build())
.build());
var exampleRepositoryPolicyMaxPathLength = new RepositoryPolicyMaxPathLength("exampleRepositoryPolicyMaxPathLength", RepositoryPolicyMaxPathLengthArgs.builder()
.projectId(example.id())
.enabled(true)
.blocking(true)
.maxPathLength(500)
.repositoryIds(exampleGit.id())
.build());
}
}
resources:
example:
type: azuredevops:Project
properties:
name: Example Project
visibility: private
versionControl: Git
workItemTemplate: Agile
description: Managed by Terraform
exampleGit:
type: azuredevops:Git
name: example
properties:
projectId: ${example.id}
name: Sample Repo
initialization:
initType: Clean
exampleRepositoryPolicyMaxPathLength:
type: azuredevops:RepositoryPolicyMaxPathLength
name: example
properties:
projectId: ${example.id}
enabled: true
blocking: true
maxPathLength: 500
repositoryIds:
- ${exampleGit.id}
Set project level repository policy
import * as pulumi from "@pulumi/pulumi";
import * as azuredevops from "@pulumi/azuredevops";
const example = new azuredevops.Project("example", {
name: "Example Project",
visibility: "private",
versionControl: "Git",
workItemTemplate: "Agile",
description: "Managed by Terraform",
});
const exampleRepositoryPolicyMaxPathLength = new azuredevops.RepositoryPolicyMaxPathLength("example", {
projectId: example.id,
enabled: true,
blocking: true,
maxPathLength: 1000,
});
import pulumi
import pulumi_azuredevops as azuredevops
example = azuredevops.Project("example",
name="Example Project",
visibility="private",
version_control="Git",
work_item_template="Agile",
description="Managed by Terraform")
example_repository_policy_max_path_length = azuredevops.RepositoryPolicyMaxPathLength("example",
project_id=example.id,
enabled=True,
blocking=True,
max_path_length=1000)
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"),
Visibility: pulumi.String("private"),
VersionControl: pulumi.String("Git"),
WorkItemTemplate: pulumi.String("Agile"),
Description: pulumi.String("Managed by Terraform"),
})
if err != nil {
return err
}
_, err = azuredevops.NewRepositoryPolicyMaxPathLength(ctx, "example", &azuredevops.RepositoryPolicyMaxPathLengthArgs{
ProjectId: example.ID(),
Enabled: pulumi.Bool(true),
Blocking: pulumi.Bool(true),
MaxPathLength: pulumi.Int(1000),
})
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",
Visibility = "private",
VersionControl = "Git",
WorkItemTemplate = "Agile",
Description = "Managed by Terraform",
});
var exampleRepositoryPolicyMaxPathLength = new AzureDevOps.RepositoryPolicyMaxPathLength("example", new()
{
ProjectId = example.Id,
Enabled = true,
Blocking = true,
MaxPathLength = 1000,
});
});
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.RepositoryPolicyMaxPathLength;
import com.pulumi.azuredevops.RepositoryPolicyMaxPathLengthArgs;
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")
.visibility("private")
.versionControl("Git")
.workItemTemplate("Agile")
.description("Managed by Terraform")
.build());
var exampleRepositoryPolicyMaxPathLength = new RepositoryPolicyMaxPathLength("exampleRepositoryPolicyMaxPathLength", RepositoryPolicyMaxPathLengthArgs.builder()
.projectId(example.id())
.enabled(true)
.blocking(true)
.maxPathLength(1000)
.build());
}
}
resources:
example:
type: azuredevops:Project
properties:
name: Example Project
visibility: private
versionControl: Git
workItemTemplate: Agile
description: Managed by Terraform
exampleRepositoryPolicyMaxPathLength:
type: azuredevops:RepositoryPolicyMaxPathLength
name: example
properties:
projectId: ${example.id}
enabled: true
blocking: true
maxPathLength: 1000
Relevant Links
Create RepositoryPolicyMaxPathLength Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RepositoryPolicyMaxPathLength(name: string, args: RepositoryPolicyMaxPathLengthArgs, opts?: CustomResourceOptions);
@overload
def RepositoryPolicyMaxPathLength(resource_name: str,
args: RepositoryPolicyMaxPathLengthArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RepositoryPolicyMaxPathLength(resource_name: str,
opts: Optional[ResourceOptions] = None,
max_path_length: Optional[int] = None,
project_id: Optional[str] = None,
blocking: Optional[bool] = None,
enabled: Optional[bool] = None,
repository_ids: Optional[Sequence[str]] = None)
func NewRepositoryPolicyMaxPathLength(ctx *Context, name string, args RepositoryPolicyMaxPathLengthArgs, opts ...ResourceOption) (*RepositoryPolicyMaxPathLength, error)
public RepositoryPolicyMaxPathLength(string name, RepositoryPolicyMaxPathLengthArgs args, CustomResourceOptions? opts = null)
public RepositoryPolicyMaxPathLength(String name, RepositoryPolicyMaxPathLengthArgs args)
public RepositoryPolicyMaxPathLength(String name, RepositoryPolicyMaxPathLengthArgs args, CustomResourceOptions options)
type: azuredevops:RepositoryPolicyMaxPathLength
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 RepositoryPolicyMaxPathLengthArgs
- 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 RepositoryPolicyMaxPathLengthArgs
- 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 RepositoryPolicyMaxPathLengthArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RepositoryPolicyMaxPathLengthArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RepositoryPolicyMaxPathLengthArgs
- 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 repositoryPolicyMaxPathLengthResource = new AzureDevOps.RepositoryPolicyMaxPathLength("repositoryPolicyMaxPathLengthResource", new()
{
MaxPathLength = 0,
ProjectId = "string",
Blocking = false,
Enabled = false,
RepositoryIds = new[]
{
"string",
},
});
example, err := azuredevops.NewRepositoryPolicyMaxPathLength(ctx, "repositoryPolicyMaxPathLengthResource", &azuredevops.RepositoryPolicyMaxPathLengthArgs{
MaxPathLength: pulumi.Int(0),
ProjectId: pulumi.String("string"),
Blocking: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
RepositoryIds: pulumi.StringArray{
pulumi.String("string"),
},
})
var repositoryPolicyMaxPathLengthResource = new RepositoryPolicyMaxPathLength("repositoryPolicyMaxPathLengthResource", RepositoryPolicyMaxPathLengthArgs.builder()
.maxPathLength(0)
.projectId("string")
.blocking(false)
.enabled(false)
.repositoryIds("string")
.build());
repository_policy_max_path_length_resource = azuredevops.RepositoryPolicyMaxPathLength("repositoryPolicyMaxPathLengthResource",
max_path_length=0,
project_id="string",
blocking=False,
enabled=False,
repository_ids=["string"])
const repositoryPolicyMaxPathLengthResource = new azuredevops.RepositoryPolicyMaxPathLength("repositoryPolicyMaxPathLengthResource", {
maxPathLength: 0,
projectId: "string",
blocking: false,
enabled: false,
repositoryIds: ["string"],
});
type: azuredevops:RepositoryPolicyMaxPathLength
properties:
blocking: false
enabled: false
maxPathLength: 0
projectId: string
repositoryIds:
- string
RepositoryPolicyMaxPathLength Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The RepositoryPolicyMaxPathLength resource accepts the following input properties:
- Max
Path intLength - Block pushes that introduce paths that exceed the specified length.
- Project
Id string - The ID of the project in which the policy will be created.
- 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
. - Repository
Ids List<string> - Control whether the policy is enabled for the repository or the project. If
repository_ids
not configured, the policy will be set to the project.
- Max
Path intLength - Block pushes that introduce paths that exceed the specified length.
- Project
Id string - The ID of the project in which the policy will be created.
- 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
. - Repository
Ids []string - Control whether the policy is enabled for the repository or the project. If
repository_ids
not configured, the policy will be set to the project.
- max
Path IntegerLength - Block pushes that introduce paths that exceed the specified length.
- project
Id String - The ID of the project in which the policy will be created.
- 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
. - repository
Ids List<String> - Control whether the policy is enabled for the repository or the project. If
repository_ids
not configured, the policy will be set to the project.
- max
Path numberLength - Block pushes that introduce paths that exceed the specified length.
- project
Id string - The ID of the project in which the policy will be created.
- 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
. - repository
Ids string[] - Control whether the policy is enabled for the repository or the project. If
repository_ids
not configured, the policy will be set to the project.
- max_
path_ intlength - Block pushes that introduce paths that exceed the specified length.
- project_
id str - The ID of the project in which the policy will be created.
- 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
. - repository_
ids Sequence[str] - Control whether the policy is enabled for the repository or the project. If
repository_ids
not configured, the policy will be set to the project.
- max
Path NumberLength - Block pushes that introduce paths that exceed the specified length.
- project
Id String - The ID of the project in which the policy will be created.
- 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
. - repository
Ids List<String> - Control whether the policy is enabled for the repository or the project. If
repository_ids
not configured, the policy will be set to the project.
Outputs
All input properties are implicitly available as output properties. Additionally, the RepositoryPolicyMaxPathLength 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 RepositoryPolicyMaxPathLength Resource
Get an existing RepositoryPolicyMaxPathLength 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?: RepositoryPolicyMaxPathLengthState, opts?: CustomResourceOptions): RepositoryPolicyMaxPathLength
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
blocking: Optional[bool] = None,
enabled: Optional[bool] = None,
max_path_length: Optional[int] = None,
project_id: Optional[str] = None,
repository_ids: Optional[Sequence[str]] = None) -> RepositoryPolicyMaxPathLength
func GetRepositoryPolicyMaxPathLength(ctx *Context, name string, id IDInput, state *RepositoryPolicyMaxPathLengthState, opts ...ResourceOption) (*RepositoryPolicyMaxPathLength, error)
public static RepositoryPolicyMaxPathLength Get(string name, Input<string> id, RepositoryPolicyMaxPathLengthState? state, CustomResourceOptions? opts = null)
public static RepositoryPolicyMaxPathLength get(String name, Output<String> id, RepositoryPolicyMaxPathLengthState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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
. - Max
Path intLength - Block pushes that introduce paths that exceed the specified length.
- Project
Id string - The ID of the project in which the policy will be created.
- Repository
Ids List<string> - Control whether the policy is enabled for the repository or the project. If
repository_ids
not configured, the policy will be set to the project.
- 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
. - Max
Path intLength - Block pushes that introduce paths that exceed the specified length.
- Project
Id string - The ID of the project in which the policy will be created.
- Repository
Ids []string - Control whether the policy is enabled for the repository or the project. If
repository_ids
not configured, the policy will be set to the project.
- 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
. - max
Path IntegerLength - Block pushes that introduce paths that exceed the specified length.
- project
Id String - The ID of the project in which the policy will be created.
- repository
Ids List<String> - Control whether the policy is enabled for the repository or the project. If
repository_ids
not configured, the policy will be set to the project.
- 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
. - max
Path numberLength - Block pushes that introduce paths that exceed the specified length.
- project
Id string - The ID of the project in which the policy will be created.
- repository
Ids string[] - Control whether the policy is enabled for the repository or the project. If
repository_ids
not configured, the policy will be set to the project.
- 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
. - max_
path_ intlength - Block pushes that introduce paths that exceed the specified length.
- project_
id str - The ID of the project in which the policy will be created.
- repository_
ids Sequence[str] - Control whether the policy is enabled for the repository or the project. If
repository_ids
not configured, the policy will be set to the project.
- 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
. - max
Path NumberLength - Block pushes that introduce paths that exceed the specified length.
- project
Id String - The ID of the project in which the policy will be created.
- repository
Ids List<String> - Control whether the policy is enabled for the repository or the project. If
repository_ids
not configured, the policy will be set to the project.
Import
Azure DevOps repository policies can be imported using the projectID/policyID or projectName/policyID:
$ pulumi import azuredevops:index/repositoryPolicyMaxPathLength:RepositoryPolicyMaxPathLength 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
azuredevops
Terraform Provider.