fog-google 1.24.1 → 1.26.0

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 (437) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/integration-compute-core.yml +2 -2
  3. data/.github/workflows/integration-compute-instance_groups.yml +2 -2
  4. data/.github/workflows/integration-compute-loadbalancing.yml +2 -2
  5. data/.github/workflows/integration-compute-networking.yml +2 -2
  6. data/.github/workflows/integration-monitoring.yml +2 -2
  7. data/.github/workflows/integration-pubsub.yml +2 -2
  8. data/.github/workflows/integration-sql.yml +2 -2
  9. data/.github/workflows/integration-storage.yml +2 -2
  10. data/.github/workflows/unit.yml +2 -2
  11. data/CHANGELOG.md +58 -27
  12. data/CONTRIBUTING.md +11 -11
  13. data/README.md +7 -7
  14. data/SECURITY.md +3 -14
  15. data/examples/create_instance_and_attach_disk_later.rb +6 -7
  16. data/examples/dns/project.rb +1 -1
  17. data/examples/dns/zones.rb +1 -1
  18. data/examples/storage.rb +1 -1
  19. data/examples/storage_json.rb +1 -1
  20. data/fog-google.gemspec +3 -4
  21. data/lib/fog/bin/google.rb +23 -25
  22. data/lib/fog/{compute/google → google/compute}/mock.rb +2 -2
  23. data/lib/fog/{compute/google → google/compute}/models/address.rb +8 -8
  24. data/lib/fog/{compute/google → google/compute}/models/addresses.rb +3 -3
  25. data/lib/fog/{compute/google → google/compute}/models/backend_service.rb +4 -4
  26. data/lib/fog/{compute/google → google/compute}/models/backend_services.rb +3 -3
  27. data/lib/fog/{compute/google → google/compute}/models/disk.rb +5 -5
  28. data/lib/fog/{compute/google → google/compute}/models/disk_type.rb +2 -2
  29. data/lib/fog/{compute/google → google/compute}/models/disk_types.rb +3 -3
  30. data/lib/fog/{compute/google → google/compute}/models/disks.rb +3 -3
  31. data/lib/fog/{compute/google → google/compute}/models/firewall.rb +6 -6
  32. data/lib/fog/{compute/google → google/compute}/models/firewalls.rb +3 -3
  33. data/lib/fog/{compute/google → google/compute}/models/forwarding_rule.rb +4 -4
  34. data/lib/fog/{compute/google → google/compute}/models/forwarding_rules.rb +3 -3
  35. data/lib/fog/{compute/google → google/compute}/models/global_address.rb +4 -4
  36. data/lib/fog/{compute/google → google/compute}/models/global_addresses.rb +3 -3
  37. data/lib/fog/{compute/google → google/compute}/models/global_forwarding_rule.rb +4 -4
  38. data/lib/fog/{compute/google → google/compute}/models/global_forwarding_rules.rb +3 -3
  39. data/lib/fog/{compute/google → google/compute}/models/http_health_check.rb +5 -5
  40. data/lib/fog/{compute/google → google/compute}/models/http_health_checks.rb +3 -3
  41. data/lib/fog/{compute/google → google/compute}/models/image.rb +4 -4
  42. data/lib/fog/{compute/google → google/compute}/models/images.rb +3 -3
  43. data/lib/fog/{compute/google → google/compute}/models/instance_group.rb +2 -2
  44. data/lib/fog/{compute/google → google/compute}/models/instance_group_manager.rb +3 -3
  45. data/lib/fog/{compute/google → google/compute}/models/instance_group_managers.rb +3 -3
  46. data/lib/fog/{compute/google → google/compute}/models/instance_groups.rb +5 -5
  47. data/lib/fog/{compute/google → google/compute}/models/instance_template.rb +4 -4
  48. data/lib/fog/{compute/google → google/compute}/models/instance_templates.rb +3 -3
  49. data/lib/fog/{compute/google → google/compute}/models/machine_type.rb +2 -2
  50. data/lib/fog/{compute/google → google/compute}/models/machine_types.rb +3 -3
  51. data/lib/fog/{compute/google → google/compute}/models/network.rb +4 -4
  52. data/lib/fog/{compute/google → google/compute}/models/networks.rb +3 -3
  53. data/lib/fog/{compute/google → google/compute}/models/operation.rb +2 -2
  54. data/lib/fog/{compute/google → google/compute}/models/operations.rb +3 -3
  55. data/lib/fog/{compute/google → google/compute}/models/project.rb +3 -3
  56. data/lib/fog/{compute/google → google/compute}/models/projects.rb +3 -3
  57. data/lib/fog/{compute/google → google/compute}/models/region.rb +2 -2
  58. data/lib/fog/{compute/google → google/compute}/models/regions.rb +3 -3
  59. data/lib/fog/{compute/google → google/compute}/models/route.rb +4 -4
  60. data/lib/fog/{compute/google → google/compute}/models/routes.rb +3 -3
  61. data/lib/fog/{compute/google → google/compute}/models/server.rb +19 -19
  62. data/lib/fog/{compute/google → google/compute}/models/servers.rb +3 -3
  63. data/lib/fog/{compute/google → google/compute}/models/snapshot.rb +3 -3
  64. data/lib/fog/{compute/google → google/compute}/models/snapshots.rb +3 -3
  65. data/lib/fog/{compute/google → google/compute}/models/ssl_certificate.rb +4 -4
  66. data/lib/fog/{compute/google → google/compute}/models/ssl_certificates.rb +3 -3
  67. data/lib/fog/{compute/google → google/compute}/models/subnetwork.rb +6 -6
  68. data/lib/fog/{compute/google → google/compute}/models/subnetworks.rb +3 -3
  69. data/lib/fog/{compute/google → google/compute}/models/target_http_proxies.rb +3 -3
  70. data/lib/fog/{compute/google → google/compute}/models/target_http_proxy.rb +5 -5
  71. data/lib/fog/{compute/google → google/compute}/models/target_https_proxies.rb +3 -3
  72. data/lib/fog/{compute/google → google/compute}/models/target_https_proxy.rb +7 -7
  73. data/lib/fog/{compute/google → google/compute}/models/target_instance.rb +4 -4
  74. data/lib/fog/{compute/google → google/compute}/models/target_instances.rb +3 -3
  75. data/lib/fog/{compute/google → google/compute}/models/target_pool.rb +8 -8
  76. data/lib/fog/{compute/google → google/compute}/models/target_pools.rb +3 -3
  77. data/lib/fog/{compute/google → google/compute}/models/url_map.rb +7 -7
  78. data/lib/fog/{compute/google → google/compute}/models/url_maps.rb +3 -3
  79. data/lib/fog/{compute/google → google/compute}/models/zone.rb +2 -2
  80. data/lib/fog/{compute/google → google/compute}/models/zones.rb +3 -3
  81. data/lib/fog/{compute/google → google/compute}/real.rb +2 -2
  82. data/lib/fog/{compute/google → google/compute}/requests/abandon_instances.rb +2 -2
  83. data/lib/fog/{compute/google → google/compute}/requests/add_backend_service_backends.rb +2 -2
  84. data/lib/fog/{compute/google → google/compute}/requests/add_instance_group_instances.rb +2 -2
  85. data/lib/fog/{compute/google → google/compute}/requests/add_server_access_config.rb +2 -2
  86. data/lib/fog/{compute/google → google/compute}/requests/add_target_pool_health_checks.rb +2 -2
  87. data/lib/fog/{compute/google → google/compute}/requests/add_target_pool_instances.rb +2 -2
  88. data/lib/fog/{compute/google → google/compute}/requests/attach_disk.rb +2 -2
  89. data/lib/fog/{compute/google → google/compute}/requests/create_disk_snapshot.rb +2 -2
  90. data/lib/fog/{compute/google → google/compute}/requests/delete_address.rb +2 -2
  91. data/lib/fog/{compute/google → google/compute}/requests/delete_backend_service.rb +2 -2
  92. data/lib/fog/{compute/google → google/compute}/requests/delete_disk.rb +2 -2
  93. data/lib/fog/{compute/google → google/compute}/requests/delete_firewall.rb +2 -2
  94. data/lib/fog/{compute/google → google/compute}/requests/delete_forwarding_rule.rb +2 -2
  95. data/lib/fog/{compute/google → google/compute}/requests/delete_global_address.rb +2 -2
  96. data/lib/fog/{compute/google → google/compute}/requests/delete_global_forwarding_rule.rb +2 -2
  97. data/lib/fog/{compute/google → google/compute}/requests/delete_global_operation.rb +2 -2
  98. data/lib/fog/{compute/google → google/compute}/requests/delete_http_health_check.rb +2 -2
  99. data/lib/fog/{compute/google → google/compute}/requests/delete_image.rb +2 -2
  100. data/lib/fog/{compute/google → google/compute}/requests/delete_instance_group.rb +2 -2
  101. data/lib/fog/{compute/google → google/compute}/requests/delete_instance_group_manager.rb +2 -2
  102. data/lib/fog/{compute/google → google/compute}/requests/delete_instance_template.rb +2 -2
  103. data/lib/fog/{compute/google → google/compute}/requests/delete_network.rb +2 -2
  104. data/lib/fog/{compute/google → google/compute}/requests/delete_region_operation.rb +2 -2
  105. data/lib/fog/{compute/google → google/compute}/requests/delete_route.rb +2 -2
  106. data/lib/fog/{compute/google → google/compute}/requests/delete_server.rb +2 -2
  107. data/lib/fog/{compute/google → google/compute}/requests/delete_server_access_config.rb +2 -2
  108. data/lib/fog/{compute/google → google/compute}/requests/delete_snapshot.rb +2 -2
  109. data/lib/fog/{compute/google → google/compute}/requests/delete_ssl_certificate.rb +2 -2
  110. data/lib/fog/{compute/google → google/compute}/requests/delete_subnetwork.rb +2 -2
  111. data/lib/fog/{compute/google → google/compute}/requests/delete_target_http_proxy.rb +2 -2
  112. data/lib/fog/{compute/google → google/compute}/requests/delete_target_https_proxy.rb +2 -2
  113. data/lib/fog/{compute/google → google/compute}/requests/delete_target_instance.rb +2 -2
  114. data/lib/fog/{compute/google → google/compute}/requests/delete_target_pool.rb +2 -2
  115. data/lib/fog/{compute/google → google/compute}/requests/delete_url_map.rb +2 -2
  116. data/lib/fog/{compute/google → google/compute}/requests/delete_zone_operation.rb +2 -2
  117. data/lib/fog/{compute/google → google/compute}/requests/deprecate_image.rb +2 -2
  118. data/lib/fog/{compute/google → google/compute}/requests/detach_disk.rb +2 -2
  119. data/lib/fog/{compute/google → google/compute}/requests/expand_subnetwork_ip_cidr_range.rb +2 -2
  120. data/lib/fog/{compute/google → google/compute}/requests/get_address.rb +2 -2
  121. data/lib/fog/{compute/google → google/compute}/requests/get_backend_service.rb +2 -2
  122. data/lib/fog/{compute/google → google/compute}/requests/get_backend_service_health.rb +2 -2
  123. data/lib/fog/{compute/google → google/compute}/requests/get_disk.rb +2 -2
  124. data/lib/fog/{compute/google → google/compute}/requests/get_disk_type.rb +2 -2
  125. data/lib/fog/{compute/google → google/compute}/requests/get_firewall.rb +2 -2
  126. data/lib/fog/{compute/google → google/compute}/requests/get_forwarding_rule.rb +2 -2
  127. data/lib/fog/{compute/google → google/compute}/requests/get_global_address.rb +2 -2
  128. data/lib/fog/{compute/google → google/compute}/requests/get_global_forwarding_rule.rb +2 -2
  129. data/lib/fog/{compute/google → google/compute}/requests/get_global_operation.rb +2 -2
  130. data/lib/fog/{compute/google → google/compute}/requests/get_http_health_check.rb +2 -2
  131. data/lib/fog/{compute/google → google/compute}/requests/get_image.rb +2 -2
  132. data/lib/fog/{compute/google → google/compute}/requests/get_image_from_family.rb +2 -2
  133. data/lib/fog/{compute/google → google/compute}/requests/get_instance_group.rb +2 -2
  134. data/lib/fog/{compute/google → google/compute}/requests/get_instance_group_manager.rb +2 -2
  135. data/lib/fog/{compute/google → google/compute}/requests/get_instance_template.rb +2 -2
  136. data/lib/fog/{compute/google → google/compute}/requests/get_machine_type.rb +2 -2
  137. data/lib/fog/{compute/google → google/compute}/requests/get_network.rb +2 -2
  138. data/lib/fog/{compute/google → google/compute}/requests/get_project.rb +2 -2
  139. data/lib/fog/{compute/google → google/compute}/requests/get_region.rb +2 -2
  140. data/lib/fog/{compute/google → google/compute}/requests/get_region_operation.rb +2 -2
  141. data/lib/fog/{compute/google → google/compute}/requests/get_route.rb +2 -2
  142. data/lib/fog/{compute/google → google/compute}/requests/get_server.rb +2 -2
  143. data/lib/fog/{compute/google → google/compute}/requests/get_server_serial_port_output.rb +2 -2
  144. data/lib/fog/{compute/google → google/compute}/requests/get_snapshot.rb +2 -2
  145. data/lib/fog/{compute/google → google/compute}/requests/get_ssl_certificate.rb +2 -2
  146. data/lib/fog/{compute/google → google/compute}/requests/get_subnetwork.rb +2 -2
  147. data/lib/fog/{compute/google → google/compute}/requests/get_target_http_proxy.rb +2 -2
  148. data/lib/fog/{compute/google → google/compute}/requests/get_target_https_proxy.rb +2 -2
  149. data/lib/fog/{compute/google → google/compute}/requests/get_target_instance.rb +2 -2
  150. data/lib/fog/{compute/google → google/compute}/requests/get_target_pool.rb +2 -2
  151. data/lib/fog/{compute/google → google/compute}/requests/get_target_pool_health.rb +2 -2
  152. data/lib/fog/{compute/google → google/compute}/requests/get_url_map.rb +2 -2
  153. data/lib/fog/{compute/google → google/compute}/requests/get_zone.rb +2 -2
  154. data/lib/fog/{compute/google → google/compute}/requests/get_zone_operation.rb +2 -2
  155. data/lib/fog/{compute/google → google/compute}/requests/insert_address.rb +2 -2
  156. data/lib/fog/{compute/google → google/compute}/requests/insert_backend_service.rb +2 -2
  157. data/lib/fog/{compute/google → google/compute}/requests/insert_disk.rb +2 -2
  158. data/lib/fog/{compute/google → google/compute}/requests/insert_firewall.rb +2 -2
  159. data/lib/fog/{compute/google → google/compute}/requests/insert_forwarding_rule.rb +2 -2
  160. data/lib/fog/{compute/google → google/compute}/requests/insert_global_address.rb +2 -2
  161. data/lib/fog/{compute/google → google/compute}/requests/insert_global_forwarding_rule.rb +2 -2
  162. data/lib/fog/{compute/google → google/compute}/requests/insert_http_health_check.rb +2 -2
  163. data/lib/fog/{compute/google → google/compute}/requests/insert_image.rb +2 -2
  164. data/lib/fog/{compute/google → google/compute}/requests/insert_instance_group.rb +2 -2
  165. data/lib/fog/{compute/google → google/compute}/requests/insert_instance_group_manager.rb +2 -2
  166. data/lib/fog/{compute/google → google/compute}/requests/insert_instance_template.rb +2 -2
  167. data/lib/fog/{compute/google → google/compute}/requests/insert_network.rb +2 -2
  168. data/lib/fog/{compute/google → google/compute}/requests/insert_route.rb +2 -2
  169. data/lib/fog/{compute/google → google/compute}/requests/insert_server.rb +3 -3
  170. data/lib/fog/{compute/google → google/compute}/requests/insert_ssl_certificate.rb +2 -2
  171. data/lib/fog/{compute/google → google/compute}/requests/insert_subnetwork.rb +2 -2
  172. data/lib/fog/{compute/google → google/compute}/requests/insert_target_http_proxy.rb +2 -2
  173. data/lib/fog/{compute/google → google/compute}/requests/insert_target_https_proxy.rb +2 -2
  174. data/lib/fog/{compute/google → google/compute}/requests/insert_target_instance.rb +2 -2
  175. data/lib/fog/{compute/google → google/compute}/requests/insert_target_pool.rb +2 -2
  176. data/lib/fog/{compute/google → google/compute}/requests/insert_url_map.rb +2 -2
  177. data/lib/fog/{compute/google → google/compute}/requests/invalidate_url_map_cache.rb +2 -2
  178. data/lib/fog/{compute/google → google/compute}/requests/list_addresses.rb +2 -2
  179. data/lib/fog/{compute/google → google/compute}/requests/list_aggregated_addresses.rb +2 -2
  180. data/lib/fog/{compute/google → google/compute}/requests/list_aggregated_disk_types.rb +2 -2
  181. data/lib/fog/{compute/google → google/compute}/requests/list_aggregated_disks.rb +2 -2
  182. data/lib/fog/{compute/google → google/compute}/requests/list_aggregated_forwarding_rules.rb +2 -2
  183. data/lib/fog/{compute/google → google/compute}/requests/list_aggregated_instance_group_managers.rb +2 -2
  184. data/lib/fog/{compute/google → google/compute}/requests/list_aggregated_instance_groups.rb +2 -2
  185. data/lib/fog/{compute/google → google/compute}/requests/list_aggregated_machine_types.rb +2 -2
  186. data/lib/fog/{compute/google → google/compute}/requests/list_aggregated_servers.rb +2 -2
  187. data/lib/fog/{compute/google → google/compute}/requests/list_aggregated_subnetworks.rb +2 -2
  188. data/lib/fog/{compute/google → google/compute}/requests/list_aggregated_target_instances.rb +2 -2
  189. data/lib/fog/{compute/google → google/compute}/requests/list_aggregated_target_pools.rb +2 -2
  190. data/lib/fog/{compute/google → google/compute}/requests/list_backend_services.rb +2 -2
  191. data/lib/fog/{compute/google → google/compute}/requests/list_disk_types.rb +2 -2
  192. data/lib/fog/{compute/google → google/compute}/requests/list_disks.rb +2 -2
  193. data/lib/fog/{compute/google → google/compute}/requests/list_firewalls.rb +2 -2
  194. data/lib/fog/{compute/google → google/compute}/requests/list_forwarding_rules.rb +2 -2
  195. data/lib/fog/{compute/google → google/compute}/requests/list_global_addresses.rb +2 -2
  196. data/lib/fog/{compute/google → google/compute}/requests/list_global_forwarding_rules.rb +2 -2
  197. data/lib/fog/{compute/google → google/compute}/requests/list_global_operations.rb +2 -2
  198. data/lib/fog/{compute/google → google/compute}/requests/list_http_health_checks.rb +2 -2
  199. data/lib/fog/{compute/google → google/compute}/requests/list_images.rb +2 -2
  200. data/lib/fog/{compute/google → google/compute}/requests/list_instance_group_instances.rb +2 -2
  201. data/lib/fog/{compute/google → google/compute}/requests/list_instance_group_managers.rb +2 -2
  202. data/lib/fog/{compute/google → google/compute}/requests/list_instance_groups.rb +2 -2
  203. data/lib/fog/{compute/google → google/compute}/requests/list_instance_templates.rb +2 -2
  204. data/lib/fog/{compute/google → google/compute}/requests/list_machine_types.rb +2 -2
  205. data/lib/fog/{compute/google → google/compute}/requests/list_networks.rb +2 -2
  206. data/lib/fog/{compute/google → google/compute}/requests/list_region_operations.rb +2 -2
  207. data/lib/fog/{compute/google → google/compute}/requests/list_regions.rb +2 -2
  208. data/lib/fog/{compute/google → google/compute}/requests/list_routes.rb +2 -2
  209. data/lib/fog/{compute/google → google/compute}/requests/list_servers.rb +2 -2
  210. data/lib/fog/{compute/google → google/compute}/requests/list_snapshots.rb +2 -2
  211. data/lib/fog/{compute/google → google/compute}/requests/list_ssl_certificates.rb +2 -2
  212. data/lib/fog/{compute/google → google/compute}/requests/list_subnetworks.rb +2 -2
  213. data/lib/fog/{compute/google → google/compute}/requests/list_target_http_proxies.rb +2 -2
  214. data/lib/fog/{compute/google → google/compute}/requests/list_target_https_proxies.rb +2 -2
  215. data/lib/fog/{compute/google → google/compute}/requests/list_target_instances.rb +2 -2
  216. data/lib/fog/{compute/google → google/compute}/requests/list_target_pools.rb +2 -2
  217. data/lib/fog/{compute/google → google/compute}/requests/list_url_maps.rb +2 -2
  218. data/lib/fog/{compute/google → google/compute}/requests/list_zone_operations.rb +2 -2
  219. data/lib/fog/{compute/google → google/compute}/requests/list_zones.rb +2 -2
  220. data/lib/fog/{compute/google → google/compute}/requests/patch_firewall.rb +2 -2
  221. data/lib/fog/{compute/google → google/compute}/requests/patch_url_map.rb +2 -2
  222. data/lib/fog/{compute/google → google/compute}/requests/recreate_instances.rb +2 -2
  223. data/lib/fog/{compute/google → google/compute}/requests/remove_instance_group_instances.rb +2 -2
  224. data/lib/fog/{compute/google → google/compute}/requests/remove_target_pool_health_checks.rb +2 -2
  225. data/lib/fog/{compute/google → google/compute}/requests/remove_target_pool_instance.rb +2 -2
  226. data/lib/fog/{compute/google → google/compute}/requests/remove_target_pool_instances.rb +2 -2
  227. data/lib/fog/{compute/google → google/compute}/requests/reset_server.rb +2 -2
  228. data/lib/fog/{compute/google → google/compute}/requests/reset_windows_password.rb +2 -2
  229. data/lib/fog/{compute/google → google/compute}/requests/set_common_instance_metadata.rb +2 -2
  230. data/lib/fog/{compute/google → google/compute}/requests/set_forwarding_rule_target.rb +2 -2
  231. data/lib/fog/{compute/google → google/compute}/requests/set_global_forwarding_rule_target.rb +2 -2
  232. data/lib/fog/{compute/google → google/compute}/requests/set_instance_template.rb +2 -2
  233. data/lib/fog/{compute/google → google/compute}/requests/set_server_disk_auto_delete.rb +2 -2
  234. data/lib/fog/{compute/google → google/compute}/requests/set_server_machine_type.rb +2 -2
  235. data/lib/fog/{compute/google → google/compute}/requests/set_server_metadata.rb +2 -2
  236. data/lib/fog/{compute/google → google/compute}/requests/set_server_scheduling.rb +2 -2
  237. data/lib/fog/{compute/google → google/compute}/requests/set_server_tags.rb +2 -2
  238. data/lib/fog/{compute/google → google/compute}/requests/set_snapshot_labels.rb +2 -2
  239. data/lib/fog/{compute/google → google/compute}/requests/set_subnetwork_private_ip_google_access.rb +2 -2
  240. data/lib/fog/{compute/google → google/compute}/requests/set_target_http_proxy_url_map.rb +2 -2
  241. data/lib/fog/{compute/google → google/compute}/requests/set_target_https_proxy_ssl_certificates.rb +2 -2
  242. data/lib/fog/{compute/google → google/compute}/requests/set_target_https_proxy_url_map.rb +2 -2
  243. data/lib/fog/{compute/google → google/compute}/requests/set_target_pool_backup.rb +2 -2
  244. data/lib/fog/{compute/google → google/compute}/requests/start_server.rb +2 -2
  245. data/lib/fog/{compute/google → google/compute}/requests/stop_server.rb +2 -2
  246. data/lib/fog/{compute/google → google/compute}/requests/update_firewall.rb +2 -2
  247. data/lib/fog/{compute/google → google/compute}/requests/update_http_health_check.rb +2 -2
  248. data/lib/fog/{compute/google → google/compute}/requests/update_url_map.rb +2 -2
  249. data/lib/fog/{compute/google → google/compute}/requests/validate_url_map.rb +2 -2
  250. data/lib/fog/{compute/google.rb → google/compute.rb} +6 -6
  251. data/lib/fog/{dns/google → google/dns}/mock.rb +2 -2
  252. data/lib/fog/{dns/google → google/dns}/models/change.rb +2 -2
  253. data/lib/fog/{dns/google → google/dns}/models/changes.rb +8 -6
  254. data/lib/fog/{dns/google → google/dns}/models/project.rb +2 -2
  255. data/lib/fog/{dns/google → google/dns}/models/projects.rb +4 -4
  256. data/lib/fog/{dns/google → google/dns}/models/record.rb +11 -11
  257. data/lib/fog/{dns/google → google/dns}/models/records.rb +8 -6
  258. data/lib/fog/{dns/google → google/dns}/models/zone.rb +7 -7
  259. data/lib/fog/{dns/google → google/dns}/models/zones.rb +6 -5
  260. data/lib/fog/{dns/google → google/dns}/real.rb +2 -2
  261. data/lib/fog/{dns/google → google/dns}/requests/create_change.rb +2 -2
  262. data/lib/fog/{dns/google → google/dns}/requests/create_managed_zone.rb +2 -2
  263. data/lib/fog/{dns/google → google/dns}/requests/delete_managed_zone.rb +2 -2
  264. data/lib/fog/{dns/google → google/dns}/requests/get_change.rb +2 -2
  265. data/lib/fog/{dns/google → google/dns}/requests/get_managed_zone.rb +2 -2
  266. data/lib/fog/{dns/google → google/dns}/requests/get_project.rb +2 -2
  267. data/lib/fog/{dns/google → google/dns}/requests/list_changes.rb +2 -2
  268. data/lib/fog/{dns/google → google/dns}/requests/list_managed_zones.rb +2 -2
  269. data/lib/fog/{dns/google → google/dns}/requests/list_resource_record_sets.rb +2 -2
  270. data/lib/fog/{dns/google.rb → google/dns.rb} +6 -6
  271. data/lib/fog/{parsers/storage/google → google/parsers/storage}/access_control_list.rb +3 -3
  272. data/lib/fog/{parsers/storage/google → google/parsers/storage}/copy_object.rb +3 -3
  273. data/lib/fog/{parsers/storage/google → google/parsers/storage}/get_bucket.rb +3 -3
  274. data/lib/fog/{parsers/storage/google → google/parsers/storage}/get_bucket_logging.rb +3 -3
  275. data/lib/fog/{parsers/storage/google → google/parsers/storage}/get_bucket_object_versions.rb +3 -3
  276. data/lib/fog/{parsers/storage/google → google/parsers/storage}/get_bucket_versioning.rb +3 -3
  277. data/lib/fog/{parsers/storage/google → google/parsers/storage}/get_request_payment.rb +3 -3
  278. data/lib/fog/{parsers/storage/google → google/parsers/storage}/get_service.rb +3 -3
  279. data/lib/fog/google/parsers/storage.rb +15 -0
  280. data/lib/fog/google/shared.rb +8 -7
  281. data/lib/fog/{storage/google_json → google/storage/storage_json}/mock.rb +2 -2
  282. data/lib/fog/{storage/google_json → google/storage/storage_json}/models/directories.rb +4 -3
  283. data/lib/fog/{storage/google_json → google/storage/storage_json}/models/directory.rb +3 -3
  284. data/lib/fog/{storage/google_json → google/storage/storage_json}/models/file.rb +2 -2
  285. data/lib/fog/{storage/google_json → google/storage/storage_json}/models/files.rb +8 -7
  286. data/lib/fog/{storage/google_json → google/storage/storage_json}/real.rb +6 -4
  287. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/copy_object.rb +2 -2
  288. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/delete_bucket.rb +2 -2
  289. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/delete_object.rb +2 -2
  290. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/delete_object_url.rb +2 -2
  291. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/get_bucket.rb +2 -2
  292. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/get_bucket_acl.rb +2 -2
  293. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/get_object.rb +2 -2
  294. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/get_object_acl.rb +2 -2
  295. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/get_object_http_url.rb +2 -2
  296. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/get_object_https_url.rb +2 -2
  297. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/get_object_metadata.rb +2 -2
  298. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/get_object_url.rb +4 -4
  299. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/list_bucket_acl.rb +2 -2
  300. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/list_buckets.rb +2 -2
  301. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/list_object_acl.rb +2 -2
  302. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/list_objects.rb +2 -2
  303. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/put_bucket.rb +2 -2
  304. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/put_bucket_acl.rb +2 -2
  305. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/put_object.rb +2 -2
  306. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/put_object_acl.rb +2 -2
  307. data/lib/fog/{storage/google_json → google/storage/storage_json}/requests/put_object_url.rb +2 -2
  308. data/lib/fog/{storage/google_json → google/storage/storage_json}/utils.rb +8 -6
  309. data/lib/fog/{storage/google_json.rb → google/storage/storage_json.rb} +8 -8
  310. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/mock.rb +2 -2
  311. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/models/directories.rb +7 -7
  312. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/models/directory.rb +3 -3
  313. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/models/file.rb +2 -2
  314. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/models/files.rb +11 -11
  315. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/real.rb +6 -4
  316. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/copy_object.rb +3 -3
  317. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/delete_bucket.rb +2 -2
  318. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/delete_object.rb +2 -2
  319. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/delete_object_url.rb +2 -2
  320. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/get_bucket.rb +4 -4
  321. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/get_bucket_acl.rb +3 -3
  322. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/get_object.rb +2 -2
  323. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/get_object_acl.rb +3 -3
  324. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/get_object_http_url.rb +2 -2
  325. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/get_object_https_url.rb +2 -2
  326. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/get_object_url.rb +4 -4
  327. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/get_service.rb +3 -3
  328. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/head_object.rb +2 -2
  329. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/put_bucket.rb +2 -2
  330. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/put_bucket_acl.rb +2 -2
  331. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/put_object.rb +2 -2
  332. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/put_object_acl.rb +2 -2
  333. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/requests/put_object_url.rb +2 -2
  334. data/lib/fog/{storage/google_xml → google/storage/storage_xml}/utils.rb +22 -19
  335. data/lib/fog/{storage/google_xml.rb → google/storage/storage_xml.rb} +7 -7
  336. data/lib/fog/{storage/google.rb → google/storage.rb} +5 -5
  337. data/lib/fog/google/version.rb +1 -1
  338. data/lib/fog/google.rb +30 -16
  339. metadata +322 -518
  340. data/.github/workflows/stale.yml +0 -23
  341. data/lib/fog/parsers/storage/google.rb +0 -15
  342. data/test/helpers/client_helper.rb +0 -63
  343. data/test/helpers/integration_test_helper.rb +0 -108
  344. data/test/helpers/test_collection.rb +0 -60
  345. data/test/helpers/test_helper.rb +0 -28
  346. data/test/integration/compute/core_compute/test_client_options.rb +0 -12
  347. data/test/integration/compute/core_compute/test_coverage.rb +0 -6
  348. data/test/integration/compute/core_compute/test_disk_types.rb +0 -43
  349. data/test/integration/compute/core_compute/test_disks.rb +0 -53
  350. data/test/integration/compute/core_compute/test_images.rb +0 -32
  351. data/test/integration/compute/core_compute/test_machine_types.rb +0 -55
  352. data/test/integration/compute/core_compute/test_operations.rb +0 -45
  353. data/test/integration/compute/core_compute/test_projects.rb +0 -19
  354. data/test/integration/compute/core_compute/test_regions.rb +0 -33
  355. data/test/integration/compute/core_compute/test_servers.rb +0 -235
  356. data/test/integration/compute/core_compute/test_snapshots.rb +0 -21
  357. data/test/integration/compute/core_compute/test_zones.rb +0 -35
  358. data/test/integration/compute/core_networking/test_addresses.rb +0 -107
  359. data/test/integration/compute/core_networking/test_coverage.rb +0 -6
  360. data/test/integration/compute/core_networking/test_firewalls.rb +0 -11
  361. data/test/integration/compute/core_networking/test_networks.rb +0 -30
  362. data/test/integration/compute/core_networking/test_routes.rb +0 -26
  363. data/test/integration/compute/core_networking/test_subnetworks.rb +0 -11
  364. data/test/integration/compute/instance_groups/test_coverage.rb +0 -6
  365. data/test/integration/compute/instance_groups/test_instance_group_managers.rb +0 -11
  366. data/test/integration/compute/instance_groups/test_instance_groups.rb +0 -11
  367. data/test/integration/compute/instance_groups/test_instance_templates.rb +0 -11
  368. data/test/integration/compute/loadbalancing/test_backend_services.rb +0 -11
  369. data/test/integration/compute/loadbalancing/test_coverage.rb +0 -6
  370. data/test/integration/compute/loadbalancing/test_forwarding_rules.rb +0 -11
  371. data/test/integration/compute/loadbalancing/test_global_addresses.rb +0 -11
  372. data/test/integration/compute/loadbalancing/test_global_forwarding_rules.rb +0 -11
  373. data/test/integration/compute/loadbalancing/test_http_health_checks.rb +0 -11
  374. data/test/integration/compute/loadbalancing/test_ssl_certificates.rb +0 -11
  375. data/test/integration/compute/loadbalancing/test_target_http_proxies.rb +0 -11
  376. data/test/integration/compute/loadbalancing/test_target_https_proxies.rb +0 -11
  377. data/test/integration/compute/loadbalancing/test_target_instances.rb +0 -11
  378. data/test/integration/compute/loadbalancing/test_target_pools.rb +0 -55
  379. data/test/integration/compute/loadbalancing/test_url_maps.rb +0 -11
  380. data/test/integration/factories/addresses_factory.rb +0 -20
  381. data/test/integration/factories/backend_services_factory.rb +0 -19
  382. data/test/integration/factories/collection_factory.rb +0 -52
  383. data/test/integration/factories/disks_factory.rb +0 -22
  384. data/test/integration/factories/firewalls_factory.rb +0 -13
  385. data/test/integration/factories/forwarding_rules_factory.rb +0 -25
  386. data/test/integration/factories/global_addresses_factory.rb +0 -15
  387. data/test/integration/factories/global_forwarding_rules_factory.rb +0 -20
  388. data/test/integration/factories/http_health_checks_factory.rb +0 -11
  389. data/test/integration/factories/images_factory.rb +0 -16
  390. data/test/integration/factories/instance_group_manager_factory.rb +0 -30
  391. data/test/integration/factories/instance_groups_factory.rb +0 -20
  392. data/test/integration/factories/instance_template_factory.rb +0 -24
  393. data/test/integration/factories/networks_factory.rb +0 -14
  394. data/test/integration/factories/servers_factory.rb +0 -30
  395. data/test/integration/factories/sql_certs_factory.rb +0 -20
  396. data/test/integration/factories/sql_instances_factory.rb +0 -19
  397. data/test/integration/factories/sql_users_factory.rb +0 -23
  398. data/test/integration/factories/ssl_certificates_factory.rb +0 -13
  399. data/test/integration/factories/subnetworks_factory.rb +0 -26
  400. data/test/integration/factories/target_http_proxies_factory.rb +0 -19
  401. data/test/integration/factories/target_https_proxies_factory.rb +0 -26
  402. data/test/integration/factories/target_instances_factory.rb +0 -24
  403. data/test/integration/factories/target_pools_factory.rb +0 -28
  404. data/test/integration/factories/url_maps_factory.rb +0 -19
  405. data/test/integration/monitoring/test_coverage.rb +0 -6
  406. data/test/integration/monitoring/test_metric_descriptors.rb +0 -131
  407. data/test/integration/monitoring/test_monitored_resource_descriptors.rb +0 -37
  408. data/test/integration/monitoring/test_timeseries.rb +0 -253
  409. data/test/integration/pubsub/pubsub_shared.rb +0 -75
  410. data/test/integration/pubsub/test_coverage.rb +0 -6
  411. data/test/integration/pubsub/test_pubsub_models.rb +0 -135
  412. data/test/integration/pubsub/test_pubsub_requests.rb +0 -105
  413. data/test/integration/sql/test_certs.rb +0 -50
  414. data/test/integration/sql/test_common_flags.rb +0 -31
  415. data/test/integration/sql/test_common_tiers.rb +0 -26
  416. data/test/integration/sql/test_coverage.rb +0 -6
  417. data/test/integration/sql/test_instances.rb +0 -101
  418. data/test/integration/sql/test_users.rb +0 -37
  419. data/test/integration/storage/storage_shared.rb +0 -101
  420. data/test/integration/storage/test_buckets.rb +0 -112
  421. data/test/integration/storage/test_coverage.rb +0 -6
  422. data/test/integration/storage/test_directories.rb +0 -67
  423. data/test/integration/storage/test_files.rb +0 -168
  424. data/test/integration/storage/test_objects.rb +0 -226
  425. data/test/integration/test_authentication.rb +0 -38
  426. data/test/unit/compute/test_common_collections.rb +0 -42
  427. data/test/unit/compute/test_common_models.rb +0 -35
  428. data/test/unit/compute/test_disk.rb +0 -26
  429. data/test/unit/compute/test_server.rb +0 -29
  430. data/test/unit/dns/test_common_collections.rb +0 -43
  431. data/test/unit/monitoring/test_comon_collections.rb +0 -44
  432. data/test/unit/pubsub/test_common_collections.rb +0 -35
  433. data/test/unit/sql/test_common_collections.rb +0 -46
  434. data/test/unit/storage/test_common_json_collections.rb +0 -38
  435. data/test/unit/storage/test_common_xml_collections.rb +0 -50
  436. data/test/unit/storage/test_json_requests.rb +0 -60
  437. data/test/unit/storage/test_xml_requests.rb +0 -60
