azuredevops.getRepositories
Explore with Pulumi AI
Use this data source to access information about multiple existing Git Repositories within Azure DevOps.
To read informations about a single Git Repository use the data source azuredevops.Git
Relevant Links
Example Usage
using System.Collections.Generic;
using Pulumi;
using AzureDevOps = Pulumi.AzureDevOps;
return await Deployment.RunAsync(() =>
{
var example = AzureDevOps.GetProject.Invoke(new()
{
Name = "Example Project",
});
var example_all_repos = AzureDevOps.GetRepositories.Invoke(new()
{
ProjectId = example.Apply(getProjectResult => getProjectResult.Id),
IncludeHidden = true,
});
var example_single_repo = AzureDevOps.GetRepositories.Invoke(new()
{
ProjectId = example.Apply(getProjectResult => getProjectResult.Id),
Name = "Example Repository",
});
});
package main
import (
"github.com/pulumi/pulumi-azuredevops/sdk/v2/go/azuredevops"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := azuredevops.LookupProject(ctx, &azuredevops.LookupProjectArgs{
Name: pulumi.StringRef("Example Project"),
}, nil)
if err != nil {
return err
}
_, err = azuredevops.GetRepositories(ctx, &azuredevops.GetRepositoriesArgs{
ProjectId: pulumi.StringRef(example.Id),
IncludeHidden: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
_, err = azuredevops.GetRepositories(ctx, &azuredevops.GetRepositoriesArgs{
ProjectId: pulumi.StringRef(example.Id),
Name: pulumi.StringRef("Example Repository"),
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azuredevops.AzuredevopsFunctions;
import com.pulumi.azuredevops.inputs.GetProjectArgs;
import com.pulumi.azuredevops.inputs.GetRepositoriesArgs;
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) {
final var example = AzuredevopsFunctions.getProject(GetProjectArgs.builder()
.name("Example Project")
.build());
final var example-all-repos = AzuredevopsFunctions.getRepositories(GetRepositoriesArgs.builder()
.projectId(example.applyValue(getProjectResult -> getProjectResult.id()))
.includeHidden(true)
.build());
final var example-single-repo = AzuredevopsFunctions.getRepositories(GetRepositoriesArgs.builder()
.projectId(example.applyValue(getProjectResult -> getProjectResult.id()))
.name("Example Repository")
.build());
}
}
import pulumi
import pulumi_azuredevops as azuredevops
example = azuredevops.get_project(name="Example Project")
example_all_repos = azuredevops.get_repositories(project_id=example.id,
include_hidden=True)
example_single_repo = azuredevops.get_repositories(project_id=example.id,
name="Example Repository")
import * as pulumi from "@pulumi/pulumi";
import * as azuredevops from "@pulumi/azuredevops";
const example = azuredevops.getProject({
name: "Example Project",
});
const example-all-repos = example.then(example => azuredevops.getRepositories({
projectId: example.id,
includeHidden: true,
}));
const example-single-repo = example.then(example => azuredevops.getRepositories({
projectId: example.id,
name: "Example Repository",
}));
variables:
example:
fn::invoke:
Function: azuredevops:getProject
Arguments:
name: Example Project
example-all-repos:
fn::invoke:
Function: azuredevops:getRepositories
Arguments:
projectId: ${example.id}
includeHidden: true
example-single-repo:
fn::invoke:
Function: azuredevops:getRepositories
Arguments:
projectId: ${example.id}
name: Example Repository
Using getRepositories
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getRepositories(args: GetRepositoriesArgs, opts?: InvokeOptions): Promise<GetRepositoriesResult>
function getRepositoriesOutput(args: GetRepositoriesOutputArgs, opts?: InvokeOptions): Output<GetRepositoriesResult>
def get_repositories(include_hidden: Optional[bool] = None,
name: Optional[str] = None,
project_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetRepositoriesResult
def get_repositories_output(include_hidden: Optional[pulumi.Input[bool]] = None,
name: Optional[pulumi.Input[str]] = None,
project_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetRepositoriesResult]
func GetRepositories(ctx *Context, args *GetRepositoriesArgs, opts ...InvokeOption) (*GetRepositoriesResult, error)
func GetRepositoriesOutput(ctx *Context, args *GetRepositoriesOutputArgs, opts ...InvokeOption) GetRepositoriesResultOutput
> Note: This function is named GetRepositories
in the Go SDK.
public static class GetRepositories
{
public static Task<GetRepositoriesResult> InvokeAsync(GetRepositoriesArgs args, InvokeOptions? opts = null)
public static Output<GetRepositoriesResult> Invoke(GetRepositoriesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetRepositoriesResult> getRepositories(GetRepositoriesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: azuredevops:index/getRepositories:getRepositories
arguments:
# arguments dictionary
The following arguments are supported:
- bool
- name str
Name of the Git repository to retrieve; requires
project_id
to be specified as well- project_
id str ID of project to list Git repositories
getRepositories Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Repositories
List<Pulumi.
Azure Dev Ops. Outputs. Get Repositories Repository> A list of existing projects in your Azure DevOps Organization with details about every project which includes:
- bool
- Name string
Git repository name.
- Project
Id string Project identifier to which the Git repository belongs.
- Id string
The provider-assigned unique ID for this managed resource.
- Repositories
[]Get
Repositories Repository A list of existing projects in your Azure DevOps Organization with details about every project which includes:
- bool
- Name string
Git repository name.
- Project
Id string Project identifier to which the Git repository belongs.
- id String
The provider-assigned unique ID for this managed resource.
- repositories
List<Get
Repositories Repository> A list of existing projects in your Azure DevOps Organization with details about every project which includes:
- Boolean
- name String
Git repository name.
- project
Id String Project identifier to which the Git repository belongs.
- id string
The provider-assigned unique ID for this managed resource.
- repositories
Get
Repositories Repository[] A list of existing projects in your Azure DevOps Organization with details about every project which includes:
- boolean
- name string
Git repository name.
- project
Id string Project identifier to which the Git repository belongs.
- id str
The provider-assigned unique ID for this managed resource.
- repositories
Sequence[Get
Repositories Repository] A list of existing projects in your Azure DevOps Organization with details about every project which includes:
- bool
- name str
Git repository name.
- project_
id str Project identifier to which the Git repository belongs.
- id String
The provider-assigned unique ID for this managed resource.
- repositories List<Property Map>
A list of existing projects in your Azure DevOps Organization with details about every project which includes:
- Boolean
- name String
Git repository name.
- project
Id String Project identifier to which the Git repository belongs.
Supporting Types
GetRepositoriesRepository
- Default
Branch string The ref of the default branch.
- Id string
Git repository identifier.
- Name string
Name of the Git repository to retrieve; requires
project_id
to be specified as well- Project
Id string ID of project to list Git repositories
- Remote
Url string HTTPS Url to clone the Git repository
- Size int
Compressed size (bytes) of the repository.
- Ssh
Url string SSH Url to clone the Git repository
- Url string
Details REST API endpoint for the Git Repository.
- Web
Url string Url of the Git repository web view
- Default
Branch string The ref of the default branch.
- Id string
Git repository identifier.
- Name string
Name of the Git repository to retrieve; requires
project_id
to be specified as well- Project
Id string ID of project to list Git repositories
- Remote
Url string HTTPS Url to clone the Git repository
- Size int
Compressed size (bytes) of the repository.
- Ssh
Url string SSH Url to clone the Git repository
- Url string
Details REST API endpoint for the Git Repository.
- Web
Url string Url of the Git repository web view
- default
Branch String The ref of the default branch.
- id String
Git repository identifier.
- name String
Name of the Git repository to retrieve; requires
project_id
to be specified as well- project
Id String ID of project to list Git repositories
- remote
Url String HTTPS Url to clone the Git repository
- size Integer
Compressed size (bytes) of the repository.
- ssh
Url String SSH Url to clone the Git repository
- url String
Details REST API endpoint for the Git Repository.
- web
Url String Url of the Git repository web view
- default
Branch string The ref of the default branch.
- id string
Git repository identifier.
- name string
Name of the Git repository to retrieve; requires
project_id
to be specified as well- project
Id string ID of project to list Git repositories
- remote
Url string HTTPS Url to clone the Git repository
- size number
Compressed size (bytes) of the repository.
- ssh
Url string SSH Url to clone the Git repository
- url string
Details REST API endpoint for the Git Repository.
- web
Url string Url of the Git repository web view
- default_
branch str The ref of the default branch.
- id str
Git repository identifier.
- name str
Name of the Git repository to retrieve; requires
project_id
to be specified as well- project_
id str ID of project to list Git repositories
- remote_
url str HTTPS Url to clone the Git repository
- size int
Compressed size (bytes) of the repository.
- ssh_
url str SSH Url to clone the Git repository
- url str
Details REST API endpoint for the Git Repository.
- web_
url str Url of the Git repository web view
- default
Branch String The ref of the default branch.
- id String
Git repository identifier.
- name String
Name of the Git repository to retrieve; requires
project_id
to be specified as well- project
Id String ID of project to list Git repositories
- remote
Url String HTTPS Url to clone the Git repository
- size Number
Compressed size (bytes) of the repository.
- ssh
Url String SSH Url to clone the Git repository
- url String
Details REST API endpoint for the Git Repository.
- web
Url String Url of the Git repository web view
Package Details
- Repository
- Azure DevOps pulumi/pulumi-azuredevops
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azuredevops
Terraform Provider.