AzureDevOpsDscNative.AzDoArtifactFeedView.dsc.adaptedResource.json
|
{
"$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json", "type": "AzureDevOpsDscNative/AzDoArtifactFeedView", "kind": "resource", "version": "1.1.0", "capabilities": [ "set", "test", "get" ], "description": "DSC resource for managing a view on an Azure Artifacts feed.", "author": "ZanattaMichael", "requireAdapter": "Microsoft.Adapter/PowerShell", "path": "AzureDevOpsDscNative.psd1", "schema": { "embedded": { "additionalProperties": false, "type": "object", "description": "DSC resource for managing a view on an Azure Artifacts feed.", "title": "AzureDevOpsDscNative/AzDoArtifactFeedView", "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "Ensure": { "type": "string", "enum": [ "Present", "Absent" ], "title": "Ensure", "description": "The Ensure property." }, "LookupResult": { "type": "object", "title": "LookupResult", "readOnly": true, "description": "The LookupResult property." }, "ProjectName": { "type": "string", "title": "ProjectName", "description": "The name of the Azure DevOps project. This property is mandatory and serves as the key property for the resource." }, "FeedName": { "type": "string", "title": "FeedName", "description": "The name of the artifact feed that owns the view. This property is mandatory. The feed itself is managed by the AzDoArtifactFeed resource." }, "ViewName": { "type": "string", "title": "ViewName", "description": "The name of the feed view. This property is mandatory." }, "ViewType": { "type": "string", "enum": [ "release", "implicit" ], "title": "ViewType", "description": "The type of view. Valid values are release and implicit. Defaults to release." }, "ViewVisibility": { "type": "string", "enum": [ "private", "collection", "organization", "aadTenant" ], "title": "ViewVisibility", "description": "Who can see the view. Valid values are private, collection, organization and aadTenant. Defaults to collection." } }, "required": [ "ProjectName", "FeedName", "ViewName" ] } } } |