AzureDevOpsDscNative.AzDoServiceConnection.dsc.adaptedResource.json
|
{
"$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json", "type": "AzureDevOpsDscNative/AzDoServiceConnection", "kind": "resource", "version": "1.1.0", "capabilities": [ "set", "test", "get" ], "description": "DSC resource for managing Azure DevOps service connections.", "author": "ZanattaMichael", "requireAdapter": "Microsoft.Adapter/PowerShell", "path": "AzureDevOpsDscNative.psd1", "schema": { "embedded": { "additionalProperties": false, "type": "object", "description": "DSC resource for managing Azure DevOps service connections.", "title": "AzureDevOpsDscNative/AzDoServiceConnection", "$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 a key property for the resource." }, "ConnectionName": { "type": "string", "title": "ConnectionName", "description": "The name of the service connection. This is a key property." }, "ConnectionType": { "type": "string", "title": "ConnectionType", "description": "The type of service connection (e.g., AzureRM, GitHub, Kubernetes). This is a mandatory property." }, "Description": { "type": "string", "title": "Description", "description": "An optional description for the service connection." }, "AllowAllPipelines": { "type": "boolean", "title": "AllowAllPipelines", "description": "Whether all pipelines can use this service connection. Defaults to $false." }, "Authorization": { "type": "object", "title": "Authorization", "description": "A hashtable of authorization parameters specific to the connection type." }, "Data": { "type": "object", "title": "Data", "description": "A hashtable of additional data parameters specific to the connection type." } }, "required": [ "ProjectName", "ConnectionName", "ConnectionType" ] } } } |