metadata CHANGED
@@ -1,28 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-google
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.1
4
+ version: 1.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nat Welch
8
8
  - Artem Yakimenko
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2024-04-12 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: fog-core
16
15
  requirement: !ruby/object:Gem::Requirement
17
16
  requirements:
18
- - - "<"
17
+ - - "~>"
19
18
  - !ruby/object:Gem::Version
20
19
  version: '2.5'
21
20
  type: :runtime
22
21
  prerelease: false
23
22
  version_requirements: !ruby/object:Gem::Requirement
24
23
  requirements:
25
- - - "<"
24
+ - - "~>"
26
25
  - !ruby/object:Gem::Version
27
26
  version: '2.5'
28
27
  - !ruby/object:Gem::Dependency
@@ -197,14 +196,14 @@ dependencies:
197
196
  requirements:
198
197
  - - '='
199
198
  - !ruby/object:Gem::Version
200
- version: 0.14.2
199
+ version: 0.15.2
201
200
  type: :development
202
201
  prerelease: false
203
202
  version_requirements: !ruby/object:Gem::Requirement
204
203
  requirements:
205
204
  - - '='
206
205
  - !ruby/object:Gem::Version
207
- version: 0.14.2
206
+ version: 0.15.2
208
207
  - !ruby/object:Gem::Dependency
209
208
  name: retriable
210
209
  requirement: !ruby/object:Gem::Requirement
@@ -325,7 +324,6 @@ files:
325
324
  - ".github/workflows/integration-pubsub.yml"
326
325
  - ".github/workflows/integration-sql.yml"
327
326
  - ".github/workflows/integration-storage.yml"
328
- - ".github/workflows/stale.yml"
329
327
  - ".github/workflows/unit.yml"
330
328
  - ".gitignore"
331
329
  - ".hound.yml"
@@ -370,256 +368,256 @@ files:
370
368
  - examples/storage_json.rb
371
369
  - fog-google.gemspec
372
370
  - lib/fog/bin/google.rb
373
- - lib/fog/compute/google.rb
374
- - lib/fog/compute/google/mock.rb
375
- - lib/fog/compute/google/models/address.rb
376
- - lib/fog/compute/google/models/addresses.rb
377
- - lib/fog/compute/google/models/backend_service.rb
378
- - lib/fog/compute/google/models/backend_services.rb
379
- - lib/fog/compute/google/models/disk.rb
380
- - lib/fog/compute/google/models/disk_type.rb
381
- - lib/fog/compute/google/models/disk_types.rb
382
- - lib/fog/compute/google/models/disks.rb
383
- - lib/fog/compute/google/models/firewall.rb
384
- - lib/fog/compute/google/models/firewalls.rb
385
- - lib/fog/compute/google/models/forwarding_rule.rb
386
- - lib/fog/compute/google/models/forwarding_rules.rb
387
- - lib/fog/compute/google/models/global_address.rb
388
- - lib/fog/compute/google/models/global_addresses.rb
389
- - lib/fog/compute/google/models/global_forwarding_rule.rb
390
- - lib/fog/compute/google/models/global_forwarding_rules.rb
391
- - lib/fog/compute/google/models/http_health_check.rb
392
- - lib/fog/compute/google/models/http_health_checks.rb
393
- - lib/fog/compute/google/models/image.rb
394
- - lib/fog/compute/google/models/images.rb
395
- - lib/fog/compute/google/models/instance_group.rb
396
- - lib/fog/compute/google/models/instance_group_manager.rb
397
- - lib/fog/compute/google/models/instance_group_managers.rb
398
- - lib/fog/compute/google/models/instance_groups.rb
399
- - lib/fog/compute/google/models/instance_template.rb
400
- - lib/fog/compute/google/models/instance_templates.rb
401
- - lib/fog/compute/google/models/machine_type.rb
402
- - lib/fog/compute/google/models/machine_types.rb
403
- - lib/fog/compute/google/models/network.rb
404
- - lib/fog/compute/google/models/networks.rb
405
- - lib/fog/compute/google/models/operation.rb
406
- - lib/fog/compute/google/models/operations.rb
407
- - lib/fog/compute/google/models/project.rb
408
- - lib/fog/compute/google/models/projects.rb
409
- - lib/fog/compute/google/models/region.rb
410
- - lib/fog/compute/google/models/regions.rb
411
- - lib/fog/compute/google/models/route.rb
412
- - lib/fog/compute/google/models/routes.rb
413
- - lib/fog/compute/google/models/server.rb
414
- - lib/fog/compute/google/models/servers.rb
415
- - lib/fog/compute/google/models/snapshot.rb
416
- - lib/fog/compute/google/models/snapshots.rb
417
- - lib/fog/compute/google/models/ssl_certificate.rb
418
- - lib/fog/compute/google/models/ssl_certificates.rb
419
- - lib/fog/compute/google/models/subnetwork.rb
420
- - lib/fog/compute/google/models/subnetworks.rb
421
- - lib/fog/compute/google/models/target_http_proxies.rb
422
- - lib/fog/compute/google/models/target_http_proxy.rb
423
- - lib/fog/compute/google/models/target_https_proxies.rb
424
- - lib/fog/compute/google/models/target_https_proxy.rb
425
- - lib/fog/compute/google/models/target_instance.rb
426
- - lib/fog/compute/google/models/target_instances.rb
427
- - lib/fog/compute/google/models/target_pool.rb
428
- - lib/fog/compute/google/models/target_pools.rb
429
- - lib/fog/compute/google/models/url_map.rb
430
- - lib/fog/compute/google/models/url_maps.rb
431
- - lib/fog/compute/google/models/zone.rb
432
- - lib/fog/compute/google/models/zones.rb
433
- - lib/fog/compute/google/real.rb
434
- - lib/fog/compute/google/requests/abandon_instances.rb
435
- - lib/fog/compute/google/requests/add_backend_service_backends.rb
436
- - lib/fog/compute/google/requests/add_instance_group_instances.rb
437
- - lib/fog/compute/google/requests/add_server_access_config.rb
438
- - lib/fog/compute/google/requests/add_target_pool_health_checks.rb
439
- - lib/fog/compute/google/requests/add_target_pool_instances.rb
440
- - lib/fog/compute/google/requests/attach_disk.rb
441
- - lib/fog/compute/google/requests/create_disk_snapshot.rb
442
- - lib/fog/compute/google/requests/delete_address.rb
443
- - lib/fog/compute/google/requests/delete_backend_service.rb
444
- - lib/fog/compute/google/requests/delete_disk.rb
445
- - lib/fog/compute/google/requests/delete_firewall.rb
446
- - lib/fog/compute/google/requests/delete_forwarding_rule.rb
447
- - lib/fog/compute/google/requests/delete_global_address.rb
448
- - lib/fog/compute/google/requests/delete_global_forwarding_rule.rb
449
- - lib/fog/compute/google/requests/delete_global_operation.rb
450
- - lib/fog/compute/google/requests/delete_http_health_check.rb
451
- - lib/fog/compute/google/requests/delete_image.rb
452
- - lib/fog/compute/google/requests/delete_instance_group.rb
453
- - lib/fog/compute/google/requests/delete_instance_group_manager.rb
454
- - lib/fog/compute/google/requests/delete_instance_template.rb
455
- - lib/fog/compute/google/requests/delete_network.rb
456
- - lib/fog/compute/google/requests/delete_region_operation.rb
457
- - lib/fog/compute/google/requests/delete_route.rb
458
- - lib/fog/compute/google/requests/delete_server.rb
459
- - lib/fog/compute/google/requests/delete_server_access_config.rb
460
- - lib/fog/compute/google/requests/delete_snapshot.rb
461
- - lib/fog/compute/google/requests/delete_ssl_certificate.rb
462
- - lib/fog/compute/google/requests/delete_subnetwork.rb
463
- - lib/fog/compute/google/requests/delete_target_http_proxy.rb
464
- - lib/fog/compute/google/requests/delete_target_https_proxy.rb
465
- - lib/fog/compute/google/requests/delete_target_instance.rb
466
- - lib/fog/compute/google/requests/delete_target_pool.rb
467
- - lib/fog/compute/google/requests/delete_url_map.rb
468
- - lib/fog/compute/google/requests/delete_zone_operation.rb
469
- - lib/fog/compute/google/requests/deprecate_image.rb
470
- - lib/fog/compute/google/requests/detach_disk.rb
471
- - lib/fog/compute/google/requests/expand_subnetwork_ip_cidr_range.rb
472
- - lib/fog/compute/google/requests/get_address.rb
473
- - lib/fog/compute/google/requests/get_backend_service.rb
474
- - lib/fog/compute/google/requests/get_backend_service_health.rb
475
- - lib/fog/compute/google/requests/get_disk.rb
476
- - lib/fog/compute/google/requests/get_disk_type.rb
477
- - lib/fog/compute/google/requests/get_firewall.rb
478
- - lib/fog/compute/google/requests/get_forwarding_rule.rb
479
- - lib/fog/compute/google/requests/get_global_address.rb
480
- - lib/fog/compute/google/requests/get_global_forwarding_rule.rb
481
- - lib/fog/compute/google/requests/get_global_operation.rb
482
- - lib/fog/compute/google/requests/get_http_health_check.rb
483
- - lib/fog/compute/google/requests/get_image.rb
484
- - lib/fog/compute/google/requests/get_image_from_family.rb
485
- - lib/fog/compute/google/requests/get_instance_group.rb
486
- - lib/fog/compute/google/requests/get_instance_group_manager.rb
487
- - lib/fog/compute/google/requests/get_instance_template.rb
488
- - lib/fog/compute/google/requests/get_machine_type.rb
489
- - lib/fog/compute/google/requests/get_network.rb
490
- - lib/fog/compute/google/requests/get_project.rb
491
- - lib/fog/compute/google/requests/get_region.rb
492
- - lib/fog/compute/google/requests/get_region_operation.rb
493
- - lib/fog/compute/google/requests/get_route.rb
494
- - lib/fog/compute/google/requests/get_server.rb
495
- - lib/fog/compute/google/requests/get_server_serial_port_output.rb
496
- - lib/fog/compute/google/requests/get_snapshot.rb
497
- - lib/fog/compute/google/requests/get_ssl_certificate.rb
498
- - lib/fog/compute/google/requests/get_subnetwork.rb
499
- - lib/fog/compute/google/requests/get_target_http_proxy.rb
500
- - lib/fog/compute/google/requests/get_target_https_proxy.rb
501
- - lib/fog/compute/google/requests/get_target_instance.rb
502
- - lib/fog/compute/google/requests/get_target_pool.rb
503
- - lib/fog/compute/google/requests/get_target_pool_health.rb
504
- - lib/fog/compute/google/requests/get_url_map.rb
505
- - lib/fog/compute/google/requests/get_zone.rb
506
- - lib/fog/compute/google/requests/get_zone_operation.rb
507
- - lib/fog/compute/google/requests/insert_address.rb
508
- - lib/fog/compute/google/requests/insert_backend_service.rb
509
- - lib/fog/compute/google/requests/insert_disk.rb
510
- - lib/fog/compute/google/requests/insert_firewall.rb
511
- - lib/fog/compute/google/requests/insert_forwarding_rule.rb
512
- - lib/fog/compute/google/requests/insert_global_address.rb
513
- - lib/fog/compute/google/requests/insert_global_forwarding_rule.rb
514
- - lib/fog/compute/google/requests/insert_http_health_check.rb
515
- - lib/fog/compute/google/requests/insert_image.rb
516
- - lib/fog/compute/google/requests/insert_instance_group.rb
517
- - lib/fog/compute/google/requests/insert_instance_group_manager.rb
518
- - lib/fog/compute/google/requests/insert_instance_template.rb
519
- - lib/fog/compute/google/requests/insert_network.rb
520
- - lib/fog/compute/google/requests/insert_route.rb
521
- - lib/fog/compute/google/requests/insert_server.rb
522
- - lib/fog/compute/google/requests/insert_ssl_certificate.rb
523
- - lib/fog/compute/google/requests/insert_subnetwork.rb
524
- - lib/fog/compute/google/requests/insert_target_http_proxy.rb
525
- - lib/fog/compute/google/requests/insert_target_https_proxy.rb
526
- - lib/fog/compute/google/requests/insert_target_instance.rb
527
- - lib/fog/compute/google/requests/insert_target_pool.rb
528
- - lib/fog/compute/google/requests/insert_url_map.rb
529
- - lib/fog/compute/google/requests/invalidate_url_map_cache.rb
530
- - lib/fog/compute/google/requests/list_addresses.rb
531
- - lib/fog/compute/google/requests/list_aggregated_addresses.rb
532
- - lib/fog/compute/google/requests/list_aggregated_disk_types.rb
533
- - lib/fog/compute/google/requests/list_aggregated_disks.rb
534
- - lib/fog/compute/google/requests/list_aggregated_forwarding_rules.rb
535
- - lib/fog/compute/google/requests/list_aggregated_instance_group_managers.rb
536
- - lib/fog/compute/google/requests/list_aggregated_instance_groups.rb
537
- - lib/fog/compute/google/requests/list_aggregated_machine_types.rb
538
- - lib/fog/compute/google/requests/list_aggregated_servers.rb
539
- - lib/fog/compute/google/requests/list_aggregated_subnetworks.rb
540
- - lib/fog/compute/google/requests/list_aggregated_target_instances.rb
541
- - lib/fog/compute/google/requests/list_aggregated_target_pools.rb
542
- - lib/fog/compute/google/requests/list_backend_services.rb
543
- - lib/fog/compute/google/requests/list_disk_types.rb
544
- - lib/fog/compute/google/requests/list_disks.rb
545
- - lib/fog/compute/google/requests/list_firewalls.rb
546
- - lib/fog/compute/google/requests/list_forwarding_rules.rb
547
- - lib/fog/compute/google/requests/list_global_addresses.rb
548
- - lib/fog/compute/google/requests/list_global_forwarding_rules.rb
549
- - lib/fog/compute/google/requests/list_global_operations.rb
550
- - lib/fog/compute/google/requests/list_http_health_checks.rb
551
- - lib/fog/compute/google/requests/list_images.rb
552
- - lib/fog/compute/google/requests/list_instance_group_instances.rb
553
- - lib/fog/compute/google/requests/list_instance_group_managers.rb
554
- - lib/fog/compute/google/requests/list_instance_groups.rb
555
- - lib/fog/compute/google/requests/list_instance_templates.rb
556
- - lib/fog/compute/google/requests/list_machine_types.rb
557
- - lib/fog/compute/google/requests/list_networks.rb
558
- - lib/fog/compute/google/requests/list_region_operations.rb
559
- - lib/fog/compute/google/requests/list_regions.rb
560
- - lib/fog/compute/google/requests/list_routes.rb
561
- - lib/fog/compute/google/requests/list_servers.rb
562
- - lib/fog/compute/google/requests/list_snapshots.rb
563
- - lib/fog/compute/google/requests/list_ssl_certificates.rb
564
- - lib/fog/compute/google/requests/list_subnetworks.rb
565
- - lib/fog/compute/google/requests/list_target_http_proxies.rb
566
- - lib/fog/compute/google/requests/list_target_https_proxies.rb
567
- - lib/fog/compute/google/requests/list_target_instances.rb
568
- - lib/fog/compute/google/requests/list_target_pools.rb
569
- - lib/fog/compute/google/requests/list_url_maps.rb
570
- - lib/fog/compute/google/requests/list_zone_operations.rb
571
- - lib/fog/compute/google/requests/list_zones.rb
572
- - lib/fog/compute/google/requests/patch_firewall.rb
573
- - lib/fog/compute/google/requests/patch_url_map.rb
574
- - lib/fog/compute/google/requests/recreate_instances.rb
575
- - lib/fog/compute/google/requests/remove_instance_group_instances.rb
576
- - lib/fog/compute/google/requests/remove_target_pool_health_checks.rb
577
- - lib/fog/compute/google/requests/remove_target_pool_instance.rb
578
- - lib/fog/compute/google/requests/remove_target_pool_instances.rb
579
- - lib/fog/compute/google/requests/reset_server.rb
580
- - lib/fog/compute/google/requests/reset_windows_password.rb
581
- - lib/fog/compute/google/requests/set_common_instance_metadata.rb
582
- - lib/fog/compute/google/requests/set_forwarding_rule_target.rb
583
- - lib/fog/compute/google/requests/set_global_forwarding_rule_target.rb
584
- - lib/fog/compute/google/requests/set_instance_template.rb
585
- - lib/fog/compute/google/requests/set_server_disk_auto_delete.rb
586
- - lib/fog/compute/google/requests/set_server_machine_type.rb
587
- - lib/fog/compute/google/requests/set_server_metadata.rb
588
- - lib/fog/compute/google/requests/set_server_scheduling.rb
589
- - lib/fog/compute/google/requests/set_server_tags.rb
590
- - lib/fog/compute/google/requests/set_snapshot_labels.rb
591
- - lib/fog/compute/google/requests/set_subnetwork_private_ip_google_access.rb
592
- - lib/fog/compute/google/requests/set_target_http_proxy_url_map.rb
593
- - lib/fog/compute/google/requests/set_target_https_proxy_ssl_certificates.rb
594
- - lib/fog/compute/google/requests/set_target_https_proxy_url_map.rb
595
- - lib/fog/compute/google/requests/set_target_pool_backup.rb
596
- - lib/fog/compute/google/requests/start_server.rb
597
- - lib/fog/compute/google/requests/stop_server.rb
598
- - lib/fog/compute/google/requests/update_firewall.rb
599
- - lib/fog/compute/google/requests/update_http_health_check.rb
600
- - lib/fog/compute/google/requests/update_url_map.rb
601
- - lib/fog/compute/google/requests/validate_url_map.rb
602
- - lib/fog/dns/google.rb
603
- - lib/fog/dns/google/mock.rb
604
- - lib/fog/dns/google/models/change.rb
605
- - lib/fog/dns/google/models/changes.rb
606
- - lib/fog/dns/google/models/project.rb
607
- - lib/fog/dns/google/models/projects.rb
608
- - lib/fog/dns/google/models/record.rb
609
- - lib/fog/dns/google/models/records.rb
610
- - lib/fog/dns/google/models/zone.rb
611
- - lib/fog/dns/google/models/zones.rb
612
- - lib/fog/dns/google/real.rb
613
- - lib/fog/dns/google/requests/create_change.rb
614
- - lib/fog/dns/google/requests/create_managed_zone.rb
615
- - lib/fog/dns/google/requests/delete_managed_zone.rb
616
- - lib/fog/dns/google/requests/get_change.rb
617
- - lib/fog/dns/google/requests/get_managed_zone.rb
618
- - lib/fog/dns/google/requests/get_project.rb
619
- - lib/fog/dns/google/requests/list_changes.rb
620
- - lib/fog/dns/google/requests/list_managed_zones.rb
621
- - lib/fog/dns/google/requests/list_resource_record_sets.rb
622
371
  - lib/fog/google.rb
372
+ - lib/fog/google/compute.rb
373
+ - lib/fog/google/compute/mock.rb
374
+ - lib/fog/google/compute/models/address.rb
375
+ - lib/fog/google/compute/models/addresses.rb
376
+ - lib/fog/google/compute/models/backend_service.rb
377
+ - lib/fog/google/compute/models/backend_services.rb
378
+ - lib/fog/google/compute/models/disk.rb
379
+ - lib/fog/google/compute/models/disk_type.rb
380
+ - lib/fog/google/compute/models/disk_types.rb
381
+ - lib/fog/google/compute/models/disks.rb
382
+ - lib/fog/google/compute/models/firewall.rb
383
+ - lib/fog/google/compute/models/firewalls.rb
384
+ - lib/fog/google/compute/models/forwarding_rule.rb
385
+ - lib/fog/google/compute/models/forwarding_rules.rb
386
+ - lib/fog/google/compute/models/global_address.rb
387
+ - lib/fog/google/compute/models/global_addresses.rb
388
+ - lib/fog/google/compute/models/global_forwarding_rule.rb
389
+ - lib/fog/google/compute/models/global_forwarding_rules.rb
390
+ - lib/fog/google/compute/models/http_health_check.rb
391
+ - lib/fog/google/compute/models/http_health_checks.rb
392
+ - lib/fog/google/compute/models/image.rb
393
+ - lib/fog/google/compute/models/images.rb
394
+ - lib/fog/google/compute/models/instance_group.rb
395
+ - lib/fog/google/compute/models/instance_group_manager.rb
396
+ - lib/fog/google/compute/models/instance_group_managers.rb
397
+ - lib/fog/google/compute/models/instance_groups.rb
398
+ - lib/fog/google/compute/models/instance_template.rb
399
+ - lib/fog/google/compute/models/instance_templates.rb
400
+ - lib/fog/google/compute/models/machine_type.rb
401
+ - lib/fog/google/compute/models/machine_types.rb
402
+ - lib/fog/google/compute/models/network.rb
403
+ - lib/fog/google/compute/models/networks.rb
404
+ - lib/fog/google/compute/models/operation.rb
405
+ - lib/fog/google/compute/models/operations.rb
406
+ - lib/fog/google/compute/models/project.rb
407
+ - lib/fog/google/compute/models/projects.rb
408
+ - lib/fog/google/compute/models/region.rb
409
+ - lib/fog/google/compute/models/regions.rb
410
+ - lib/fog/google/compute/models/route.rb
411
+ - lib/fog/google/compute/models/routes.rb
412
+ - lib/fog/google/compute/models/server.rb
413
+ - lib/fog/google/compute/models/servers.rb
414
+ - lib/fog/google/compute/models/snapshot.rb
415
+ - lib/fog/google/compute/models/snapshots.rb
416
+ - lib/fog/google/compute/models/ssl_certificate.rb
417
+ - lib/fog/google/compute/models/ssl_certificates.rb
418
+ - lib/fog/google/compute/models/subnetwork.rb
419
+ - lib/fog/google/compute/models/subnetworks.rb
420
+ - lib/fog/google/compute/models/target_http_proxies.rb
421
+ - lib/fog/google/compute/models/target_http_proxy.rb
422
+ - lib/fog/google/compute/models/target_https_proxies.rb
423
+ - lib/fog/google/compute/models/target_https_proxy.rb
424
+ - lib/fog/google/compute/models/target_instance.rb
425
+ - lib/fog/google/compute/models/target_instances.rb
426
+ - lib/fog/google/compute/models/target_pool.rb
427
+ - lib/fog/google/compute/models/target_pools.rb
428
+ - lib/fog/google/compute/models/url_map.rb
429
+ - lib/fog/google/compute/models/url_maps.rb
430
+ - lib/fog/google/compute/models/zone.rb
431
+ - lib/fog/google/compute/models/zones.rb
432
+ - lib/fog/google/compute/real.rb
433
+ - lib/fog/google/compute/requests/abandon_instances.rb
434
+ - lib/fog/google/compute/requests/add_backend_service_backends.rb
435
+ - lib/fog/google/compute/requests/add_instance_group_instances.rb
436
+ - lib/fog/google/compute/requests/add_server_access_config.rb
437
+ - lib/fog/google/compute/requests/add_target_pool_health_checks.rb
438
+ - lib/fog/google/compute/requests/add_target_pool_instances.rb
439
+ - lib/fog/google/compute/requests/attach_disk.rb
440
+ - lib/fog/google/compute/requests/create_disk_snapshot.rb
441
+ - lib/fog/google/compute/requests/delete_address.rb
442
+ - lib/fog/google/compute/requests/delete_backend_service.rb
443
+ - lib/fog/google/compute/requests/delete_disk.rb
444
+ - lib/fog/google/compute/requests/delete_firewall.rb
445
+ - lib/fog/google/compute/requests/delete_forwarding_rule.rb
446
+ - lib/fog/google/compute/requests/delete_global_address.rb
447
+ - lib/fog/google/compute/requests/delete_global_forwarding_rule.rb
448
+ - lib/fog/google/compute/requests/delete_global_operation.rb
449
+ - lib/fog/google/compute/requests/delete_http_health_check.rb
450
+ - lib/fog/google/compute/requests/delete_image.rb
451
+ - lib/fog/google/compute/requests/delete_instance_group.rb
452
+ - lib/fog/google/compute/requests/delete_instance_group_manager.rb
453
+ - lib/fog/google/compute/requests/delete_instance_template.rb
454
+ - lib/fog/google/compute/requests/delete_network.rb
455
+ - lib/fog/google/compute/requests/delete_region_operation.rb
456
+ - lib/fog/google/compute/requests/delete_route.rb
457
+ - lib/fog/google/compute/requests/delete_server.rb
458
+ - lib/fog/google/compute/requests/delete_server_access_config.rb
459
+ - lib/fog/google/compute/requests/delete_snapshot.rb
460
+ - lib/fog/google/compute/requests/delete_ssl_certificate.rb
461
+ - lib/fog/google/compute/requests/delete_subnetwork.rb
462
+ - lib/fog/google/compute/requests/delete_target_http_proxy.rb
463
+ - lib/fog/google/compute/requests/delete_target_https_proxy.rb
464
+ - lib/fog/google/compute/requests/delete_target_instance.rb
465
+ - lib/fog/google/compute/requests/delete_target_pool.rb
466
+ - lib/fog/google/compute/requests/delete_url_map.rb
467
+ - lib/fog/google/compute/requests/delete_zone_operation.rb
468
+ - lib/fog/google/compute/requests/deprecate_image.rb
469
+ - lib/fog/google/compute/requests/detach_disk.rb
470
+ - lib/fog/google/compute/requests/expand_subnetwork_ip_cidr_range.rb
471
+ - lib/fog/google/compute/requests/get_address.rb
472
+ - lib/fog/google/compute/requests/get_backend_service.rb
473
+ - lib/fog/google/compute/requests/get_backend_service_health.rb
474
+ - lib/fog/google/compute/requests/get_disk.rb
475
+ - lib/fog/google/compute/requests/get_disk_type.rb
476
+ - lib/fog/google/compute/requests/get_firewall.rb
477
+ - lib/fog/google/compute/requests/get_forwarding_rule.rb
478
+ - lib/fog/google/compute/requests/get_global_address.rb
479
+ - lib/fog/google/compute/requests/get_global_forwarding_rule.rb
480
+ - lib/fog/google/compute/requests/get_global_operation.rb
481
+ - lib/fog/google/compute/requests/get_http_health_check.rb
482
+ - lib/fog/google/compute/requests/get_image.rb
483
+ - lib/fog/google/compute/requests/get_image_from_family.rb
484
+ - lib/fog/google/compute/requests/get_instance_group.rb
485
+ - lib/fog/google/compute/requests/get_instance_group_manager.rb
486
+ - lib/fog/google/compute/requests/get_instance_template.rb
487
+ - lib/fog/google/compute/requests/get_machine_type.rb
488
+ - lib/fog/google/compute/requests/get_network.rb
489
+ - lib/fog/google/compute/requests/get_project.rb
490
+ - lib/fog/google/compute/requests/get_region.rb
491
+ - lib/fog/google/compute/requests/get_region_operation.rb
492
+ - lib/fog/google/compute/requests/get_route.rb
493
+ - lib/fog/google/compute/requests/get_server.rb
494
+ - lib/fog/google/compute/requests/get_server_serial_port_output.rb
495
+ - lib/fog/google/compute/requests/get_snapshot.rb
496
+ - lib/fog/google/compute/requests/get_ssl_certificate.rb
497
+ - lib/fog/google/compute/requests/get_subnetwork.rb
498
+ - lib/fog/google/compute/requests/get_target_http_proxy.rb
499
+ - lib/fog/google/compute/requests/get_target_https_proxy.rb
500
+ - lib/fog/google/compute/requests/get_target_instance.rb
501
+ - lib/fog/google/compute/requests/get_target_pool.rb
502
+ - lib/fog/google/compute/requests/get_target_pool_health.rb
503
+ - lib/fog/google/compute/requests/get_url_map.rb
504
+ - lib/fog/google/compute/requests/get_zone.rb
505
+ - lib/fog/google/compute/requests/get_zone_operation.rb
506
+ - lib/fog/google/compute/requests/insert_address.rb
507
+ - lib/fog/google/compute/requests/insert_backend_service.rb
508
+ - lib/fog/google/compute/requests/insert_disk.rb
509
+ - lib/fog/google/compute/requests/insert_firewall.rb
510
+ - lib/fog/google/compute/requests/insert_forwarding_rule.rb
511
+ - lib/fog/google/compute/requests/insert_global_address.rb
512
+ - lib/fog/google/compute/requests/insert_global_forwarding_rule.rb
513
+ - lib/fog/google/compute/requests/insert_http_health_check.rb
514
+ - lib/fog/google/compute/requests/insert_image.rb
515
+ - lib/fog/google/compute/requests/insert_instance_group.rb
516
+ - lib/fog/google/compute/requests/insert_instance_group_manager.rb
517
+ - lib/fog/google/compute/requests/insert_instance_template.rb
518
+ - lib/fog/google/compute/requests/insert_network.rb
519
+ - lib/fog/google/compute/requests/insert_route.rb
520
+ - lib/fog/google/compute/requests/insert_server.rb
521
+ - lib/fog/google/compute/requests/insert_ssl_certificate.rb
522
+ - lib/fog/google/compute/requests/insert_subnetwork.rb
523
+ - lib/fog/google/compute/requests/insert_target_http_proxy.rb
524
+ - lib/fog/google/compute/requests/insert_target_https_proxy.rb
525
+ - lib/fog/google/compute/requests/insert_target_instance.rb
526
+ - lib/fog/google/compute/requests/insert_target_pool.rb
527
+ - lib/fog/google/compute/requests/insert_url_map.rb
528
+ - lib/fog/google/compute/requests/invalidate_url_map_cache.rb
529
+ - lib/fog/google/compute/requests/list_addresses.rb
530
+ - lib/fog/google/compute/requests/list_aggregated_addresses.rb
531
+ - lib/fog/google/compute/requests/list_aggregated_disk_types.rb
532
+ - lib/fog/google/compute/requests/list_aggregated_disks.rb
533
+ - lib/fog/google/compute/requests/list_aggregated_forwarding_rules.rb
534
+ - lib/fog/google/compute/requests/list_aggregated_instance_group_managers.rb
535
+ - lib/fog/google/compute/requests/list_aggregated_instance_groups.rb
536
+ - lib/fog/google/compute/requests/list_aggregated_machine_types.rb
537
+ - lib/fog/google/compute/requests/list_aggregated_servers.rb
538
+ - lib/fog/google/compute/requests/list_aggregated_subnetworks.rb
539
+ - lib/fog/google/compute/requests/list_aggregated_target_instances.rb
540
+ - lib/fog/google/compute/requests/list_aggregated_target_pools.rb
541
+ - lib/fog/google/compute/requests/list_backend_services.rb
542
+ - lib/fog/google/compute/requests/list_disk_types.rb
543
+ - lib/fog/google/compute/requests/list_disks.rb
544
+ - lib/fog/google/compute/requests/list_firewalls.rb
545
+ - lib/fog/google/compute/requests/list_forwarding_rules.rb
546
+ - lib/fog/google/compute/requests/list_global_addresses.rb
547
+ - lib/fog/google/compute/requests/list_global_forwarding_rules.rb
548
+ - lib/fog/google/compute/requests/list_global_operations.rb
549
+ - lib/fog/google/compute/requests/list_http_health_checks.rb
550
+ - lib/fog/google/compute/requests/list_images.rb
551
+ - lib/fog/google/compute/requests/list_instance_group_instances.rb
552
+ - lib/fog/google/compute/requests/list_instance_group_managers.rb
553
+ - lib/fog/google/compute/requests/list_instance_groups.rb
554
+ - lib/fog/google/compute/requests/list_instance_templates.rb
555
+ - lib/fog/google/compute/requests/list_machine_types.rb
556
+ - lib/fog/google/compute/requests/list_networks.rb
557
+ - lib/fog/google/compute/requests/list_region_operations.rb
558
+ - lib/fog/google/compute/requests/list_regions.rb
559
+ - lib/fog/google/compute/requests/list_routes.rb
560
+ - lib/fog/google/compute/requests/list_servers.rb
561
+ - lib/fog/google/compute/requests/list_snapshots.rb
562
+ - lib/fog/google/compute/requests/list_ssl_certificates.rb
563
+ - lib/fog/google/compute/requests/list_subnetworks.rb
564
+ - lib/fog/google/compute/requests/list_target_http_proxies.rb
565
+ - lib/fog/google/compute/requests/list_target_https_proxies.rb
566
+ - lib/fog/google/compute/requests/list_target_instances.rb
567
+ - lib/fog/google/compute/requests/list_target_pools.rb
568
+ - lib/fog/google/compute/requests/list_url_maps.rb
569
+ - lib/fog/google/compute/requests/list_zone_operations.rb
570
+ - lib/fog/google/compute/requests/list_zones.rb
571
+ - lib/fog/google/compute/requests/patch_firewall.rb
572
+ - lib/fog/google/compute/requests/patch_url_map.rb
573
+ - lib/fog/google/compute/requests/recreate_instances.rb
574
+ - lib/fog/google/compute/requests/remove_instance_group_instances.rb
575
+ - lib/fog/google/compute/requests/remove_target_pool_health_checks.rb
576
+ - lib/fog/google/compute/requests/remove_target_pool_instance.rb
577
+ - lib/fog/google/compute/requests/remove_target_pool_instances.rb
578
+ - lib/fog/google/compute/requests/reset_server.rb
579
+ - lib/fog/google/compute/requests/reset_windows_password.rb
580
+ - lib/fog/google/compute/requests/set_common_instance_metadata.rb
581
+ - lib/fog/google/compute/requests/set_forwarding_rule_target.rb
582
+ - lib/fog/google/compute/requests/set_global_forwarding_rule_target.rb
583
+ - lib/fog/google/compute/requests/set_instance_template.rb
584
+ - lib/fog/google/compute/requests/set_server_disk_auto_delete.rb
585
+ - lib/fog/google/compute/requests/set_server_machine_type.rb
586
+ - lib/fog/google/compute/requests/set_server_metadata.rb
587
+ - lib/fog/google/compute/requests/set_server_scheduling.rb
588
+ - lib/fog/google/compute/requests/set_server_tags.rb
589
+ - lib/fog/google/compute/requests/set_snapshot_labels.rb
590
+ - lib/fog/google/compute/requests/set_subnetwork_private_ip_google_access.rb
591
+ - lib/fog/google/compute/requests/set_target_http_proxy_url_map.rb
592
+ - lib/fog/google/compute/requests/set_target_https_proxy_ssl_certificates.rb
593
+ - lib/fog/google/compute/requests/set_target_https_proxy_url_map.rb
594
+ - lib/fog/google/compute/requests/set_target_pool_backup.rb
595
+ - lib/fog/google/compute/requests/start_server.rb
596
+ - lib/fog/google/compute/requests/stop_server.rb
597
+ - lib/fog/google/compute/requests/update_firewall.rb
598
+ - lib/fog/google/compute/requests/update_http_health_check.rb
599
+ - lib/fog/google/compute/requests/update_url_map.rb
600
+ - lib/fog/google/compute/requests/validate_url_map.rb
601
+ - lib/fog/google/dns.rb
602
+ - lib/fog/google/dns/mock.rb
603
+ - lib/fog/google/dns/models/change.rb
604
+ - lib/fog/google/dns/models/changes.rb
605
+ - lib/fog/google/dns/models/project.rb
606
+ - lib/fog/google/dns/models/projects.rb
607
+ - lib/fog/google/dns/models/record.rb
608
+ - lib/fog/google/dns/models/records.rb
609
+ - lib/fog/google/dns/models/zone.rb
610
+ - lib/fog/google/dns/models/zones.rb
611
+ - lib/fog/google/dns/real.rb
612
+ - lib/fog/google/dns/requests/create_change.rb
613
+ - lib/fog/google/dns/requests/create_managed_zone.rb
614
+ - lib/fog/google/dns/requests/delete_managed_zone.rb
615
+ - lib/fog/google/dns/requests/get_change.rb
616
+ - lib/fog/google/dns/requests/get_managed_zone.rb
617
+ - lib/fog/google/dns/requests/get_project.rb
618
+ - lib/fog/google/dns/requests/list_changes.rb
619
+ - lib/fog/google/dns/requests/list_managed_zones.rb
620
+ - lib/fog/google/dns/requests/list_resource_record_sets.rb
623
621
  - lib/fog/google/mock.rb
