pulpcore_client 3.0.0rc2.dev.1558710292 → 3.0.0rc2.dev.1558796621

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: 4028b6201a5cf788e1da0e08b158b8786fe32ca2453667019973150a62e5fe0c
4
- data.tar.gz: ddfa7c5de943012757e3258491080744328b915af9839368b2aae423feef59ac
3
+ metadata.gz: c3debaebef13bc1ae8b132977dcd7c2ffd5a31e3a3faa409da73ec1732445d6c
4
+ data.tar.gz: b41a92ae353eb036edc68f358720edeed6cdca7cb2f709e244048ca44ff64611
5
5
  SHA512:
6
- metadata.gz: 2d667f19b7f6bdaec78954308a75f497f2fc227478da64b0b84833ee8e3ef43a75cc71d76f1aec7fa6f8128940b4e857ee9c2f2dd4bcf52962c63ab8d917da53
7
- data.tar.gz: 22dbeb8190ea5d4a56f07b934c81f5f53b4223254a2cbef63fe8d19ccb1f3df1887f84f57b16a90d7f4511ec4f98bc831a79a0fabae624b1c2ee667329a3daff
6
+ metadata.gz: 63699f3e8cf10ea31da06baa8fd021482d5d4d7dd6bdb3c8ab86ddb53e2fef6dd12d5b646b1fb260b1b2a962b1567b1df60fd6432ca51e1211e43f9975595010
7
+ data.tar.gz: 7531e1e6aef6495bf11572243db9521a72085e600f6ef790b8487e2b15dc2b2bd1858f8400cfa1bde5070781a7bd6d873cdeb3af20d7d5e342ec6b48e008b0da
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pulpcore_client (3.0.0rc2.dev.1558710292)
4
+ pulpcore_client (3.0.0rc2.dev.1558796621)
5
5
  json (~> 2.1, >= 2.1.0)
6
6
  typhoeus (~> 1.0, >= 1.0.1)
7
7
 
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.0.0rc2.dev.1558710292
10
+ - Package version: 3.0.0rc2.dev.1558796621
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.0.0rc2.dev.1558710292.gem
26
+ gem install ./pulpcore_client-3.0.0rc2.dev.1558796621.gem
27
27
  ```
28
28
 
29
- (for development, run `gem install --dev ./pulpcore_client-3.0.0rc2.dev.1558710292.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./pulpcore_client-3.0.0rc2.dev.1558796621.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.0.0rc2.dev.1558710292'
35
+ gem 'pulpcore_client', '~> 3.0.0rc2.dev.1558796621'
36
36
 
37
37
  ### Install from Git
38
38
 
data/docs/Worker.md CHANGED
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **_created** | **DateTime** | Timestamp of creation. | [optional]
8
7
  **_href** | **String** | | [optional]
8
+ **_created** | **DateTime** | Timestamp of creation. | [optional]
9
9
  **name** | **String** | The name of the worker. | [optional]
10
10
  **last_heartbeat** | **DateTime** | Timestamp of the last time the worker talked to the service. | [optional]
11
11
  **online** | **Boolean** | True if the worker is considered online, otherwise False | [optional]
@@ -16,8 +16,8 @@ Name | Type | Description | Notes
16
16
  ```ruby
17
17
  require 'PulpcoreClient'
18
18
 
19
- instance = PulpcoreClient::Worker.new(_created: null,
20
- _href: null,
19
+ instance = PulpcoreClient::Worker.new(_href: null,
20
+ _created: null,
21
21
  name: null,
22
22
  last_heartbeat: null,
23
23
  online: null,
@@ -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 :_href
19
+
18
20
  # Timestamp of creation.
19
21
  attr_accessor :_created
20
22
 
21
- attr_accessor :_href
22
-
23
23
  # The name of the worker.
24
24
  attr_accessor :name
25
25
 
@@ -35,8 +35,8 @@ module PulpcoreClient
35
35
  # Attribute mapping from ruby-style variable name to JSON key.
36
36
  def self.attribute_map
37
37
  {
38
- :'_created' => :'_created',
39
38
  :'_href' => :'_href',
39
+ :'_created' => :'_created',
40
40
  :'name' => :'name',
41
41
  :'last_heartbeat' => :'last_heartbeat',
42
42
  :'online' => :'online',
@@ -47,8 +47,8 @@ module PulpcoreClient
47
47
  # Attribute type mapping.
48
48
  def self.openapi_types
49
49
  {
50
- :'_created' => :'DateTime',
51
50
  :'_href' => :'String',
51
+ :'_created' => :'DateTime',
52
52
  :'name' => :'String',
53
53
  :'last_heartbeat' => :'DateTime',
54
54
  :'online' => :'Boolean',
@@ -71,14 +71,14 @@ module PulpcoreClient
71
71
  h[k.to_sym] = v
72
72
  }
73
73
 
74
- if attributes.key?(:'_created')
75
- self._created = attributes[:'_created']
76
- end
77
-
78
74
  if attributes.key?(:'_href')
79
75
  self._href = attributes[:'_href']
80
76
  end
81
77
 
78
+ if attributes.key?(:'_created')
79
+ self._created = attributes[:'_created']
80
+ end
81
+
82
82
  if attributes.key?(:'name')
83
83
  self.name = attributes[:'name']
84
84
  end
@@ -129,8 +129,8 @@ module PulpcoreClient
129
129
  def ==(o)
130
130
  return true if self.equal?(o)
131
131
  self.class == o.class &&
132
- _created == o._created &&
133
132
  _href == o._href &&
133
+ _created == o._created &&
134
134
  name == o.name &&
135
135
  last_heartbeat == o.last_heartbeat &&
136
136
  online == o.online &&
@@ -146,7 +146,7 @@ module PulpcoreClient
146
146
  # Calculates hash code according to all attributes.
147
147
  # @return [Integer] Hash code
148
148
  def hash
149
- [_created, _href, name, last_heartbeat, online, missing].hash
149
+ [_href, _created, name, last_heartbeat, online, missing].hash
150
150
  end
151
151
 
152
152
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module PulpcoreClient
14
- VERSION = '3.0.0rc2.dev.1558710292'
14
+ VERSION = '3.0.0rc2.dev.1558796621'
15
15
  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 "_created"' do
35
+ describe 'test attribute "_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 "_href"' do
41
+ describe 'test attribute "_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.0.0rc2.dev.1558710292
4
+ version: 3.0.0rc2.dev.1558796621
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-24 00:00:00.000000000 Z
11
+ date: 2019-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus