azure-native.devcenter.ProjectCatalog
Explore with Pulumi AI
Represents a catalog. Azure REST API version: 2024-02-01.
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview.
Example Usage
ProjectCatalogs_CreateOrUpdateAdo
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var projectCatalog = new AzureNative.DevCenter.ProjectCatalog("projectCatalog", new()
    {
        AdoGit = new AzureNative.DevCenter.Inputs.GitCatalogArgs
        {
            Branch = "main",
            Path = "/templates",
            SecretIdentifier = "https://contosokv.vault.azure.net/secrets/CentralRepoPat",
            Uri = "https://contoso@dev.azure.com/contoso/contosoOrg/_git/centralrepo-fakecontoso",
        },
        CatalogName = "CentralCatalog",
        ProjectName = "DevProject",
        ResourceGroupName = "rg1",
    });
});
package main
import (
	devcenter "github.com/pulumi/pulumi-azure-native-sdk/devcenter/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := devcenter.NewProjectCatalog(ctx, "projectCatalog", &devcenter.ProjectCatalogArgs{
			AdoGit: &devcenter.GitCatalogArgs{
				Branch:           pulumi.String("main"),
				Path:             pulumi.String("/templates"),
				SecretIdentifier: pulumi.String("https://contosokv.vault.azure.net/secrets/CentralRepoPat"),
				Uri:              pulumi.String("https://contoso@dev.azure.com/contoso/contosoOrg/_git/centralrepo-fakecontoso"),
			},
			CatalogName:       pulumi.String("CentralCatalog"),
			ProjectName:       pulumi.String("DevProject"),
			ResourceGroupName: pulumi.String("rg1"),
		})
		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.azurenative.devcenter.ProjectCatalog;
import com.pulumi.azurenative.devcenter.ProjectCatalogArgs;
import com.pulumi.azurenative.devcenter.inputs.GitCatalogArgs;
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 projectCatalog = new ProjectCatalog("projectCatalog", ProjectCatalogArgs.builder()
            .adoGit(GitCatalogArgs.builder()
                .branch("main")
                .path("/templates")
                .secretIdentifier("https://contosokv.vault.azure.net/secrets/CentralRepoPat")
                .uri("https://contoso@dev.azure.com/contoso/contosoOrg/_git/centralrepo-fakecontoso")
                .build())
            .catalogName("CentralCatalog")
            .projectName("DevProject")
            .resourceGroupName("rg1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const projectCatalog = new azure_native.devcenter.ProjectCatalog("projectCatalog", {
    adoGit: {
        branch: "main",
        path: "/templates",
        secretIdentifier: "https://contosokv.vault.azure.net/secrets/CentralRepoPat",
        uri: "https://contoso@dev.azure.com/contoso/contosoOrg/_git/centralrepo-fakecontoso",
    },
    catalogName: "CentralCatalog",
    projectName: "DevProject",
    resourceGroupName: "rg1",
});
import pulumi
import pulumi_azure_native as azure_native
project_catalog = azure_native.devcenter.ProjectCatalog("projectCatalog",
    ado_git={
        "branch": "main",
        "path": "/templates",
        "secret_identifier": "https://contosokv.vault.azure.net/secrets/CentralRepoPat",
        "uri": "https://contoso@dev.azure.com/contoso/contosoOrg/_git/centralrepo-fakecontoso",
    },
    catalog_name="CentralCatalog",
    project_name="DevProject",
    resource_group_name="rg1")
resources:
  projectCatalog:
    type: azure-native:devcenter:ProjectCatalog
    properties:
      adoGit:
        branch: main
        path: /templates
        secretIdentifier: https://contosokv.vault.azure.net/secrets/CentralRepoPat
        uri: https://contoso@dev.azure.com/contoso/contosoOrg/_git/centralrepo-fakecontoso
      catalogName: CentralCatalog
      projectName: DevProject
      resourceGroupName: rg1
ProjectCatalogs_CreateOrUpdateGitHub
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var projectCatalog = new AzureNative.DevCenter.ProjectCatalog("projectCatalog", new()
    {
        CatalogName = "CentralCatalog",
        GitHub = new AzureNative.DevCenter.Inputs.GitCatalogArgs
        {
            Branch = "main",
            Path = "/templates",
            SecretIdentifier = "https://contosokv.vault.azure.net/secrets/CentralRepoPat",
            Uri = "https://github.com/Contoso/centralrepo-fake.git",
        },
        ProjectName = "DevProject",
        ResourceGroupName = "rg1",
    });
});
package main
import (
	devcenter "github.com/pulumi/pulumi-azure-native-sdk/devcenter/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := devcenter.NewProjectCatalog(ctx, "projectCatalog", &devcenter.ProjectCatalogArgs{
			CatalogName: pulumi.String("CentralCatalog"),
			GitHub: &devcenter.GitCatalogArgs{
				Branch:           pulumi.String("main"),
				Path:             pulumi.String("/templates"),
				SecretIdentifier: pulumi.String("https://contosokv.vault.azure.net/secrets/CentralRepoPat"),
				Uri:              pulumi.String("https://github.com/Contoso/centralrepo-fake.git"),
			},
			ProjectName:       pulumi.String("DevProject"),
			ResourceGroupName: pulumi.String("rg1"),
		})
		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.azurenative.devcenter.ProjectCatalog;
import com.pulumi.azurenative.devcenter.ProjectCatalogArgs;
import com.pulumi.azurenative.devcenter.inputs.GitCatalogArgs;
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 projectCatalog = new ProjectCatalog("projectCatalog", ProjectCatalogArgs.builder()
            .catalogName("CentralCatalog")
            .gitHub(GitCatalogArgs.builder()
                .branch("main")
                .path("/templates")
                .secretIdentifier("https://contosokv.vault.azure.net/secrets/CentralRepoPat")
                .uri("https://github.com/Contoso/centralrepo-fake.git")
                .build())
            .projectName("DevProject")
            .resourceGroupName("rg1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const projectCatalog = new azure_native.devcenter.ProjectCatalog("projectCatalog", {
    catalogName: "CentralCatalog",
    gitHub: {
        branch: "main",
        path: "/templates",
        secretIdentifier: "https://contosokv.vault.azure.net/secrets/CentralRepoPat",
        uri: "https://github.com/Contoso/centralrepo-fake.git",
    },
    projectName: "DevProject",
    resourceGroupName: "rg1",
});
import pulumi
import pulumi_azure_native as azure_native
project_catalog = azure_native.devcenter.ProjectCatalog("projectCatalog",
    catalog_name="CentralCatalog",
    git_hub={
        "branch": "main",
        "path": "/templates",
        "secret_identifier": "https://contosokv.vault.azure.net/secrets/CentralRepoPat",
        "uri": "https://github.com/Contoso/centralrepo-fake.git",
    },
    project_name="DevProject",
    resource_group_name="rg1")
resources:
  projectCatalog:
    type: azure-native:devcenter:ProjectCatalog
    properties:
      catalogName: CentralCatalog
      gitHub:
        branch: main
        path: /templates
        secretIdentifier: https://contosokv.vault.azure.net/secrets/CentralRepoPat
        uri: https://github.com/Contoso/centralrepo-fake.git
      projectName: DevProject
      resourceGroupName: rg1
Create ProjectCatalog Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProjectCatalog(name: string, args: ProjectCatalogArgs, opts?: CustomResourceOptions);@overload
def ProjectCatalog(resource_name: str,
                   args: ProjectCatalogArgs,
                   opts: Optional[ResourceOptions] = None)
@overload
def ProjectCatalog(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   project_name: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   ado_git: Optional[GitCatalogArgs] = None,
                   catalog_name: Optional[str] = None,
                   git_hub: Optional[GitCatalogArgs] = None,
                   sync_type: Optional[Union[str, CatalogSyncType]] = None,
                   tags: Optional[Mapping[str, str]] = None)func NewProjectCatalog(ctx *Context, name string, args ProjectCatalogArgs, opts ...ResourceOption) (*ProjectCatalog, error)public ProjectCatalog(string name, ProjectCatalogArgs args, CustomResourceOptions? opts = null)
public ProjectCatalog(String name, ProjectCatalogArgs args)
public ProjectCatalog(String name, ProjectCatalogArgs args, CustomResourceOptions options)
type: azure-native:devcenter:ProjectCatalog
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 ProjectCatalogArgs
- 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 ProjectCatalogArgs
- 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 ProjectCatalogArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectCatalogArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectCatalogArgs
- 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 projectCatalogResource = new AzureNative.DevCenter.ProjectCatalog("projectCatalogResource", new()
{
    ProjectName = "string",
    ResourceGroupName = "string",
    AdoGit = new AzureNative.DevCenter.Inputs.GitCatalogArgs
    {
        Branch = "string",
        Path = "string",
        SecretIdentifier = "string",
        Uri = "string",
    },
    CatalogName = "string",
    GitHub = new AzureNative.DevCenter.Inputs.GitCatalogArgs
    {
        Branch = "string",
        Path = "string",
        SecretIdentifier = "string",
        Uri = "string",
    },
    SyncType = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := devcenter.NewProjectCatalog(ctx, "projectCatalogResource", &devcenter.ProjectCatalogArgs{
	ProjectName:       pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	AdoGit: &devcenter.GitCatalogArgs{
		Branch:           pulumi.String("string"),
		Path:             pulumi.String("string"),
		SecretIdentifier: pulumi.String("string"),
		Uri:              pulumi.String("string"),
	},
	CatalogName: pulumi.String("string"),
	GitHub: &devcenter.GitCatalogArgs{
		Branch:           pulumi.String("string"),
		Path:             pulumi.String("string"),
		SecretIdentifier: pulumi.String("string"),
		Uri:              pulumi.String("string"),
	},
	SyncType: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var projectCatalogResource = new ProjectCatalog("projectCatalogResource", ProjectCatalogArgs.builder()
    .projectName("string")
    .resourceGroupName("string")
    .adoGit(GitCatalogArgs.builder()
        .branch("string")
        .path("string")
        .secretIdentifier("string")
        .uri("string")
        .build())
    .catalogName("string")
    .gitHub(GitCatalogArgs.builder()
        .branch("string")
        .path("string")
        .secretIdentifier("string")
        .uri("string")
        .build())
    .syncType("string")
    .tags(Map.of("string", "string"))
    .build());
project_catalog_resource = azure_native.devcenter.ProjectCatalog("projectCatalogResource",
    project_name="string",
    resource_group_name="string",
    ado_git={
        "branch": "string",
        "path": "string",
        "secret_identifier": "string",
        "uri": "string",
    },
    catalog_name="string",
    git_hub={
        "branch": "string",
        "path": "string",
        "secret_identifier": "string",
        "uri": "string",
    },
    sync_type="string",
    tags={
        "string": "string",
    })
const projectCatalogResource = new azure_native.devcenter.ProjectCatalog("projectCatalogResource", {
    projectName: "string",
    resourceGroupName: "string",
    adoGit: {
        branch: "string",
        path: "string",
        secretIdentifier: "string",
        uri: "string",
    },
    catalogName: "string",
    gitHub: {
        branch: "string",
        path: "string",
        secretIdentifier: "string",
        uri: "string",
    },
    syncType: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:devcenter:ProjectCatalog
properties:
    adoGit:
        branch: string
        path: string
        secretIdentifier: string
        uri: string
    catalogName: string
    gitHub:
        branch: string
        path: string
        secretIdentifier: string
        uri: string
    projectName: string
    resourceGroupName: string
    syncType: string
    tags:
        string: string
ProjectCatalog 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 ProjectCatalog resource accepts the following input properties:
- ProjectName string
- The name of the project.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AdoGit Pulumi.Azure Native. Dev Center. Inputs. Git Catalog 
- Properties for an Azure DevOps catalog type.
- CatalogName string
- The name of the Catalog.
- GitHub Pulumi.Azure Native. Dev Center. Inputs. Git Catalog 
- Properties for a GitHub catalog type.
- SyncType string | Pulumi.Azure Native. Dev Center. Catalog Sync Type 
- Indicates the type of sync that is configured for the catalog.
- Dictionary<string, string>
- Resource tags.
- ProjectName string
- The name of the project.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AdoGit GitCatalog Args 
- Properties for an Azure DevOps catalog type.
- CatalogName string
- The name of the Catalog.
- GitHub GitCatalog Args 
- Properties for a GitHub catalog type.
- SyncType string | CatalogSync Type 
- Indicates the type of sync that is configured for the catalog.
- map[string]string
- Resource tags.
- projectName String
- The name of the project.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- adoGit GitCatalog 
- Properties for an Azure DevOps catalog type.
- catalogName String
- The name of the Catalog.
- gitHub GitCatalog 
- Properties for a GitHub catalog type.
- syncType String | CatalogSync Type 
- Indicates the type of sync that is configured for the catalog.
- Map<String,String>
- Resource tags.
- projectName string
- The name of the project.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- adoGit GitCatalog 
- Properties for an Azure DevOps catalog type.
- catalogName string
- The name of the Catalog.
- gitHub GitCatalog 
- Properties for a GitHub catalog type.
- syncType string | CatalogSync Type 
- Indicates the type of sync that is configured for the catalog.
- {[key: string]: string}
- Resource tags.
- project_name str
- The name of the project.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- ado_git GitCatalog Args 
- Properties for an Azure DevOps catalog type.
- catalog_name str
- The name of the Catalog.
- git_hub GitCatalog Args 
- Properties for a GitHub catalog type.
- sync_type str | CatalogSync Type 
- Indicates the type of sync that is configured for the catalog.
- Mapping[str, str]
- Resource tags.
- projectName String
- The name of the project.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- adoGit Property Map
- Properties for an Azure DevOps catalog type.
- catalogName String
- The name of the Catalog.
- gitHub Property Map
- Properties for a GitHub catalog type.
- syncType String | "Manual" | "Scheduled"
- Indicates the type of sync that is configured for the catalog.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProjectCatalog resource produces the following output properties:
- ConnectionState string
- The connection state of the catalog.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastConnection stringTime 
- When the catalog was last connected.
- LastSync Pulumi.Stats Azure Native. Dev Center. Outputs. Sync Stats Response 
- Stats of the latest synchronization.
- LastSync stringTime 
- When the catalog was last synced.
- Name string
- The name of the resource
- ProvisioningState string
- The provisioning state of the resource.
- SyncState string
- The synchronization state of the catalog.
- SystemData Pulumi.Azure Native. Dev Center. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- ConnectionState string
- The connection state of the catalog.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastConnection stringTime 
- When the catalog was last connected.
- LastSync SyncStats Stats Response 
- Stats of the latest synchronization.
- LastSync stringTime 
- When the catalog was last synced.
- Name string
- The name of the resource
- ProvisioningState string
- The provisioning state of the resource.
- SyncState string
- The synchronization state of the catalog.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- connectionState String
- The connection state of the catalog.
- id String
- The provider-assigned unique ID for this managed resource.
- lastConnection StringTime 
- When the catalog was last connected.
- lastSync SyncStats Stats Response 
- Stats of the latest synchronization.
- lastSync StringTime 
- When the catalog was last synced.
- name String
- The name of the resource
- provisioningState String
- The provisioning state of the resource.
- syncState String
- The synchronization state of the catalog.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- connectionState string
- The connection state of the catalog.
- id string
- The provider-assigned unique ID for this managed resource.
- lastConnection stringTime 
- When the catalog was last connected.
- lastSync SyncStats Stats Response 
- Stats of the latest synchronization.
- lastSync stringTime 
- When the catalog was last synced.
- name string
- The name of the resource
- provisioningState string
- The provisioning state of the resource.
- syncState string
- The synchronization state of the catalog.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- connection_state str
- The connection state of the catalog.
- id str
- The provider-assigned unique ID for this managed resource.
- last_connection_ strtime 
- When the catalog was last connected.
- last_sync_ Syncstats Stats Response 
- Stats of the latest synchronization.
- last_sync_ strtime 
- When the catalog was last synced.
- name str
- The name of the resource
- provisioning_state str
- The provisioning state of the resource.
- sync_state str
- The synchronization state of the catalog.
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- connectionState String
- The connection state of the catalog.
- id String
- The provider-assigned unique ID for this managed resource.
- lastConnection StringTime 
- When the catalog was last connected.
- lastSync Property MapStats 
- Stats of the latest synchronization.
- lastSync StringTime 
- When the catalog was last synced.
- name String
- The name of the resource
- provisioningState String
- The provisioning state of the resource.
- syncState String
- The synchronization state of the catalog.
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
CatalogSyncType, CatalogSyncTypeArgs      
- Manual
- Manual
- Scheduled
- Scheduled
- CatalogSync Type Manual 
- Manual
- CatalogSync Type Scheduled 
- Scheduled
- Manual
- Manual
- Scheduled
- Scheduled
- Manual
- Manual
- Scheduled
- Scheduled
- MANUAL
- Manual
- SCHEDULED
- Scheduled
- "Manual"
- Manual
- "Scheduled"
- Scheduled
GitCatalog, GitCatalogArgs    
- Branch string
- Git branch.
- Path string
- The folder where the catalog items can be found inside the repository.
- SecretIdentifier string
- A reference to the Key Vault secret containing a security token to authenticate to a Git repository.
- Uri string
- Git URI.
- Branch string
- Git branch.
- Path string
- The folder where the catalog items can be found inside the repository.
- SecretIdentifier string
- A reference to the Key Vault secret containing a security token to authenticate to a Git repository.
- Uri string
- Git URI.
- branch String
- Git branch.
- path String
- The folder where the catalog items can be found inside the repository.
- secretIdentifier String
- A reference to the Key Vault secret containing a security token to authenticate to a Git repository.
- uri String
- Git URI.
- branch string
- Git branch.
- path string
- The folder where the catalog items can be found inside the repository.
- secretIdentifier string
- A reference to the Key Vault secret containing a security token to authenticate to a Git repository.
- uri string
- Git URI.
- branch str
- Git branch.
- path str
- The folder where the catalog items can be found inside the repository.
- secret_identifier str
- A reference to the Key Vault secret containing a security token to authenticate to a Git repository.
- uri str
- Git URI.
- branch String
- Git branch.
- path String
- The folder where the catalog items can be found inside the repository.
- secretIdentifier String
- A reference to the Key Vault secret containing a security token to authenticate to a Git repository.
- uri String
- Git URI.
GitCatalogResponse, GitCatalogResponseArgs      
- Branch string
- Git branch.
- Path string
- The folder where the catalog items can be found inside the repository.
- SecretIdentifier string
- A reference to the Key Vault secret containing a security token to authenticate to a Git repository.
- Uri string
- Git URI.
- Branch string
- Git branch.
- Path string
- The folder where the catalog items can be found inside the repository.
- SecretIdentifier string
- A reference to the Key Vault secret containing a security token to authenticate to a Git repository.
- Uri string
- Git URI.
- branch String
- Git branch.
- path String
- The folder where the catalog items can be found inside the repository.
- secretIdentifier String
- A reference to the Key Vault secret containing a security token to authenticate to a Git repository.
- uri String
- Git URI.
- branch string
- Git branch.
- path string
- The folder where the catalog items can be found inside the repository.
- secretIdentifier string
- A reference to the Key Vault secret containing a security token to authenticate to a Git repository.
- uri string
- Git URI.
- branch str
- Git branch.
- path str
- The folder where the catalog items can be found inside the repository.
- secret_identifier str
- A reference to the Key Vault secret containing a security token to authenticate to a Git repository.
- uri str
- Git URI.
- branch String
- Git branch.
- path String
- The folder where the catalog items can be found inside the repository.
- secretIdentifier String
- A reference to the Key Vault secret containing a security token to authenticate to a Git repository.
- uri String
- Git URI.
SyncStatsResponse, SyncStatsResponseArgs      
- Added int
- Count of catalog items added during synchronization.
- Removed int
- Count of catalog items removed during synchronization.
- SynchronizationErrors int
- Count of synchronization errors that occured during synchronization.
- Unchanged int
- Count of catalog items that were unchanged during synchronization.
- Updated int
- Count of catalog items updated during synchronization.
- ValidationErrors int
- Count of catalog items that had validation errors during synchronization.
- SyncedCatalog List<string>Item Types 
- Indicates catalog item types that were synced.
- Added int
- Count of catalog items added during synchronization.
- Removed int
- Count of catalog items removed during synchronization.
- SynchronizationErrors int
- Count of synchronization errors that occured during synchronization.
- Unchanged int
- Count of catalog items that were unchanged during synchronization.
- Updated int
- Count of catalog items updated during synchronization.
- ValidationErrors int
- Count of catalog items that had validation errors during synchronization.
- SyncedCatalog []stringItem Types 
- Indicates catalog item types that were synced.
- added Integer
- Count of catalog items added during synchronization.
- removed Integer
- Count of catalog items removed during synchronization.
- synchronizationErrors Integer
- Count of synchronization errors that occured during synchronization.
- unchanged Integer
- Count of catalog items that were unchanged during synchronization.
- updated Integer
- Count of catalog items updated during synchronization.
- validationErrors Integer
- Count of catalog items that had validation errors during synchronization.
- syncedCatalog List<String>Item Types 
- Indicates catalog item types that were synced.
- added number
- Count of catalog items added during synchronization.
- removed number
- Count of catalog items removed during synchronization.
- synchronizationErrors number
- Count of synchronization errors that occured during synchronization.
- unchanged number
- Count of catalog items that were unchanged during synchronization.
- updated number
- Count of catalog items updated during synchronization.
- validationErrors number
- Count of catalog items that had validation errors during synchronization.
- syncedCatalog string[]Item Types 
- Indicates catalog item types that were synced.
- added int
- Count of catalog items added during synchronization.
- removed int
- Count of catalog items removed during synchronization.
- synchronization_errors int
- Count of synchronization errors that occured during synchronization.
- unchanged int
- Count of catalog items that were unchanged during synchronization.
- updated int
- Count of catalog items updated during synchronization.
- validation_errors int
- Count of catalog items that had validation errors during synchronization.
- synced_catalog_ Sequence[str]item_ types 
- Indicates catalog item types that were synced.
- added Number
- Count of catalog items added during synchronization.
- removed Number
- Count of catalog items removed during synchronization.
- synchronizationErrors Number
- Count of synchronization errors that occured during synchronization.
- unchanged Number
- Count of catalog items that were unchanged during synchronization.
- updated Number
- Count of catalog items updated during synchronization.
- validationErrors Number
- Count of catalog items that had validation errors during synchronization.
- syncedCatalog List<String>Item Types 
- Indicates catalog item types that were synced.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:devcenter:ProjectCatalog CentralCatalog /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevCenter/projects/{projectName}/catalogs/{catalogName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0