EndpointGroupAccessUpdateRequest.spec.js 5.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /**
  2. * Portainer API
  3. * Portainer API is an HTTP API served by Portainer. It is used by the Portainer UI and everything you can do with the UI can be done using the HTTP API. Examples are available at https://gist.github.com/deviantony/77026d402366b4b43fa5918d41bc42f8 You can find out more about Portainer at [http://portainer.io](http://portainer.io) and get some support on [Slack](http://portainer.io/slack/). # Authentication Most of the API endpoints require to be authenticated as well as some level of authorization to be used. Portainer API uses JSON Web Token to manage authentication and thus requires you to provide a token in the **Authorization** header of each request with the **Bearer** authentication mechanism. Example: ``` Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsInJvbGUiOjEsImV4cCI6MTQ5OTM3NjE1NH0.NJ6vE8FY1WG6jsRQzfMqeatJ4vh2TWAeeYfDhP71YEE ``` # Security Each API endpoint has an associated access policy, it is documented in the description of each endpoint. Different access policies are available: * Public access * Authenticated access * Restricted access * Administrator access ### Public access No authentication is required to access the endpoints with this access policy. ### Authenticated access Authentication is required to access the endpoints with this access policy. ### Restricted access Authentication is required to access the endpoints with this access policy. Extra-checks might be added to ensure access to the resource is granted. Returned data might also be filtered. ### Administrator access Authentication as well as an administrator role are required to access the endpoints with this access policy. # Execute Docker requests Portainer **DO NOT** expose specific endpoints to manage your Docker resources (create a container, remove a volume, etc...). Instead, it acts as a reverse-proxy to the Docker HTTP API. This means that you can execute Docker requests **via** the Portainer HTTP API. To do so, you can use the `/endpoints/{id}/docker` Portainer API endpoint (which is not documented below due to Swagger limitations). This endpoint has a restricted access policy so you still need to be authenticated to be able to query this endpoint. Any query on this endpoint will be proxied to the Docker API of the associated endpoint (requests and responses objects are the same as documented in the Docker API). **NOTE**: You can find more information on how to query the Docker API in the [Docker official documentation](https://docs.docker.com/engine/api/v1.30/) as well as in [this Portainer example](https://gist.github.com/deviantony/77026d402366b4b43fa5918d41bc42f8).
  4. *
  5. * OpenAPI spec version: 1.20.0
  6. * Contact: info@portainer.io
  7. *
  8. * NOTE: This class is auto generated by the swagger code generator program.
  9. * https://github.com/swagger-api/swagger-codegen.git
  10. *
  11. * Swagger Codegen version: 2.4.0
  12. *
  13. * Do not edit the class manually.
  14. *
  15. */
  16. (function(root, factory) {
  17. if (typeof define === 'function' && define.amd) {
  18. // AMD.
  19. define(['expect.js', '../../src/index'], factory);
  20. } else if (typeof module === 'object' && module.exports) {
  21. // CommonJS-like environments that support module.exports, like Node.
  22. factory(require('expect.js'), require('../../src/index'));
  23. } else {
  24. // Browser globals (root is window)
  25. factory(root.expect, root.PortainerApi);
  26. }
  27. }(this, function(expect, PortainerApi) {
  28. 'use strict';
  29. var instance;
  30. beforeEach(function() {
  31. instance = new PortainerApi.EndpointGroupAccessUpdateRequest();
  32. });
  33. var getProperty = function(object, getter, property) {
  34. // Use getter method if present; otherwise, get the property directly.
  35. if (typeof object[getter] === 'function')
  36. return object[getter]();
  37. else
  38. return object[property];
  39. }
  40. var setProperty = function(object, setter, property, value) {
  41. // Use setter method if present; otherwise, set the property directly.
  42. if (typeof object[setter] === 'function')
  43. object[setter](value);
  44. else
  45. object[property] = value;
  46. }
  47. describe('EndpointGroupAccessUpdateRequest', function() {
  48. it('should create an instance of EndpointGroupAccessUpdateRequest', function() {
  49. // uncomment below and update the code to test EndpointGroupAccessUpdateRequest
  50. //var instance = new PortainerApi.EndpointGroupAccessUpdateRequest();
  51. //expect(instance).to.be.a(PortainerApi.EndpointGroupAccessUpdateRequest);
  52. });
  53. it('should have the property authorizedUsers (base name: "AuthorizedUsers")', function() {
  54. // uncomment below and update the code to test the property authorizedUsers
  55. //var instance = new PortainerApi.EndpointGroupAccessUpdateRequest();
  56. //expect(instance).to.be();
  57. });
  58. it('should have the property authorizedTeams (base name: "AuthorizedTeams")', function() {
  59. // uncomment below and update the code to test the property authorizedTeams
  60. //var instance = new PortainerApi.EndpointGroupAccessUpdateRequest();
  61. //expect(instance).to.be();
  62. });
  63. });
  64. }));