AzureDevOpsDscNative.AzDoArtifactFeed.dsc.adaptedResource.json
|
{
"$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json", "type": "AzureDevOpsDscNative/AzDoArtifactFeed", "kind": "resource", "version": "1.1.0", "capabilities": [ "set", "test", "get" ], "description": "DSC resource for managing Azure Artifacts feeds.", "author": "ZanattaMichael", "requireAdapter": "Microsoft.Adapter/PowerShell", "path": "AzureDevOpsDscNative.psd1", "schema": { "embedded": { "description": "DSC resource for managing Azure Artifacts feeds.", "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "AzureDevOpsDscNative/AzDoArtifactFeed", "properties": { "Ensure": { "type": "string", "enum": [ "Present", "Absent" ], "title": "Ensure", "description": "The Ensure property." }, "LookupResult": { "type": "object", "title": "LookupResult", "readOnly": true, "description": "The LookupResult property." }, "FeedName": { "type": "string", "title": "FeedName", "description": "The name of the artifact feed. This property is mandatory and is the key property for the resource." }, "ProjectName": { "type": "string", "title": "ProjectName", "description": "The name of the Azure DevOps project. Optional — when supplied, the feed is project-scoped; when omitted, the feed is organization-scoped." }, "Description": { "type": "string", "title": "Description", "description": "An optional description for the feed." }, "BadgesEnabled": { "type": "boolean", "title": "BadgesEnabled", "description": "Whether to enable badges for the feed. Defaults to $false." }, "HideDeletedPackageVersions": { "type": "boolean", "title": "HideDeletedPackageVersions", "description": "Whether package versions that have been deleted are hidden from feed listings. Defaults to $true." }, "UpstreamEnabled": { "type": "boolean", "title": "UpstreamEnabled", "description": "Whether to enable upstream sources. Defaults to $true." } }, "required": [ "FeedName" ], "type": "object", "additionalProperties": false } } } |