daytona_api_client 0.155.0 → 0.157.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.
- checksums.yaml +4 -4
- data/lib/daytona_api_client/api/sandbox_api.rb +3 -0
- data/lib/daytona_api_client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f05622045a24b555fc600766ae181cdf3f981f62e56e65269da1d0ba018e83b9
|
|
4
|
+
data.tar.gz: 0ef52b7b8c1fc901fc3b4fb4195dbfe42793f9cf135ec5f6948b01c7cfef40bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a4cebf06d2eb5fa2ce1cc39a5c6178cdd5e01187071cfdeb293ed06fcbbeea93cc9f9ca04ac749d458d5ff2f594f8784ccca1fa0906f3f47dd1ac06d3b941a5
|
|
7
|
+
data.tar.gz: 64caf34f6aa6025104e1ad086cadcb9fad084428d5b57b4d1e6d03683b1860ec94cf62df06745d3fc11bcf505dadc707476fbdc9cb935691b14d9358c07d4eab
|
|
@@ -2012,6 +2012,7 @@ module DaytonaApiClient
|
|
|
2012
2012
|
# @param sandbox_id_or_name [String] ID or name of the sandbox
|
|
2013
2013
|
# @param [Hash] opts the optional parameters
|
|
2014
2014
|
# @option opts [String] :x_daytona_organization_id Use with JWT to specify the organization ID
|
|
2015
|
+
# @option opts [Boolean] :force Force stop the sandbox using SIGKILL instead of SIGTERM
|
|
2015
2016
|
# @return [Sandbox]
|
|
2016
2017
|
def stop_sandbox(sandbox_id_or_name, opts = {})
|
|
2017
2018
|
data, _status_code, _headers = stop_sandbox_with_http_info(sandbox_id_or_name, opts)
|
|
@@ -2022,6 +2023,7 @@ module DaytonaApiClient
|
|
|
2022
2023
|
# @param sandbox_id_or_name [String] ID or name of the sandbox
|
|
2023
2024
|
# @param [Hash] opts the optional parameters
|
|
2024
2025
|
# @option opts [String] :x_daytona_organization_id Use with JWT to specify the organization ID
|
|
2026
|
+
# @option opts [Boolean] :force Force stop the sandbox using SIGKILL instead of SIGTERM
|
|
2025
2027
|
# @return [Array<(Sandbox, Integer, Hash)>] Sandbox data, response status code and response headers
|
|
2026
2028
|
def stop_sandbox_with_http_info(sandbox_id_or_name, opts = {})
|
|
2027
2029
|
if @api_client.config.debugging
|
|
@@ -2036,6 +2038,7 @@ module DaytonaApiClient
|
|
|
2036
2038
|
|
|
2037
2039
|
# query parameters
|
|
2038
2040
|
query_params = opts[:query_params] || {}
|
|
2041
|
+
query_params[:'force'] = opts[:'force'] if !opts[:'force'].nil?
|
|
2039
2042
|
|
|
2040
2043
|
# header parameters
|
|
2041
2044
|
header_params = opts[:header_params] || {}
|