pulpcore_client 3.21.4 → 3.21.5
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/FilesystemExport.md +3 -1
- data/lib/pulpcore_client/models/filesystem_export.rb +14 -4
- data/lib/pulpcore_client/version.rb +1 -1
- data/spec/models/filesystem_export_spec.rb +6 -0
- 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: d816d1a77ad99fb0f7e56df20ff8459a7130660e7717c9312ee5b95f0cdbcff2
|
4
|
+
data.tar.gz: cbb73a513cbd1cc78292df0852e88501d2dee75e5428475000fba24aa27f71a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78d4e615218c78a5e13e02ff4c85765dd854ed0644f599139faab7edae505b4bb50ec83b56d5084eb8c689d3f3767ce4e8b7dd6596767169e0a96545ec8ff859
|
7
|
+
data.tar.gz: 201d445c676661018840118143f51f3dc0e8fc06bbf8b0b6c98c2efc8f975f76e63aeaf17a6ca7eee3b9c73333871f9267016d300c354a9e4aba43724e0634f1
|
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.21.
|
10
|
+
- Package version: 3.21.5
|
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 pulpcore_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulpcore_client-3.21.
|
27
|
+
gem install ./pulpcore_client-3.21.5.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulpcore_client-3.21.
|
30
|
+
(for development, run `gem install --dev ./pulpcore_client-3.21.5.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 'pulpcore_client', '~> 3.21.
|
36
|
+
gem 'pulpcore_client', '~> 3.21.5'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
data/docs/FilesystemExport.md
CHANGED
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
7
7
|
**task** | **String** | A URI of the task that ran the Export. | [optional]
|
8
8
|
**publication** | **String** | A URI of the publication to be exported. | [optional]
|
9
9
|
**repository_version** | **String** | A URI of the repository version export. | [optional]
|
10
|
+
**start_repository_version** | **String** | The URI of the last-exported-repo-version. | [optional]
|
10
11
|
|
11
12
|
## Code Sample
|
12
13
|
|
@@ -15,7 +16,8 @@ require 'PulpcoreClient'
|
|
15
16
|
|
16
17
|
instance = PulpcoreClient::FilesystemExport.new(task: null,
|
17
18
|
publication: null,
|
18
|
-
repository_version: null
|
19
|
+
repository_version: null,
|
20
|
+
start_repository_version: null)
|
19
21
|
```
|
20
22
|
|
21
23
|
|
@@ -24,12 +24,16 @@ module PulpcoreClient
|
|
24
24
|
# A URI of the repository version export.
|
25
25
|
attr_accessor :repository_version
|
26
26
|
|
27
|
+
# The URI of the last-exported-repo-version.
|
28
|
+
attr_accessor :start_repository_version
|
29
|
+
|
27
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
28
31
|
def self.attribute_map
|
29
32
|
{
|
30
33
|
:'task' => :'task',
|
31
34
|
:'publication' => :'publication',
|
32
|
-
:'repository_version' => :'repository_version'
|
35
|
+
:'repository_version' => :'repository_version',
|
36
|
+
:'start_repository_version' => :'start_repository_version'
|
33
37
|
}
|
34
38
|
end
|
35
39
|
|
@@ -38,7 +42,8 @@ module PulpcoreClient
|
|
38
42
|
{
|
39
43
|
:'task' => :'String',
|
40
44
|
:'publication' => :'String',
|
41
|
-
:'repository_version' => :'String'
|
45
|
+
:'repository_version' => :'String',
|
46
|
+
:'start_repository_version' => :'String'
|
42
47
|
}
|
43
48
|
end
|
44
49
|
|
@@ -75,6 +80,10 @@ module PulpcoreClient
|
|
75
80
|
if attributes.key?(:'repository_version')
|
76
81
|
self.repository_version = attributes[:'repository_version']
|
77
82
|
end
|
83
|
+
|
84
|
+
if attributes.key?(:'start_repository_version')
|
85
|
+
self.start_repository_version = attributes[:'start_repository_version']
|
86
|
+
end
|
78
87
|
end
|
79
88
|
|
80
89
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -97,7 +106,8 @@ module PulpcoreClient
|
|
97
106
|
self.class == o.class &&
|
98
107
|
task == o.task &&
|
99
108
|
publication == o.publication &&
|
100
|
-
repository_version == o.repository_version
|
109
|
+
repository_version == o.repository_version &&
|
110
|
+
start_repository_version == o.start_repository_version
|
101
111
|
end
|
102
112
|
|
103
113
|
# @see the `==` method
|
@@ -109,7 +119,7 @@ module PulpcoreClient
|
|
109
119
|
# Calculates hash code according to all attributes.
|
110
120
|
# @return [Integer] Hash code
|
111
121
|
def hash
|
112
|
-
[task, publication, repository_version].hash
|
122
|
+
[task, publication, repository_version, start_repository_version].hash
|
113
123
|
end
|
114
124
|
|
115
125
|
# Builds the object from hash
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulpcore_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.21.
|
4
|
+
version: 3.21.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|