Skip to content

Commit

Permalink
Merge pull request #1302 from QuinnMcHugh/master
Browse files Browse the repository at this point in the history
CreateUiDefinition: added ServicePrincipalSelector
  • Loading branch information
anthony-c-martin authored Nov 4, 2020
2 parents c1ef74a + b315e30 commit 91952bf
Showing 1 changed file with 106 additions and 0 deletions.
106 changes: 106 additions & 0 deletions schemas/0.1.2-preview/CreateUIDefinition.CommonControl.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
},
{
"$ref": "#/definitions/Microsoft.Common.EditableGrid"
},
{
"$ref": "#/definitions/Microsoft.Common.ServicePrincipalSelector"
}
],
"definitions": {
Expand Down Expand Up @@ -974,6 +977,109 @@
"ariaLabel",
"constraints"
]
},
"Microsoft.Common.ServicePrincipalSelector": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"Microsoft.Common.ServicePrincipalSelector"
]
},
"label": {
"type": "object",
"properties": {
"principalId": {
"type": "string"
},
"password": {
"type": "string"
},
"certificateThumbprint": {
"type": "string"
},
"authenticationType": {
"type": "string"
},
"sectionHeader": {
"type": "string"
}
}
},
"toolTip": {
"type": "object",
"properties": {
"principalId": {
"type": "string"
},
"password": {
"type": "string"
},
"certificateThumbprint": {
"type": "string"
},
"authenticationType": {
"type": "string"
}
}
},
"defaultValue": {
"type": "object",
"properties": {
"principalId": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"visible": {
"type": [
"boolean",
"string"
]
},
"options": {
"type": "object",
"properties": {
"hideCertificate": {
"type": [
"boolean",
"string"
]
}
},
"additionalProperties": false
},
"constraints": {
"type": "object",
"properties": {
"required": {
"type": [
"boolean",
"string"
]
},
"regex": {
"type": "string"
},
"validationMessage": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"required": [
"name",
"type"
]
}
}
}

0 comments on commit 91952bf

Please sign in to comment.