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
    The name of the Azure DevOps project. This property is mandatory and serves as the key property for the resource.
 
.PARAMETER FeedName
    Required - System.String
    The name of the artifact feed that owns the view. This property is mandatory. The feed itself is managed by the AzDoArtifactFeed resource.
 
.PARAMETER ViewName
    Required - System.String
    The name of the feed view. This property is mandatory.
 
.PARAMETER ViewType
    Write - System.String
    Allowed values: release, implicit
    The type of view. Valid values are release and implicit. Defaults to release.
 
.PARAMETER ViewVisibility
    Write - System.String
    Allowed values: private, collection, organization, aadTenant
    Who can see the view. Valid values are private, collection, organization and aadTenant. Defaults to collection.
 
.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'
        }
    }
}