pulp_cookbook_client 0.1.0b10.dev1659499799 → 0.1.0b10.dev1659585175

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

Potentially problematic release.


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

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4980355c4804f6e51c006ab7bb90b16a1347eb15cba39e3e995564d454685e39
4
- data.tar.gz: 60c5017e2bc9184f29422e357150fc2e7ac36d3801f8a9519dadb30ad3b4bbca
3
+ metadata.gz: 5777b16c48af20a72b4eb6f8d70d9265837bfd2276e446c28ba7a99f24f2012b
4
+ data.tar.gz: 1a704862ff9232ae30cf6bf45ddb3a6b7164f8de266097d0eadc536d8cefef88
5
5
  SHA512:
6
- metadata.gz: 13e8eaf343cc632b0d852134128e794e9ae2c743ba313e023a5eab9b86c551e29d1db682b76414c6f2ca45bd4461b88d33ef47f371ad85b090e4ea2cba20ff31
7
- data.tar.gz: 6674e7f31ce1e0c29099785b907859690d8b7ea7478c79821437316308a0efb14d6d470c8788efcb46920fc4d26d1c0d7bde2a6b90cd5a030c48d841128df8bc
6
+ metadata.gz: 03d5bf25292b39bffd96301fb9f9f895c9e94a87249d38432dec650f7c4bfed12d8a5fbb1627d5fcc35fd4ce8d7d0743be35caea12255960ced8d3a522e6992c
7
+ data.tar.gz: f709f7774c7540546791bcbf741f6cee439c065c11fd56f07fc4751487666973cfa6d4a48d4c9e6898397b23941949d76e56172a2e5545168ebd5b1ae513b0a1
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: 0.1.0b10.dev1659499799
10
+ - Package version: 0.1.0b10.dev1659585175
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 pulp_cookbook_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_cookbook_client-0.1.0b10.dev1659499799.gem
27
+ gem install ./pulp_cookbook_client-0.1.0b10.dev1659585175.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_cookbook_client-0.1.0b10.dev1659499799.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_cookbook_client-0.1.0b10.dev1659585175.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 'pulp_cookbook_client', '~> 0.1.0b10.dev1659499799'
36
+ gem 'pulp_cookbook_client', '~> 0.1.0b10.dev1659585175'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -4,9 +4,9 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **artifact** | **String** | Artifact file representing the physical content | [optional]
8
7
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
8
  **pulp_href** | **String** | | [optional] [readonly]
9
+ **artifact** | **String** | Artifact file representing the physical content | [optional]
10
10
  **name** | **String** | name of the cookbook |
11
11
  **version** | **String** | version of the cookbook | [optional]
12
12
  **dependencies** | [**Object**](.md) | dependencies of the cookbook | [optional] [readonly]
@@ -17,9 +17,9 @@ Name | Type | Description | Notes
17
17
  ```ruby
18
18
  require 'PulpCookbookClient'
19
19
 
20
- instance = PulpCookbookClient::CookbookCookbookPackageContentResponse.new(artifact: null,
21
- pulp_created: null,
20
+ instance = PulpCookbookClient::CookbookCookbookPackageContentResponse.new(pulp_created: null,
22
21
  pulp_href: null,
22
+ artifact: null,
23
23
  name: null,
24
24
  version: null,
25
25
  dependencies: null,
@@ -15,14 +15,14 @@ require 'date'
15
15
  module PulpCookbookClient
16
16
  # Serializer for the cookbook content.
17
17
  class CookbookCookbookPackageContentResponse
18
- # Artifact file representing the physical content
19
- attr_accessor :artifact
20
-
21
18
  # Timestamp of creation.
22
19
  attr_accessor :pulp_created
23
20
 
24
21
  attr_accessor :pulp_href
25
22
 
23
+ # Artifact file representing the physical content
24
+ attr_accessor :artifact
25
+
26
26
  # name of the cookbook
27
27
  attr_accessor :name
28
28
 
@@ -38,9 +38,9 @@ module PulpCookbookClient
38
38
  # Attribute mapping from ruby-style variable name to JSON key.
39
39
  def self.attribute_map
40
40
  {
41
- :'artifact' => :'artifact',
42
41
  :'pulp_created' => :'pulp_created',
43
42
  :'pulp_href' => :'pulp_href',
43
+ :'artifact' => :'artifact',
44
44
  :'name' => :'name',
45
45
  :'version' => :'version',
46
46
  :'dependencies' => :'dependencies',
@@ -51,9 +51,9 @@ module PulpCookbookClient
51
51
  # Attribute type mapping.
52
52
  def self.openapi_types
53
53
  {
54
- :'artifact' => :'String',
55
54
  :'pulp_created' => :'DateTime',
56
55
  :'pulp_href' => :'String',
56
+ :'artifact' => :'String',
57
57
  :'name' => :'String',
58
58
  :'version' => :'String',
59
59
  :'dependencies' => :'Object',
@@ -82,10 +82,6 @@ module PulpCookbookClient
82
82
  h[k.to_sym] = v
83
83
  }
84
84
 
85
- if attributes.key?(:'artifact')
86
- self.artifact = attributes[:'artifact']
87
- end
88
-
89
85
  if attributes.key?(:'pulp_created')
90
86
  self.pulp_created = attributes[:'pulp_created']
91
87
  end
@@ -94,6 +90,10 @@ module PulpCookbookClient
94
90
  self.pulp_href = attributes[:'pulp_href']
95
91
  end
96
92
 
93
+ if attributes.key?(:'artifact')
94
+ self.artifact = attributes[:'artifact']
95
+ end
96
+
97
97
  if attributes.key?(:'name')
98
98
  self.name = attributes[:'name']
99
99
  end
@@ -134,9 +134,9 @@ module PulpCookbookClient
134
134
  def ==(o)
135
135
  return true if self.equal?(o)
136
136
  self.class == o.class &&
137
- artifact == o.artifact &&
138
137
  pulp_created == o.pulp_created &&
139
138
  pulp_href == o.pulp_href &&
139
+ artifact == o.artifact &&
140
140
  name == o.name &&
141
141
  version == o.version &&
142
142
  dependencies == o.dependencies &&
@@ -152,7 +152,7 @@ module PulpCookbookClient
152
152
  # Calculates hash code according to all attributes.
153
153
  # @return [Integer] Hash code
154
154
  def hash
155
- [artifact, pulp_created, pulp_href, name, version, dependencies, content_id].hash
155
+ [pulp_created, pulp_href, artifact, name, version, dependencies, content_id].hash
156
156
  end
157
157
 
158
158
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpCookbookClient
14
- VERSION = '0.1.0b10.dev1659499799'
14
+ VERSION = '0.1.0b10.dev1659585175'
15
15
  end
@@ -32,19 +32,19 @@ describe 'CookbookCookbookPackageContentResponse' do
32
32
  expect(@instance).to be_instance_of(PulpCookbookClient::CookbookCookbookPackageContentResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "artifact"' 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
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_href"' do
47
+ describe 'test attribute "artifact"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_cookbook_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0b10.dev1659499799
4
+ version: 0.1.0b10.dev1659585175
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-03 00:00:00.000000000 Z
11
+ date: 2022-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday