pulpcore_client 3.21.4 → 3.21.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e9e0ba6ee34ecd896f29ef8e352319889a42b0c2930fa04540c7bfc7e51bb8be
4
- data.tar.gz: 00bfad29421b1edf1a47fe01492b9dca338b3dcc388efc5f575f1e24bcafa15a
3
+ metadata.gz: d816d1a77ad99fb0f7e56df20ff8459a7130660e7717c9312ee5b95f0cdbcff2
4
+ data.tar.gz: cbb73a513cbd1cc78292df0852e88501d2dee75e5428475000fba24aa27f71a9
5
5
  SHA512:
6
- metadata.gz: 2eaefecea3efb827ad025806c78b60aa861147c156f7ae2f036c2f57da0401ac0ebd0722ae8846ba9882c8e48012fc2fb92cddbe8eb030d4591c88c9a7528a46
7
- data.tar.gz: fa4a77ad769af0faba4c6a20d97b57a0890348c02480c2f1de8e491a176db25757a3f088fe99a59201999d82070efefc2fdcb2ceb0e7714bcf53f11be0b38d55
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.4
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.4.gem
27
+ gem install ./pulpcore_client-3.21.5.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulpcore_client-3.21.4.gem` to install the development dependencies)
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.4'
36
+ gem 'pulpcore_client', '~> 3.21.5'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -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
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpcoreClient
14
- VERSION = '3.21.4'
14
+ VERSION = '3.21.5'
15
15
  end
@@ -50,4 +50,10 @@ describe 'FilesystemExport' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "start_repository_version"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
53
59
  end
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
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-01-20 00:00:00.000000000 Z
11
+ date: 2023-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday