en-US/about_AzDoArtifactFeedView.help.txt

.NAME
    AzDoArtifactFeedView
 
.SYNOPSIS
    DSC resource for managing a view on an Azure Artifacts feed.
 
.DESCRIPTION
    Manages a named view on an existing feed, including its type (e.g. 'release') and its visibility
    (e.g. 'private', 'collection', 'organization', 'aadTenant').
 
.PARAMETER ProjectName
    Key - System.String
 
.PARAMETER FeedName
    Required - System.String
 
.PARAMETER ViewName
    Required - System.String
 
.PARAMETER ViewType
    Write - System.String
    Allowed values: release, implicit
 
.PARAMETER ViewVisibility
    Write - System.String
    Allowed values: private, collection, organization, aadTenant
 
.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'
        }
    }
}