pulpcore_client 3.39.7 → 3.39.9

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: 70cc1c4ef559182c8086a887611aaecd20f1136fd99dcca304258eb10e00dbaa
4
- data.tar.gz: 76adf895ca738faab5747d39e83823e4efee9ebe7e0040c9cc67c31a588c99a4
3
+ metadata.gz: d33e2b2b1e88031e634eff3abe61bc3301f1706f7dc9383b4bb9c3cc07433ac9
4
+ data.tar.gz: 56bbd23aa30cdc8c5f2c26583329f741602b2eb6ca16cc9e4ac9be788536437a
5
5
  SHA512:
6
- metadata.gz: 969b4ac834ab4a81c2928fa0a757f2ee88183e9b2ecd71f223f3f0558153178a925a7d6e7a799e484a7dea5e54b58e83d735102d7a4074ad8e98875730ebd91f
7
- data.tar.gz: 0a9eef6f2be8c908e00fb4c36064ee8c466eef8034bc164e7d6ca26b2925f48b11daa48cc33019544f091a5b7fc1ca051023a2746ca6ba8c38033a0e4225a9d5
6
+ metadata.gz: 54a8596b76f5b26738cea04a5db96e2210d4abb67ec679e17e346b09d91aeae88b7232eb2ba6689093f25455719bcab160ed2a024352162938495d6d728ef977
7
+ data.tar.gz: e12e67bab69314f0238510440ccb0403b435910065174f7e11f3a01162051c15fd9eb765dcef9ee8b6ef3ad1fba8db3abe3e99d3c3bade3b7ff0541818a61320
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.39.7
10
+ - Package version: 3.39.9
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.39.7.gem
27
+ gem install ./pulpcore_client-3.39.9.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulpcore_client-3.39.7.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulpcore_client-3.39.9.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.39.7'
36
+ gem 'pulpcore_client', '~> 3.39.9'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -6,12 +6,12 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
8
8
  **base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") |
9
+ **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
9
10
  **pulp_href** | **String** | | [optional] [readonly]
11
+ **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
10
12
  **content_guard** | **String** | An optional content-guard. | [optional]
11
- **pulp_labels** | **Hash<String, String>** | | [optional]
12
- **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
13
13
  **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
14
- **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
14
+ **pulp_labels** | **Hash<String, String>** | | [optional]
15
15
 
16
16
  ## Code Sample
17
17
 
@@ -20,12 +20,12 @@ require 'PulpcoreClient'
20
20
 
