Skip to content

AzDoArtifactFeedView

github-actions[bot] edited this page Aug 19, 2026 · 4 revisions

Parameters

Parameter Attribute DataType Description Allowed Values
ProjectName Key System.String
FeedName Required System.String
ViewName Required System.String
Ensure Write Ensure Present, Absent
ViewType Write System.String release, implicit
ViewVisibility Write System.String private, collection, organization, aadTenant
LookupResult Read System.Collections.Hashtable

Description

Manages a named view on an existing feed, including its type (e.g. 'release') and its visibility (e.g. 'private', 'collection', 'organization', 'aadTenant').

Examples

Example 1

This example shows how to create a view on an Azure Artifacts feed.

Configuration Example
{
    Import-DscResource -ModuleName 'AzureDevOpsDscNative'

    node localhost
    {
        AzDoArtifactFeedView 'AddReleaseView'
        {
            Ensure         = 'Present'
            ProjectName    = 'MyProject'
            FeedName       = 'MyFeed'
            ViewName       = 'Release'
            ViewType       = 'release'
            ViewVisibility = 'organization'
        }
    }
}

Commands

Resources

Clone this wiki locally