Source: model/cloudcontroller/ServicePlans.js

  1. /*jslint node: true*/
  2. var HttpUtils = require('../../utils/HttpUtils');
  3. /**
  4. * Manages Service Plan on Cloud Foundry
  5. * @param {String} endPoint [CC endpoint]
  6. * @constructor
  7. */
  8. function ServicePlans(endPoint) {
  9. "use strict";
  10. this.API_URL = endPoint;
  11. this.REST = new HttpUtils();
  12. }
  13. /**
  14. * Set endpoint
  15. * @param {String} endPoint [CC endpoint]
  16. */
  17. ServicePlans.prototype.setEndPoint = function (endPoint) {
  18. "use strict";
  19. this.API_URL = endPoint;
  20. };
  21. /**
  22. * Get Service Plans
  23. * {@link https://apidocs.cloudfoundry.org/226/service_plans/list_all_service_plans.html}
  24. * @param {String} token_type [Authentication type]
  25. * @param {String} access_token [Authentication token]
  26. * @param {String} guid [route guid]
  27. * @return {JSON} [return a JSON response]
  28. */
  29. ServicePlans.prototype.getServicePlans = function (token_type, access_token, filter) {
  30. "use strict";
  31. var url = this.API_URL + "/v2/service_plans";
  32. var qs = {};
  33. if (filter) {
  34. qs = filter;
  35. }
  36. var options = {
  37. method: 'GET',
  38. url: url,
  39. headers: {
  40. Authorization: token_type + ' ' + access_token
  41. },
  42. qs: qs
  43. };
  44. return this.REST.request(options, "200", true);
  45. };
  46. /**
  47. * Get a Service Plan
  48. * {@link https://apidocs.cloudfoundry.org/226/service_plans/retrieve_a_particular_service_plan.html}
  49. * @param {String} token_type [Authentication type]
  50. * @param {String} access_token [Authentication token]
  51. * @param {String} servicePlan_guid [servicePlan guid]
  52. * @return {JSON} [return a JSON response]
  53. */
  54. ServicePlans.prototype.getServicePlan = function (token_type, access_token, servicePlan_guid) {
  55. "use strict";
  56. var url = this.API_URL + "/v2/service_plans/" + servicePlan_guid;
  57. var options = {
  58. method: 'GET',
  59. url: url,
  60. headers: {
  61. Authorization: token_type + ' ' + access_token
  62. }
  63. };
  64. return this.REST.request(options, "200", true);
  65. };
  66. /**
  67. * List all Service Instances for a Service Plan
  68. * {@link https://apidocs.cloudfoundry.org/226/service_plans/list_all_service_instances_for_the_service_plan.html}
  69. * @param {String} token_type [Authentication type]
  70. * @param {String} access_token [Authentication token]
  71. * @param {String} servicePlan_guid [servicePlan guid]
  72. * @return {JSON} [return a JSON response]
  73. */
  74. ServicePlans.prototype.getServicePlanInstances = function (token_type, access_token, servicePlan_guid) {
  75. "use strict";
  76. var url = this.API_URL + "/v2/service_plans/" + servicePlan_guid + "/service_instances";
  77. var options = {
  78. method: 'GET',
  79. url: url,
  80. headers: {
  81. Authorization: token_type + ' ' + access_token
  82. }
  83. };
  84. return this.REST.request(options, "200", true);
  85. };
  86. /**
  87. * Remove a Service Plan
  88. * {@link https://apidocs.cloudfoundry.org/226/service_plans/delete_a_particular_service_plans.html}
  89. * @param {String} token_type [Authentication type]
  90. * @param {String} access_token [Authentication token]
  91. * @param {String} servicePlan_guid [servicePlan_guid]
  92. */
  93. ServicePlans.prototype.remove = function (token_type, access_token, servicePlan_guid) {
  94. "use strict";
  95. var url = this.API_URL + "/v2/service_plans/" + servicePlan_guid;
  96. var options = {
  97. method: 'DELETE',
  98. url: url,
  99. headers: {
  100. Authorization: token_type + ' ' + access_token
  101. }
  102. };
  103. return this.REST.request(options, "204 ", false);
  104. };
  105. module.exports = ServicePlans;