-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Initial commit SigmaConsoCR connector #971
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
22dc70b
Updates for LMS365 connector (#851)
elearningforce-ag cdad077
Merge branch 'dev'
mamurshe 55dca50
Merge branch 'dev'
mamurshe adadd30
Merge branch 'dev'
mamurshe 998fa8d
Merge remote-tracking branch 'upstream/master' into dev
evaristovidal ab7ce1d
Sigma Conso initial commit
evaristovidal 9e1737d
SigmaConsoCR: Modification in the readme file.
tve-sigmaconso 9d2ffa7
Merge branch 'microsoft:dev' into dev
tve-sigmaconso 47bbf27
SigmaConsoCR: Fixes in descriptions and hosturl (#971)
tve-sigmaconso File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
290 changes: 290 additions & 0 deletions
290
certified-connectors/SigmaConsoCR/apiDefinition.swagger.json
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,290 @@ | ||
| { | ||
| "swagger": "2.0", | ||
| "info": { | ||
| "title": "Sigma Conso CR", | ||
| "description": "Sigma Conso Consolidation & Reporting Connector provides a set of APIs to interact with your Consolidation & Reporting instances. Easily transfer data, trigger actions and automate workflows in Sigma Conso. Go beyond the limits of traditional CPM solutions.", | ||
| "version": "1.0", | ||
| "contact": { | ||
| "name": "Sigma Conso", | ||
| "url": "https://www.sigmaconso.com/", | ||
| "email": "support@sigmaconso.com" | ||
| } | ||
| }, | ||
| "host": "yourhost.yourdomain.com", | ||
| "basePath": "/", | ||
| "schemes": [ | ||
| "https" | ||
| ], | ||
| "consumes": [], | ||
| "produces": [], | ||
| "paths": { | ||
| "/api/job/process": { | ||
| "post": { | ||
| "responses": { | ||
| "200": { | ||
| "description": "default", | ||
| "schema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "Message": { | ||
| "type": "string", | ||
| "description": "Message" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "summary": "Run a process", | ||
| "description": "Run a process", | ||
| "operationId": "Processjob", | ||
| "parameters": [ | ||
| { | ||
| "name": "ApplicationURL", | ||
| "in": "query", | ||
| "required": true, | ||
| "type": "string", | ||
| "description": "Enter the application url.", | ||
| "x-ms-summary": "Enter the application url." | ||
| }, | ||
| { | ||
| "name": "body", | ||
| "in": "body", | ||
| "required": true, | ||
| "schema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "Process": { | ||
| "type": "string", | ||
| "description": "Process" | ||
| }, | ||
| "Action": { | ||
| "type": "string", | ||
| "description": "Action" | ||
| }, | ||
| "CustomerCode": { | ||
| "type": "string", | ||
| "description": "Customer code" | ||
| }, | ||
| "WaitForResult": { | ||
| "type": "boolean", | ||
| "description": "Wait for the result." | ||
| } | ||
| }, | ||
| "required": [ | ||
| "Process", | ||
| "Action", | ||
| "CustomerCode" | ||
| ] | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| }, | ||
| "/api/job/consolidation": { | ||
| "post": { | ||
| "responses": { | ||
| "200": { | ||
| "description": "default", | ||
| "schema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "Message": { | ||
| "type": "string", | ||
| "description": "Message" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "summary": "Consolidation", | ||
| "description": "Run a consolidation job", | ||
| "operationId": "Consolidationjob", | ||
| "parameters": [ | ||
| { | ||
| "name": "ApplicationURL", | ||
| "in": "query", | ||
| "required": true, | ||
| "type": "string", | ||
| "description": "Enter the application url.", | ||
| "x-ms-summary": "Enter the application url." | ||
| }, | ||
| { | ||
| "name": "body", | ||
| "in": "body", | ||
| "required": true, | ||
| "schema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "ConsoCode": { | ||
| "type": "string", | ||
| "description": "Consocode" | ||
| }, | ||
| "CustomerCode": { | ||
| "type": "string", | ||
| "description": "Customer code" | ||
| }, | ||
| "WaitForResult": { | ||
| "type": "boolean", | ||
| "description": "Wait for the result." | ||
| } | ||
| }, | ||
| "required": [ | ||
| "ConsoCode", | ||
| "CustomerCode" | ||
| ] | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| }, | ||
| "/api/job/scheduledjob": { | ||
| "post": { | ||
| "responses": { | ||
| "200": { | ||
| "description": "default", | ||
| "schema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "Message": { | ||
| "type": "string", | ||
| "description": "Message" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "summary": "Scheduled job", | ||
| "description": "Run a scheduled job", | ||
| "operationId": "Scheduledjob", | ||
| "parameters": [ | ||
| { | ||
| "name": "ApplicationURL", | ||
| "in": "query", | ||
| "required": true, | ||
| "type": "string", | ||
| "description": "Enter the application url.", | ||
| "x-ms-summary": "Enter the application url." | ||
| }, | ||
| { | ||
| "name": "body", | ||
| "in": "body", | ||
| "required": true, | ||
| "schema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "JobScheduleName": { | ||
| "type": "string", | ||
| "description": "JobSchedule name" | ||
| }, | ||
| "CustomerCode": { | ||
| "type": "string", | ||
| "description": "Customer code" | ||
| }, | ||
| "WaitForResult": { | ||
| "type": "boolean", | ||
| "description": "Wait for the result." | ||
| } | ||
| }, | ||
| "required": [ | ||
| "JobScheduleName", | ||
| "CustomerCode" | ||
| ] | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| }, | ||
| "/api/hub/import": { | ||
| "post": { | ||
| "responses": { | ||
| "200": { | ||
| "description": "default", | ||
| "schema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "Message": { | ||
| "type": "string", | ||
| "description": "Message" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "summary": "Import file", | ||
| "description": "Import a csv or xlsx file", | ||
| "operationId": "ImportFile", | ||
| "parameters": [ | ||
| { | ||
| "name": "ApplicationURL", | ||
| "in": "query", | ||
| "required": true, | ||
| "type": "string", | ||
| "description": "Enter the application url.", | ||
| "x-ms-summary": "Enter the application url." | ||
| }, | ||
| { | ||
| "name": "body", | ||
| "in": "body", | ||
| "required": true, | ||
| "schema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "ImportStructureCode": { | ||
| "type": "string", | ||
| "description": "Importstructure code" | ||
| }, | ||
| "CustomerCode": { | ||
| "type": "string", | ||
| "description": "Customer code" | ||
| }, | ||
| "Base64File": { | ||
| "type": "string", | ||
| "description": "The file in base64 format." | ||
| }, | ||
| "WaitForResult": { | ||
| "type": "boolean", | ||
| "description": "Wait for the result." | ||
| } | ||
| }, | ||
| "required": [ | ||
| "ImportStructureCode", | ||
| "Base64File", | ||
| "CustomerCode" | ||
| ] | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| }, | ||
| "x-ms-connector-metadata": [ | ||
| { | ||
| "propertyName": "Website", | ||
| "propertyValue": "https://www.sigmaconso.com/" | ||
| }, | ||
| { | ||
| "propertyName": "Privacy policy", | ||
| "propertyValue": "https://www.sigmaconso.com/en/security-and-privacy-policy/" | ||
| }, | ||
| { | ||
| "propertyName": "Categories", | ||
| "propertyValue": "Finance" | ||
| } | ||
| ], | ||
| "definitions": {}, | ||
| "parameters": {}, | ||
| "responses": {}, | ||
| "securityDefinitions": { | ||
| "API Key": { | ||
| "type": "apiKey", | ||
| "in": "header", | ||
| "name": "x-sigma-api-key" | ||
| } | ||
| }, | ||
| "security": [ | ||
| { | ||
| "API Key": [] | ||
| } | ||
| ], | ||
| "tags": [] | ||
| } | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| { | ||
| "properties": { | ||
| "connectionParameters": { | ||
| "api_key": { | ||
| "type": "securestring", | ||
| "uiDefinition": { | ||
| "displayName": "API Key", | ||
| "description": "The API Key for this api", | ||
| "tooltip": "Provide your API Key", | ||
| "constraints": { | ||
| "tabIndex": 2, | ||
| "clearText": false, | ||
| "required": "true" | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "iconBrandColor": "#000000", | ||
| "capabilities": [], | ||
| "stackOwner": "Sigma Conso", | ||
| "policyTemplateInstances": [ | ||
| { | ||
| "templateId": "dynamichosturl", | ||
| "title": "SetHostURL", | ||
| "parameters": { | ||
| "x-ms-apimTemplateParameter.urlTemplate": "https://@queryParameters('ApplicationURL')/", | ||
| "x-ms-apimTemplate-operationName": [ | ||
| "Processjob", | ||
| "Consolidationjob", | ||
| "Scheduledjob", | ||
| "ImportFile" | ||
| ] | ||
| } | ||
| } | ||
| ], | ||
| "publisher": "Sigma Conso" | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| # SigmaConsoCR | ||
|
|
||
| Sigma Conso Consolidation & Reporting Connector provides a set of API to interact with your Consolidation & Reporting instances. Easily transfer data, trigger actions, automate workflows in Sigma Conso. Go beyond the limits of traditional CPM solutions. | ||
|
|
||
| ## Pre-requisites | ||
|
|
||
| You will need the following to make use of the connector: | ||
|
|
||
| - A Microsoft Power Automate plan | ||
| - Access to a a Sigma Conso Consolidation & Reporting application. More info: https://www.sigmaconso.com/ | ||
|
|
||
| ## Supported Operations | ||
|
|
||
| - `Run a process`: Start a process task at the given step. | ||
| - `Consolidation`: Start a consolidation task. | ||
| - `Scheduled job`: Start an existing scheduled job. | ||
| - `Import file`: Import a file, making use of the given importstructure. | ||
|
|
||
| ## Application access | ||
|
|
||
| The connector makes use of api secrets to connect to the application. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.