ストアドプロシージャ
ストアドプロシージャはファンクションライクなインターフェースで、Trello の単純なSELECT/INSERT/UPDATE/DELETE 処理にとどまらず本製品 の機能を拡張します。
ストアドプロシージャは、パラメータのリストを受け取り、目的の機能を実行し、プロシージャが成功したか失敗したかを示すとともにTrello から関連するレスポンスデータを返します。
CData Cmdlets PowerShell Module for Trello ストアドプロシージャ
Name | Description |
CreateBoards | Create a new board. |
CreateLists | Uploads an attachment to a specific card. Note: Must provide either AttachmentPath, Content/FileName or Url. Every aforementioned input takes precedence over the next one. |
DownloadAttachment | Downloads an attachment from a card. If AttachmentId is not assigned a value, the provider will check how many attachments does the card have, if one it will continue downloading that attachment, if more it will stop and request for an AttachmentId. |
GetOAuthAccessToken | Gets an authentication token from Trello. |
GetOAuthAuthorizationURL | Gets the authorization URL, which must be opened separately by the user to grant access to your application. Only needed when developing Web apps. You will request the OAuthAccessToken from this URL. |
UploadAttachment | Uploads an attachment to a specific card. Note: Must provide either AttachmentPath, Content/FileName or Url. Every aforementioned input takes precedence over the next one. |