pulp_deb_client 3.1.2 → 3.2.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/README.md +4 -4
- data/docs/ContentReleaseArchitecturesApi.md +3 -3
- data/docs/ContentReleaseComponentsApi.md +3 -3
- data/lib/pulp_deb_client/api/content_release_architectures_api.rb +5 -5
- data/lib/pulp_deb_client/api/content_release_components_api.rb +5 -5
- data/lib/pulp_deb_client/version.rb +1 -1
- data/spec/api/content_release_architectures_api_spec.rb +2 -2
- data/spec/api/content_release_components_api_spec.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 952856bfd071110c7e788b71327340bc81561f5756594850ee097a616b15dfb4
|
4
|
+
data.tar.gz: 007052f2ecb33f785c7a38ad55b6478fe01f5b9386dd09995737d977906cfeda
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '088a7417bf4b90b314be559fb6b631687e5f5096225c40a37def1cf0c4ae2e31ffe80fba2593369d24060543ee403dfa3b16c79ff17d3ffc2800c159edbd060a'
|
7
|
+
data.tar.gz: dcee8866f2e2da45618fdd8fd16731b1ad13f04d3d154b3a575f7268e5c410da520af3506bfbd71efa7fba2f75b89592db8d5116ed3912a48b099b2dbc871f15
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: v3
|
10
|
-
- Package version: 3.
|
10
|
+
- Package version: 3.2.0
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build pulp_deb_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_deb_client-3.
|
27
|
+
gem install ./pulp_deb_client-3.2.0.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_deb_client-3.
|
30
|
+
(for development, run `gem install --dev ./pulp_deb_client-3.2.0.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'pulp_deb_client', '~> 3.
|
36
|
+
gem 'pulp_deb_client', '~> 3.2.0'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -12,11 +12,11 @@ Method | HTTP request | Description
|
|
12
12
|
|
13
13
|
## create
|
14
14
|
|
15
|
-
>
|
15
|
+
> AsyncOperationResponse create(deb_release_architecture)
|
16
16
|
|
17
17
|
Create a release architecture
|
18
18
|
|
19
|
-
|
19
|
+
Trigger an asynchronous task to create content,optionally create new repository version.
|
20
20
|
|
21
21
|
### Example
|
22
22
|
|
@@ -51,7 +51,7 @@ Name | Type | Description | Notes
|
|
51
51
|
|
52
52
|
### Return type
|
53
53
|
|
54
|
-
[**
|
54
|
+
[**AsyncOperationResponse**](AsyncOperationResponse.md)
|
55
55
|
|
56
56
|
### Authorization
|
57
57
|
|
@@ -12,11 +12,11 @@ Method | HTTP request | Description
|
|
12
12
|
|
13
13
|
## create
|
14
14
|
|
15
|
-
>
|
15
|
+
> AsyncOperationResponse create(deb_release_component)
|
16
16
|
|
17
17
|
Create a release component
|
18
18
|
|
19
|
-
|
19
|
+
Trigger an asynchronous task to create content,optionally create new repository version.
|
20
20
|
|
21
21
|
### Example
|
22
22
|
|
@@ -51,7 +51,7 @@ Name | Type | Description | Notes
|
|
51
51
|
|
52
52
|
### Return type
|
53
53
|
|
54
|
-
[**
|
54
|
+
[**AsyncOperationResponse**](AsyncOperationResponse.md)
|
55
55
|
|
56
56
|
### Authorization
|
57
57
|
|
@@ -20,20 +20,20 @@ module PulpDebClient
|
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
22
|
# Create a release architecture
|
23
|
-
#
|
23
|
+
# Trigger an asynchronous task to create content,optionally create new repository version.
|
24
24
|
# @param deb_release_architecture [DebReleaseArchitecture]
|
25
25
|
# @param [Hash] opts the optional parameters
|
26
|
-
# @return [
|
26
|
+
# @return [AsyncOperationResponse]
|
27
27
|
def create(deb_release_architecture, opts = {})
|
28
28
|
data, _status_code, _headers = create_with_http_info(deb_release_architecture, opts)
|
29
29
|
data
|
30
30
|
end
|
31
31
|
|
32
32
|
# Create a release architecture
|
33
|
-
#
|
33
|
+
# Trigger an asynchronous task to create content,optionally create new repository version.
|
34
34
|
# @param deb_release_architecture [DebReleaseArchitecture]
|
35
35
|
# @param [Hash] opts the optional parameters
|
36
|
-
# @return [Array<(
|
36
|
+
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
37
37
|
def create_with_http_info(deb_release_architecture, opts = {})
|
38
38
|
if @api_client.config.debugging
|
39
39
|
@api_client.config.logger.debug 'Calling API: ContentReleaseArchitecturesApi.create ...'
|
@@ -62,7 +62,7 @@ module PulpDebClient
|
|
62
62
|
post_body = opts[:body] || @api_client.object_to_http_body(deb_release_architecture)
|
63
63
|
|
64
64
|
# return_type
|
65
|
-
return_type = opts[:return_type] || '
|
65
|
+
return_type = opts[:return_type] || 'AsyncOperationResponse'
|
66
66
|
|
67
67
|
# auth_names
|
68
68
|
auth_names = opts[:auth_names] || ['basicAuth']
|
@@ -20,20 +20,20 @@ module PulpDebClient
|
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
22
|
# Create a release component
|
23
|
-
#
|
23
|
+
# Trigger an asynchronous task to create content,optionally create new repository version.
|
24
24
|
# @param deb_release_component [DebReleaseComponent]
|
25
25
|
# @param [Hash] opts the optional parameters
|
26
|
-
# @return [
|
26
|
+
# @return [AsyncOperationResponse]
|
27
27
|
def create(deb_release_component, opts = {})
|
28
28
|
data, _status_code, _headers = create_with_http_info(deb_release_component, opts)
|
29
29
|
data
|
30
30
|
end
|
31
31
|
|
32
32
|
# Create a release component
|
33
|
-
#
|
33
|
+
# Trigger an asynchronous task to create content,optionally create new repository version.
|
34
34
|
# @param deb_release_component [DebReleaseComponent]
|
35
35
|
# @param [Hash] opts the optional parameters
|
36
|
-
# @return [Array<(
|
36
|
+
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
37
37
|
def create_with_http_info(deb_release_component, opts = {})
|
38
38
|
if @api_client.config.debugging
|
39
39
|
@api_client.config.logger.debug 'Calling API: ContentReleaseComponentsApi.create ...'
|
@@ -62,7 +62,7 @@ module PulpDebClient
|
|
62
62
|
post_body = opts[:body] || @api_client.object_to_http_body(deb_release_component)
|
63
63
|
|
64
64
|
# return_type
|
65
|
-
return_type = opts[:return_type] || '
|
65
|
+
return_type = opts[:return_type] || 'AsyncOperationResponse'
|
66
66
|
|
67
67
|
# auth_names
|
68
68
|
auth_names = opts[:auth_names] || ['basicAuth']
|
@@ -34,10 +34,10 @@ describe 'ContentReleaseArchitecturesApi' do
|
|
34
34
|
|
35
35
|
# unit tests for create
|
36
36
|
# Create a release architecture
|
37
|
-
#
|
37
|
+
# Trigger an asynchronous task to create content,optionally create new repository version.
|
38
38
|
# @param deb_release_architecture
|
39
39
|
# @param [Hash] opts the optional parameters
|
40
|
-
# @return [
|
40
|
+
# @return [AsyncOperationResponse]
|
41
41
|
describe 'create test' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -34,10 +34,10 @@ describe 'ContentReleaseComponentsApi' do
|
|
34
34
|
|
35
35
|
# unit tests for create
|
36
36
|
# Create a release component
|
37
|
-
#
|
37
|
+
# Trigger an asynchronous task to create content,optionally create new repository version.
|
38
38
|
# @param deb_release_component
|
39
39
|
# @param [Hash] opts the optional parameters
|
40
|
-
# @return [
|
40
|
+
# @return [AsyncOperationResponse]
|
41
41
|
describe 'create test' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_deb_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|