Skip to content

Commit 7f01e42

Browse files
committed
Merge pull request #34 from miq-bot/openapi_generate
Update kubevirt gem
2 parents 75cad2f + b1be2a3 commit 7f01e42

File tree

729 files changed

+752
-736
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

729 files changed

+752
-736
lines changed

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.14.0
1+
7.15.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-g
88

99
- API version: 1.0.0
1010
- Package version: 0.1.0
11-
- Generator version: 7.14.0
11+
- Generator version: 7.15.0
1212
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
1313
For more information, please visit [https://github.com/kubevirt/kubevirt](https://github.com/kubevirt/kubevirt)
1414

docs/DefaultApi.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12894,7 +12894,7 @@ No authorization required
1289412894

1289512895
## v1_vnc
1289612896

12897-
> v1_vnc(name, namespace)
12897+
> v1_vnc(name, namespace, opts)
1289812898

1289912899

1290012900

@@ -12909,10 +12909,13 @@ require 'kubevirt'
1290912909
api_instance = Kubevirt::DefaultApi.new
1291012910
name = 'name_example' # String | Name of the resource
1291112911
namespace = 'namespace_example' # String | Object name and auth scope, such as for teams and projects
12912+
opts = {
12913+
preserve_session: true # Boolean | Connect only if ongoing session is not disturbed.
12914+
}
1291212915

1291312916
begin
1291412917

12915-
api_instance.v1_vnc(name, namespace)
12918+
api_instance.v1_vnc(name, namespace, opts)
1291612919
rescue Kubevirt::ApiError => e
1291712920
puts "Error when calling DefaultApi->v1_vnc: #{e}"
1291812921
end
@@ -12922,12 +12925,12 @@ end
1292212925

1292312926
This returns an Array which contains the response data (`nil` in this case), status code and headers.
1292412927

12925-
> <Array(nil, Integer, Hash)> v1_vnc_with_http_info(name, namespace)
12928+
> <Array(nil, Integer, Hash)> v1_vnc_with_http_info(name, namespace, opts)
1292612929

1292712930
```ruby
1292812931
begin
1292912932

12930-
data, status_code, headers = api_instance.v1_vnc_with_http_info(name, namespace)
12933+
data, status_code, headers = api_instance.v1_vnc_with_http_info(name, namespace, opts)
1293112934
p status_code # => 2xx
1293212935
p headers # => { ... }
1293312936
p data # => nil
@@ -12942,6 +12945,7 @@ end
1294212945
| ---- | ---- | ----------- | ----- |
1294312946
| **name** | **String** | Name of the resource | |
1294412947
| **namespace** | **String** | Object name and auth scope, such as for teams and projects | |
12948+
| **preserve_session** | **Boolean** | Connect only if ongoing session is not disturbed. | [optional] |
1294512949

1294612950
### Return type
1294712951

@@ -14684,7 +14688,7 @@ No authorization required
1468414688

1468514689
## v1alpha3_vnc
1468614690

14687-
> v1alpha3_vnc(name, namespace)
14691+
> v1alpha3_vnc(name, namespace, opts)
1468814692

1468914693

1469014694

@@ -14699,10 +14703,13 @@ require 'kubevirt'
1469914703
api_instance = Kubevirt::DefaultApi.new
1470014704
name = 'name_example' # String | Name of the resource
1470114705
namespace = 'namespace_example' # String | Object name and auth scope, such as for teams and projects
14706+
opts = {
14707+
preserve_session: true # Boolean | Connect only if ongoing session is not disturbed.
14708+
}
1470214709

1470314710
begin
1470414711

14705-
api_instance.v1alpha3_vnc(name, namespace)
14712+
api_instance.v1alpha3_vnc(name, namespace, opts)
1470614713
rescue Kubevirt::ApiError => e
1470714714
puts "Error when calling DefaultApi->v1alpha3_vnc: #{e}"
1470814715
end
@@ -14712,12 +14719,12 @@ end
1471214719

1471314720
This returns an Array which contains the response data (`nil` in this case), status code and headers.
1471414721

14715-
> <Array(nil, Integer, Hash)> v1alpha3_vnc_with_http_info(name, namespace)
14722+
> <Array(nil, Integer, Hash)> v1alpha3_vnc_with_http_info(name, namespace, opts)
1471614723

1471714724
```ruby
1471814725
begin
1471914726

14720-
data, status_code, headers = api_instance.v1alpha3_vnc_with_http_info(name, namespace)
14727+
data, status_code, headers = api_instance.v1alpha3_vnc_with_http_info(name, namespace, opts)
1472114728
p status_code # => 2xx
1472214729
p headers # => { ... }
1472314730
p data # => nil
@@ -14732,6 +14739,7 @@ end
1473214739
| ---- | ---- | ----------- | ----- |
1473314740
| **name** | **String** | Name of the resource | |
1473414741
| **namespace** | **String** | Object name and auth scope, such as for teams and projects | |
14742+
| **preserve_session** | **Boolean** | Connect only if ongoing session is not disturbed. | [optional] |
1473514743

1473614744
### Return type
1473714745

lib/kubevirt.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The version of the OpenAPI document: 1.0.0
77
88
Generated by: https://openapi-generator.tech
9-
Generator version: 7.14.0
9+
Generator version: 7.15.0
1010
1111
=end
1212

lib/kubevirt/api/default_api.rb

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The version of the OpenAPI document: 1.0.0
77
88
Generated by: https://openapi-generator.tech
9-
Generator version: 7.14.0
9+
Generator version: 7.15.0
1010

1111
=end
1212

@@ -13098,6 +13098,7 @@ def v1_version_with_http_info(opts = {})
1309813098
# @param name [String] Name of the resource
1309913099
# @param namespace [String] Object name and auth scope, such as for teams and projects
1310013100
# @param [Hash] opts the optional parameters
13101+
# @option opts [Boolean] :preserve_session Connect only if ongoing session is not disturbed.
1310113102
# @return [nil]
1310213103
def v1_vnc(name, namespace, opts = {})
1310313104
v1_vnc_with_http_info(name, namespace, opts)
@@ -13108,6 +13109,7 @@ def v1_vnc(name, namespace, opts = {})
1310813109
# @param name [String] Name of the resource
1310913110
# @param namespace [String] Object name and auth scope, such as for teams and projects
1311013111
# @param [Hash] opts the optional parameters
13112+
# @option opts [Boolean] :preserve_session Connect only if ongoing session is not disturbed.
1311113113
# @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
1311213114
def v1_vnc_with_http_info(name, namespace, opts = {})
1311313115
if @api_client.config.debugging
@@ -13126,6 +13128,7 @@ def v1_vnc_with_http_info(name, namespace, opts = {})
1312613128

1312713129
# query parameters
1312813130
query_params = opts[:query_params] || {}
13131+
query_params[:'preserveSession'] = opts[:'preserve_session'] if !opts[:'preserve_session'].nil?
1312913132

1313013133
# header parameters
1313113134
header_params = opts[:header_params] || {}
@@ -14916,6 +14919,7 @@ def v1alpha3_version_with_http_info(opts = {})
1491614919
# @param name [String] Name of the resource
1491714920
# @param namespace [String] Object name and auth scope, such as for teams and projects
1491814921
# @param [Hash] opts the optional parameters
14922+
# @option opts [Boolean] :preserve_session Connect only if ongoing session is not disturbed.
1491914923
# @return [nil]
1492014924
def v1alpha3_vnc(name, namespace, opts = {})
1492114925
v1alpha3_vnc_with_http_info(name, namespace, opts)
@@ -14926,6 +14930,7 @@ def v1alpha3_vnc(name, namespace, opts = {})
1492614930
# @param name [String] Name of the resource
1492714931
# @param namespace [String] Object name and auth scope, such as for teams and projects
1492814932
# @param [Hash] opts the optional parameters
14933+
# @option opts [Boolean] :preserve_session Connect only if ongoing session is not disturbed.
1492914934
# @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
1493014935
def v1alpha3_vnc_with_http_info(name, namespace, opts = {})
1493114936
if @api_client.config.debugging
@@ -14944,6 +14949,7 @@ def v1alpha3_vnc_with_http_info(name, namespace, opts = {})
1494414949

1494514950
# query parameters
1494614951
query_params = opts[:query_params] || {}
14952+
query_params[:'preserveSession'] = opts[:'preserve_session'] if !opts[:'preserve_session'].nil?
1494714953

1494814954
# header parameters
1494914955
header_params = opts[:header_params] || {}

lib/kubevirt/api_client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The version of the OpenAPI document: 1.0.0
77
88
Generated by: https://openapi-generator.tech
9-
Generator version: 7.14.0
9+
Generator version: 7.15.0
1010
1111
=end
1212

lib/kubevirt/api_error.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The version of the OpenAPI document: 1.0.0
77
88
Generated by: https://openapi-generator.tech
9-
Generator version: 7.14.0
9+
Generator version: 7.15.0
1010
1111
=end
1212

lib/kubevirt/configuration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The version of the OpenAPI document: 1.0.0
77
88
Generated by: https://openapi-generator.tech
9-
Generator version: 7.14.0
9+
Generator version: 7.15.0
1010
1111
=end
1212

lib/kubevirt/models/k8s_io_api_core_v1_affinity.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The version of the OpenAPI document: 1.0.0
77
88
Generated by: https://openapi-generator.tech
9-
Generator version: 7.14.0
9+
Generator version: 7.15.0
1010
1111
=end
1212

lib/kubevirt/models/k8s_io_api_core_v1_downward_api_volume_file.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The version of the OpenAPI document: 1.0.0
77
88
Generated by: https://openapi-generator.tech
9-
Generator version: 7.14.0
9+
Generator version: 7.15.0
1010
1111
=end
1212

0 commit comments

Comments
 (0)