Source: managers/shield-information-barrier-segment-members.generated.ts

  1. import BoxClient from '../box-client';
  2. import urlPath from '../util/url-path';
  3. import * as schemas from '../schemas';
  4. /**
  5. */
  6. class ShieldInformationBarrierSegmentMembersManager {
  7. client: BoxClient;
  8. /**
  9. * @param {BoxClient} client The Box API Client that is responsible for making calls to the API
  10. */
  11. constructor(client: BoxClient) {
  12. this.client = client;
  13. }
  14. /**
  15. * Get shield information barrier segment member by ID
  16. *
  17. * Retrieves a shield information barrier
  18. * segment member by its ID.
  19. * @param {object} options Options for the request
  20. * @param {string} options.shield_information_barrier_segment_member_id The ID of the shield information barrier segment Member.
  21. * @param {Function} [callback] Passed the result if successful, error otherwise
  22. * @returns {Promise<schemas.ShieldInformationBarrierSegmentMember>} A promise resolving to the result or rejecting with an error
  23. */
  24. getById(
  25. options: {
  26. /**
  27. * The ID of the shield information barrier segment Member.
  28. */
  29. readonly shield_information_barrier_segment_member_id: string;
  30. },
  31. callback?: Function
  32. ): Promise<schemas.ShieldInformationBarrierSegmentMember> {
  33. const {
  34. shield_information_barrier_segment_member_id:
  35. shieldInformationBarrierSegmentMemberId,
  36. ...queryParams
  37. } = options,
  38. apiPath = urlPath(
  39. 'shield_information_barrier_segment_members',
  40. shieldInformationBarrierSegmentMemberId
  41. ),
  42. params = {
  43. qs: queryParams,
  44. };
  45. return this.client.wrapWithDefaultHandler(this.client.get)(
  46. apiPath,
  47. params,
  48. callback
  49. );
  50. }
  51. /**
  52. * List shield information barrier segment members
  53. *
  54. * Lists shield information barrier segment members
  55. * based on provided segment IDs.
  56. * @param {object} options Options for the request
  57. * @param {string} options.shield_information_barrier_segment_id The ID of the shield information barrier segment.
  58. * @param {string} [options.marker] Defines the position marker at which to begin returning results. This is used when paginating using marker-based pagination. This requires `usemarker` to be set to `true`.
  59. * @param {number} [options.limit] The maximum number of items to return per page.
  60. * @param {Function} [callback] Passed the result if successful, error otherwise
  61. * @returns {Promise<schemas.ShieldInformationBarrierSegmentMembers>} A promise resolving to the result or rejecting with an error
  62. */
  63. getAll(
  64. options: {
  65. /**
  66. * The ID of the shield information barrier segment.
  67. */
  68. readonly shield_information_barrier_segment_id: string;
  69. /**
  70. * Defines the position marker at which to begin returning results. This is
  71. * used when paginating using marker-based pagination.
  72. *
  73. * This requires `usemarker` to be set to `true`.
  74. */
  75. readonly marker?: string;
  76. /**
  77. * The maximum number of items to return per page.
  78. */
  79. readonly limit?: number;
  80. },
  81. callback?: Function
  82. ): Promise<schemas.ShieldInformationBarrierSegmentMembers> {
  83. const { ...queryParams } = options,
  84. apiPath = urlPath('shield_information_barrier_segment_members'),
  85. params = {
  86. qs: queryParams,
  87. };
  88. return this.client.wrapWithDefaultHandler(this.client.get)(
  89. apiPath,
  90. params,
  91. callback
  92. );
  93. }
  94. /**
  95. * Create shield information barrier segment member
  96. *
  97. * Creates a new shield information barrier segment member.
  98. * @param {object} body
  99. * @param {object} [options] Options for the request
  100. * @param {Function} [callback] Passed the result if successful, error otherwise
  101. * @returns {Promise<schemas.ShieldInformationBarrierSegmentMember>} A promise resolving to the result or rejecting with an error
  102. */
  103. create(
  104. body: object,
  105. options?: {},
  106. callback?: Function
  107. ): Promise<schemas.ShieldInformationBarrierSegmentMember> {
  108. const { ...queryParams } = options,
  109. apiPath = urlPath('shield_information_barrier_segment_members'),
  110. params = {
  111. qs: queryParams,
  112. body: body,
  113. };
  114. return this.client.wrapWithDefaultHandler(this.client.post)(
  115. apiPath,
  116. params,
  117. callback
  118. );
  119. }
  120. /**
  121. * Delete shield information barrier segment member by ID
  122. *
  123. * Deletes a shield information barrier
  124. * segment member based on provided ID.
  125. * @param {object} options Options for the request
  126. * @param {string} options.shield_information_barrier_segment_member_id The ID of the shield information barrier segment Member.
  127. * @param {Function} [callback] Passed the result if successful, error otherwise
  128. * @returns {Promise<void>} A promise resolving to the result or rejecting with an error
  129. */
  130. deleteById(
  131. options: {
  132. /**
  133. * The ID of the shield information barrier segment Member.
  134. */
  135. readonly shield_information_barrier_segment_member_id: string;
  136. },
  137. callback?: Function
  138. ): Promise<void> {
  139. const {
  140. shield_information_barrier_segment_member_id:
  141. shieldInformationBarrierSegmentMemberId,
  142. ...queryParams
  143. } = options,
  144. apiPath = urlPath(
  145. 'shield_information_barrier_segment_members',
  146. shieldInformationBarrierSegmentMemberId
  147. ),
  148. params = {
  149. qs: queryParams,
  150. };
  151. return this.client.wrapWithDefaultHandler(this.client.del)(
  152. apiPath,
  153. params,
  154. callback
  155. );
  156. }
  157. }
  158. export = ShieldInformationBarrierSegmentMembersManager;