624
622
  - lib/fog/google/models/monitoring/metric_descriptor.rb
625
623
  - lib/fog/google/models/monitoring/metric_descriptors.rb
@@ -649,6 +647,15 @@ files:
649
647
  - lib/fog/google/monitoring.rb
650
648
  - lib/fog/google/monitoring/mock.rb
651
649
  - lib/fog/google/monitoring/real.rb
650
+ - lib/fog/google/parsers/storage.rb
651
+ - lib/fog/google/parsers/storage/access_control_list.rb
652
+ - lib/fog/google/parsers/storage/copy_object.rb
653
+ - lib/fog/google/parsers/storage/get_bucket.rb
654
+ - lib/fog/google/parsers/storage/get_bucket_logging.rb
655
+ - lib/fog/google/parsers/storage/get_bucket_object_versions.rb
656
+ - lib/fog/google/parsers/storage/get_bucket_versioning.rb
657
+ - lib/fog/google/parsers/storage/get_request_payment.rb
658
+ - lib/fog/google/parsers/storage/get_service.rb
652
659
  - lib/fog/google/pubsub.rb
653
660
  - lib/fog/google/pubsub/mock.rb
654
661
  - lib/fog/google/pubsub/real.rb
@@ -702,178 +709,72 @@ files:
702
709
  - lib/fog/google/sql.rb
703
710
  - lib/fog/google/sql/mock.rb
704
711
  - lib/fog/google/sql/real.rb
712
+ - lib/fog/google/storage.rb
713
+ - lib/fog/google/storage/storage_json.rb
714
+ - lib/fog/google/storage/storage_json/mock.rb
715
+ - lib/fog/google/storage/storage_json/models/directories.rb
716
+ - lib/fog/google/storage/storage_json/models/directory.rb
717
+ - lib/fog/google/storage/storage_json/models/file.rb
718
+ - lib/fog/google/storage/storage_json/models/files.rb
719
+ - lib/fog/google/storage/storage_json/real.rb
720
+ - lib/fog/google/storage/storage_json/requests/copy_object.rb
721
+ - lib/fog/google/storage/storage_json/requests/delete_bucket.rb
722
+ - lib/fog/google/storage/storage_json/requests/delete_object.rb
723
+ - lib/fog/google/storage/storage_json/requests/delete_object_url.rb
724
+ - lib/fog/google/storage/storage_json/requests/get_bucket.rb
725
+ - lib/fog/google/storage/storage_json/requests/get_bucket_acl.rb
726
+ - lib/fog/google/storage/storage_json/requests/get_object.rb
727
+ - lib/fog/google/storage/storage_json/requests/get_object_acl.rb
728
+ - lib/fog/google/storage/storage_json/requests/get_object_http_url.rb
729
+ - lib/fog/google/storage/storage_json/requests/get_object_https_url.rb
730
+ - lib/fog/google/storage/storage_json/requests/get_object_metadata.rb
731
+ - lib/fog/google/storage/storage_json/requests/get_object_url.rb
732
+ - lib/fog/google/storage/storage_json/requests/list_bucket_acl.rb
733
+ - lib/fog/google/storage/storage_json/requests/list_buckets.rb
734
+ - lib/fog/google/storage/storage_json/requests/list_object_acl.rb
735
+ - lib/fog/google/storage/storage_json/requests/list_objects.rb
736
+ - lib/fog/google/storage/storage_json/requests/put_bucket.rb
737
+ - lib/fog/google/storage/storage_json/requests/put_bucket_acl.rb
738
+ - lib/fog/google/storage/storage_json/requests/put_object.rb
739
+ - lib/fog/google/storage/storage_json/requests/put_object_acl.rb
740
+ - lib/fog/google/storage/storage_json/requests/put_object_url.rb
741
+ - lib/fog/google/storage/storage_json/utils.rb
742
+ - lib/fog/google/storage/storage_xml.rb
743
+ - lib/fog/google/storage/storage_xml/mock.rb
744
+ - lib/fog/google/storage/storage_xml/models/directories.rb
745
+ - lib/fog/google/storage/storage_xml/models/directory.rb
746
+ - lib/fog/google/storage/storage_xml/models/file.rb
747
+ - lib/fog/google/storage/storage_xml/models/files.rb
748
+ - lib/fog/google/storage/storage_xml/real.rb
749
+ - lib/fog/google/storage/storage_xml/requests/copy_object.rb
750
+ - lib/fog/google/storage/storage_xml/requests/delete_bucket.rb
751
+ - lib/fog/google/storage/storage_xml/requests/delete_object.rb
752
+ - lib/fog/google/storage/storage_xml/requests/delete_object_url.rb
753
+ - lib/fog/google/storage/storage_xml/requests/get_bucket.rb
754
+ - lib/fog/google/storage/storage_xml/requests/get_bucket_acl.rb
755
+ - lib/fog/google/storage/storage_xml/requests/get_object.rb
756
+ - lib/fog/google/storage/storage_xml/requests/get_object_acl.rb
757
+ - lib/fog/google/storage/storage_xml/requests/get_object_http_url.rb
758
+ - lib/fog/google/storage/storage_xml/requests/get_object_https_url.rb
759
+ - lib/fog/google/storage/storage_xml/requests/get_object_url.rb
760
+ - lib/fog/google/storage/storage_xml/requests/get_service.rb
761
+ - lib/fog/google/storage/storage_xml/requests/head_object.rb
762
+ - lib/fog/google/storage/storage_xml/requests/put_bucket.rb
763
+ - lib/fog/google/storage/storage_xml/requests/put_bucket_acl.rb
764
+ - lib/fog/google/storage/storage_xml/requests/put_object.rb
765
+ - lib/fog/google/storage/storage_xml/requests/put_object_acl.rb
766
+ - lib/fog/google/storage/storage_xml/requests/put_object_url.rb
767
+ - lib/fog/google/storage/storage_xml/utils.rb
705
768
  - lib/fog/google/version.rb
706
- - lib/fog/parsers/storage/google.rb
707
- - lib/fog/parsers/storage/google/access_control_list.rb
708
- - lib/fog/parsers/storage/google/copy_object.rb
709
- - lib/fog/parsers/storage/google/get_bucket.rb
710
- - lib/fog/parsers/storage/google/get_bucket_logging.rb
711
- - lib/fog/parsers/storage/google/get_bucket_object_versions.rb
712
- - lib/fog/parsers/storage/google/get_bucket_versioning.rb
713
- - lib/fog/parsers/storage/google/get_request_payment.rb
714
- - lib/fog/parsers/storage/google/get_service.rb
715
- - lib/fog/storage/google.rb
716
- - lib/fog/storage/google_json.rb
717
- - lib/fog/storage/google_json/mock.rb
718
- - lib/fog/storage/google_json/models/directories.rb
719
- - lib/fog/storage/google_json/models/directory.rb
720
- - lib/fog/storage/google_json/models/file.rb
721
- - lib/fog/storage/google_json/models/files.rb
722
- - lib/fog/storage/google_json/real.rb
723
- - lib/fog/storage/google_json/requests/copy_object.rb
724
- - lib/fog/storage/google_json/requests/delete_bucket.rb
725
- - lib/fog/storage/google_json/requests/delete_object.rb
726
- - lib/fog/storage/google_json/requests/delete_object_url.rb
727
- - lib/fog/storage/google_json/requests/get_bucket.rb
728
- - lib/fog/storage/google_json/requests/get_bucket_acl.rb
729
- - lib/fog/storage/google_json/requests/get_object.rb
730
- - lib/fog/storage/google_json/requests/get_object_acl.rb
731
- - lib/fog/storage/google_json/requests/get_object_http_url.rb
732
- - lib/fog/storage/google_json/requests/get_object_https_url.rb
733
- - lib/fog/storage/google_json/requests/get_object_metadata.rb
734
- - lib/fog/storage/google_json/requests/get_object_url.rb
735
- - lib/fog/storage/google_json/requests/list_bucket_acl.rb
736
- - lib/fog/storage/google_json/requests/list_buckets.rb
737
- - lib/fog/storage/google_json/requests/list_object_acl.rb
738
- - lib/fog/storage/google_json/requests/list_objects.rb
739
- - lib/fog/storage/google_json/requests/put_bucket.rb
740
- - lib/fog/storage/google_json/requests/put_bucket_acl.rb
741
- - lib/fog/storage/google_json/requests/put_object.rb
742
- - lib/fog/storage/google_json/requests/put_object_acl.rb
743
- - lib/fog/storage/google_json/requests/put_object_url.rb
744
- - lib/fog/storage/google_json/utils.rb
745
- - lib/fog/storage/google_xml.rb
746
- - lib/fog/storage/google_xml/mock.rb
747
- - lib/fog/storage/google_xml/models/directories.rb
748
- - lib/fog/storage/google_xml/models/directory.rb
749
- - lib/fog/storage/google_xml/models/file.rb
750
- - lib/fog/storage/google_xml/models/files.rb
751
- - lib/fog/storage/google_xml/real.rb
752
- - lib/fog/storage/google_xml/requests/copy_object.rb
753
- - lib/fog/storage/google_xml/requests/delete_bucket.rb
754
- - lib/fog/storage/google_xml/requests/delete_object.rb
755
- - lib/fog/storage/google_xml/requests/delete_object_url.rb
756
- - lib/fog/storage/google_xml/requests/get_bucket.rb
757
- - lib/fog/storage/google_xml/requests/get_bucket_acl.rb
758
- - lib/fog/storage/google_xml/requests/get_object.rb
759
- - lib/fog/storage/google_xml/requests/get_object_acl.rb
760
- - lib/fog/storage/google_xml/requests/get_object_http_url.rb
761
- - lib/fog/storage/google_xml/requests/get_object_https_url.rb
762
- - lib/fog/storage/google_xml/requests/get_object_url.rb
763
- - lib/fog/storage/google_xml/requests/get_service.rb
764
- - lib/fog/storage/google_xml/requests/head_object.rb
765
- - lib/fog/storage/google_xml/requests/put_bucket.rb
766
- - lib/fog/storage/google_xml/requests/put_bucket_acl.rb
767
- - lib/fog/storage/google_xml/requests/put_object.rb
768
- - lib/fog/storage/google_xml/requests/put_object_acl.rb
769
- - lib/fog/storage/google_xml/requests/put_object_url.rb
770
- - lib/fog/storage/google_xml/utils.rb
771
769
  - tasks/bundler.rake
772
770
  - tasks/changelog.rake
773
771
  - tasks/console.rake
774
772
  - tasks/lint.rake
775
773
  - tasks/test.rake
776
- - test/helpers/client_helper.rb
777
- - test/helpers/integration_test_helper.rb
778
- - test/helpers/test_collection.rb
779
- - test/helpers/test_helper.rb
780
- - test/integration/compute/core_compute/test_client_options.rb
781
- - test/integration/compute/core_compute/test_coverage.rb
782
- - test/integration/compute/core_compute/test_disk_types.rb
783
- - test/integration/compute/core_compute/test_disks.rb
784
- - test/integration/compute/core_compute/test_images.rb
785
- - test/integration/compute/core_compute/test_machine_types.rb
786
- - test/integration/compute/core_compute/test_operations.rb
787
- - test/integration/compute/core_compute/test_projects.rb
788
- - test/integration/compute/core_compute/test_regions.rb
789
- - test/integration/compute/core_compute/test_servers.rb
790
- - test/integration/compute/core_compute/test_snapshots.rb
791
- - test/integration/compute/core_compute/test_zones.rb
792
- - test/integration/compute/core_networking/test_addresses.rb
793
- - test/integration/compute/core_networking/test_coverage.rb
794
- - test/integration/compute/core_networking/test_firewalls.rb
795
- - test/integration/compute/core_networking/test_networks.rb
796
- - test/integration/compute/core_networking/test_routes.rb
797
- - test/integration/compute/core_networking/test_subnetworks.rb
798
- - test/integration/compute/instance_groups/test_coverage.rb
799
- - test/integration/compute/instance_groups/test_instance_group_managers.rb
800
- - test/integration/compute/instance_groups/test_instance_groups.rb
801
- - test/integration/compute/instance_groups/test_instance_templates.rb
802
- - test/integration/compute/loadbalancing/test_backend_services.rb
803
- - test/integration/compute/loadbalancing/test_coverage.rb
804
- - test/integration/compute/loadbalancing/test_forwarding_rules.rb
805
- - test/integration/compute/loadbalancing/test_global_addresses.rb
806
- - test/integration/compute/loadbalancing/test_global_forwarding_rules.rb
807
- - test/integration/compute/loadbalancing/test_http_health_checks.rb
808
- - test/integration/compute/loadbalancing/test_ssl_certificates.rb
809
- - test/integration/compute/loadbalancing/test_target_http_proxies.rb
810
- - test/integration/compute/loadbalancing/test_target_https_proxies.rb
811
- - test/integration/compute/loadbalancing/test_target_instances.rb
812
- - test/integration/compute/loadbalancing/test_target_pools.rb
813
- - test/integration/compute/loadbalancing/test_url_maps.rb
814
- - test/integration/factories/addresses_factory.rb
815
- - test/integration/factories/backend_services_factory.rb
816
- - test/integration/factories/collection_factory.rb
817
- - test/integration/factories/disks_factory.rb
818
- - test/integration/factories/firewalls_factory.rb
819
- - test/integration/factories/forwarding_rules_factory.rb
820
- - test/integration/factories/global_addresses_factory.rb
821
- - test/integration/factories/global_forwarding_rules_factory.rb
822
- - test/integration/factories/http_health_checks_factory.rb
823
- - test/integration/factories/images_factory.rb
824
- - test/integration/factories/instance_group_manager_factory.rb
825
- - test/integration/factories/instance_groups_factory.rb
826
- - test/integration/factories/instance_template_factory.rb
827
- - test/integration/factories/networks_factory.rb
828
- - test/integration/factories/servers_factory.rb
829
- - test/integration/factories/sql_certs_factory.rb
830
- - test/integration/factories/sql_instances_factory.rb
831
- - test/integration/factories/sql_users_factory.rb
832
- - test/integration/factories/ssl_certificates_factory.rb
833
- - test/integration/factories/subnetworks_factory.rb
834
- - test/integration/factories/target_http_proxies_factory.rb
835
- - test/integration/factories/target_https_proxies_factory.rb
836
- - test/integration/factories/target_instances_factory.rb
837
- - test/integration/factories/target_pools_factory.rb
838
- - test/integration/factories/url_maps_factory.rb
839
- - test/integration/monitoring/test_coverage.rb
840
- - test/integration/monitoring/test_metric_descriptors.rb
841
- - test/integration/monitoring/test_monitored_resource_descriptors.rb
842
- - test/integration/monitoring/test_timeseries.rb
843
- - test/integration/pubsub/pubsub_shared.rb
844
- - test/integration/pubsub/test_coverage.rb
845
- - test/integration/pubsub/test_pubsub_models.rb
846
- - test/integration/pubsub/test_pubsub_requests.rb
847
- - test/integration/sql/test_certs.rb
848
- - test/integration/sql/test_common_flags.rb
849
- - test/integration/sql/test_common_tiers.rb
850
- - test/integration/sql/test_coverage.rb
851
- - test/integration/sql/test_instances.rb
852
- - test/integration/sql/test_users.rb
853
- - test/integration/storage/storage_shared.rb
854
- - test/integration/storage/test_buckets.rb
855
- - test/integration/storage/test_coverage.rb
856
- - test/integration/storage/test_directories.rb
857
- - test/integration/storage/test_files.rb
858
- - test/integration/storage/test_objects.rb
859
- - test/integration/test_authentication.rb
860
- - test/unit/compute/test_common_collections.rb
861
- - test/unit/compute/test_common_models.rb
862
- - test/unit/compute/test_disk.rb
863
- - test/unit/compute/test_server.rb
864
- - test/unit/dns/test_common_collections.rb
865
- - test/unit/monitoring/test_comon_collections.rb
866
- - test/unit/pubsub/test_common_collections.rb
867
- - test/unit/sql/test_common_collections.rb
868
- - test/unit/storage/test_common_json_collections.rb
869
- - test/unit/storage/test_common_xml_collections.rb
870
- - test/unit/storage/test_json_requests.rb
871
- - test/unit/storage/test_xml_requests.rb
872
774
  homepage: https://github.com/fog/fog-google
873
775
  licenses:
874
776
  - MIT
875
777
  metadata: {}
876
- post_install_message:
877
778
  rdoc_options: []
878
779
  require_paths:
879
780
  - lib
@@ -888,104 +789,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
888
789
  - !ruby/object:Gem::Version
889
790
  version: '0'
890
791
  requirements: []
891
- rubygems_version: 3.4.10
892
- signing_key:
792
+ rubygems_version: 3.6.9
893
793
  specification_version: 4
894
794
  summary: Module for the 'fog' gem to support Google.
895
- test_files:
896
- - test/helpers/client_helper.rb
897
- - test/helpers/integration_test_helper.rb
898
- - test/helpers/test_collection.rb
899
- - test/helpers/test_helper.rb
900
- - test/integration/compute/core_compute/test_client_options.rb
901
- - test/integration/compute/core_compute/test_coverage.rb
902
- - test/integration/compute/core_compute/test_disk_types.rb
903
- - test/integration/compute/core_compute/test_disks.rb
904
- - test/integration/compute/core_compute/test_images.rb
905
- - test/integration/compute/core_compute/test_machine_types.rb
906
- - test/integration/compute/core_compute/test_operations.rb
907
- - test/integration/compute/core_compute/test_projects.rb
908
- - test/integration/compute/core_compute/test_regions.rb
909
- - test/integration/compute/core_compute/test_servers.rb
910
- - test/integration/compute/core_compute/test_snapshots.rb
911
- - test/integration/compute/core_compute/test_zones.rb
912
- - test/integration/compute/core_networking/test_addresses.rb
913
- - test/integration/compute/core_networking/test_coverage.rb
914
- - test/integration/compute/core_networking/test_firewalls.rb
915
- - test/integration/compute/core_networking/test_networks.rb
916
- - test/integration/compute/core_networking/test_routes.rb
917
- - test/integration/compute/core_networking/test_subnetworks.rb
918
- - test/integration/compute/instance_groups/test_coverage.rb
919
- - test/integration/compute/instance_groups/test_instance_group_managers.rb
920
- - test/integration/compute/instance_groups/test_instance_groups.rb
921
- - test/integration/compute/instance_groups/test_instance_templates.rb
922
- - test/integration/compute/loadbalancing/test_backend_services.rb
923
- - test/integration/compute/loadbalancing/test_coverage.rb
924
- - test/integration/compute/loadbalancing/test_forwarding_rules.rb
925
- - test/integration/compute/loadbalancing/test_global_addresses.rb
926
- - test/integration/compute/loadbalancing/test_global_forwarding_rules.rb
927
- - test/integration/compute/loadbalancing/test_http_health_checks.rb
928
- - test/integration/compute/loadbalancing/test_ssl_certificates.rb
929
- - test/integration/compute/loadbalancing/test_target_http_proxies.rb
930
- - test/integration/compute/loadbalancing/test_target_https_proxies.rb
931
- - test/integration/compute/loadbalancing/test_target_instances.rb
932
- - test/integration/compute/loadbalancing/test_target_pools.rb
933
- - test/integration/compute/loadbalancing/test_url_maps.rb
934
- - test/integration/factories/addresses_factory.rb
935
- - test/integration/factories/backend_services_factory.rb
936
- - test/integration/factories/collection_factory.rb
937
- - test/integration/factories/disks_factory.rb
938
- - test/integration/factories/firewalls_factory.rb
939
- - test/integration/factories/forwarding_rules_factory.rb
940
- - test/integration/factories/global_addresses_factory.rb
941
- - test/integration/factories/global_forwarding_rules_factory.rb
942
- - test/integration/factories/http_health_checks_factory.rb
943
- - test/integration/factories/images_factory.rb
944
- - test/integration/factories/instance_group_manager_factory.rb
945
- - test/integration/factories/instance_groups_factory.rb
946
- - test/integration/factories/instance_template_factory.rb
947
- - test/integration/factories/networks_factory.rb
948
- - test/integration/factories/servers_factory.rb
949
- - test/integration/factories/sql_certs_factory.rb
950
- - test/integration/factories/sql_instances_factory.rb
951
- - test/integration/factories/sql_users_factory.rb
952
- - test/integration/factories/ssl_certificates_factory.rb
953
- - test/integration/factories/subnetworks_factory.rb
954
- - test/integration/factories/target_http_proxies_factory.rb
955
- - test/integration/factories/target_https_proxies_factory.rb
956
- - test/integration/factories/target_instances_factory.rb
957
- - test/integration/factories/target_pools_factory.rb
958
- - test/integration/factories/url_maps_factory.rb
959
- - test/integration/monitoring/test_coverage.rb
960
- - test/integration/monitoring/test_metric_descriptors.rb
961
- - test/integration/monitoring/test_monitored_resource_descriptors.rb
962
- - test/integration/monitoring/test_timeseries.rb
963
- - test/integration/pubsub/pubsub_shared.rb
964
- - test/integration/pubsub/test_coverage.rb
965
- - test/integration/pubsub/test_pubsub_models.rb
966
- - test/integration/pubsub/test_pubsub_requests.rb
967
- - test/integration/sql/test_certs.rb
968
- - test/integration/sql/test_common_flags.rb
969
- - test/integration/sql/test_common_tiers.rb
970
- - test/integration/sql/test_coverage.rb
971
- - test/integration/sql/test_instances.rb
972
- - test/integration/sql/test_users.rb
973
- - test/integration/storage/storage_shared.rb
974
- - test/integration/storage/test_buckets.rb
975
- - test/integration/storage/test_coverage.rb
976
- - test/integration/storage/test_directories.rb
977
- - test/integration/storage/test_files.rb
978
- - test/integration/storage/test_objects.rb
979
- - test/integration/test_authentication.rb
980
- - test/unit/compute/test_common_collections.rb
981
- - test/unit/compute/test_common_models.rb
982
- - test/unit/compute/test_disk.rb
983
- - test/unit/compute/test_server.rb
984
- - test/unit/dns/test_common_collections.rb
985
- - test/unit/monitoring/test_comon_collections.rb
986
- - test/unit/pubsub/test_common_collections.rb
987
- - test/unit/sql/test_common_collections.rb
988
- - test/unit/storage/test_common_json_collections.rb
989
- - test/unit/storage/test_common_xml_collections.rb
990
- - test/unit/storage/test_json_requests.rb
991
- - test/unit/storage/test_xml_requests.rb
795
+ test_files: []