pulpcore_client 3.6.4 → 3.6.5.post2

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: 0a5c47e9ffc0e6b01215948708379e828822383338ec76c995a1a1d9d71c1e8d
4
- data.tar.gz: 46a3883b2fe81e9bedc877543d7b129eec5de8ce08c82347eb820768617b18cd
3
+ metadata.gz: e87345ef63f10fbd1a3be557e324bebd0020cd5a35561ee3634e904b39fdc68b
4
+ data.tar.gz: 9c7adaef70c4860b7f0832cdbc44ca990ab536cf069b59a0204a1fac5516437a
5
5
  SHA512:
6
- metadata.gz: 50ef987be435d90adc470a131e6739e5602e9adc2059a2331ec7a597f679ca0fca9b9340d195427342e60ae7ff22c78f4917be46f44892eb1f061e3edecfa88f
7
- data.tar.gz: fe0f4725bc0785d09fbec6fd07a91d7ed1477ace172491030b56a60ddfb59c83a8c2302fe08ce375f49b59d00ca5cbcfd93e203c8b57a71efc458599c2cb5785
6
+ metadata.gz: '0961ebae5eabd59cac06cd7310d5f988399402942afe8c85dad624b2cc18e2c65eb3f78445c92fe05627ba8f18c164e7d5624b03451df5cdcb389b08e1736639'
7
+ data.tar.gz: 827a4133c3218d744e938fcc590cdb15ee2eb2647fc5b5db85951ff036841bb0f98f2f493b83c5197f593151c4d3218a2f598472cacdcd14c863842e4972a24a
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.6.4
10
+ - Package version: 3.6.5.post2
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.6.4.gem
27
+ gem install ./pulpcore_client-3.6.5.post2.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulpcore_client-3.6.4.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulpcore_client-3.6.5.post2.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.6.4'
36
+ gem 'pulpcore_client', '~> 3.6.5.post2'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_href** | **String** | | [optional] [readonly]
8
7
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
8
+ **pulp_href** | **String** | | [optional] [readonly]
9
9
  **name** | **String** | The name of the worker. | [optional] [readonly]
10
10
  **last_heartbeat** | **DateTime** | Timestamp of the last time the worker talked to the service. | [optional] [readonly]
11
11
 
@@ -14,8 +14,8 @@ Name | Type | Description | Notes
14
14
  ```ruby
15
15
  require 'PulpcoreClient'
16
16
 
17
- instance = PulpcoreClient::WorkerResponse.new(pulp_href: null,
18
- pulp_created: null,
17
+ instance = PulpcoreClient::WorkerResponse.new(pulp_created: null,
18
+ pulp_href: null,
19
19
  name: null,
20
20
  last_heartbeat: null)
21
21
  ```
@@ -15,11 +15,11 @@ require 'date'
15
15
  module PulpcoreClient
16
16
  # Base serializer for use with :class:`pulpcore.app.models.Model` This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
17
17
  class WorkerResponse
18
- attr_accessor :pulp_href
19
-
20
18
  # Timestamp of creation.
21
19
  attr_accessor :pulp_created
22
20
 
21
+ attr_accessor :pulp_href
22
+
23
23
  # The name of the worker.
24
24
  attr_accessor :name
25
25
 
@@ -29,8 +29,8 @@ module PulpcoreClient
29
29
  # Attribute mapping from ruby-style variable name to JSON key.
30
30
  def self.attribute_map
31
31
  {
32
- :'pulp_href' => :'pulp_href',
33
32
  :'pulp_created' => :'pulp_created',
33
+ :'pulp_href' => :'pulp_href',
34
34
  :'name' => :'name',
35
35
  :'last_heartbeat' => :'last_heartbeat'
36
36
  }
@@ -39,8 +39,8 @@ module PulpcoreClient
39
39
  # Attribute type mapping.
40
40
  def self.openapi_types
41
41
  {
42
- :'pulp_href' => :'String',
43
42
  :'pulp_created' => :'DateTime',
43
+ :'pulp_href' => :'String',
44
44
  :'name' => :'String',
45
45
  :'last_heartbeat' => :'DateTime'
46
46
  }
@@ -67,14 +67,14 @@ module PulpcoreClient
67
67
  h[k.to_sym] = v
68
68
  }
69
69
 
70
- if attributes.key?(:'pulp_href')
71
- self.pulp_href = attributes[:'pulp_href']
72
- end
73
-
74
70
  if attributes.key?(:'pulp_created')
75
71
  self.pulp_created = attributes[:'pulp_created']
76
72
  end
77
73
 
74
+ if attributes.key?(:'pulp_href')
75
+ self.pulp_href = attributes[:'pulp_href']
76
+ end
77
+
78
78
  if attributes.key?(:'name')
79
79
  self.name = attributes[:'name']
80
80
  end
@@ -102,8 +102,8 @@ module PulpcoreClient
102
102
  def ==(o)
103
103
  return true if self.equal?(o)
104
104
  self.class == o.class &&
105
- pulp_href == o.pulp_href &&
106
105
  pulp_created == o.pulp_created &&
106
+ pulp_href == o.pulp_href &&
107
107
  name == o.name &&
108
108
  last_heartbeat == o.last_heartbeat
109
109
  end
@@ -117,7 +117,7 @@ module PulpcoreClient
117
117
  # Calculates hash code according to all attributes.
118
118
  # @return [Integer] Hash code
119
119
  def hash
120
- [pulp_href, pulp_created, name, last_heartbeat].hash
120
+ [pulp_created, pulp_href, name, last_heartbeat].hash
121
121
  end
122
122
 
123
123
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.3
11
11
  =end
12
12
 
13
13
  module PulpcoreClient
14
- VERSION = '3.6.4'
14
+ VERSION = '3.6.5.post2'
15
15
  end
@@ -32,13 +32,13 @@ describe 'WorkerResponse' do
32
32
  expect(@instance).to be_instance_of(PulpcoreClient::WorkerResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_href"' do
35
+ describe 'test attribute "pulp_created"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_created"' do
41
+ describe 'test attribute "pulp_href"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  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.6.4
4
+ version: 3.6.5.post2
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-23 00:00:00.000000000 Z
11
+ date: 2020-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -327,9 +327,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
327
327
  version: '1.9'
328
328
  required_rubygems_version: !ruby/object:Gem::Requirement
329
329
  requirements:
330
- - - ">="
330
+ - - ">"
331
331
  - !ruby/object:Gem::Version
332
- version: '0'
332
+ version: 1.3.1
333
333
  requirements: []
334
334
  rubygems_version: 3.0.6
335
335
  signing_key: