3.2.0 • Published 1 year ago

@cosmotech/api v3.2.0

Weekly downloads
-
License
MIT License
Repository
-
Last release
1 year ago

@cosmotech/api

CosmotechApi - JavaScript client for @cosmotech/api Cosmo Tech Platform API This SDK is automatically generated by the OpenAPI Generator project:

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install @cosmotech/api --save

Finally, you need to build the module:

npm run build
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

To use the link you just defined in your project, switch to the directory you want to use your @cosmotech/api from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

Finally, you need to build the module:

npm run build

git

If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var CosmotechApi = require('@cosmotech/api');

var defaultClient = CosmotechApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: oAuth2AuthCode
var oAuth2AuthCode = defaultClient.authentications['oAuth2AuthCode'];
oAuth2AuthCode.accessToken = "YOUR ACCESS TOKEN"

var api = new CosmotechApi.ConnectorApi()
var opts = {
  'page': 56, // {Number} page number to query
  'size': 56 // {Number} amount of result by page
};
api.findAllConnectors(opts).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});

Documentation for API Endpoints

All URIs are relative to https://dev.api.cosmotech.com

ClassMethodHTTP requestDescription
CosmotechApi.ConnectorApifindAllConnectorsGET /connectorsList all Connectors
CosmotechApi.ConnectorApifindConnectorByIdGET /connectors/{connector_id}Get the details of a connector
CosmotechApi.ConnectorApifindConnectorByNameGET /connectors/name/{connector_name}Get the details of a connector
CosmotechApi.ConnectorApiregisterConnectorPOST /connectorsRegister a new connector
CosmotechApi.ConnectorApiunregisterConnectorDELETE /connectors/{connector_id}Unregister a connector
CosmotechApi.DatasetApiaddDatasetAccessControlPOST /organizations/{organization_id}/datasets/{dataset_id}/security/accessAdd a control access to the Dataset
CosmotechApi.DatasetApiaddOrReplaceDatasetCompatibilityElementsPOST /organizations/{organization_id}/datasets/{dataset_id}/compatibilityAdd Dataset Compatibility elements.
CosmotechApi.DatasetApicopyDatasetPOST /organizations/{organization_id}/datasets/copyCopy a Dataset to another Dataset.
CosmotechApi.DatasetApicreateDatasetPOST /organizations/{organization_id}/datasetsCreate a new Dataset
CosmotechApi.DatasetApicreateSubDatasetPOST /organizations/{organization_id}/datasets/{dataset_id}/subdatasetCreate a sub-dataset from the dataset in parameter
CosmotechApi.DatasetApicreateTwingraphEntitiesPOST /organizations/{organization_id}/datasets/{dataset_id}/twingraph/{type}Create new entities in a graph instance
CosmotechApi.DatasetApideleteDatasetDELETE /organizations/{organization_id}/datasets/{dataset_id}Delete a dataset
CosmotechApi.DatasetApideleteTwingraphEntitiesDELETE /organizations/{organization_id}/datasets/{dataset_id}/twingraph/{type}Delete entities in a graph instance
CosmotechApi.DatasetApidownloadTwingraphGET /organizations/{organization_id}/datasets/twingraph/download/{hash}Download a graph as a zip file
CosmotechApi.DatasetApifindAllDatasetsGET /organizations/{organization_id}/datasetsList all Datasets
CosmotechApi.DatasetApifindDatasetByIdGET /organizations/{organization_id}/datasets/{dataset_id}Get the details of a Dataset
CosmotechApi.DatasetApigetDatasetAccessControlGET /organizations/{organization_id}/datasets/{dataset_id}/security/access/{identity_id}Get a control access for the Dataset
CosmotechApi.DatasetApigetDatasetSecurityGET /organizations/{organization_id}/datasets/{dataset_id}/securityGet the Dataset security information
CosmotechApi.DatasetApigetDatasetSecurityUsersGET /organizations/{organization_id}/datasets/{dataset_id}/security/usersGet the Dataset security users list
CosmotechApi.DatasetApigetDatasetTwingraphStatusGET /organizations/{organization_id}/datasets/{dataset_id}/statusGet the dataset's refresh job status
CosmotechApi.DatasetApigetTwingraphEntitiesGET /organizations/{organization_id}/datasets/{dataset_id}/twingraph/{type}Get entities in a graph instance
CosmotechApi.DatasetApilinkWorkspacePOST /organizations/{organization_id}/datasets/{dataset_id}/link
CosmotechApi.DatasetApirefreshDatasetPOST /organizations/{organization_id}/datasets/{dataset_id}/refreshRefresh data on dataset from dataset's source
CosmotechApi.DatasetApiremoveAllDatasetCompatibilityElementsDELETE /organizations/{organization_id}/datasets/{dataset_id}/compatibilityRemove all Dataset Compatibility elements from the Dataset specified
CosmotechApi.DatasetApiremoveDatasetAccessControlDELETE /organizations/{organization_id}/datasets/{dataset_id}/security/access/{identity_id}Remove the specified access from the given Dataset
CosmotechApi.DatasetApirollbackRefreshPOST /organizations/{organization_id}/datasets/{dataset_id}/refresh/rollbackRollback the dataset after a failed refresh
CosmotechApi.DatasetApisearchDatasetsPOST /organizations/{organization_id}/datasets/searchSearch Datasets by tags
CosmotechApi.DatasetApisetDatasetDefaultSecurityPOST /organizations/{organization_id}/datasets/{dataset_id}/security/defaultSet the Dataset default security
CosmotechApi.DatasetApitwingraphBatchQueryPOST /organizations/{organization_id}/datasets/{dataset_id}/batch-queryRun a query on a graph instance and return the result as a zip file in async mode
CosmotechApi.DatasetApitwingraphBatchUpdatePOST /organizations/{organization_id}/datasets/{dataset_id}/batchAsync batch update by loading a CSV file on a graph instance
CosmotechApi.DatasetApitwingraphQueryPOST /organizations/{organization_id}/datasets/{dataset_id}/twingraphReturn the result of a query made on the graph instance as a json
CosmotechApi.DatasetApiunlinkWorkspacePOST /organizations/{organization_id}/datasets/{dataset_id}/unlink
CosmotechApi.DatasetApiupdateDatasetPATCH /organizations/{organization_id}/datasets/{dataset_id}Update a dataset
CosmotechApi.DatasetApiupdateDatasetAccessControlPATCH /organizations/{organization_id}/datasets/{dataset_id}/security/access/{identity_id}Update the specified access to User for a Dataset
CosmotechApi.DatasetApiupdateTwingraphEntitiesPATCH /organizations/{organization_id}/datasets/{dataset_id}/twingraph/{type}Update entities in a graph instance
CosmotechApi.DatasetApiuploadTwingraphPOST /organizations/{organization_id}/datasets/{dataset_id}Upload data from zip file to dataset's twingraph
CosmotechApi.OrganizationApiaddOrganizationAccessControlPOST /organizations/{organization_id}/security/accessAdd a control access to the Organization
CosmotechApi.OrganizationApifindAllOrganizationsGET /organizationsList all Organizations
CosmotechApi.OrganizationApifindOrganizationByIdGET /organizations/{organization_id}Get the details of an Organization
CosmotechApi.OrganizationApigetAllPermissionsGET /organizations/permissionsGet all permissions per components
CosmotechApi.OrganizationApigetOrganizationAccessControlGET /organizations/{organization_id}/security/access/{identity_id}Get a control access for the Organization
CosmotechApi.OrganizationApigetOrganizationPermissionsGET /organizations/{organization_id}/permissions/{role}Get the Organization permissions by given role
CosmotechApi.OrganizationApigetOrganizationSecurityGET /organizations/{organization_id}/securityGet the Organization security information
CosmotechApi.OrganizationApigetOrganizationSecurityUsersGET /organizations/{organization_id}/security/usersGet the Organization security users list
CosmotechApi.OrganizationApiregisterOrganizationPOST /organizationsRegister a new organization
CosmotechApi.OrganizationApiremoveOrganizationAccessControlDELETE /organizations/{organization_id}/security/access/{identity_id}Remove the specified access from the given Organization
CosmotechApi.OrganizationApisetOrganizationDefaultSecurityPOST /organizations/{organization_id}/security/defaultSet the Organization default security
CosmotechApi.OrganizationApiunregisterOrganizationDELETE /organizations/{organization_id}Unregister an organization
CosmotechApi.OrganizationApiupdateOrganizationPATCH /organizations/{organization_id}Update an Organization
CosmotechApi.OrganizationApiupdateOrganizationAccessControlPATCH /organizations/{organization_id}/security/access/{identity_id}Update the specified access to User for an Organization
CosmotechApi.OrganizationApiupdateSolutionsContainerRegistryByOrganizationIdPATCH /organizations/{organization_id}/services/solutionsContainerRegistryUpdate the solutions container registry configuration for the Organization specified
CosmotechApi.OrganizationApiupdateStorageByOrganizationIdPATCH /organizations/{organization_id}/services/storageUpdate storage configuration for the Organization specified
CosmotechApi.OrganizationApiupdateTenantCredentialsByOrganizationIdPATCH /organizations/{organization_id}/services/tenantCredentialsUpdate tenant credentials for the Organization specified
CosmotechApi.RunApideleteRunDELETE /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}Delete a run
CosmotechApi.RunApigetRunGET /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}Get the details of a run
CosmotechApi.RunApigetRunLogsGET /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}/logsget the logs for the Run
CosmotechApi.RunApigetRunStatusGET /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}/statusget the status for the Run
CosmotechApi.RunApilistRunsGET /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runsget the list of Runs for the Runner
CosmotechApi.RunApiqueryRunDataPOST /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}/data/queryquery the run data
CosmotechApi.RunApisendRunDataPOST /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/runs/{run_id}/data/sendSend data associated to a run
CosmotechApi.RunnerApiaddRunnerAccessControlPOST /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/accessAdd a control access to the Runner
CosmotechApi.RunnerApicreateRunnerPOST /organizations/{organization_id}/workspaces/{workspace_id}/runnersCreate a new Runner
CosmotechApi.RunnerApideleteRunnerDELETE /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}Delete a runner
CosmotechApi.RunnerApigetRunnerGET /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}Get the details of an runner
CosmotechApi.RunnerApigetRunnerAccessControlGET /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access/{identity_id}Get a control access for the Runner
CosmotechApi.RunnerApigetRunnerPermissionsGET /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/permissions/{role}Get the Runner permission by given role
CosmotechApi.RunnerApigetRunnerSecurityGET /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/securityGet the Runner security information
CosmotechApi.RunnerApigetRunnerSecurityUsersGET /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/usersGet the Runner security users list
CosmotechApi.RunnerApilistRunnersGET /organizations/{organization_id}/workspaces/{workspace_id}/runnersList all Runners
CosmotechApi.RunnerApiremoveRunnerAccessControlDELETE /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access/{identity_id}Remove the specified access from the given Organization Runner
CosmotechApi.RunnerApisetRunnerDefaultSecurityPOST /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/defaultSet the Runner default security
CosmotechApi.RunnerApistartRunPOST /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/startStart a run with runner parameters
CosmotechApi.RunnerApistopRunPOST /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/stopStop the last run
CosmotechApi.RunnerApiupdateRunnerPATCH /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}Update a runner
CosmotechApi.RunnerApiupdateRunnerAccessControlPATCH /organizations/{organization_id}/workspaces/{workspace_id}/runners/{runner_id}/security/access/{identity_id}Update the specified access to User for a Runner
CosmotechApi.ScenarioApiaddOrReplaceScenarioParameterValuesPOST /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/parameterValuesAdd (or replace) Parameter Values for the Scenario specified
CosmotechApi.ScenarioApiaddScenarioAccessControlPOST /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/accessAdd a control access to the Scenario
CosmotechApi.ScenarioApicompareScenariosGET /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/compare/{compared_scenario_id}Compare the Scenario with another one and returns the difference for parameters values
CosmotechApi.ScenarioApicreateScenarioPOST /organizations/{organization_id}/workspaces/{workspace_id}/scenariosCreate a new Scenario
CosmotechApi.ScenarioApideleteAllScenariosDELETE /organizations/{organization_id}/workspaces/{workspace_id}/scenariosDelete all Scenarios of the Workspace
CosmotechApi.ScenarioApideleteScenarioDELETE /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}Delete a scenario
CosmotechApi.ScenarioApidownloadScenarioDataPOST /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/downloadsDownload Scenario data
CosmotechApi.ScenarioApifindAllScenariosGET /organizations/{organization_id}/workspaces/{workspace_id}/scenariosList all Scenarios
CosmotechApi.ScenarioApifindAllScenariosByValidationStatusGET /organizations/{organization_id}/workspaces/{workspace_id}/{validationStatus}List all Scenarios by validation status
CosmotechApi.ScenarioApifindScenarioByIdGET /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}Get the details of an scenario
CosmotechApi.ScenarioApigetScenarioAccessControlGET /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/access/{identity_id}Get a control access for the Scenario
CosmotechApi.ScenarioApigetScenarioDataDownloadJobInfoGET /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/downloads/{download_id}Get Scenario data download URL
CosmotechApi.ScenarioApigetScenarioPermissionsGET /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/permissions/{role}Get the Scenario permission by given role
CosmotechApi.ScenarioApigetScenarioSecurityGET /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/securityGet the Scenario security information
CosmotechApi.ScenarioApigetScenarioSecurityUsersGET /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/usersGet the Scenario security users list
CosmotechApi.ScenarioApigetScenarioValidationStatusByIdGET /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/ValidationStatusGet the validation status of an scenario
CosmotechApi.ScenarioApigetScenariosTreeGET /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/treeGet the Scenarios Tree
CosmotechApi.ScenarioApiremoveAllScenarioParameterValuesDELETE /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/parameterValuesRemove all Parameter Values from the Scenario specified
CosmotechApi.ScenarioApiremoveScenarioAccessControlDELETE /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/access/{identity_id}Remove the specified access from the given Organization Scenario
CosmotechApi.ScenarioApisetScenarioDefaultSecurityPOST /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/defaultSet the Scenario default security
CosmotechApi.ScenarioApiupdateScenarioPATCH /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}Update a scenario
CosmotechApi.ScenarioApiupdateScenarioAccessControlPATCH /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/security/access/{identity_id}Update the specified access to User for a Scenario
CosmotechApi.ScenariorunApideleteHistoricalDataOrganizationDELETE /organizations/{organization_id}/scenarioruns/historicaldataDelete all historical ScenarioRuns in the Organization
CosmotechApi.ScenariorunApideleteHistoricalDataScenarioDELETE /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/scenarioruns/historicaldataDelete all historical ScenarioRuns in the Scenario
CosmotechApi.ScenariorunApideleteHistoricalDataWorkspaceDELETE /organizations/{organization_id}/workspaces/{workspace_id}/scenarioruns/historicaldataDelete all historical ScenarioRuns in the Workspace
CosmotechApi.ScenariorunApideleteScenarioRunDELETE /organizations/{organization_id}/scenarioruns/{scenariorun_id}Delete a scenariorun
CosmotechApi.ScenariorunApifindScenarioRunByIdGET /organizations/{organization_id}/scenarioruns/{scenariorun_id}Get the details of a scenariorun
CosmotechApi.ScenariorunApigetScenarioRunCumulatedLogsGET /organizations/{organization_id}/scenarioruns/{scenariorun_id}/cumulatedlogsGet the cumulated logs of a scenariorun
CosmotechApi.ScenariorunApigetScenarioRunLogsGET /organizations/{organization_id}/scenarioruns/{scenariorun_id}/logsget the logs for the ScenarioRun
CosmotechApi.ScenariorunApigetScenarioRunStatusGET /organizations/{organization_id}/scenarioruns/{scenariorun_id}/statusget the status for the ScenarioRun
CosmotechApi.ScenariorunApigetScenarioRunsGET /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/scenariorunsget the list of ScenarioRuns for the Scenario
CosmotechApi.ScenariorunApigetWorkspaceScenarioRunsGET /organizations/{organization_id}/workspaces/{workspace_id}/scenariorunsget the list of ScenarioRuns for the Workspace
CosmotechApi.ScenariorunApirunScenarioPOST /organizations/{organization_id}/workspaces/{workspace_id}/scenarios/{scenario_id}/runrun a ScenarioRun for the Scenario
CosmotechApi.ScenariorunApisearchScenarioRunsPOST /organizations/{organization_id}/scenarioruns/searchSearch ScenarioRuns
CosmotechApi.ScenariorunApistartScenarioRunContainersPOST /organizations/{organization_id}/scenarioruns/startcontainersStart a new scenariorun with raw containers definition
CosmotechApi.ScenariorunApistopScenarioRunPOST /organizations/{organization_id}/scenarioruns/{scenariorun_id}/stopstop a ScenarioRun for the Scenario
CosmotechApi.SolutionApiaddOrReplaceParameterGroupsPOST /organizations/{organization_id}/solutions/{solution_id}/parameterGroupsAdd Parameter Groups. Any item with the same ID will be overwritten
CosmotechApi.SolutionApiaddOrReplaceParametersPOST /organizations/{organization_id}/solutions/{solution_id}/parametersAdd Parameters. Any item with the same ID will be overwritten
CosmotechApi.SolutionApiaddOrReplaceRunTemplatesPOST /organizations/{organization_id}/solutions/{solution_id}/runTemplatesAdd Run Templates. Any item with the same ID will be overwritten
CosmotechApi.SolutionApiaddSolutionAccessControlPOST /organizations/{organization_id}/solutions/{solution_id}/security/accessAdd a control access to the Solution
CosmotechApi.SolutionApicreateSolutionPOST /organizations/{organization_id}/solutionsRegister a new solution
CosmotechApi.SolutionApideleteSolutionDELETE /organizations/{organization_id}/solutions/{solution_id}Delete a solution
CosmotechApi.SolutionApideleteSolutionRunTemplateDELETE /organizations/{organization_id}/solutions/{solution_id}/runTemplates/{run_template_id}Remove the specified Solution Run Template
CosmotechApi.SolutionApidownloadRunTemplateHandlerGET /organizations/{organization_id}/solutions/{solution_id}/runtemplates/{run_template_id}/handlers/{handler_id}/downloadDownload a Run Template step handler zip file
CosmotechApi.SolutionApifindAllSolutionsGET /organizations/{organization_id}/solutionsList all Solutions
CosmotechApi.SolutionApifindSolutionByIdGET /organizations/{organization_id}/solutions/{solution_id}Get the details of a solution
CosmotechApi.SolutionApigetSolutionAccessControlGET /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id}Get a control access for the Solution
CosmotechApi.SolutionApigetSolutionSecurityGET /organizations/{organization_id}/solutions/{solution_id}/securityGet the Solution security information
CosmotechApi.SolutionApigetSolutionSecurityUsersGET /organizations/{organization_id}/solutions/{solution_id}/security/usersGet the Solution security users list
CosmotechApi.SolutionApiremoveAllRunTemplatesDELETE /organizations/{organization_id}/solutions/{solution_id}/runTemplatesRemove all Run Templates from the Solution specified
CosmotechApi.SolutionApiremoveAllSolutionParameterGroupsDELETE /organizations/{organization_id}/solutions/{solution_id}/parameterGroupsRemove all Parameter Groups from the Solution specified
CosmotechApi.SolutionApiremoveAllSolutionParametersDELETE /organizations/{organization_id}/solutions/{solution_id}/parametersRemove all Parameters from the Solution specified
CosmotechApi.SolutionApiremoveSolutionAccessControlDELETE /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id}Remove the specified access from the given Organization Solution
CosmotechApi.SolutionApisetSolutionDefaultSecurityPOST /organizations/{organization_id}/solutions/{solution_id}/security/defaultSet the Solution default security
CosmotechApi.SolutionApiupdateSolutionPATCH /organizations/{organization_id}/solutions/{solution_id}Update a solution
CosmotechApi.SolutionApiupdateSolutionAccessControlPATCH /organizations/{organization_id}/solutions/{solution_id}/security/access/{identity_id}Update the specified access to User for a Solution
CosmotechApi.SolutionApiupdateSolutionRunTemplatePATCH /organizations/{organization_id}/solutions/{solution_id}/runTemplates/{run_template_id}Update the specified Solution Run Template
CosmotechApi.SolutionApiuploadRunTemplateHandlerPOST /organizations/{organization_id}/solutions/{solution_id}/runtemplates/{run_template_id}/handlers/{handler_id}/uploadUpload a Run Template step handler zip file
CosmotechApi.TwingraphApibatchQueryPOST /organizations/{organization_id}/twingraph/{graph_id}/batch-queryRun a query on a graph instance and return the result as a zip file in async mode
CosmotechApi.TwingraphApibatchUploadUpdatePOST /organizations/{organization_id}/twingraph/{graph_id}/batchAsync batch update by loading a CSV file on a graph instance
CosmotechApi.TwingraphApicallDeleteDELETE /organizations/{organization_id}/twingraph/{graph_id}Delete all versions of a graph and his metadatas
CosmotechApi.TwingraphApicreateEntitiesPOST /organizations/{organization_id}/twingraph/{graph_id}/entity/{type}Create new entities in a graph instance
CosmotechApi.TwingraphApicreateGraphPOST /organizations/{organization_id}/twingraph/{graph_id}Create a new graph
CosmotechApi.TwingraphApideleteEntitiesDELETE /organizations/{organization_id}/twingraph/{graph_id}/entity/{type}Delete entities in a graph instance
CosmotechApi.TwingraphApidownloadGraphGET /organizations/{organization_id}/twingraph/download/{hash}Download a graph compressed in a zip file
CosmotechApi.TwingraphApifindAllTwingraphsGET /organizations/{organization_id}/twingraphsReturn the list of all graphs stored in the organization
CosmotechApi.TwingraphApigetEntitiesGET /organizations/{organization_id}/twingraph/{graph_id}/entity/{type}Get entities in a graph instance
CosmotechApi.TwingraphApigetGraphMetaDataGET /organizations/{organization_id}/twingraph/{graph_id}/metadataReturn the metaData of the specified graph
CosmotechApi.TwingraphApijobStatusGET /organizations/{organization_id}/job/{job_id}/statusGet the status of a job
CosmotechApi.TwingraphApiqueryPOST /organizations/{organization_id}/twingraph/{graph_id}/queryRun a query on a graph instance
CosmotechApi.TwingraphApiupdateEntitiesPATCH /organizations/{organization_id}/twingraph/{graph_id}/entity/{type}Update entities in a graph instance
CosmotechApi.TwingraphApiupdateGraphMetaDataPATCH /organizations/{organization_id}/twingraph/{graph_id}/metadataUpdate the metaData of the specified graph
CosmotechApi.WorkspaceApiaddWorkspaceAccessControlPOST /organizations/{organization_id}/workspaces/{workspace_id}/security/accessAdd a control access to the Workspace
CosmotechApi.WorkspaceApicreateSecretPOST /organizations/{organization_id}/workspaces/{workspace_id}/secretCreate a secret for the Workspace
CosmotechApi.WorkspaceApicreateWorkspacePOST /organizations/{organization_id}/workspacesCreate a new workspace
CosmotechApi.WorkspaceApideleteAllWorkspaceFilesDELETE /organizations/{organization_id}/workspaces/{workspace_id}/filesDelete all Workspace files
CosmotechApi.WorkspaceApideleteWorkspaceDELETE /organizations/{organization_id}/workspaces/{workspace_id}Delete a workspace
CosmotechApi.WorkspaceApideleteWorkspaceFileDELETE /organizations/{organization_id}/workspaces/{workspace_id}/files/deleteDelete a workspace file
CosmotechApi.WorkspaceApidownloadWorkspaceFileGET /organizations/{organization_id}/workspaces/{workspace_id}/files/downloadDownload the Workspace File specified
CosmotechApi.WorkspaceApifindAllWorkspaceFilesGET /organizations/{organization_id}/workspaces/{workspace_id}/filesList all Workspace files
CosmotechApi.WorkspaceApifindAllWorkspacesGET /organizations/{organization_id}/workspacesList all Workspaces
CosmotechApi.WorkspaceApifindWorkspaceByIdGET /organizations/{organization_id}/workspaces/{workspace_id}Get the details of an workspace
CosmotechApi.WorkspaceApigetWorkspaceAccessControlGET /organizations/{organization_id}/workspaces/{workspace_id}/security/access/{identity_id}Get a control access for the Workspace
CosmotechApi.WorkspaceApigetWorkspacePermissionsGET /organizations/{organization_id}/workspaces/{workspace_id}/permissions/{role}Get the Workspace permission by given role
CosmotechApi.WorkspaceApigetWorkspaceSecurityGET /organizations/{organization_id}/workspaces/{workspace_id}/securityGet the Workspace security information
CosmotechApi.WorkspaceApigetWorkspaceSecurityUsersGET /organizations/{organization_id}/workspaces/{workspace_id}/security/usersGet the Workspace security users list
CosmotechApi.WorkspaceApilinkDatasetPOST /organizations/{organization_id}/workspaces/{workspace_id}/link
CosmotechApi.WorkspaceApiremoveWorkspaceAccessControlDELETE /organizations/{organization_id}/workspaces/{workspace_id}/security/access/{identity_id}Remove the specified access from the given Organization Workspace
CosmotechApi.WorkspaceApisetWorkspaceDefaultSecurityPOST /organizations/{organization_id}/workspaces/{workspace_id}/security/defaultSet the Workspace default security
CosmotechApi.WorkspaceApiunlinkDatasetPOST /organizations/{organization_id}/workspaces/{workspace_id}/unlink
CosmotechApi.WorkspaceApiupdateWorkspacePATCH /organizations/{organization_id}/workspaces/{workspace_id}Update a workspace
CosmotechApi.WorkspaceApiupdateWorkspaceAccessControlPATCH /organizations/{organization_id}/workspaces/{workspace_id}/security/access/{identity_id}Update the specified access to User for a Workspace
CosmotechApi.WorkspaceApiuploadWorkspaceFilePOST /organizations/{organization_id}/workspaces/{workspace_id}/filesUpload a file for the Workspace

Documentation for Models

Documentation for Authorization

Authentication schemes defined for the API:

oAuth2AuthCode

3.2.0

1 year ago

3.0.10-private

2 years ago

2.1.0

3 years ago

2.0.0

3 years ago

2.0.4

3 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.0.12

4 years ago

0.0.11

4 years ago

0.0.10

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2-SNAPSHOT

4 years ago

0.0.1-SNAPSHOT

4 years ago