forked from microsoft/PowerPlatformConnectors
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update connector files for new auth method.
- Loading branch information
1 parent
786943d
commit d66fdde
Showing
2 changed files
with
21 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,34 @@ | ||
{ | ||
"properties": { | ||
"capabilities": ["cloud only", "on-prem gateway"], | ||
"capabilities": ["triggers", "actions"], | ||
"connectionParameters": { | ||
"api_key": { | ||
"password": { | ||
"type": "securestring", | ||
"uiDefinition": { | ||
"constraints": { | ||
"clearText": false, | ||
"required": "true", | ||
"tabIndex": 3 | ||
}, | ||
"description": "The password for this api", | ||
"displayName": "password", | ||
"tooltip": "Provide the password" | ||
} | ||
}, | ||
"username": { | ||
"type": "securestring", | ||
"uiDefinition": { | ||
"constraints": { | ||
"clearText": true, | ||
"required": "true", | ||
"tabIndex": 2 | ||
}, | ||
"description": "The API Key for this api", | ||
"displayName": "API Key", | ||
"tooltip": "Provide your API Key" | ||
"description": "The username for this api", | ||
"displayName": "username", | ||
"tooltip": "Provide the username" | ||
} | ||
} | ||
}, | ||
"iconBrandColor": "#27282D" | ||
} | ||
} | ||
} |