pulpcore_client 3.49.11 → 3.49.12

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: 4d183e2934e352d194fe1a41c6178ba101c610413493bc716d9c2c008c8f557a
4
- data.tar.gz: 1fd0bbf73cf2f4c2e0e00974f336d6bdbbc670f27289905bb80e1c39d1df57f2
3
+ metadata.gz: 99cba6702a381b7d109b02338320592dab6c023cd003ed4a42ac76797f62dec3
4
+ data.tar.gz: 213b0b5fff122091cd8f8613e6c6358f7b189b9cfbf2f0922c433fc18a031f6a
5
5
  SHA512:
6
- metadata.gz: 0a9055d6f5c5f7ad4d7ed56a6dfdf981a3623454700d9d2401b8abd1172a9785ecae1c841aee52ea34c70f35aa4364510538e82c187785cfdaa8cfb9dd93d090
7
- data.tar.gz: a2806e164a8fac0552920fabefa7652ba5684ffbec6efdb112cd1bd525088bac4c9d5a161afdb2350f96810cef8a67263fab6fe76cbf2aa2a61ccf8653ac3599
6
+ metadata.gz: e5f31135eda32b696032343b77515e20f2cdfbf3e3f9dc667f12369ffc7c4cba3d4d4b79dd61eea42dbc2973b64380b1feb1a31ce2ab885cda9f61eec211c232
7
+ data.tar.gz: daacbf2353c01502300ee13dd00480b36d0108ab4b829ae591620cbfeca8f90618546132453be090996af16bf547b652987a59c1df6a9aec94e3969aafd62143
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.49.11
10
+ - Package version: 3.49.12
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.49.11.gem
27
+ gem install ./pulpcore_client-3.49.12.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulpcore_client-3.49.11.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulpcore_client-3.49.12.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.49.11'
36
+ gem 'pulpcore_client', '~> 3.49.12'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -4,14 +4,14 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
+ **pulp_href** | **String** | | [optional] [readonly]
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\") |
7
9
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
10
+ **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
8
11
  **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
9
- **name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
10
12
  **content_guard** | **String** | An optional content-guard. | [optional]
11
- **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
13
+ **name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
12
14
  **pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
13
- **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\") |
14
- **pulp_href** | **String** | | [optional] [readonly]
15
15
  **pulp_labels** | **Hash<String, String>** | | [optional]
16
16
 
17
17
  ## Code Sample
@@ -19,14 +19,14 @@ Name | Type | Description | Notes
19
19
  ```ruby
20
20
  require 'PulpcoreClient'
21
21
 
22
- instance = PulpcoreClient::ArtifactDistributionResponse.new(pulp_created: null,
22
+ instance = PulpcoreClient::ArtifactDistributionResponse.new(pulp_href: null,
23
+ base_path: null,
24
+ pulp_created: null,
25
+ hidden: null,
23
26
  base_url: null,
24
- name: null,
25
27
  content_guard: null,
26
- hidden: null,
28
+ name: null,
27
29
  pulp_last_updated: null,
28
- base_path: null,
29
- pulp_href: null,
30
30
  pulp_labels: null)
31
31
  ```
32
32
 
@@ -15,42 +15,42 @@ require 'date'
15
15
  module PulpcoreClient
16
16
  # A serializer for ArtifactDistribution.
17
17
  class ArtifactDistributionResponse
18
+ attr_accessor :pulp_href
19
+
20
+ # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
21
+ attr_accessor :base_path
22
+
18
23
  # Timestamp of creation.
19
24
  attr_accessor :pulp_created
20
25
 
26
+ # Whether this distribution should be shown in the content app.
27
+ attr_accessor :hidden
28
+
21
29
  # The URL for accessing the publication as defined by this distribution.
22
30
  attr_accessor :base_url
23
31
 
24
- # A unique name. Ex, `rawhide` and `stable`.
25
- attr_accessor :name
26
-
27
32
  # An optional content-guard.
28
33
  attr_accessor :content_guard
29
34
 
30
- # Whether this distribution should be shown in the content app.
31
- attr_accessor :hidden
35
+ # A unique name. Ex, `rawhide` and `stable`.
36
+ attr_accessor :name
32
37
 
33
38
  # Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
34
39
  attr_accessor :pulp_last_updated
35
40
 
36
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
37
- attr_accessor :base_path
38
-
39
- attr_accessor :pulp_href
40
-
41
41
  attr_accessor :pulp_labels
42
42
 
43
43
  # Attribute mapping from ruby-style variable name to JSON key.
44
44
  def self.attribute_map
45
45
  {
46
+ :'pulp_href' => :'pulp_href',
47
+ :'base_path' => :'base_path',
46
48
  :'pulp_created' => :'pulp_created',
49
+ :'hidden' => :'hidden',
47
50
  :'base_url' => :'base_url',
48
- :'name' => :'name',
49
51
  :'content_guard' => :'content_guard',
50
- :'hidden' => :'hidden',
52
+ :'name' => :'name',
51
53
  :'pulp_last_updated' => :'pulp_last_updated',
52
- :'base_path' => :'base_path',
53
- :'pulp_href' => :'pulp_href',
54
54
  :'pulp_labels' => :'pulp_labels'
55
55
  }
56
56
  end
@@ -58,14 +58,14 @@ module PulpcoreClient
58
58
  # Attribute type mapping.
59
59
  def self.openapi_types
60
60
  {
61
+ :'pulp_href' => :'String',
62
+ :'base_path' => :'String',
61
63
  :'pulp_created' => :'DateTime',
64
+ :'hidden' => :'Boolean',
62
65
  :'base_url' => :'String',
63
- :'name' => :'String',
64
66
  :'content_guard' => :'String',
65
- :'hidden' => :'Boolean',
67
+ :'name' => :'String',
66
68
  :'pulp_last_updated' => :'DateTime',
67
- :'base_path' => :'String',
68
- :'pulp_href' => :'String',
69
69
  :'pulp_labels' => :'Hash<String, String>'
70
70
  }
71
71
  end
@@ -92,20 +92,16 @@ module PulpcoreClient
92
92
  h[k.to_sym] = v
93
93
  }
94
94
 
95
- if attributes.key?(:'pulp_created')
96
- self.pulp_created = attributes[:'pulp_created']
97
- end
98
-
99
- if attributes.key?(:'base_url')
100
- self.base_url = attributes[:'base_url']
95
+ if attributes.key?(:'pulp_href')
96
+ self.pulp_href = attributes[:'pulp_href']
101
97
  end
102
98
 
103
- if attributes.key?(:'name')
104
- self.name = attributes[:'name']
99
+ if attributes.key?(:'base_path')
100
+ self.base_path = attributes[:'base_path']
105
101
  end
106
102
 
107
- if attributes.key?(:'content_guard')
108
- self.content_guard = attributes[:'content_guard']
103
+ if attributes.key?(:'pulp_created')
104
+ self.pulp_created = attributes[:'pulp_created']
109
105
  end
110
106
 
111
107
  if attributes.key?(:'hidden')
@@ -114,16 +110,20 @@ module PulpcoreClient
114
110
  self.hidden = false
115
111
  end
116
112
 
117
- if attributes.key?(:'pulp_last_updated')
118
- self.pulp_last_updated = attributes[:'pulp_last_updated']
113
+ if attributes.key?(:'base_url')
114
+ self.base_url = attributes[:'base_url']
119
115
  end
120
116
 
121
- if attributes.key?(:'base_path')
122
- self.base_path = attributes[:'base_path']
117
+ if attributes.key?(:'content_guard')
118
+ self.content_guard = attributes[:'content_guard']
123
119
  end
124
120
 
125
- if attributes.key?(:'pulp_href')
126
- self.pulp_href = attributes[:'pulp_href']
121
+ if attributes.key?(:'name')
122
+ self.name = attributes[:'name']
123
+ end
124
+
125
+ if attributes.key?(:'pulp_last_updated')
126
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
127
127
  end
128
128
 
129
129
  if attributes.key?(:'pulp_labels')
@@ -137,22 +137,22 @@ module PulpcoreClient
137
137
  # @return Array for valid properties with the reasons
138
138
  def list_invalid_properties
139
139
  invalid_properties = Array.new
140
- if @name.nil?
141
- invalid_properties.push('invalid value for "name", name cannot be nil.')
142
- end
143
-
144
140
  if @base_path.nil?
145
141
  invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
146
142
  end
147
143
 
144
+ if @name.nil?
145
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
146
+ end
147
+
148
148
  invalid_properties
149
149
  end
150
150
 
151
151
  # Check to see if the all the properties in the model are valid
152
152
  # @return true if the model is valid
153
153
  def valid?
154
- return false if @name.nil?
155
154
  return false if @base_path.nil?
155
+ return false if @name.nil?
156
156
  true
157
157
  end
158
158
 
@@ -161,14 +161,14 @@ module PulpcoreClient
161
161
  def ==(o)
162
162
  return true if self.equal?(o)
163
163
  self.class == o.class &&
164
+ pulp_href == o.pulp_href &&
165
+ base_path == o.base_path &&
164
166
  pulp_created == o.pulp_created &&
167
+ hidden == o.hidden &&
165
168
  base_url == o.base_url &&
166
- name == o.name &&
167
169
  content_guard == o.content_guard &&
168
- hidden == o.hidden &&
170
+ name == o.name &&
169
171
  pulp_last_updated == o.pulp_last_updated &&
170
- base_path == o.base_path &&
171
- pulp_href == o.pulp_href &&
172
172
  pulp_labels == o.pulp_labels
173
173
  end
174
174
 
@@ -181,7 +181,7 @@ module PulpcoreClient
181
181
  # Calculates hash code according to all attributes.
182
182
  # @return [Integer] Hash code
183
183
  def hash
184
- [pulp_created, base_url, name, content_guard, hidden, pulp_last_updated, base_path, pulp_href, pulp_labels].hash
184
+ [pulp_href, base_path, pulp_created, hidden, base_url, content_guard, name, pulp_last_updated, pulp_labels].hash
185
185
  end
186
186
 
187
187
  # 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.49.11'
14
+ VERSION = '3.49.12'
15
15
  end
@@ -32,49 +32,49 @@ describe 'ArtifactDistributionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpcoreClient::ArtifactDistributionResponse)
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 "base_url"' do
41
+ describe 'test attribute "base_path"' 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 "name"' do
47
+ describe 'test attribute "pulp_created"' 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 "hidden"' 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 "hidden"' do
59
+ describe 'test attribute "base_url"' 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 "pulp_last_updated"' 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
69
69
  end
70
70
 
71
- describe 'test attribute "base_path"' do
71
+ describe 'test attribute "name"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "pulp_href"' do
77
+ describe 'test attribute "pulp_last_updated"' 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.49.11
4
+ version: 3.49.12
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-06-18 00:00:00.000000000 Z
11
+ date: 2024-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday