1.2.0 • Published 3 years ago

@netsoc/webspaced v1.2.0

Weekly downloads
44
License
Unlicense
Repository
-
Last release
3 years ago

@netsoc/webspaced

@NetsocWebspaced - JavaScript client for @netsoc/webspaced API for managing next-gen webspaces.

This SDK is automatically generated by the OpenAPI Generator project:

  • API version: 1.2.0
  • Package version: 1.2.0
  • Build package: org.openapitools.codegen.languages.JavascriptClientCodegen

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 @netsoc/webspaced --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 @netsoc/webspaced 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 @NetsocWebspaced = require('@netsoc/webspaced');

var defaultClient = @NetsocWebspaced.ApiClient.instance;
// Configure Bearer (jwt) access token for authorization: jwt
var jwt = defaultClient.authentications['jwt'];
jwt.accessToken = "YOUR ACCESS TOKEN"
// Configure Bearer (jwt) access token for authorization: jwt_admin
var jwt_admin = defaultClient.authentications['jwt_admin'];
jwt_admin.accessToken = "YOUR ACCESS TOKEN"

var api = new @NetsocWebspaced.ConfigApi()
var username = root; // {String} User's username. Can be `self` to indicate the currently authenticated user. 
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.callDelete(username, callback);

Documentation for API Endpoints

All URIs are relative to https://webspaced.netsoc.ie/v1

ClassMethodHTTP requestDescription
@NetsocWebspaced.ConfigApicallDeleteDELETE /webspace/{username}Destroy webspace
@NetsocWebspaced.ConfigApicreatePOST /webspace/{username}Initialize webspace
@NetsocWebspaced.ConfigApigetGET /webspace/{username}Retrieve all webspace information
@NetsocWebspaced.ConfigApigetConfigGET /webspace/{username}/configRetrieve webspace configuration
@NetsocWebspaced.ConfigApiupdateConfigPATCH /webspace/{username}/configChange webspace config options
@NetsocWebspaced.ConsoleApiclearLogDELETE /webspace/{username}/logClear webspace console log
@NetsocWebspaced.ConsoleApiconsoleGET /webspace/{username}/consoleAttach to webspace console
@NetsocWebspaced.ConsoleApiexecPOST /webspace/{username}/execExecute command non-interactively
@NetsocWebspaced.ConsoleApiexecInteractiveGET /webspace/{username}/execExecute a command interactively
@NetsocWebspaced.ConsoleApigetLogGET /webspace/{username}/logRetrieve webspace console log
@NetsocWebspaced.DomainsApiaddDomainPOST /webspace/{username}/domains/{domain}Add custom domain
@NetsocWebspaced.DomainsApigetDomainsGET /webspace/{username}/domainsRetrieve webspace domains
@NetsocWebspaced.DomainsApiremoveDomainDELETE /webspace/{username}/domains/{domain}Delete custom domain
@NetsocWebspaced.ImagesApigetImagesGET /imagesList images
@NetsocWebspaced.PortsApiaddPortPOST /webspace/{username}/ports/{ePort}/{iPort}Add port forward
@NetsocWebspaced.PortsApiaddRandomPortPOST /webspace/{username}/ports/{iPort}Add random port forward
@NetsocWebspaced.PortsApigetPortsGET /webspace/{username}/portsRetrieve webspace port forwards
@NetsocWebspaced.PortsApiremovePortDELETE /webspace/{username}/ports/{ePort}Delete port forward
@NetsocWebspaced.StateApigetStateGET /webspace/{username}/stateRetrieve webspace state
@NetsocWebspaced.StateApirebootPUT /webspace/{username}/stateReboot webspace container
@NetsocWebspaced.StateApishutdownDELETE /webspace/{username}/stateShut down webspace container
@NetsocWebspaced.StateApistartPOST /webspace/{username}/stateStart webspace container
@NetsocWebspaced.StateApisyncPATCH /webspace/{username}/stateRe-generate webspace backend config

Documentation for Models

Documentation for Authorization

jwt

  • Type: Bearer authentication (jwt)

jwt_admin

  • Type: Bearer authentication (jwt)
1.2.0

3 years ago

1.1.2

4 years ago

1.0.2

4 years ago

1.1.0

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago