fastly 16.0.0 → 16.1.0.rc.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (371) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +31 -0
  3. data/Gemfile +0 -2
  4. data/Gemfile.lock +10 -36
  5. data/README.md +19 -1
  6. data/Rakefile +17 -0
  7. data/docs/ApisecurityOperationsApi.md +139 -3
  8. data/docs/BulkOperationResult.md +12 -0
  9. data/docs/DiscoveredOperationGet.md +2 -1
  10. data/docs/DiscoveredOperationGetExtra.md +2 -1
  11. data/docs/DmDomainsApi.md +2 -0
  12. data/docs/InlineResponse207.md +10 -0
  13. data/docs/InlineResponse2071.md +10 -0
  14. data/docs/OperationBulkAddTags.md +11 -0
  15. data/docs/OperationBulkCreate.md +10 -0
  16. data/docs/OperationBulkCreateOperations.md +15 -0
  17. data/docs/OperationBulkDelete.md +10 -0
  18. data/docs/OperationCreate.md +4 -3
  19. data/docs/OperationCreateExtra.md +10 -0
  20. data/docs/OperationGet.md +2 -0
  21. data/docs/OperationGetExtra.md +2 -0
  22. data/docs/OperationUpdate.md +1 -0
  23. data/docs/RealtimeEntryAggregated.md +18 -0
  24. data/docs/RealtimeMeasurements.md +18 -0
  25. data/docs/Results.md +18 -0
  26. data/lib/fastly/api/apisecurity_operations_api.rb +260 -6
  27. data/lib/fastly/api/dm_domains_api.rb +7 -0
  28. data/lib/fastly/configuration.rb +18 -0
  29. data/lib/fastly/models/bulk_operation_result.rb +237 -0
  30. data/lib/fastly/models/discovered_operation_get.rb +26 -23
  31. data/lib/fastly/models/discovered_operation_get_extra.rb +25 -44
  32. data/lib/fastly/models/inline_response207.rb +219 -0
  33. data/lib/fastly/models/inline_response2071.rb +219 -0
  34. data/lib/fastly/models/operation_bulk_add_tags.rb +241 -0
  35. data/lib/fastly/models/operation_bulk_create.rb +224 -0
  36. data/lib/fastly/models/operation_bulk_create_operations.rb +332 -0
  37. data/lib/fastly/models/operation_bulk_delete.rb +224 -0
  38. data/lib/fastly/models/operation_create.rb +45 -5
  39. data/lib/fastly/models/operation_create_extra.rb +253 -0
  40. data/lib/fastly/models/operation_get.rb +36 -4
  41. data/lib/fastly/models/operation_get_extra.rb +58 -4
  42. data/lib/fastly/models/operation_update.rb +26 -4
  43. data/lib/fastly/models/realtime_entry_aggregated.rb +184 -4
  44. data/lib/fastly/models/realtime_measurements.rb +184 -4
  45. data/lib/fastly/models/results.rb +181 -1
  46. data/lib/fastly/version.rb +1 -1
  47. data/lib/fastly.rb +8 -0
  48. data/sig.json +1 -1
  49. data/vendor/bundle/ruby/3.1.0/bin/rake +29 -0
  50. data/vendor/bundle/ruby/3.1.0/cache/ethon-0.18.0.gem +0 -0
  51. data/vendor/bundle/ruby/3.1.0/cache/ffi-1.17.4-x86_64-linux-gnu.gem +0 -0
  52. data/vendor/bundle/ruby/3.1.0/cache/logger-1.7.0.gem +0 -0
  53. data/vendor/bundle/ruby/3.1.0/cache/rake-13.0.6.gem +0 -0
  54. data/vendor/bundle/ruby/3.1.0/cache/typhoeus-1.6.0.gem +0 -0
  55. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/CHANGELOG.md +417 -0
  56. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/LICENSE +20 -0
  57. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/README.md +118 -0
  58. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/ethon.gemspec +37 -0
  59. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/curl.rb +90 -0
  60. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/curls/classes.rb +65 -0
  61. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/curls/codes.rb +123 -0
  62. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/curls/constants.rb +80 -0
  63. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/curls/form_options.rb +37 -0
  64. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/curls/functions.rb +58 -0
  65. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/curls/infos.rb +151 -0
  66. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/curls/messages.rb +19 -0
  67. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/curls/options.rb +503 -0
  68. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/curls/settings.rb +12 -0
  69. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/callbacks.rb +155 -0
  70. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/debug_info.rb +47 -0
  71. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/features.rb +31 -0
  72. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/form.rb +107 -0
  73. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/header.rb +61 -0
  74. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/http/actionable.rb +157 -0
  75. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/http/custom.rb +29 -0
  76. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/http/delete.rb +25 -0
  77. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/http/get.rb +24 -0
  78. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/http/head.rb +24 -0
  79. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/http/options.rb +24 -0
  80. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/http/patch.rb +24 -0
  81. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/http/post.rb +26 -0
  82. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/http/postable.rb +32 -0
  83. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/http/put.rb +27 -0
  84. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/http/putable.rb +25 -0
  85. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/http.rb +68 -0
  86. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/informations.rb +116 -0
  87. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/mirror.rb +36 -0
  88. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/operations.rb +64 -0
  89. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/options.rb +50 -0
  90. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/params.rb +29 -0
  91. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/queryable.rb +154 -0
  92. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/response_callbacks.rb +136 -0
  93. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy/util.rb +28 -0
  94. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/easy.rb +315 -0
  95. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/errors/ethon_error.rb +9 -0
  96. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/errors/global_init.rb +13 -0
  97. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/errors/invalid_option.rb +13 -0
  98. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/errors/invalid_value.rb +13 -0
  99. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/errors/multi_add.rb +12 -0
  100. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/errors/multi_fdset.rb +12 -0
  101. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/errors/multi_remove.rb +12 -0
  102. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/errors/multi_timeout.rb +13 -0
  103. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/errors/select.rb +13 -0
  104. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/errors.rb +17 -0
  105. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/libc.rb +21 -0
  106. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/loggable.rb +58 -0
  107. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/multi/operations.rb +228 -0
  108. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/multi/options.rb +117 -0
  109. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/multi/stack.rb +49 -0
  110. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/multi.rb +126 -0
  111. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon/version.rb +6 -0
  112. data/vendor/bundle/ruby/3.1.0/gems/ethon-0.18.0/lib/ethon.rb +36 -0
  113. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/CHANGELOG.md +507 -0
  114. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/COPYING +49 -0
  115. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/Gemfile +26 -0
  116. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/LICENSE +24 -0
  117. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/LICENSE.SPECS +22 -0
  118. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/README.md +138 -0
  119. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/Rakefile +209 -0
  120. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/Steepfile +8 -0
  121. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/ffi.gemspec +43 -0
  122. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/3.0/ffi_c.so +0 -0
  123. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/3.1/ffi_c.so +0 -0
  124. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/3.2/ffi_c.so +0 -0
  125. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/3.3/ffi_c.so +0 -0
  126. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/3.4/ffi_c.so +0 -0
  127. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/4.0/ffi_c.so +0 -0
  128. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/abstract_memory.rb +44 -0
  129. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/autopointer.rb +186 -0
  130. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/buffer.rb +4 -0
  131. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/callback.rb +4 -0
  132. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/compat.rb +54 -0
  133. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/data_converter.rb +67 -0
  134. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/dynamic_library.rb +118 -0
  135. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/enum.rb +302 -0
  136. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/errno.rb +43 -0
  137. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/ffi.rb +109 -0
  138. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/function.rb +94 -0
  139. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/io.rb +62 -0
  140. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/library.rb +592 -0
  141. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/library_path.rb +109 -0
  142. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/managedstruct.rb +84 -0
  143. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/memorypointer.rb +1 -0
  144. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  145. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  146. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
  147. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/aarch64-linux/types.conf +175 -0
  148. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  149. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/aarch64-windows/types.conf +52 -0
  150. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  151. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  152. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/arm-linux/types.conf +132 -0
  153. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
  154. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
  155. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  156. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/i386-darwin/types.conf +100 -0
  157. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  158. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  159. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/i386-gnu/types.conf +107 -0
  160. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/i386-linux/types.conf +103 -0
  161. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  162. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  163. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/i386-solaris/types.conf +122 -0
  164. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/i386-windows/types.conf +52 -0
  165. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/ia64-linux/types.conf +104 -0
  166. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
  167. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/mips-linux/types.conf +102 -0
  168. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/mips64-linux/types.conf +104 -0
  169. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  170. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  171. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
  172. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
  173. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
  174. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
  175. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  176. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  177. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/powerpc-linux/types.conf +130 -0
  178. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  179. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  180. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
  181. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/riscv64-linux/types.conf +104 -0
  182. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/s390-linux/types.conf +102 -0
  183. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/s390x-linux/types.conf +102 -0
  184. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/sparc-linux/types.conf +102 -0
  185. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  186. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/sparcv9-linux/types.conf +102 -0
  187. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  188. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  189. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/sw_64-linux/types.conf +141 -0
  190. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  191. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/x86_64-darwin/types.conf +130 -0
  192. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  193. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  194. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
  195. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  196. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/x86_64-linux/types.conf +132 -0
  197. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  198. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  199. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
  200. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  201. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform/x86_64-windows/types.conf +52 -0
  202. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/platform.rb +187 -0
  203. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/pointer.rb +167 -0
  204. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/struct.rb +317 -0
  205. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/struct_by_reference.rb +72 -0
  206. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/struct_layout.rb +96 -0
  207. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/struct_layout_builder.rb +227 -0
  208. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/tools/const_generator.rb +232 -0
  209. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/tools/generator.rb +105 -0
  210. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/tools/generator_task.rb +32 -0
  211. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/tools/struct_generator.rb +195 -0
  212. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/types.rb +222 -0
  213. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/union.rb +43 -0
  214. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/variadic.rb +80 -0
  215. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi/version.rb +3 -0
  216. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/lib/ffi.rb +27 -0
  217. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/samples/getlogin.rb +8 -0
  218. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/samples/getpid.rb +8 -0
  219. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/samples/gettimeofday.rb +18 -0
  220. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/samples/hello.rb +8 -0
  221. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/samples/hello_ractor.rb +19 -0
  222. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/samples/inotify.rb +60 -0
  223. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/samples/pty.rb +75 -0
  224. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/samples/qsort.rb +20 -0
  225. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/samples/qsort_ractor.rb +36 -0
  226. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/abstract_memory.rbs +165 -0
  227. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/auto_pointer.rbs +26 -0
  228. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/buffer.rbs +18 -0
  229. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/data_converter.rbs +10 -0
  230. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/dynamic_library.rbs +9 -0
  231. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/enum.rbs +38 -0
  232. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/errno.rbs +8 -0
  233. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/function.rbs +39 -0
  234. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/library.rbs +42 -0
  235. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/native_type.rbs +86 -0
  236. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/platform.rbs +49 -0
  237. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/pointer.rbs +42 -0
  238. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/struct.rbs +76 -0
  239. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/struct_by_reference.rbs +11 -0
  240. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/struct_by_value.rbs +7 -0
  241. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/struct_layout.rbs +9 -0
  242. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/struct_layout_builder.rbs +5 -0
  243. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi/type.rbs +39 -0
  244. data/vendor/bundle/ruby/3.1.0/gems/ffi-1.17.4-x86_64-linux-gnu/sig/ffi.rbs +29 -0
  245. data/vendor/bundle/ruby/3.1.0/gems/logger-1.7.0/.document +4 -0
  246. data/vendor/bundle/ruby/3.1.0/gems/logger-1.7.0/.rdoc_options +3 -0
  247. data/vendor/bundle/ruby/3.1.0/gems/logger-1.7.0/BSDL +22 -0
  248. data/vendor/bundle/ruby/3.1.0/gems/logger-1.7.0/COPYING +56 -0
  249. data/vendor/bundle/ruby/3.1.0/gems/logger-1.7.0/README.md +104 -0
  250. data/vendor/bundle/ruby/3.1.0/gems/logger-1.7.0/lib/logger/errors.rb +9 -0
  251. data/vendor/bundle/ruby/3.1.0/gems/logger-1.7.0/lib/logger/formatter.rb +36 -0
  252. data/vendor/bundle/ruby/3.1.0/gems/logger-1.7.0/lib/logger/log_device.rb +265 -0
  253. data/vendor/bundle/ruby/3.1.0/gems/logger-1.7.0/lib/logger/period.rb +47 -0
  254. data/vendor/bundle/ruby/3.1.0/gems/logger-1.7.0/lib/logger/severity.rb +38 -0
  255. data/vendor/bundle/ruby/3.1.0/gems/logger-1.7.0/lib/logger/version.rb +5 -0
  256. data/vendor/bundle/ruby/3.1.0/gems/logger-1.7.0/lib/logger.rb +789 -0
  257. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/History.rdoc +2403 -0
  258. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/MIT-LICENSE +21 -0
  259. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/README.rdoc +155 -0
  260. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/doc/command_line_usage.rdoc +158 -0
  261. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/doc/example/Rakefile1 +38 -0
  262. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/doc/example/Rakefile2 +35 -0
  263. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/doc/example/a.c +6 -0
  264. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/doc/example/b.c +6 -0
  265. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/doc/example/main.c +11 -0
  266. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/doc/glossary.rdoc +42 -0
  267. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/doc/jamis.rb +592 -0
  268. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/doc/proto_rake.rdoc +127 -0
  269. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/doc/rake.1 +156 -0
  270. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/doc/rakefile.rdoc +622 -0
  271. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/doc/rational.rdoc +151 -0
  272. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/exe/rake +27 -0
  273. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/application.rb +831 -0
  274. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/backtrace.rb +24 -0
  275. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/clean.rb +78 -0
  276. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/cloneable.rb +17 -0
  277. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/cpu_counter.rb +107 -0
  278. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/default_loader.rb +15 -0
  279. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/dsl_definition.rb +195 -0
  280. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/early_time.rb +22 -0
  281. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/ext/core.rb +26 -0
  282. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/ext/string.rb +176 -0
  283. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/file_creation_task.rb +25 -0
  284. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/file_list.rb +435 -0
  285. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/file_task.rb +54 -0
  286. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/file_utils.rb +134 -0
  287. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/file_utils_ext.rb +134 -0
  288. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/invocation_chain.rb +57 -0
  289. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/invocation_exception_mixin.rb +17 -0
  290. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/late_time.rb +18 -0
  291. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/linked_list.rb +112 -0
  292. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/loaders/makefile.rb +54 -0
  293. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/multi_task.rb +14 -0
  294. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/name_space.rb +38 -0
  295. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/packagetask.rb +222 -0
  296. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/phony.rb +16 -0
  297. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/private_reader.rb +21 -0
  298. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/promise.rb +100 -0
  299. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/pseudo_status.rb +30 -0
  300. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/rake_module.rb +67 -0
  301. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/rake_test_loader.rb +27 -0
  302. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/rule_recursion_overflow_error.rb +20 -0
  303. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/scope.rb +43 -0
  304. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/task.rb +434 -0
  305. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/task_argument_error.rb +8 -0
  306. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/task_arguments.rb +109 -0
  307. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/task_manager.rb +331 -0
  308. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/tasklib.rb +12 -0
  309. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/testtask.rb +189 -0
  310. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/thread_history_display.rb +49 -0
  311. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/thread_pool.rb +163 -0
  312. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/trace_output.rb +23 -0
  313. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/version.rb +10 -0
  314. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake/win32.rb +51 -0
  315. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/lib/rake.rb +71 -0
  316. data/vendor/bundle/ruby/3.1.0/gems/rake-13.0.6/rake.gemspec +100 -0
  317. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/CHANGELOG.md +465 -0
  318. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/CONTRIBUTING.md +20 -0
  319. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/LICENSE +22 -0
  320. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/README.md +588 -0
  321. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/UPGRADE.md +55 -0
  322. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/rack/typhoeus/middleware/params_decoder/helper.rb +76 -0
  323. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/rack/typhoeus/middleware/params_decoder.rb +57 -0
  324. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/rack/typhoeus.rb +1 -0
  325. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/adapters/faraday.rb +180 -0
  326. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/cache/dalli.rb +28 -0
  327. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/cache/rails.rb +28 -0
  328. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/cache/redis.rb +35 -0
  329. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/config.rb +85 -0
  330. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/easy_factory.rb +206 -0
  331. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/errors/no_stub.rb +12 -0
  332. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/errors/typhoeus_error.rb +8 -0
  333. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/errors.rb +9 -0
  334. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/expectation.rb +219 -0
  335. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/hydra/addable.rb +23 -0
  336. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/hydra/before.rb +31 -0
  337. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/hydra/block_connection.rb +35 -0
  338. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/hydra/cacheable.rb +15 -0
  339. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/hydra/memoizable.rb +56 -0
  340. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/hydra/queueable.rb +83 -0
  341. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/hydra/runnable.rb +19 -0
  342. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/hydra/stubbable.rb +28 -0
  343. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/hydra.rb +95 -0
  344. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/pool.rb +70 -0
  345. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/railtie.rb +12 -0
  346. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/request/actions.rb +125 -0
  347. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/request/before.rb +30 -0
  348. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/request/block_connection.rb +52 -0
  349. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/request/cacheable.rb +38 -0
  350. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/request/callbacks.rb +151 -0
  351. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/request/marshal.rb +22 -0
  352. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/request/memoizable.rb +38 -0
  353. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/request/operations.rb +40 -0
  354. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/request/responseable.rb +29 -0
  355. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/request/streamable.rb +34 -0
  356. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/request/stubbable.rb +30 -0
  357. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/request.rb +223 -0
  358. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/response/cacheable.rb +14 -0
  359. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/response/header.rb +105 -0
  360. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/response/informations.rb +305 -0
  361. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/response/status.rb +106 -0
  362. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/response.rb +68 -0
  363. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus/version.rb +5 -0
  364. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/lib/typhoeus.rb +143 -0
  365. data/vendor/bundle/ruby/3.1.0/gems/typhoeus-1.6.0/typhoeus.gemspec +35 -0
  366. data/vendor/bundle/ruby/3.1.0/specifications/ethon-0.18.0.gemspec +34 -0
  367. data/vendor/bundle/ruby/3.1.0/specifications/ffi-1.17.4-x86_64-linux-gnu.gemspec +24 -0
  368. data/vendor/bundle/ruby/3.1.0/specifications/logger-1.7.0.gemspec +22 -0
  369. data/vendor/bundle/ruby/3.1.0/specifications/rake-13.0.6.gemspec +26 -0
  370. data/vendor/bundle/ruby/3.1.0/specifications/typhoeus-1.6.0.gemspec +32 -0
  371. metadata +342 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5747a8dba105a312d1eda323915e9024845dfcb5a82f6d4abc87232cb28d7046
4
- data.tar.gz: 85563d9e2d9af21fdb09a6e1b80d388e76e031b20fcc02c80f993e94226ed2b6
3
+ metadata.gz: 1c44a9957bf57738f362f31d821be9dd0c7cb3d3e762884ecb6c23fe90220a26
4
+ data.tar.gz: ea7059e470cbc2ca6cef14106a9f2373aaab1758202eaac9662a84a3a8d7579d
5
5
  SHA512:
6
- metadata.gz: a4d498eeb35b771652fee94bc8bcd044079bdf3e5c8c3c614f80cc903c035ebbac2f184700740b09985cdd1bf5794f24584977f1f64533c6615081bdb9324066
7
- data.tar.gz: 5249c08557566a2b935608247c4069e6e514eeb02ff35bf95408aa9320521fc40130f3193ab1bc3fd829d6ac0ac4c9b9cc91bb0c43d40aa6c96ce8b3b66228ca
6
+ metadata.gz: 4cb5a21988100e33a74f05912cb4aa423d34355041a8718a99269389879d1eb5ed89637e7d7a67de02f5117903902cd23a8a95d98620687aedce075e92916eb6
7
+ data.tar.gz: e0f002ca69d0f69fe4c583b2041069ab2da69cafae48dd2af8a432f520bc72fc33fa18cbd27f593b88f946673e4389f2a81c3d80238105fd6f5aab6b8292461c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # Changelog
2
2
 
3
+ ## [v16.1.0.rc.3](https://github.com/fastly/fastly-ruby/releases/tag/release/v16.1.0.rc.3) (2026-03-30)
4
+
5
+ - No notable changes in this release.
6
+
7
+ ## [v16.1.0.rc.2](https://github.com/fastly/fastly-ruby/releases/tag/release/v16.1.0.rc.2) (2026-03-30)
8
+
9
+ - No notable changes in this release.
10
+
11
+ ## [v16.1.0.rc.1](https://github.com/fastly/fastly-ruby/releases/tag/release/v16.1.0.rc.1) (2026-03-25)
12
+
13
+ - No notable changes in this release.
14
+
15
+ ## [v16.1.0.rc.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v16.1.0.rc.0) (2026-03-25)
16
+
17
+ **Enhancements:**
18
+
19
+ - feat(historical, realtime): Deprecated metrics `compute_bereq_errors`, `compute_resource_limit_exceeded`,
20
+ `compute_heap_limit_exceeded`, `compute_stack_limit_exceeded`, `compute_globals_limit_exceeded`,
21
+ `compute_guest_errors`, and `compute_runtime_errors`.
22
+ - feat(historical, realtime): Added metrics `compute_service_bereq_error`, `compute_service_memory_exceeded_error`.
23
+ `imgopto_avif_count`, `imgopto_jpeg_count`, `imgopto_png_count`, `imgopto_gif_count`,
24
+ `imgopto_webp_count`, `imgopto_jpegxl_count`, `imgopto_svg_count`, `imgopto_mp4_count`,
25
+ `compute_service_resource_limits_error`, `compute_service_runtime_error`, `compute_service_chain_error`
26
+ `compute_platform_internal_error`, `compute_service_timeout_error`, `compute_service_vcpu_exceeded_error`
27
+ `compute_service_limits_error`, and `compute_platform_invalid_request_error`.
28
+ - feat(domains): Add new Domain Management Domains API.
29
+ - feat(apisecurity-operations): Results include support for `rps` and `id`.
30
+ - feat(apisecurity-operations): List endpoints add support for new parameters `method`, `domain`, and `path`.
31
+ - feat(apisecurity-operations): Add new bulk operations endpoints.
32
+
33
+
3
34
  ## [v16.0.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v16.0.0) (2026-02-16)
4
35
 
5
36
  **Breaking Changes:**
data/Gemfile CHANGED
@@ -4,6 +4,4 @@ gemspec
4
4
 
5
5
  group :development, :test do
6
6
  gem 'rake', '~> 13.0.1'
7
- gem 'pry-byebug'
8
- gem 'rubocop', '~> 0.66.0'
9
7
  end
data/Gemfile.lock CHANGED
@@ -1,57 +1,31 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fastly (16.0.0)
4
+ fastly (16.1.0.rc.3)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- ast (2.4.2)
11
- byebug (11.1.3)
12
- coderay (1.1.3)
13
- ethon (0.15.0)
10
+ ethon (0.18.0)
14
11
  ffi (>= 1.15.0)
15
- ffi (1.17.3-arm64-darwin)
16
- ffi (1.17.3-x86_64-linux-gnu)
17
- jaro_winkler (1.5.4)
18
- method_source (1.0.0)
19
- parallel (1.21.0)
20
- parser (3.1.0.0)
21
- ast (~> 2.4.1)
22
- pry (0.13.1)
23
- coderay (~> 1.1)
24
- method_source (~> 1.0)
25
- pry-byebug (3.9.0)
26
- byebug (~> 11.0)
27
- pry (~> 0.13.0)
28
- psych (4.0.3)
29
- stringio
30
- rainbow (3.1.1)
12
+ logger
13
+ ffi (1.17.4)
14
+ ffi (1.17.4-arm64-darwin)
15
+ ffi (1.17.4-x86_64-linux-gnu)
16
+ logger (1.7.0)
31
17
  rake (13.0.6)
32
- rubocop (0.66.0)
33
- jaro_winkler (~> 1.5.1)
34
- parallel (~> 1.10)
35
- parser (>= 2.5, != 2.5.1.1)
36
- psych (>= 3.1.0)
37
- rainbow (>= 2.2.2, < 4.0)
38
- ruby-progressbar (~> 1.7)
39
- unicode-display_width (>= 1.4.0, < 1.6)
40
- ruby-progressbar (1.11.0)
41
- stringio (3.0.1)
42
- typhoeus (1.5.0)
43
- ethon (>= 0.9.0, < 0.16.0)
44
- unicode-display_width (1.5.0)
18
+ typhoeus (1.6.0)
19
+ ethon (>= 0.18.0)
45
20
 
46
21
  PLATFORMS
47
22
  arm64-darwin-21
23
+ ruby
48
24
  x86_64-linux
49
25
 
50
26
  DEPENDENCIES
51
27
  fastly!
52
- pry-byebug
53
28
  rake (~> 13.0.1)
54
- rubocop (~> 0.66.0)
55
29
 
56
30
  BUNDLED WITH
57
31
  2.3.3
data/README.md CHANGED
@@ -2,13 +2,19 @@
2
2
 