21
21
  instance = PulpcoreClient::ArtifactDistributionResponse.new(name: null,
22
22
  base_path: null,
23
+ hidden: null,
23
24
  pulp_href: null,
25
+ pulp_created: null,
24
26
  content_guard: null,
25
- pulp_labels: null,
26
- hidden: null,
27
27
  base_url: null,
28
- pulp_created: null)
28
+ pulp_labels: null)
29
29
  ```
30
30
 
31
31
 
@@ -21,33 +21,33 @@ module PulpcoreClient
21
21
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
22
22
  attr_accessor :base_path
23
23
 
24
+ # Whether this distribution should be shown in the content app.
25
+ attr_accessor :hidden
26
+
24
27
  attr_accessor :pulp_href
25
28
 
29
+ # Timestamp of creation.
30
+ attr_accessor :pulp_created
31
+
26
32
  # An optional content-guard.
27
33
  attr_accessor :content_guard
28
34
 
29
- attr_accessor :pulp_labels
30
-
31
- # Whether this distribution should be shown in the content app.
32
- attr_accessor :hidden
33
-
34
35
  # The URL for accessing the publication as defined by this distribution.
35
36
  attr_accessor :base_url
36
37
 
37
- # Timestamp of creation.
38
- attr_accessor :pulp_created
38
+ attr_accessor :pulp_labels
39
39
 
40
40
  # Attribute mapping from ruby-style variable name to JSON key.
41
41
  def self.attribute_map
42
42
  {
43
43
  :'name' => :'name',
44
44
  :'base_path' => :'base_path',
45
+ :'hidden' => :'hidden',
45
46
  :'pulp_href' => :'pulp_href',
47
+ :'pulp_created' => :'pulp_created',
46
48
  :'content_guard' => :'content_guard',
47
- :'pulp_labels' => :'pulp_labels',
48
- :'hidden' => :'hidden',
49
49
  :'base_url' => :'base_url',
50
- :'pulp_created' => :'pulp_created'
50
+ :'pulp_labels' => :'pulp_labels'
51
51
  }
52
52
  end
53
53
 
@@ -56,12 +56,12 @@ module PulpcoreClient
56
56
  {
57
57
  :'name' => :'String',
58
58
  :'base_path' => :'String',
59
+ :'hidden' => :'Boolean',
59
60
  :'pulp_href' => :'String',
61
+ :'pulp_created' => :'DateTime',
60
62
  :'content_guard' => :'String',
61
- :'pulp_labels' => :'Hash<String, String>',
62
- :'hidden' => :'Boolean',
63
63
  :'base_url' => :'String',
64
- :'pulp_created' => :'DateTime'
64
+ :'pulp_labels' => :'Hash<String, String>'
65
65
  }
66
66
  end
67
67
 
@@ -95,32 +95,32 @@ module PulpcoreClient
95
95
  self.base_path = attributes[:'base_path']
96
96
  end
97
97
 
98
- if attributes.key?(:'pulp_href')
99
- self.pulp_href = attributes[:'pulp_href']
98
+ if attributes.key?(:'hidden')
99
+ self.hidden = attributes[:'hidden']
100
+ else
101
+ self.hidden = false
100
102
  end
101
103
 
102
- if attributes.key?(:'content_guard')
103
- self.content_guard = attributes[:'content_guard']
104
+ if attributes.key?(:'pulp_href')
105
+ self.pulp_href = attributes[:'pulp_href']
104
106
  end
105
107
 
106
- if attributes.key?(:'pulp_labels')
107
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
108
- self.pulp_labels = value
109
- end
108
+ if attributes.key?(:'pulp_created')
109
+ self.pulp_created = attributes[:'pulp_created']
110
110
  end
111
111
 
112
- if attributes.key?(:'hidden')
113
- self.hidden = attributes[:'hidden']
114
- else
115
- self.hidden = false
112
+ if attributes.key?(:'content_guard')
113
+ self.content_guard = attributes[:'content_guard']
116
114
  end
117
115
 
118
116
  if attributes.key?(:'base_url')
119
117
  self.base_url = attributes[:'base_url']
120
118
  end
121
119
 
122
- if attributes.key?(:'pulp_created')
123
- self.pulp_created = attributes[:'pulp_created']
120
+ if attributes.key?(:'pulp_labels')
121
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
122
+ self.pulp_labels = value
123
+ end
124
124
  end
125
125
  end
126
126
 
@@ -154,12 +154,12 @@ module PulpcoreClient
154
154
  self.class == o.class &&
155
155
  name == o.name &&
156
156
  base_path == o.base_path &&
157
+ hidden == o.hidden &&
157
158
  pulp_href == o.pulp_href &&
159
+ pulp_created == o.pulp_created &&
158
160
  content_guard == o.content_guard &&
159
- pulp_labels == o.pulp_labels &&
160
- hidden == o.hidden &&
161
161
  base_url == o.base_url &&
162
- pulp_created == o.pulp_created
162
+ pulp_labels == o.pulp_labels
163
163
  end
164
164
 
165
165
  # @see the `==` method
@@ -171,7 +171,7 @@ module PulpcoreClient
171
171
  # Calculates hash code according to all attributes.
172
172
  # @return [Integer] Hash code
173
173
  def hash
174
- [name, base_path, pulp_href, content_guard, pulp_labels, hidden, base_url, pulp_created].hash
174
+ [name, base_path, hidden, pulp_href, pulp_created, content_guard, base_url, pulp_labels].hash
175
175
  end
176
176
 
177
177
  # 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.39.7'
14
+ VERSION = '3.39.9'
15
15
  end
@@ -44,25 +44,25 @@ describe 'ArtifactDistributionResponse' do
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_href"' do
47
+ describe 'test attribute "hidden"' 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
51
51
  end
52
52
 
53
- describe 'test attribute "content_guard"' do
53
+ describe 'test attribute "pulp_href"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "pulp_labels"' do
59
+ describe 'test attribute "pulp_created"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "hidden"' do
65
+ describe 'test attribute "content_guard"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
@@ -74,7 +74,7 @@ describe 'ArtifactDistributionResponse' do
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "pulp_created"' do
77
+ describe 'test attribute "pulp_labels"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  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.39.7
4
+ version: 3.39.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-24 00:00:00.000000000 Z
11
+ date: 2024-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday