pulpcore_client 3.57.1 → 3.58.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1fc6d5bea48496ce0ff8b6fdfa5cdba11e5e72e68de50e1c741a73b57c98a0e0
4
- data.tar.gz: 1468eebae3c36f4a607d6dae32094b251117d2c07ec7bb732b40a1d032c8be5e
3
+ metadata.gz: 47ef11cf928bf4b06ee62b4717a943035721d12e880ffd9cc9474e7b23738d51
4
+ data.tar.gz: e13ed4c21b675342c73d1254d4d27671322fd9543dd20bf46f1b8263e08dfe82
5
5
  SHA512:
6
- metadata.gz: d4a6047f49613fc07cbad1524348064ca2ef8d508fa58c836ae4bd79f55e160342a2b755c17d3486b96ae869aa7a464e168c630ec1c29a7e01f1d56e304c8166
7
- data.tar.gz: 527852b6fad84f09b9fa378a62cf4f60716436b1f34bc1a126f302ec734fef1b8cb84a27c8dbd6da0202814e58bcfb36f5595eed5390d407c96598e9e526cf96
6
+ metadata.gz: 3bb3ee1dbffd3ea011b992cc1bd5e15f8b6456efd5fc0ea324c86cf5f0247d15f3bdccb5b150c390a70870f37f61f63f99e9ec8c6566b7c122140fa09cab4bd0
7
+ data.tar.gz: caa5856076b99f8dbe9610938cbdd5987dcdf390db23cc6d87620c1caa7ddcb7e25c358d74cbec126f3c991e0039908b9e3aea66f84407534f6d2de553cf9ba1
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.57.1
10
+ - Package version: 3.58.0
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.57.1.gem
27
+ gem install ./pulpcore_client-3.58.0.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulpcore_client-3.57.1.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulpcore_client-3.58.0.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.57.1'
36
+ gem 'pulpcore_client', '~> 3.58.0'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -4,30 +4,32 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_href** | **String** | | [optional] [readonly]
8
- **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
7
+ **content_guard** | **String** | An optional content-guard. | [optional]
9
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\") |
10
- **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]
11
- **name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
9
+ **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
10
+ **pulp_href** | **String** | | [optional] [readonly]
11
+ **no_content_change_since** | **String** | Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes. | [optional] [readonly]
12
12
  **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
13
- **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
14
- **content_guard** | **String** | An optional content-guard. | [optional]
13
+ **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]
15
14
  **pulp_labels** | **Hash<String, String>** | | [optional]
15
+ **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
16
+ **name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
16
17
 
17
18
  ## Code Sample
18
19
 
19
20
  ```ruby
20
21
  require 'PulpcoreClient'
21
22
 
22
- instance = PulpcoreClient::ArtifactDistributionResponse.new(pulp_href: null,
23
- base_url: null,
23
+ instance = PulpcoreClient::ArtifactDistributionResponse.new(content_guard: null,
24
24
  base_path: null,
25
- pulp_last_updated: null,
26
- name: null,
25
+ base_url: null,
26
+ pulp_href: null,
27
+ no_content_change_since: null,
27
28
  hidden: null,
29
+ pulp_last_updated: null,
30
+ pulp_labels: null,
28
31
  pulp_created: null,
29
- content_guard: null,
30
- pulp_labels: null)
32
+ name: null)
31
33
  ```
32
34
 
33
35
 
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
10
10
  **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\") |
11
11
  **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
12
12
  **content_guard** | **String** | An optional content-guard. | [optional]
13
+ **no_content_change_since** | **String** | Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes. | [optional] [readonly]
13
14
  **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
14
15
  **pulp_labels** | **Hash<String, String>** | | [optional]
15
16
  **name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
@@ -26,6 +27,7 @@ instance = PulpcoreClient::DistributionResponse.new(pulp_href: null,
26
27
  base_path: null,
27
28
  base_url: null,
28
29
  content_guard: null,
30
+ no_content_change_since: null,
29
31
  hidden: null,
30
32
  pulp_labels: null,
31
33
  name: null,
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
16
16
  **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
17
17
  **hidden_fields** | [**Array<RemoteResponseHiddenFields>**](RemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly]
18
18
  **pulp_label_select** | **String** | One or more comma separated labels that will be used to filter distributions on the upstream Pulp. E.g. \"foo=bar,key=val\" or \"foo,key\" | [optional]
19
+ **last_replication** | **DateTime** | Timestamp of the last replication that occurred. Equals to 'null' if no replication task has been executed. | [optional] [readonly]
19
20
 
20
21
  ## Code Sample
21
22
 
@@ -33,7 +34,8 @@ instance = PulpcoreClient::UpstreamPulpResponse.new(pulp_href: null,
33
34
  client_cert: null,
34
35
  tls_validation: null,
35
36
  hidden_fields: null,
36
- pulp_label_select: null)
37
+ pulp_label_select: null,
38
+ last_replication: null)
37
39
  ```
38
40
 
39
41
 
@@ -15,58 +15,63 @@ require 'date'
15
15
  module PulpcoreClient
16
16
  # A serializer for ArtifactDistribution.
17
17
  class ArtifactDistributionResponse
18
- attr_accessor :pulp_href
19
-
20
- # The URL for accessing the publication as defined by this distribution.
21
- attr_accessor :base_url
18
+ # An optional content-guard.
19
+ attr_accessor :content_guard
22
20
 
23
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\")
24
22
  attr_accessor :base_path
25
23
 
26
- # 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.
27
- attr_accessor :pulp_last_updated
24
+ # The URL for accessing the publication as defined by this distribution.
25
+ attr_accessor :base_url
28
26
 
29
- # A unique name. Ex, `rawhide` and `stable`.
30
- attr_accessor :name
27
+ attr_accessor :pulp_href
28
+
29
+ # Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.
30
+ attr_accessor :no_content_change_since
31
31
 
32
32
  # Whether this distribution should be shown in the content app.
33
33
  attr_accessor :hidden
34
34
 
35
+ # 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.
36
+ attr_accessor :pulp_last_updated
37
+
38
+ attr_accessor :pulp_labels
39
+
35
40
  # Timestamp of creation.
36
41
  attr_accessor :pulp_created
37
42
 
38
- # An optional content-guard.
39
- attr_accessor :content_guard
40
-
41
- attr_accessor :pulp_labels
43
+ # A unique name. Ex, `rawhide` and `stable`.
44
+ attr_accessor :name
42
45
 
43
46
  # Attribute mapping from ruby-style variable name to JSON key.
44
47
  def self.attribute_map
45
48
  {
46
- :'pulp_href' => :'pulp_href',
47
- :'base_url' => :'base_url',
49
+ :'content_guard' => :'content_guard',
48
50
  :'base_path' => :'base_path',
49
- :'pulp_last_updated' => :'pulp_last_updated',
50
- :'name' => :'name',
51
+ :'base_url' => :'base_url',
52
+ :'pulp_href' => :'pulp_href',
53
+ :'no_content_change_since' => :'no_content_change_since',
51
54
  :'hidden' => :'hidden',
55
+ :'pulp_last_updated' => :'pulp_last_updated',
56
+ :'pulp_labels' => :'pulp_labels',
52
57
  :'pulp_created' => :'pulp_created',
53
- :'content_guard' => :'content_guard',
54
- :'pulp_labels' => :'pulp_labels'
58
+ :'name' => :'name'
55
59
  }
56
60
  end
57
61
 
58
62
  # Attribute type mapping.
59
63
  def self.openapi_types
60
64
  {
61
- :'pulp_href' => :'String',
62
- :'base_url' => :'String',
65
+ :'content_guard' => :'String',
63
66
  :'base_path' => :'String',
64
- :'pulp_last_updated' => :'DateTime',
65
- :'name' => :'String',
67
+ :'base_url' => :'String',
68
+ :'pulp_href' => :'String',
69
+ :'no_content_change_since' => :'String',
66
70
  :'hidden' => :'Boolean',
71
+ :'pulp_last_updated' => :'DateTime',
72
+ :'pulp_labels' => :'Hash<String, String>',
67
73
  :'pulp_created' => :'DateTime',
68
- :'content_guard' => :'String',
69
- :'pulp_labels' => :'Hash<String, String>'
74
+ :'name' => :'String'
70
75
  }
71
76
  end
72
77
 
@@ -92,24 +97,24 @@ module PulpcoreClient
92
97
  h[k.to_sym] = v
93
98
  }
94
99
 
95
- if attributes.key?(:'pulp_href')
96
- self.pulp_href = attributes[:'pulp_href']
97
- end
98
-
99
- if attributes.key?(:'base_url')
100
- self.base_url = attributes[:'base_url']
100
+ if attributes.key?(:'content_guard')
101
+ self.content_guard = attributes[:'content_guard']
101
102
  end
102
103
 
103
104
  if attributes.key?(:'base_path')
104
105
  self.base_path = attributes[:'base_path']
105
106
  end
106
107
 
107
- if attributes.key?(:'pulp_last_updated')
108
- self.pulp_last_updated = attributes[:'pulp_last_updated']
108
+ if attributes.key?(:'base_url')
109
+ self.base_url = attributes[:'base_url']
109
110
  end
110
111
 
111
- if attributes.key?(:'name')
112
- self.name = attributes[:'name']
112
+ if attributes.key?(:'pulp_href')
113
+ self.pulp_href = attributes[:'pulp_href']
114
+ end
115
+
116
+ if attributes.key?(:'no_content_change_since')
117
+ self.no_content_change_since = attributes[:'no_content_change_since']
113
118
  end
114
119
 
115
120
  if attributes.key?(:'hidden')
@@ -118,12 +123,8 @@ module PulpcoreClient
118
123
  self.hidden = false
119
124
  end
120
125
 
121
- if attributes.key?(:'pulp_created')
122
- self.pulp_created = attributes[:'pulp_created']
123
- end
124
-
125
- if attributes.key?(:'content_guard')
126
- self.content_guard = attributes[:'content_guard']
126
+ if attributes.key?(:'pulp_last_updated')
127
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
127
128
  end
128
129
 
129
130
  if attributes.key?(:'pulp_labels')
@@ -131,6 +132,14 @@ module PulpcoreClient
131
132
  self.pulp_labels = value
132
133
  end
133
134
  end
135
+
136
+ if attributes.key?(:'pulp_created')
137
+ self.pulp_created = attributes[:'pulp_created']
138
+ end
139
+
140
+ if attributes.key?(:'name')
141
+ self.name = attributes[:'name']
142
+ end
134
143
  end
135
144
 
136
145
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -161,15 +170,16 @@ module PulpcoreClient
161
170
  def ==(o)
162
171
  return true if self.equal?(o)
163
172
  self.class == o.class &&
164
- pulp_href == o.pulp_href &&
165
- base_url == o.base_url &&
173
+ content_guard == o.content_guard &&
166
174
  base_path == o.base_path &&
167
- pulp_last_updated == o.pulp_last_updated &&
168
- name == o.name &&
175
+ base_url == o.base_url &&
176
+ pulp_href == o.pulp_href &&
177
+ no_content_change_since == o.no_content_change_since &&
169
178
  hidden == o.hidden &&
179
+ pulp_last_updated == o.pulp_last_updated &&
180
+ pulp_labels == o.pulp_labels &&
170
181
  pulp_created == o.pulp_created &&
171
- content_guard == o.content_guard &&
172
- pulp_labels == o.pulp_labels
182
+ name == o.name
173
183
  end
174
184
 
175
185
  # @see the `==` method
@@ -181,7 +191,7 @@ module PulpcoreClient
181
191
  # Calculates hash code according to all attributes.
182
192
  # @return [Integer] Hash code
183
193
  def hash
184
- [pulp_href, base_url, base_path, pulp_last_updated, name, hidden, pulp_created, content_guard, pulp_labels].hash
194
+ [content_guard, base_path, base_url, pulp_href, no_content_change_since, hidden, pulp_last_updated, pulp_labels, pulp_created, name].hash
185
195
  end
186
196
 
187
197
  # Builds the object from hash
@@ -32,6 +32,9 @@ module PulpcoreClient
32
32
  # An optional content-guard.
33
33
  attr_accessor :content_guard
34
34
 
35
+ # Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.
36
+ attr_accessor :no_content_change_since
37
+
35
38
  # Whether this distribution should be shown in the content app.
36
39
  attr_accessor :hidden
37
40
 
@@ -52,6 +55,7 @@ module PulpcoreClient
52
55
  :'base_path' => :'base_path',
53
56
  :'base_url' => :'base_url',
54
57
  :'content_guard' => :'content_guard',
58
+ :'no_content_change_since' => :'no_content_change_since',
55
59
  :'hidden' => :'hidden',
56
60
  :'pulp_labels' => :'pulp_labels',
57
61
  :'name' => :'name',
@@ -68,6 +72,7 @@ module PulpcoreClient
68
72
  :'base_path' => :'String',
69
73
  :'base_url' => :'String',
70
74
  :'content_guard' => :'String',
75
+ :'no_content_change_since' => :'String',
71
76
  :'hidden' => :'Boolean',
72
77
  :'pulp_labels' => :'Hash<String, String>',
73
78
  :'name' => :'String',
@@ -122,6 +127,10 @@ module PulpcoreClient
122
127
  self.content_guard = attributes[:'content_guard']
123
128
  end
124
129
 
130
+ if attributes.key?(:'no_content_change_since')
131
+ self.no_content_change_since = attributes[:'no_content_change_since']
132
+ end
133
+
125
134
  if attributes.key?(:'hidden')
126
135
  self.hidden = attributes[:'hidden']
127
136
  else
@@ -177,6 +186,7 @@ module PulpcoreClient
177
186
  base_path == o.base_path &&
178
187
  base_url == o.base_url &&
179
188
  content_guard == o.content_guard &&
189
+ no_content_change_since == o.no_content_change_since &&
180
190
  hidden == o.hidden &&
181
191
  pulp_labels == o.pulp_labels &&
182
192
  name == o.name &&
@@ -192,7 +202,7 @@ module PulpcoreClient
192
202
  # Calculates hash code according to all attributes.
193
203
  # @return [Integer] Hash code
194
204
  def hash
195
- [pulp_href, pulp_created, pulp_last_updated, base_path, base_url, content_guard, hidden, pulp_labels, name, repository].hash
205
+ [pulp_href, pulp_created, pulp_last_updated, base_path, base_url, content_guard, no_content_change_since, hidden, pulp_labels, name, repository].hash
196
206
  end
197
207
 
198
208
  # Builds the object from hash
@@ -50,6 +50,9 @@ module PulpcoreClient
50
50
  # One or more comma separated labels that will be used to filter distributions on the upstream Pulp. E.g. \"foo=bar,key=val\" or \"foo,key\"
51
51
  attr_accessor :pulp_label_select
52
52
 
53
+ # Timestamp of the last replication that occurred. Equals to 'null' if no replication task has been executed.
54
+ attr_accessor :last_replication
55
+
53
56
  # Attribute mapping from ruby-style variable name to JSON key.
54
57
  def self.attribute_map
55
58
  {
@@ -64,7 +67,8 @@ module PulpcoreClient
64
67
  :'client_cert' => :'client_cert',
65
68
  :'tls_validation' => :'tls_validation',
66
69
  :'hidden_fields' => :'hidden_fields',
67
- :'pulp_label_select' => :'pulp_label_select'
70
+ :'pulp_label_select' => :'pulp_label_select',
71
+ :'last_replication' => :'last_replication'
68
72
  }
69
73
  end
70
74
 
@@ -82,7 +86,8 @@ module PulpcoreClient
82
86
  :'client_cert' => :'String',
83
87
  :'tls_validation' => :'Boolean',
84
88
  :'hidden_fields' => :'Array<RemoteResponseHiddenFields>',
85
- :'pulp_label_select' => :'String'
89
+ :'pulp_label_select' => :'String',
90
+ :'last_replication' => :'DateTime'
86
91
  }
87
92
  end
88
93
 
@@ -92,7 +97,7 @@ module PulpcoreClient
92
97
  :'domain',
93
98
  :'ca_cert',
94
99
  :'client_cert',
95
- :'pulp_label_select'
100
+ :'pulp_label_select',
96
101
  ])
97
102
  end
98
103
 
@@ -160,6 +165,10 @@ module PulpcoreClient
160
165
  if attributes.key?(:'pulp_label_select')
161
166
  self.pulp_label_select = attributes[:'pulp_label_select']
162
167
  end
168
+
169
+ if attributes.key?(:'last_replication')
170
+ self.last_replication = attributes[:'last_replication']
171
+ end
163
172
  end
164
173
 
165
174
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -206,7 +215,8 @@ module PulpcoreClient
206
215
  client_cert == o.client_cert &&
207
216
  tls_validation == o.tls_validation &&
208
217
  hidden_fields == o.hidden_fields &&
209
- pulp_label_select == o.pulp_label_select
218
+ pulp_label_select == o.pulp_label_select &&
219
+ last_replication == o.last_replication
210
220
  end
211
221
 
212
222
  # @see the `==` method
@@ -218,7 +228,7 @@ module PulpcoreClient
218
228
  # Calculates hash code according to all attributes.
219
229
  # @return [Integer] Hash code
220
230
  def hash
221
- [pulp_href, pulp_created, pulp_last_updated, name, base_url, api_root, domain, ca_cert, client_cert, tls_validation, hidden_fields, pulp_label_select].hash
231
+ [pulp_href, pulp_created, pulp_last_updated, name, base_url, api_root, domain, ca_cert, client_cert, tls_validation, hidden_fields, pulp_label_select, last_replication].hash
222
232
  end
223
233
 
224
234
  # 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.57.1'
14
+ VERSION = '3.58.0'
15
15
  end
@@ -32,31 +32,31 @@ describe 'ArtifactDistributionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpcoreClient::ArtifactDistributionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_href"' do
35
+ describe 'test attribute "content_guard"' 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 "base_path"' do
47
+ describe 'test attribute "base_url"' 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 "pulp_last_updated"' 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 "name"' do
59
+ describe 'test attribute "no_content_change_since"' 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
@@ -68,19 +68,25 @@ describe 'ArtifactDistributionResponse' do
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "pulp_created"' do
71
+ describe 'test attribute "pulp_last_updated"' 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 "content_guard"' 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
81
81
  end
82
82
 
83
- describe 'test attribute "pulp_labels"' do
83
+ describe 'test attribute "pulp_created"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ describe 'test attribute "name"' do
84
90
  it 'should work' do
85
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
92
  end
@@ -68,6 +68,12 @@ describe 'DistributionResponse' do
68
68
  end
69
69
  end
70
70
 
71
+ describe 'test attribute "no_content_change_since"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
71
77
  describe 'test attribute "hidden"' do
72
78
  it 'should work' do
73
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -104,4 +104,10 @@ describe 'UpstreamPulpResponse' do
104
104
  end
105
105
  end
106
106
 
107
+ describe 'test attribute "last_replication"' do
108
+ it 'should work' do
109
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
+ end
111
+ end
112
+
107
113
  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.57.1
4
+ version: 3.58.0
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-08-10 00:00:00.000000000 Z
11
+ date: 2024-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday