Skip to content

Commit

Permalink
fix(manifest) Add store-type to integration manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
m8rmclaren committed Sep 27, 2023
1 parent 9d26662 commit 8397fee
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -345,4 +345,6 @@ healthchecksdb
/privkey.pem
/key.pem
/cert.pem
/cert.csr
/cert.csr

*/C:
117 changes: 115 additions & 2 deletions integration-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,120 @@
"supportsReenrollment": false,
"supportsInventory": true,
"platformSupport": "Unused"
}
},
"store_types": [
{
"Name": "Azure Application (Auth)",
"ShortName": "AzureApp",
"Capability": "AzureApp",
"LocalStore": false,
"SupportedOperations": {
"Add": true,
"Create": false,
"Discovery": true,
"Enrollment": false,
"Remove": true
},
"Properties": [
{
"StoreTypeId": 279,
"Name": "ServerUsername",
"DisplayName": "Server Username",
"Type": "Secret",
"DependsOn": "",
"DefaultValue": "",
"Required": false
},
{
"StoreTypeId": 279,
"Name": "ServerPassword",
"DisplayName": "Server Password",
"Type": "Secret",
"DependsOn": "",
"DefaultValue": "",
"Required": false
},
{
"StoreTypeId": 279,
"Name": "ServerUseSsl",
"DisplayName": "Use SSL",
"Type": "Bool",
"DependsOn": "",
"DefaultValue": "true",
"Required": true
}
],
"EntryParameters": [],
"PasswordOptions": {
"EntrySupported": false,
"StoreRequired": false,
"Style": "Default"
},
"PrivateKeyAllowed": "Forbidden",
"JobProperties": [],
"ServerRequired": true,
"PowerShell": false,
"BlueprintAllowed": false,
"CustomAliasAllowed": "Required"
},
{
{
"Name": "Azure Service Principal (SSO/SAML)",
"ShortName": "AzureSP",
"Capability": "AzureSP",
"LocalStore": false,
"SupportedOperations": {
"Add": true,
"Create": false,
"Discovery": true,
"Enrollment": false,
"Remove": true
},
"Properties": [
{
"StoreTypeId": 280,
"Name": "ServerUsername",
"DisplayName": "Server Username",
"Type": "Secret",
"DependsOn": "",
"DefaultValue": "",
"Required": false
},
{
"StoreTypeId": 280,
"Name": "ServerPassword",
"DisplayName": "Server Password",
"Type": "Secret",
"DependsOn": "",
"DefaultValue": "",
"Required": false
},
{
"StoreTypeId": 280,
"Name": "ServerUseSsl",
"DisplayName": "Use SSL",
"Type": "Bool",
"DependsOn": "",
"DefaultValue": "true",
"Required": true
}
],
"EntryParameters": [],
"PasswordOptions": {
"EntrySupported": false,
"StoreRequired": false,
"Style": "Default"
},
"PrivateKeyAllowed": "Required",
"JobProperties": [],
"ServerRequired": true,
"PowerShell": false,
"BlueprintAllowed": false,
"CustomAliasAllowed": "Required"
},
}
]
}
}
},
"release_dir": ""
}

0 comments on commit 8397fee

Please sign in to comment.