3
3
  A Ruby client library for interacting with most facets of the [Fastly API](https://www.fastly.com/documentation/reference/api/).
4
4
 
5
+ > ⚠️ This client library (`16.1.0.rc.3`) is an early-access release. Features may change without notice. Use at your own risk.
6
+
7
+ **We strongly recommend that you do not install alpha and beta releases on live production services.** No official support is provided for such releases. Please try out the library in a test environment, see what breaks without worrying about consequences, and give us [feedback](#issues).
8
+
9
+ Read about the [Fastly Product Lifecycle](https://docs.fastly.com/products/fastly-product-lifecycle).
10
+
5
11
 
6
12
  ## Installation
7
13
 
8
14
  To install via RubyGems, add the following to your project's `Gemfile`:
9
15
 
10
16
  ```ruby
11
- gem 'fastly', '~> 16.0.0'
17
+ gem 'fastly', '~> 16.1.0.rc.3'
12
18
  ```
13
19
 
14
20
  Then run `bundle install`.
@@ -91,6 +97,9 @@ Class | Method | Description
91
97
  [*Fastly::ApexRedirectApi*](docs/ApexRedirectApi.md) | [**get_apex_redirect**](docs/ApexRedirectApi.md#get_apex_redirect) | Get an apex redirect
92
98
  [*Fastly::ApexRedirectApi*](docs/ApexRedirectApi.md) | [**list_apex_redirects**](docs/ApexRedirectApi.md#list_apex_redirects) | List apex redirects
93
99
  [*Fastly::ApexRedirectApi*](docs/ApexRedirectApi.md) | [**update_apex_redirect**](docs/ApexRedirectApi.md#update_apex_redirect) | Update an apex redirect
100
+ [*Fastly::ApisecurityOperationsApi*](docs/ApisecurityOperationsApi.md) | [**api_security_bulk_add_tags_to_operations**](docs/ApisecurityOperationsApi.md#api_security_bulk_add_tags_to_operations) | Bulk add tags to operations
101
+ [*Fastly::ApisecurityOperationsApi*](docs/ApisecurityOperationsApi.md) | [**api_security_bulk_create_operations**](docs/ApisecurityOperationsApi.md#api_security_bulk_create_operations) | Bulk create operations
102
+ [*Fastly::ApisecurityOperationsApi*](docs/ApisecurityOperationsApi.md) | [**api_security_bulk_delete_operations**](docs/ApisecurityOperationsApi.md#api_security_bulk_delete_operations) | Bulk delete operations
94
103
  [*Fastly::ApisecurityOperationsApi*](docs/ApisecurityOperationsApi.md) | [**api_security_create_operation**](docs/ApisecurityOperationsApi.md#api_security_create_operation) | Create operation
95
104
  [*Fastly::ApisecurityOperationsApi*](docs/ApisecurityOperationsApi.md) | [**api_security_create_operation_tag**](docs/ApisecurityOperationsApi.md#api_security_create_operation_tag) | Create operation tag
96
105
  [*Fastly::ApisecurityOperationsApi*](docs/ApisecurityOperationsApi.md) | [**api_security_delete_operation**](docs/ApisecurityOperationsApi.md#api_security_delete_operation) | Delete operation
@@ -671,21 +680,27 @@ The fastly-ruby API client currently does not support the following endpoints:
671
680
  - [`/ngwaf/v1/default-dashboards`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/custom-dashboards) (GET)
672
681
  - [`/ngwaf/v1/lists/{listId}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/lists) (DELETE, GET, PATCH)
673
682
  - [`/ngwaf/v1/lists`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/lists) (GET, POST)
683
+ - [`/ngwaf/v1/rules/{rule_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/rules) (DELETE, GET, PATCH)
684
+ - [`/ngwaf/v1/rules`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/rules) (GET, POST)
674
685
  - [`/ngwaf/v1/signals/{signal_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/signals) (DELETE, GET, PATCH)
675
686
  - [`/ngwaf/v1/signals`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/signals) (GET, POST)
676
687
  - [`/ngwaf/v1/timeseries`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/timeseries) (GET)
677
688
  - [`/ngwaf/v1/workspaces/{workspaceId}/lists/{listId}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/lists) (DELETE, GET, PATCH)
678
689
  - [`/ngwaf/v1/workspaces/{workspaceId}/lists`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/lists) (GET, POST)
679
690
  - [`/ngwaf/v1/workspaces/{workspace_id}/alerts/{alert_id}/signing-key`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/workspace_alerts) (GET, POST)
691
+ - [`/ngwaf/v1/workspaces/{workspace_id}/alerts/{alert_id}/test`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/workspace_alerts) (POST)
680
692
  - [`/ngwaf/v1/workspaces/{workspace_id}/alerts/{alert_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/workspace_alerts) (DELETE, GET, PATCH)
681
693
  - [`/ngwaf/v1/workspaces/{workspace_id}/alerts`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/workspace_alerts) (GET, POST)
682
694
  - [`/ngwaf/v1/workspaces/{workspace_id}/dashboards/{dashboard_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/custom-dashboards) (DELETE, GET, PATCH)
683
695
  - [`/ngwaf/v1/workspaces/{workspace_id}/dashboards`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/custom-dashboards) (GET, POST)
684
696
  - [`/ngwaf/v1/workspaces/{workspace_id}/default-dashboard`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/custom-dashboards) (GET, PUT)
697
+ - [`/ngwaf/v1/workspaces/{workspace_id}/events/{event_id}/expire`](https://www.fastly.com/documentation/reference/api/ngwaf/events) (POST)
685
698
  - [`/ngwaf/v1/workspaces/{workspace_id}/events/{event_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/events) (GET, PATCH)
686
699
  - [`/ngwaf/v1/workspaces/{workspace_id}/events`](https://www.fastly.com/documentation/reference/api/ngwaf/events) (GET)
687
700
  - [`/ngwaf/v1/workspaces/{workspace_id}/header-links/{header_link_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/header-links) (DELETE, GET, PUT)
688
701
  - [`/ngwaf/v1/workspaces/{workspace_id}/header-links`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/header-links) (GET, POST)
702
+ - [`/ngwaf/v1/workspaces/{workspace_id}/rate-limited-sources/{source_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/rate-limited-sources) (DELETE, GET)
703
+ - [`/ngwaf/v1/workspaces/{workspace_id}/rate-limited-sources`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/rate-limited-sources) (DELETE, GET)
689
704
  - [`/ngwaf/v1/workspaces/{workspace_id}/redactions/{redaction_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/redactions) (DELETE, GET, PATCH)
690
705
  - [`/ngwaf/v1/workspaces/{workspace_id}/redactions`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/redactions) (GET, POST)
691
706
  - [`/ngwaf/v1/workspaces/{workspace_id}/requests/{request_id}/report`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/requests) (POST)
@@ -693,8 +708,11 @@ The fastly-ruby API client currently does not support the following endpoints:
693
708
  - [`/ngwaf/v1/workspaces/{workspace_id}/requests`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/requests) (GET)
694
709
  - [`/ngwaf/v1/workspaces/{workspace_id}/rules/{rule_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/rules) (DELETE, GET, PATCH)
695
710
  - [`/ngwaf/v1/workspaces/{workspace_id}/rules`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/rules) (GET, POST)
711
+ - [`/ngwaf/v1/workspaces/{workspace_id}/signals/{signal_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/signals) (DELETE, GET, PATCH)
712
+ - [`/ngwaf/v1/workspaces/{workspace_id}/signals`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/signals) (GET, POST)
696
713
  - [`/ngwaf/v1/workspaces/{workspace_id}/thresholds/{threshold_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/thresholds) (DELETE, GET, PATCH)
697
714
  - [`/ngwaf/v1/workspaces/{workspace_id}/thresholds`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/thresholds) (GET, POST)
715
+ - [`/ngwaf/v1/workspaces/{workspace_id}/timeseries/agents/{agent_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/timeseries) (GET)
698
716
  - [`/ngwaf/v1/workspaces/{workspace_id}/timeseries`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/timeseries) (GET)
699
717
  - [`/ngwaf/v1/workspaces/{workspace_id}/top-attacks`](https://www.fastly.com/documentation/reference/api/ngwaf/workspaces) (GET)
700
718
  - [`/ngwaf/v1/workspaces/{workspace_id}/virtual-patches/{virtual_patch_id}`](https://www.fastly.com/documentation/reference/api/ngwaf/v1/virtual-patches) (GET, PATCH)
data/Rakefile CHANGED
@@ -1 +1,18 @@
1
1
  require "bundler/gem_tasks"
2
+
3
+ # Override Bundler's default `release` task to avoid pushing git tags.
4
+ #
5
+ # Our release workflow is triggered by a tag push in GitHub Actions and
6
+ # publishes the gem using `rubygems/release-gem` (trusted publishing).
7
+ # The default Bundler task would also try to create and push a git tag,
8
+ # which conflicts with our workflow.
9
+ #
10
+ # Pattern adapted from:
11
+ # https://github.com/line/line-bot-sdk-ruby/pull/339
12
+
13
+ Rake::Task["release"].clear
14
+
15
+ desc "Build and push gem to RubyGems without pushing to source control"
16
+ task "release" => %w[build release:guard_clean release:rubygem_push] do
17
+ puts "Built and pushed gem to RubyGems without pushing to source control."
18
+ end
@@ -13,6 +13,9 @@ api_instance = Fastly::ApisecurityOperationsApi.new
13
13
 
14
14
  Method | HTTP request | Description
15
15
  ------ | ------------ | -----------
16
+ [**api_security_bulk_add_tags_to_operations**](ApisecurityOperationsApi.md#api_security_bulk_add_tags_to_operations) | **POST** /api-security/v1/services/{service_id}/operations-bulk-tags | Bulk add tags to operations
17
+ [**api_security_bulk_create_operations**](ApisecurityOperationsApi.md#api_security_bulk_create_operations) | **POST** /api-security/v1/services/{service_id}/operations-bulk | Bulk create operations
18
+ [**api_security_bulk_delete_operations**](ApisecurityOperationsApi.md#api_security_bulk_delete_operations) | **DELETE** /api-security/v1/services/{service_id}/operations-bulk | Bulk delete operations
16
19
  [**api_security_create_operation**](ApisecurityOperationsApi.md#api_security_create_operation) | **POST** /api-security/v1/services/{service_id}/operations | Create operation
17
20
  [**api_security_create_operation_tag**](ApisecurityOperationsApi.md#api_security_create_operation_tag) | **POST** /api-security/v1/services/{service_id}/tags | Create operation tag
18
21
  [**api_security_delete_operation**](ApisecurityOperationsApi.md#api_security_delete_operation) | **DELETE** /api-security/v1/services/{service_id}/operations/{operation_id} | Delete operation
@@ -26,6 +29,123 @@ Method | HTTP request | Description
26
29
  [**api_security_update_operation_tag**](ApisecurityOperationsApi.md#api_security_update_operation_tag) | **PATCH** /api-security/v1/services/{service_id}/tags/{tag_id} | Update operation tag
27
30
 
28
31
 
32
+ ## `api_security_bulk_add_tags_to_operations()`
33
+
34
+ ```ruby
35
+ api_security_bulk_add_tags_to_operations(opts): <InlineResponse2071> # Bulk add tags to operations
36
+ ```
37
+
38
+ Add tags to multiple operations in a single request.
39
+
40
+ ### Examples
41
+
42
+ ```ruby
43
+ api_instance = Fastly::ApisecurityOperationsApi.new
44
+ opts = {
45
+ service_id: '3NeCFuZNP1v0iyJ2vmYQI6', # String | The unique identifier of the service.
46
+ operation_bulk_add_tags: Fastly::OperationBulkAddTags.new({operation_ids: ['op_abc123def456'], tag_ids: ['tag_abc123def456']}), # OperationBulkAddTags |
47
+ }
48
+
49
+ begin
50
+ # Bulk add tags to operations
51
+ result = api_instance.api_security_bulk_add_tags_to_operations(opts)
52
+ p result
53
+ rescue Fastly::ApiError => e
54
+ puts "Error when calling ApisecurityOperationsApi->api_security_bulk_add_tags_to_operations: #{e}"
55
+ end
56
+ ```
57
+
58
+ ### Options
59
+
60
+ | Name | Type | Description | Notes |
61
+ | ---- | ---- | ----------- | ----- |
62
+ | **service_id** | **String** | The unique identifier of the service. | |
63
+ | **operation_bulk_add_tags** | [**OperationBulkAddTags**](OperationBulkAddTags.md) | | [optional] |
64
+
65
+ ### Return type
66
+
67
+ [**InlineResponse2071**](InlineResponse2071.md)
68
+
69
+ [[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
70
+ [[Back to README]](../../README.md)
71
+ ## `api_security_bulk_create_operations()`
72
+
73
+ ```ruby
74
+ api_security_bulk_create_operations(opts): <InlineResponse207> # Bulk create operations
75
+ ```
76
+
77
+ Create multiple operations associated with a specific service in a single request.
78
+
79
+ ### Examples
80
+
81
+ ```ruby
82
+ api_instance = Fastly::ApisecurityOperationsApi.new
83
+ opts = {
84
+ service_id: '3NeCFuZNP1v0iyJ2vmYQI6', # String | The unique identifier of the service.
85
+ operation_bulk_create: Fastly::OperationBulkCreate.new({operations: [Fastly::OperationBulkCreateOperations.new({method: 'GET', domain: 'www.example.com', path: '/api/v1/users/{var1}'})]}), # OperationBulkCreate |
86
+ }
87
+
88
+ begin
89
+ # Bulk create operations
90
+ result = api_instance.api_security_bulk_create_operations(opts)
91
+ p result
92
+ rescue Fastly::ApiError => e
93
+ puts "Error when calling ApisecurityOperationsApi->api_security_bulk_create_operations: #{e}"
94
+ end
95
+ ```
96
+
97
+ ### Options
98
+
99
+ | Name | Type | Description | Notes |
100
+ | ---- | ---- | ----------- | ----- |
101
+ | **service_id** | **String** | The unique identifier of the service. | |
102
+ | **operation_bulk_create** | [**OperationBulkCreate**](OperationBulkCreate.md) | | [optional] |
103
+
104
+ ### Return type
105
+
106
+ [**InlineResponse207**](InlineResponse207.md)
107
+
108
+ [[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
109
+ [[Back to README]](../../README.md)
110
+ ## `api_security_bulk_delete_operations()`
111
+
112
+ ```ruby
113
+ api_security_bulk_delete_operations(opts): <InlineResponse2071> # Bulk delete operations
114
+ ```
115
+
116
+ Delete multiple operations in a single request.
117
+
118
+ ### Examples
119
+
120
+ ```ruby
121
+ api_instance = Fastly::ApisecurityOperationsApi.new
122
+ opts = {
123
+ service_id: '3NeCFuZNP1v0iyJ2vmYQI6', # String | The unique identifier of the service.
124
+ operation_bulk_delete: Fastly::OperationBulkDelete.new({operation_ids: ['op_abc123def456']}), # OperationBulkDelete |
125
+ }
126
+
127
+ begin
128
+ # Bulk delete operations
129
+ result = api_instance.api_security_bulk_delete_operations(opts)
130
+ p result
131
+ rescue Fastly::ApiError => e
132
+ puts "Error when calling ApisecurityOperationsApi->api_security_bulk_delete_operations: #{e}"
133
+ end
134
+ ```
135
+
136
+ ### Options
137
+
138
+ | Name | Type | Description | Notes |
139
+ | ---- | ---- | ----------- | ----- |
140
+ | **service_id** | **String** | The unique identifier of the service. | |
141
+ | **operation_bulk_delete** | [**OperationBulkDelete**](OperationBulkDelete.md) | | [optional] |
142
+
143
+ ### Return type
144
+
145
+ [**InlineResponse2071**](InlineResponse2071.md)
146
+
147
+ [[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
148
+ [[Back to README]](../../README.md)
29
149
  ## `api_security_create_operation()`
30
150
 
31
151
  ```ruby
@@ -40,7 +160,7 @@ Create a new operation associated with a specific service.
40
160
  api_instance = Fastly::ApisecurityOperationsApi.new
41
161
  opts = {
42
162
  service_id: '3NeCFuZNP1v0iyJ2vmYQI6', # String | The unique identifier of the service.
43
- operation_create: Fastly::OperationCreate.new, # OperationCreate |
163
+ operation_create: Fastly::OperationCreate.new({method: 'GET', domain: 'www.example.com', path: '/api/v1/users/{var1}'}), # OperationCreate |
44
164
  }
45
165
 
46
166
  begin
@@ -272,7 +392,9 @@ List all discovered operations associated with a specific service. Optionally fi
272
392
  api_instance = Fastly::ApisecurityOperationsApi.new
273
393
  opts = {
274
394
  service_id: '3NeCFuZNP1v0iyJ2vmYQI6', # String | The unique identifier of the service.
275
- status: 'DISCOVERED', # String | Filter operations by status. Only operations with this status will be returned.
395
+ method: ['GET'], # Array<String> | Filter operations by HTTP method.
396
+ domain: ['inner_example'], # Array<String> | Filter operations by fully-qualified domain name (exact match).
397
+ path: '/api/v1/users', # String | Filter operations by path (exact match).
276
398
  limit: 100, # Integer | The maximum number of operations to return per page.
277
399
  page: 1, # Integer | The page number to return.
278
400
  }
@@ -291,7 +413,9 @@ end
291
413
  | Name | Type | Description | Notes |
292
414
  | ---- | ---- | ----------- | ----- |
293
415
  | **service_id** | **String** | The unique identifier of the service. | |
294
- | **status** | **String** | Filter operations by status. Only operations with this status will be returned. | [optional] |
416
+ | **method** | [**Array&lt;String&gt;**](String.md) | Filter operations by HTTP method. | [optional] |
417
+ | **domain** | [**Array&lt;String&gt;**](String.md) | Filter operations by fully-qualified domain name (exact match). | [optional] |
418
+ | **path** | **String** | Filter operations by path (exact match). | [optional] |
295
419
  | **limit** | **Integer** | The maximum number of operations to return per page. | [optional][default to 100] |
296
420
  | **page** | **Integer** | The page number to return. | [optional][default to 0] |
297
421
 
@@ -315,6 +439,8 @@ List all operation tags associated with a specific service.
315
439
  api_instance = Fastly::ApisecurityOperationsApi.new
316
440
  opts = {
317
441
  service_id: '3NeCFuZNP1v0iyJ2vmYQI6', # String | The unique identifier of the service.
442
+ limit: 100, # Integer | The maximum number of operations to return per page.
443
+ page: 1, # Integer | The page number to return.
318
444
  }
319
445
 
320
446
  begin
@@ -331,6 +457,8 @@ end
331
457
  | Name | Type | Description | Notes |
332
458
  | ---- | ---- | ----------- | ----- |
333
459
  | **service_id** | **String** | The unique identifier of the service. | |
460
+ | **limit** | **Integer** | The maximum number of operations to return per page. | [optional][default to 100] |
461
+ | **page** | **Integer** | The page number to return. | [optional][default to 0] |
334
462
 
335
463
  ### Return type
336
464
 
@@ -353,6 +481,10 @@ api_instance = Fastly::ApisecurityOperationsApi.new
353
481
  opts = {
354
482
  service_id: '3NeCFuZNP1v0iyJ2vmYQI6', # String | The unique identifier of the service.
355
483
  tag_id: 'tag_abc123def456', # String | Filter operations by operation tag ID. Only operations associated with this operation tag will be returned.
484
+ status: 'SAVED', # String | Filter operations by status. Defaults to SAVED if omitted.
485
+ method: ['GET'], # Array<String> | Filter operations by HTTP method.
486
+ domain: ['inner_example'], # Array<String> | Filter operations by fully-qualified domain name (exact match).
487
+ path: '/api/v1/users', # String | Filter operations by path (exact match).
356
488
  limit: 100, # Integer | The maximum number of operations to return per page.
357
489
  page: 1, # Integer | The page number to return.
358
490
  }
@@ -372,6 +504,10 @@ end
372
504
  | ---- | ---- | ----------- | ----- |
373
505
  | **service_id** | **String** | The unique identifier of the service. | |
374
506
  | **tag_id** | **String** | Filter operations by operation tag ID. Only operations associated with this operation tag will be returned. | [optional] |
507
+ | **status** | **String** | Filter operations by status. Defaults to SAVED if omitted. | [optional][default to &#39;SAVED&#39;] |
508
+ | **method** | [**Array&lt;String&gt;**](String.md) | Filter operations by HTTP method. | [optional] |
509
+ | **domain** | [**Array&lt;String&gt;**](String.md) | Filter operations by fully-qualified domain name (exact match). | [optional] |
510
+ | **path** | **String** | Filter operations by path (exact match). | [optional] |
375
511
  | **limit** | **Integer** | The maximum number of operations to return per page. | [optional][default to 100] |
376
512
  | **page** | **Integer** | The page number to return. | [optional][default to 0] |
377
513
 
@@ -0,0 +1,12 @@
1
+ # Fastly::BulkOperationResult
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | The operation ID. | [optional] |
8
+ | **status_code** | **Integer** | HTTP status code for this operation. | [optional] |
9
+ | **reason** | **String** | Error reason if the operation failed. | [optional] |
10
+
11
+ [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
12
+
@@ -7,9 +7,10 @@
7
7
  | **method** | **String** | The HTTP method for the operation. | |
8
8
  | **domain** | **String** | The domain for the operation. | |
9
9
  | **path** | **String** | The path for the operation, which may include path parameters. | |
10
- | **status** | **String** | The current status of the operation. | [optional] |
10
+ | **id** | **String** | The unique identifier of the discovered operation. | [readonly] |
11
11
  | **updated_at** | **Time** | The timestamp when the operation was last updated. | [optional][readonly] |
12
12
  | **last_seen_at** | **Time** | The timestamp when the operation was last seen in traffic. | [optional][readonly] |
13
+ | **rps** | **Float** | Requests per second observed for this operation. | [optional][readonly] |
13
14
 
14
15
  [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
15
16
 
@@ -4,9 +4,10 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **status** | **String** | The current status of the operation. | [optional] |
7
+ | **id** | **String** | The unique identifier of the discovered operation. | [readonly] |
8
8
  | **updated_at** | **Time** | The timestamp when the operation was last updated. | [optional][readonly] |
9
9
  | **last_seen_at** | **Time** | The timestamp when the operation was last seen in traffic. | [optional][readonly] |
10
+ | **rps** | **Float** | Requests per second observed for this operation. | [optional][readonly] |
10
11
 
11
12
  [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
12
13
 
data/docs/DmDomainsApi.md CHANGED
@@ -144,6 +144,7 @@ List all domains
144
144
  api_instance = Fastly::DmDomainsApi.new
145
145
  opts = {
146
146
  fqdn: 'fqdn_example', # String |
147
+ fqdn_match: 'contains', # String | (Optional) Filter fully-qualified domain name (FQDN) specifically by match type. If used, requires filtering by FQDN.
147
148
  service_id: 'service_id_example', # String | Filter results based on a service_id.
148
149
  sort: 'fqdn', # String | The order in which to list the results.
149
150
  activated: true, # Boolean |
@@ -166,6 +167,7 @@ end
166
167
  | Name | Type | Description | Notes |
167
168
  | ---- | ---- | ----------- | ----- |
168
169
  | **fqdn** | **String** | | [optional] |
170
+ | **fqdn_match** | **String** | (Optional) Filter fully-qualified domain name (FQDN) specifically by match type. If used, requires filtering by FQDN. | [optional][default to &#39;contains&#39;] |
169
171
  | **service_id** | **String** | Filter results based on a service_id. | [optional] |
170
172
  | **sort** | **String** | The order in which to list the results. | [optional][default to &#39;fqdn&#39;] |
171
173
  | **activated** | **Boolean** | | [optional] |
@@ -0,0 +1,10 @@
1
+ # Fastly::InlineResponse207
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **data** | [**Array&lt;BulkOperationResult&gt;**](BulkOperationResult.md) | Results for each operation in the request. | [optional] |
8
+
9
+ [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
10
+
@@ -0,0 +1,10 @@
1
+ # Fastly::InlineResponse2071
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **data** | [**Array&lt;BulkOperationResult&gt;**](BulkOperationResult.md) | Results for each operation in the request. | [optional] |
8
+
9
+ [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
10
+
@@ -0,0 +1,11 @@
1
+ # Fastly::OperationBulkAddTags
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **operation_ids** | **Array&lt;String&gt;** | List of operation IDs to add tags to. | |
8
+ | **tag_ids** | **Array&lt;String&gt;** | List of tag IDs to add to the operations. | |
9
+
10
+ [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
11
+
@@ -0,0 +1,10 @@
1
+ # Fastly::OperationBulkCreate
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **operations** | [**Array&lt;OperationBulkCreateOperations&gt;**](OperationBulkCreateOperations.md) | List of operations to create. | |
8
+
9
+ [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
10
+
@@ -0,0 +1,15 @@
1
+ # Fastly::OperationBulkCreateOperations
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **method** | **String** | The HTTP method for the operation. | |
8
+ | **domain** | **String** | The domain for the operation. | |
9
+ | **path** | **String** | The path for the operation. | |
10
+ | **description** | **String** | A description of what the operation does. | [optional] |
11
+ | **tag_ids** | **Array&lt;String&gt;** | An array of tag IDs to associate with this operation. | [optional] |
12
+ | **status** | **String** | The status to assign to the operation. Defaults to SAVED if omitted. | [optional][default to &#39;SAVED&#39;] |
13
+
14
+ [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
15
+
@@ -0,0 +1,10 @@
1
+ # Fastly::OperationBulkDelete
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **operation_ids** | **Array&lt;String&gt;** | List of operation IDs to delete. | |
8
+
9
+ [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
10
+
@@ -4,11 +4,12 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **method** | **String** | The HTTP method for the operation. | [optional] |
8
- | **domain** | **String** | The domain for the operation. | [optional] |
9
- | **path** | **String** | The path for the operation, which may include path parameters. | [optional] |
7
+ | **method** | **String** | The HTTP method for the operation. | |
8
+ | **domain** | **String** | The domain for the operation. | |
9
+ | **path** | **String** | The path for the operation, which may include path parameters. | |
10
10
  | **description** | **String** | A description of what the operation does. | [optional] |
11
11
  | **tag_ids** | **Array&lt;String&gt;** | An array of operation tag IDs associated with this operation. | [optional] |
12
+ | **status** | **String** | The status to assign to the operation. Defaults to SAVED if omitted. | [optional][default to &#39;SAVED&#39;] |
12
13
 
13
14
  [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
14
15
 
@@ -0,0 +1,10 @@
1
+ # Fastly::OperationCreateExtra
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **status** | **String** | The status to assign to the operation. Defaults to SAVED if omitted. | [optional][default to &#39;SAVED&#39;] |
8
+
9
+ [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
10
+
data/docs/OperationGet.md CHANGED
@@ -13,6 +13,8 @@
13
13
  | **tag_ids** | **Array&lt;String&gt;** | An array of operation tag IDs associated with this operation. | [optional] |
14
14
  | **created_at** | **Time** | The timestamp when the operation was created. | [optional][readonly] |
15
15
  | **last_seen_at** | **Time** | The timestamp when the operation was last seen in traffic. | [optional][readonly] |
16
+ | **rps** | **Float** | Requests per second observed for this operation. | [optional][readonly] |
17
+ | **status** | **String** | The status of the operation. | [optional][readonly] |
16
18
 
17
19
  [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
18
20
 
@@ -8,6 +8,8 @@
8
8
  | **updated_at** | **Time** | The timestamp when the operation was last updated. | [readonly] |
9
9
  | **created_at** | **Time** | The timestamp when the operation was created. | [optional][readonly] |
10
10
  | **last_seen_at** | **Time** | The timestamp when the operation was last seen in traffic. | [optional][readonly] |
11
+ | **rps** | **Float** | Requests per second observed for this operation. | [optional][readonly] |
12
+ | **status** | **String** | The status of the operation. | [optional][readonly] |
11
13
 
12
14
  [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
13
15
 
@@ -9,6 +9,7 @@
9
9
  | **path** | **String** | The path for the operation, which may include path parameters. | [optional] |
10
10
  | **description** | **String** | A description of what the operation does. | [optional] |
11
11
  | **tag_ids** | **Array&lt;String&gt;** | An array of operation tag IDs associated with this operation. | [optional] |
12
+ | **status** | **String** | The status of the operation. | [optional] |
12
13
 
13
14
  [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
14
15