daytona_api_client 0.170.0 → 0.171.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a2b5b63e59f2e7b100495c90838b41ea5bb472e032017717b9485bbcae60b61f
|
|
4
|
+
data.tar.gz: 8b3c5ad06e1207a1a4a754c6bd3661c7fabaeaec180a5d003a7ec1b253876c19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6c7246661f7132028ac63ac1504d3fa815646a139fdad64f9af182c5dac3748d92eb03d5ba16c9f185a38dd15a40f2ae3718e004c000b93369801eae32b160f
|
|
7
|
+
data.tar.gz: 99e0409ff1ed97d99886b092599035fd1c02941179951938a623f1c1bb5c24f3f020bec67afb3cc759b0c103817e957227e03273cdd57db15494b5c37eb31b21
|
|
@@ -455,6 +455,7 @@ module DaytonaApiClient
|
|
|
455
455
|
|
|
456
456
|
# List all runners
|
|
457
457
|
# @param [Hash] opts the optional parameters
|
|
458
|
+
# @option opts [String] :region_id Filter runners by region ID
|
|
458
459
|
# @option opts [String] :x_daytona_organization_id Use with JWT to specify the organization ID
|
|
459
460
|
# @return [Array<Runner>]
|
|
460
461
|
def list_runners(opts = {})
|
|
@@ -464,6 +465,7 @@ module DaytonaApiClient
|
|
|
464
465
|
|
|
465
466
|
# List all runners
|
|
466
467
|
# @param [Hash] opts the optional parameters
|
|
468
|
+
# @option opts [String] :region_id Filter runners by region ID
|
|
467
469
|
# @option opts [String] :x_daytona_organization_id Use with JWT to specify the organization ID
|
|
468
470
|
# @return [Array<(Array<Runner>, Integer, Hash)>] Array<Runner> data, response status code and response headers
|
|
469
471
|
def list_runners_with_http_info(opts = {})
|
|
@@ -475,6 +477,7 @@ module DaytonaApiClient
|
|
|
475
477
|
|
|
476
478
|
# query parameters
|
|
477
479
|
query_params = opts[:query_params] || {}
|
|
480
|
+
query_params[:'regionId'] = opts[:'region_id'] if !opts[:'region_id'].nil?
|
|
478
481
|
|
|
479
482
|
# header parameters
|
|
480
483
|
header_params = opts[:header_params] || {}
|
|
@@ -1930,6 +1930,7 @@ module DaytonaApiClient
|
|
|
1930
1930
|
# @param sandbox_id_or_name [String] ID or name of the sandbox
|
|
1931
1931
|
# @param [Hash] opts the optional parameters
|
|
1932
1932
|
# @option opts [String] :x_daytona_organization_id Use with JWT to specify the organization ID
|
|
1933
|
+
# @option opts [Boolean] :skip_start If true, the sandbox is left in STOPPED after recovery instead of being started.
|
|
1933
1934
|
# @return [Sandbox]
|
|
1934
1935
|
def recover_sandbox(sandbox_id_or_name, opts = {})
|
|
1935
1936
|
data, _status_code, _headers = recover_sandbox_with_http_info(sandbox_id_or_name, opts)
|
|
@@ -1940,6 +1941,7 @@ module DaytonaApiClient
|
|
|
1940
1941
|
# @param sandbox_id_or_name [String] ID or name of the sandbox
|
|
1941
1942
|
# @param [Hash] opts the optional parameters
|
|
1942
1943
|
# @option opts [String] :x_daytona_organization_id Use with JWT to specify the organization ID
|
|
1944
|
+
# @option opts [Boolean] :skip_start If true, the sandbox is left in STOPPED after recovery instead of being started.
|
|
1943
1945
|
# @return [Array<(Sandbox, Integer, Hash)>] Sandbox data, response status code and response headers
|
|
1944
1946
|
def recover_sandbox_with_http_info(sandbox_id_or_name, opts = {})
|
|
1945
1947
|
if @api_client.config.debugging
|
|
@@ -1954,6 +1956,7 @@ module DaytonaApiClient
|
|
|
1954
1956
|
|
|
1955
1957
|
# query parameters
|
|
1956
1958
|
query_params = opts[:query_params] || {}
|
|
1959
|
+
query_params[:'skipStart'] = opts[:'skip_start'] if !opts[:'skip_start'].nil?
|
|
1957
1960
|
|
|
1958
1961
|
# header parameters
|
|
1959
1962
|
header_params = opts[:header_params] || {}
|