pulpcore_client 3.5.0.dev01591268497 → 3.5.0.dev01591354813

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pulpcore_client might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5972e863259f063b7062b1c74b3d613e16bf57cebbb5d808246cdfabe4e18517
4
- data.tar.gz: 84f775ce0e60b84f3a94d7ea54bf5f14a02abd0bfb376c5fa0328b5675f37a67
3
+ metadata.gz: 58e7d3be4a180093d1326e7a1e94351a66b6127df6f3eb1b04f68e40c0183382
4
+ data.tar.gz: 33dfe65ba7309874b90b7faceb796ec7fb53b4d28a7130d6155894c60cc1b100
5
5
  SHA512:
6
- metadata.gz: a0dca9cf61f2801c6e404383c22eabe6c226817da91b453d8d54ad0b9641dd3571ad582cb1bba32feedf85dc8fe23c08cf83eb7d70ea80a51360346304aa1a94
7
- data.tar.gz: e047f6ef634792f91de460733804fc5339769d82b73c51966c9df630d74959a9af6f6c2eeb02e5117f7b3b314e69ab4fd7da67ecc6150821f71bf401fc52a8c9
6
+ metadata.gz: d46164533313685f0608d6fb717d830aa7584f6536d527897115cebe136be558414d5f736b394de3c3af80bf70e68168a0bba52e05fe61d5a39426073d7951a3
7
+ data.tar.gz: da005b979389b362f9c8c36610a305363758e84d53ad7ac8c06a8c9e06f03b637d23bae4b80d14104388f2f7a4fb4f93994bfd6921acae57f265fc27969ffcee
data/README.md CHANGED
@@ -7,7 +7,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
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.5.0.dev01591268497
10
+ - Package version: 3.5.0.dev01591354813
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
 
13
13
  ## Installation
@@ -23,16 +23,16 @@ gem build pulpcore_client.gemspec
23
23
  Then either install the gem locally:
24
24
 
25
25
  ```shell
26
- gem install ./pulpcore_client-3.5.0.dev01591268497.gem
26
+ gem install ./pulpcore_client-3.5.0.dev01591354813.gem
27
27
  ```
28
28
 
29
- (for development, run `gem install --dev ./pulpcore_client-3.5.0.dev01591268497.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./pulpcore_client-3.5.0.dev01591354813.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'pulpcore_client', '~> 3.5.0.dev01591268497'
35
+ gem 'pulpcore_client', '~> 3.5.0.dev01591354813'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
8
7
  **pulp_href** | **String** | | [optional] [readonly]
8
+ **pulp_created** | **DateTime** | Timestamp of creation. | [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::Worker.new(pulp_created: null,
18
- pulp_href: null,
17
+ instance = PulpcoreClient::Worker.new(pulp_href: null,
18
+ pulp_created: null,
19
19
  name: null,
20
20
  last_heartbeat: null)
21
21
  ```
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
8
7
  **pulp_href** | **String** | | [optional] [readonly]
8
+ **pulp_created** | **DateTime** | Timestamp of creation. | [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::WorkerRead.new(pulp_created: null,
18
- pulp_href: null,
17
+ instance = PulpcoreClient::WorkerRead.new(pulp_href: null,
18
+ pulp_created: null,
19
19
  name: null,
20
20
  last_heartbeat: null)
21
21
  ```
@@ -15,11 +15,11 @@ require 'date'
15
15
  module PulpcoreClient
16
16
  # List of online workers known to the application. An online worker is actively heartbeating and can respond to new work
17
17
  class Worker
18
+ attr_accessor :pulp_href
19
+
18
20
  # Timestamp of creation.
19
21
  attr_accessor :pulp_created
20
22
 
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_created' => :'pulp_created',
33
32
  :'pulp_href' => :'pulp_href',
33
+ :'pulp_created' => :'pulp_created',
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_created' => :'DateTime',
43
42
  :'pulp_href' => :'String',
43
+ :'pulp_created' => :'DateTime',
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_created')
71
- self.pulp_created = attributes[:'pulp_created']
72
- end
73
-
74
70
  if attributes.key?(:'pulp_href')
75
71
  self.pulp_href = attributes[:'pulp_href']
76
72
  end
77
73
 
74
+ if attributes.key?(:'pulp_created')
75
+ self.pulp_created = attributes[:'pulp_created']
76
+ end
77
+
78
78
  if attributes.key?(:'name')
79
79
  self.name = attributes[:'name']
80
80
  end
@@ -117,8 +117,8 @@ module PulpcoreClient
117
117
  def ==(o)
118
118
  return true if self.equal?(o)
119
119
  self.class == o.class &&
120
- pulp_created == o.pulp_created &&
121
120
  pulp_href == o.pulp_href &&
121
+ pulp_created == o.pulp_created &&
122
122
  name == o.name &&
123
123
  last_heartbeat == o.last_heartbeat
124
124
  end
@@ -132,7 +132,7 @@ module PulpcoreClient
132
132
  # Calculates hash code according to all attributes.
133
133
  # @return [Integer] Hash code
134
134
  def hash
135
- [pulp_created, pulp_href, name, last_heartbeat].hash
135
+ [pulp_href, pulp_created, name, last_heartbeat].hash
136
136
  end
137
137
 
138
138
  # Builds the object from hash
@@ -14,11 +14,11 @@ require 'date'
14
14
 
15
15
  module PulpcoreClient
16
16
  class WorkerRead
17
+ attr_accessor :pulp_href
18
+
17
19
  # Timestamp of creation.
18
20
  attr_accessor :pulp_created
19
21
 
20
- attr_accessor :pulp_href
21
-
22
22
  # The name of the worker.
23
23
  attr_accessor :name
24
24
 
@@ -28,8 +28,8 @@ module PulpcoreClient
28
28
  # Attribute mapping from ruby-style variable name to JSON key.
29
29
  def self.attribute_map
30
30
  {
31
- :'pulp_created' => :'pulp_created',
32
31
  :'pulp_href' => :'pulp_href',
32
+ :'pulp_created' => :'pulp_created',
33
33
  :'name' => :'name',
34
34
  :'last_heartbeat' => :'last_heartbeat'
35
35
  }
@@ -38,8 +38,8 @@ module PulpcoreClient
38
38
  # Attribute type mapping.
39
39
  def self.openapi_types
40
40
  {
41
- :'pulp_created' => :'DateTime',
42
41
  :'pulp_href' => :'String',
42
+ :'pulp_created' => :'DateTime',
43
43
  :'name' => :'String',
44
44
  :'last_heartbeat' => :'DateTime'
45
45
  }
@@ -66,14 +66,14 @@ module PulpcoreClient
66
66
  h[k.to_sym] = v
67
67
  }
68
68
 
69
- if attributes.key?(:'pulp_created')
70
- self.pulp_created = attributes[:'pulp_created']
71
- end
72
-
73
69
  if attributes.key?(:'pulp_href')
74
70
  self.pulp_href = attributes[:'pulp_href']
75
71
  end
76
72
 
73
+ if attributes.key?(:'pulp_created')
74
+ self.pulp_created = attributes[:'pulp_created']
75
+ end
76
+
77
77
  if attributes.key?(:'name')
78
78
  self.name = attributes[:'name']
79
79
  end
@@ -116,8 +116,8 @@ module PulpcoreClient
116
116
  def ==(o)
117
117
  return true if self.equal?(o)
118
118
  self.class == o.class &&
119
- pulp_created == o.pulp_created &&
120
119
  pulp_href == o.pulp_href &&
120
+ pulp_created == o.pulp_created &&
121
121
  name == o.name &&
122
122
  last_heartbeat == o.last_heartbeat
123
123
  end
@@ -131,7 +131,7 @@ module PulpcoreClient
131
131
  # Calculates hash code according to all attributes.
132
132
  # @return [Integer] Hash code
133
133
  def hash
134
- [pulp_created, pulp_href, name, last_heartbeat].hash
134
+ [pulp_href, pulp_created, name, last_heartbeat].hash
135
135
  end
136
136
 
137
137
  # 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.5.0.dev01591268497'
14
+ VERSION = '3.5.0.dev01591354813'
15
15
  end
@@ -32,13 +32,13 @@ describe 'WorkerRead' do
32
32
  expect(@instance).to be_instance_of(PulpcoreClient::WorkerRead)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_created"' do
35
+ describe 'test attribute "pulp_href"' 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_href"' do
41
+ describe 'test attribute "pulp_created"' 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
@@ -32,13 +32,13 @@ describe 'Worker' do
32
32
  expect(@instance).to be_instance_of(PulpcoreClient::Worker)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_created"' do
35
+ describe 'test attribute "pulp_href"' 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_href"' do
41
+ describe 'test attribute "pulp_created"' 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.5.0.dev01591268497
4
+ version: 3.5.0.dev01591354813
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-06-04 00:00:00.000000000 Z
11
+ date: 2020-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday