pulpcore_client 3.86.0 → 3.88.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.
@@ -22,45 +22,45 @@ module PulpcoreClient
22
22
  # The URL for accessing the publication as defined by this distribution.
23
23
  attr_accessor :base_url
24
24
 
25
- # Whether this distribution should be shown in the content app.
26
- attr_accessor :hidden
25
+ attr_accessor :pulp_href
27
26
 
28
- # A unique name. Ex, `rawhide` and `stable`.
29
- attr_accessor :name
27
+ attr_accessor :pulp_labels
30
28
 
31
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.
32
30
  attr_accessor :no_content_change_since
33
31
 
32
+ # Whether this distribution should be shown in the content app.
33
+ attr_accessor :hidden
34
+
34
35
  # The Pulp Resource Name (PRN).
35
36
  attr_accessor :prn
36
37
 
37
- # Timestamp of creation.
38
- attr_accessor :pulp_created
39
-
40
38
  # An optional content-guard.
41
39
  attr_accessor :content_guard
42
40
 
43
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
44
- attr_accessor :base_path
41
+ # A unique name. Ex, `rawhide` and `stable`.
42
+ attr_accessor :name
45
43
 
46
- attr_accessor :pulp_href
44
+ # Timestamp of creation.
45
+ attr_accessor :pulp_created
47
46
 
48
- attr_accessor :pulp_labels
47
+ # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
48
+ attr_accessor :base_path
49
49
 
50
50
  # Attribute mapping from ruby-style variable name to JSON key.
51
51
  def self.attribute_map
52
52
  {
53
53
  :'pulp_last_updated' => :'pulp_last_updated',
54
54
  :'base_url' => :'base_url',
55
- :'hidden' => :'hidden',
56
- :'name' => :'name',
55
+ :'pulp_href' => :'pulp_href',
56
+ :'pulp_labels' => :'pulp_labels',
57
57
  :'no_content_change_since' => :'no_content_change_since',
58
+ :'hidden' => :'hidden',
58
59
  :'prn' => :'prn',
59
- :'pulp_created' => :'pulp_created',
60
60
  :'content_guard' => :'content_guard',
61
- :'base_path' => :'base_path',
62
- :'pulp_href' => :'pulp_href',
63
- :'pulp_labels' => :'pulp_labels'
61
+ :'name' => :'name',
62
+ :'pulp_created' => :'pulp_created',
63
+ :'base_path' => :'base_path'
64
64
  }
65
65
  end
66
66
 
@@ -74,15 +74,15 @@ module PulpcoreClient
74
74
  {
75
75
  :'pulp_last_updated' => :'Time',
76
76
  :'base_url' => :'String',
77
- :'hidden' => :'Boolean',
78
- :'name' => :'String',
77
+ :'pulp_href' => :'String',
78
+ :'pulp_labels' => :'Hash<String, String>',
79
79
  :'no_content_change_since' => :'String',
80
+ :'hidden' => :'Boolean',
80
81
  :'prn' => :'String',
81
- :'pulp_created' => :'Time',
82
82
  :'content_guard' => :'String',
83
- :'base_path' => :'String',
84
- :'pulp_href' => :'String',
85
- :'pulp_labels' => :'Hash<String, String>'
83
+ :'name' => :'String',
84
+ :'pulp_created' => :'Time',
85
+ :'base_path' => :'String'
86
86
  }
87
87
  end
88
88
 
@@ -116,48 +116,48 @@ module PulpcoreClient
116
116
  self.base_url = attributes[:'base_url']
117
117
  end
118
118
 
119
- if attributes.key?(:'hidden')
120
- self.hidden = attributes[:'hidden']
121
- else
122
- self.hidden = false
119
+ if attributes.key?(:'pulp_href')
120
+ self.pulp_href = attributes[:'pulp_href']
123
121
  end
124
122
 
125
- if attributes.key?(:'name')
126
- self.name = attributes[:'name']
127
- else
128
- self.name = nil
123
+ if attributes.key?(:'pulp_labels')
124
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
125
+ self.pulp_labels = value
126
+ end
129
127
  end
130
128
 
131
129
  if attributes.key?(:'no_content_change_since')
132
130
  self.no_content_change_since = attributes[:'no_content_change_since']
133
131
  end
134
132
 
135
- if attributes.key?(:'prn')
136
- self.prn = attributes[:'prn']
133
+ if attributes.key?(:'hidden')
134
+ self.hidden = attributes[:'hidden']
135
+ else
136
+ self.hidden = false
137
137
  end
138
138
 
139
- if attributes.key?(:'pulp_created')
140
- self.pulp_created = attributes[:'pulp_created']
139
+ if attributes.key?(:'prn')
140
+ self.prn = attributes[:'prn']
141
141
  end
142
142
 
143
143
  if attributes.key?(:'content_guard')
144
144
  self.content_guard = attributes[:'content_guard']
145
145
  end
146
146
 
147
- if attributes.key?(:'base_path')
148
- self.base_path = attributes[:'base_path']
147
+ if attributes.key?(:'name')
148
+ self.name = attributes[:'name']
149
149
  else
150
- self.base_path = nil
150
+ self.name = nil
151
151
  end
152
152
 
153
- if attributes.key?(:'pulp_href')
154
- self.pulp_href = attributes[:'pulp_href']
153
+ if attributes.key?(:'pulp_created')
154
+ self.pulp_created = attributes[:'pulp_created']
155
155
  end
156
156
 
157
- if attributes.key?(:'pulp_labels')
158
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
159
- self.pulp_labels = value
160
- end
157
+ if attributes.key?(:'base_path')
158
+ self.base_path = attributes[:'base_path']
159
+ else
160
+ self.base_path = nil
161
161
  end
162
162
  end
163
163
 
@@ -193,15 +193,15 @@ module PulpcoreClient
193
193
  self.class == o.class &&
194
194
  pulp_last_updated == o.pulp_last_updated &&
195
195
  base_url == o.base_url &&
196
- hidden == o.hidden &&
197
- name == o.name &&
196
+ pulp_href == o.pulp_href &&
197
+ pulp_labels == o.pulp_labels &&
198
198
  no_content_change_since == o.no_content_change_since &&
199
+ hidden == o.hidden &&
199
200
  prn == o.prn &&
200
- pulp_created == o.pulp_created &&
201
201
  content_guard == o.content_guard &&
202
- base_path == o.base_path &&
203
- pulp_href == o.pulp_href &&
204
- pulp_labels == o.pulp_labels
202
+ name == o.name &&
203
+ pulp_created == o.pulp_created &&
204
+ base_path == o.base_path
205
205
  end
206
206
 
207
207
  # @see the `==` method
@@ -213,7 +213,7 @@ module PulpcoreClient
213
213
  # Calculates hash code according to all attributes.
214
214
  # @return [Integer] Hash code
215
215
  def hash
216
- [pulp_last_updated, base_url, hidden, name, no_content_change_since, prn, pulp_created, content_guard, base_path, pulp_href, pulp_labels].hash
216
+ [pulp_last_updated, base_url, pulp_href, pulp_labels, no_content_change_since, hidden, prn, content_guard, name, pulp_created, base_path].hash
217
217
  end
218
218
 
219
219
  # Builds the object from hash
@@ -66,7 +66,7 @@ module PulpcoreClient
66
66
  if attributes.key?(:'finished_before')
67
67
  self.finished_before = attributes[:'finished_before']
68
68
  else
69
- self.finished_before = '2025-07-22'
69
+ self.finished_before = '2025-08-04'
70
70
  end
71
71
 
72
72
  if attributes.key?(:'states')
@@ -67,9 +67,9 @@ module PulpcoreClient
67
67
  def self.openapi_types
68
68
  {
69
69
  :'versions' => :'Array<VersionResponse>',
70
- :'online_workers' => :'Array<WorkerResponse>',
71
- :'online_api_apps' => :'Array<ApiAppStatusResponse>',
72
- :'online_content_apps' => :'Array<ContentAppStatusResponse>',
70
+ :'online_workers' => :'Array<AppStatusResponse>',
71
+ :'online_api_apps' => :'Array<AppStatusResponse>',
72
+ :'online_content_apps' => :'Array<AppStatusResponse>',
73
73
  :'database_connection' => :'DatabaseConnectionResponse',
74
74
  :'redis_connection' => :'RedisConnectionResponse',
75
75
  :'storage' => :'StorageResponse',
@@ -71,6 +71,8 @@ module PulpcoreClient
71
71
  # A list of resources required by that task.
72
72
  attr_accessor :reserved_resources_record
73
73
 
74
+ attr_accessor :result
75
+
74
76
  # Attribute mapping from ruby-style variable name to JSON key.
75
77
  def self.attribute_map
76
78
  {
@@ -92,7 +94,8 @@ module PulpcoreClient
92
94
  :'task_group' => :'task_group',
93
95
  :'progress_reports' => :'progress_reports',
94
96
  :'created_resources' => :'created_resources',
95
- :'reserved_resources_record' => :'reserved_resources_record'
97
+ :'reserved_resources_record' => :'reserved_resources_record',
98
+ :'result' => :'result'
96
99
  }
97
100
  end
98
101
 
@@ -122,13 +125,15 @@ module PulpcoreClient
122
125
  :'task_group' => :'String',
123
126
  :'progress_reports' => :'Array<ProgressReportResponse>',
124
127
  :'created_resources' => :'Array<String>',
125
- :'reserved_resources_record' => :'Array<String>'
128
+ :'reserved_resources_record' => :'Array<String>',
129
+ :'result' => :'Object'
126
130
  }
127
131
  end
128
132
 
129
133
  # List of attributes with nullable: true
130
134
  def self.openapi_nullable
131
135
  Set.new([
136
+ :'result'
132
137
  ])
133
138
  end
134
139
 
@@ -234,6 +239,10 @@ module PulpcoreClient
234
239
  self.reserved_resources_record = value
235
240
  end
236
241
  end
242
+
243
+ if attributes.key?(:'result')
244
+ self.result = attributes[:'result']
245
+ end
237
246
  end
238
247
 
239
248
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -284,7 +293,8 @@ module PulpcoreClient
284
293
  task_group == o.task_group &&
285
294
  progress_reports == o.progress_reports &&
286
295
  created_resources == o.created_resources &&
287
- reserved_resources_record == o.reserved_resources_record
296
+ reserved_resources_record == o.reserved_resources_record &&
297
+ result == o.result
288
298
  end
289
299
 
290
300
  # @see the `==` method
@@ -296,7 +306,7 @@ module PulpcoreClient
296
306
  # Calculates hash code according to all attributes.
297
307
  # @return [Integer] Hash code
298
308
  def hash
299
- [pulp_href, prn, pulp_created, pulp_last_updated, state, name, logging_cid, created_by, unblocked_at, started_at, finished_at, error, worker, parent_task, child_tasks, task_group, progress_reports, created_resources, reserved_resources_record].hash
309
+ [pulp_href, prn, pulp_created, pulp_last_updated, state, name, logging_cid, created_by, unblocked_at, started_at, finished_at, error, worker, parent_task, child_tasks, task_group, progress_reports, created_resources, reserved_resources_record, result].hash
300
310
  end
301
311
 
302
312
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpcoreClient
14
- VERSION = '3.86.0'
14
+ VERSION = '3.88.0'
15
15
  end
@@ -19,13 +19,12 @@ require 'pulpcore_client/configuration'
19
19
  # Models
20
20
  require 'pulpcore_client/models/access_policy'
21
21
  require 'pulpcore_client/models/access_policy_response'
22
- require 'pulpcore_client/models/api_app_status_response'
22
+ require 'pulpcore_client/models/app_status_response'
23
23
  require 'pulpcore_client/models/artifact_distribution_response'
24
24
  require 'pulpcore_client/models/artifact_response'
25
25
  require 'pulpcore_client/models/async_operation_response'
26
26
  require 'pulpcore_client/models/composite_content_guard'
27
27
  require 'pulpcore_client/models/composite_content_guard_response'
28
- require 'pulpcore_client/models/content_app_status_response'
29
28
  require 'pulpcore_client/models/content_guard_response'
30
29
  require 'pulpcore_client/models/content_redirect_content_guard'
31
30
  require 'pulpcore_client/models/content_redirect_content_guard_response'
@@ -83,7 +83,7 @@ describe 'TasksApi' do
83
83
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
84
84
  # @option opts [String] :name__ne Filter results where name not equal to value
85
85
  # @option opts [Integer] :offset The initial index from which to return the results.
86
- # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;state&#x60; - State * &#x60;-state&#x60; - State (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;logging_cid&#x60; - Logging cid * &#x60;-logging_cid&#x60; - Logging cid (descending) * &#x60;unblocked_at&#x60; - Unblocked at * &#x60;-unblocked_at&#x60; - Unblocked at (descending) * &#x60;started_at&#x60; - Started at * &#x60;-started_at&#x60; - Started at (descending) * &#x60;finished_at&#x60; - Finished at * &#x60;-finished_at&#x60; - Finished at (descending) * &#x60;error&#x60; - Error * &#x60;-error&#x60; - Error (descending) * &#x60;enc_args&#x60; - Enc args * &#x60;-enc_args&#x60; - Enc args (descending) * &#x60;enc_kwargs&#x60; - Enc kwargs * &#x60;-enc_kwargs&#x60; - Enc kwargs (descending) * &#x60;reserved_resources_record&#x60; - Reserved resources record * &#x60;-reserved_resources_record&#x60; - Reserved resources record (descending) * &#x60;versions&#x60; - Versions * &#x60;-versions&#x60; - Versions (descending) * &#x60;profile_options&#x60; - Profile options * &#x60;-profile_options&#x60; - Profile options (descending) * &#x60;immediate&#x60; - Immediate * &#x60;-immediate&#x60; - Immediate (descending) * &#x60;deferred&#x60; - Deferred * &#x60;-deferred&#x60; - Deferred (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
86
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;state&#x60; - State * &#x60;-state&#x60; - State (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;logging_cid&#x60; - Logging cid * &#x60;-logging_cid&#x60; - Logging cid (descending) * &#x60;unblocked_at&#x60; - Unblocked at * &#x60;-unblocked_at&#x60; - Unblocked at (descending) * &#x60;started_at&#x60; - Started at * &#x60;-started_at&#x60; - Started at (descending) * &#x60;finished_at&#x60; - Finished at * &#x60;-finished_at&#x60; - Finished at (descending) * &#x60;error&#x60; - Error * &#x60;-error&#x60; - Error (descending) * &#x60;enc_args&#x60; - Enc args * &#x60;-enc_args&#x60; - Enc args (descending) * &#x60;enc_kwargs&#x60; - Enc kwargs * &#x60;-enc_kwargs&#x60; - Enc kwargs (descending) * &#x60;reserved_resources_record&#x60; - Reserved resources record * &#x60;-reserved_resources_record&#x60; - Reserved resources record (descending) * &#x60;versions&#x60; - Versions * &#x60;-versions&#x60; - Versions (descending) * &#x60;profile_options&#x60; - Profile options * &#x60;-profile_options&#x60; - Profile options (descending) * &#x60;immediate&#x60; - Immediate * &#x60;-immediate&#x60; - Immediate (descending) * &#x60;deferred&#x60; - Deferred * &#x60;-deferred&#x60; - Deferred (descending) * &#x60;result&#x60; - Result * &#x60;-result&#x60; - Result (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
87
87
  # @option opts [String] :parent_task Filter results where parent_task matches value
88
88
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
89
89
  # @option opts [Time] :pulp_created Filter results where pulp_created matches value
@@ -118,7 +118,7 @@ describe 'TasksApi' do
118
118
  # @option opts [Time] :unblocked_at__lt Filter results where unblocked_at is less than value
119
119
  # @option opts [Time] :unblocked_at__lte Filter results where unblocked_at is less than or equal to value
120
120
  # @option opts [Array<Time>] :unblocked_at__range Filter results where unblocked_at is between two comma separated values
121
- # @option opts [String] :worker Filter results where worker matches value
121
+ # @option opts [String] :worker
122
122
  # @option opts [Array<String>] :worker__in Filter results where worker is in a comma-separated list of values
123
123
  # @option opts [Boolean] :worker__isnull Filter results where worker has a null value
124
124
  # @option opts [Array<String>] :fields A list of fields to include in the response.
@@ -33,7 +33,7 @@ describe 'WorkersApi' do
33
33
  end
34
34
 
35
35
  # unit tests for list
36
- # List workers
36
+ # List app statuss
37
37
  # A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \&quot;Normal\&quot; Django Models and Master/Detail models are supported by the &#x60;&#x60;register_with&#x60;&#x60; method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to &#39;pk&#39; endpoint_name (str): The name of the final path segment that should identify the ViewSet&#39;s collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \&quot;parent_prefix\&quot; of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object&#39;s identity. schema (DefaultSchema): The schema class to use by default in a viewset.
38
38
  # @param [Hash] opts the optional parameters
39
39
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
@@ -57,7 +57,7 @@ describe 'WorkersApi' do
57
57
  # @option opts [String] :name__startswith Filter results where name starts with value
58
58
  # @option opts [Integer] :offset The initial index from which to return the results.
59
59
  # @option opts [Boolean] :online
60
- # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;last_heartbeat&#x60; - Last heartbeat * &#x60;-last_heartbeat&#x60; - Last heartbeat (descending) * &#x60;versions&#x60; - Versions * &#x60;-versions&#x60; - Versions (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
60
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;app_type&#x60; - App type * &#x60;-app_type&#x60; - App type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;versions&#x60; - Versions * &#x60;-versions&#x60; - Versions (descending) * &#x60;ttl&#x60; - Ttl * &#x60;-ttl&#x60; - Ttl (descending) * &#x60;last_heartbeat&#x60; - Last heartbeat * &#x60;-last_heartbeat&#x60; - Last heartbeat (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
61
61
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
62
62
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
63
63
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
@@ -72,7 +72,7 @@ describe 'WorkersApi' do
72
72
  end
73
73
 
74
74
  # unit tests for read
75
- # Inspect a worker
75
+ # Inspect an app status
76
76
  # A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \&quot;Normal\&quot; Django Models and Master/Detail models are supported by the &#x60;&#x60;register_with&#x60;&#x60; method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to &#39;pk&#39; endpoint_name (str): The name of the final path segment that should identify the ViewSet&#39;s collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \&quot;parent_prefix\&quot; of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object&#39;s identity. schema (DefaultSchema): The schema class to use by default in a viewset.
77
77
  # @param worker_href
78
78
  # @param [Hash] opts the optional parameters
@@ -14,16 +14,16 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for PulpcoreClient::ApiAppStatusResponse
17
+ # Unit tests for PulpcoreClient::AppStatusResponse
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe PulpcoreClient::ApiAppStatusResponse do
21
- let(:instance) { PulpcoreClient::ApiAppStatusResponse.new }
20
+ describe PulpcoreClient::AppStatusResponse do
21
+ let(:instance) { PulpcoreClient::AppStatusResponse.new }
22
22
 
23
- describe 'test an instance of ApiAppStatusResponse' do
24
- it 'should create an instance of ApiAppStatusResponse' do
23
+ describe 'test an instance of AppStatusResponse' do
24
+ it 'should create an instance of AppStatusResponse' do
25
25
  # uncomment below to test the instance creation
26
- #expect(instance).to be_instance_of(PulpcoreClient::ApiAppStatusResponse)
26
+ #expect(instance).to be_instance_of(PulpcoreClient::AppStatusResponse)
27
27
  end
28
28
  end
29
29
 
@@ -39,13 +39,13 @@ describe PulpcoreClient::ArtifactDistributionResponse do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "hidden"' do
42
+ describe 'test attribute "pulp_href"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "name"' do
48
+ describe 'test attribute "pulp_labels"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
@@ -57,13 +57,13 @@ describe PulpcoreClient::ArtifactDistributionResponse do
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "prn"' do
60
+ describe 'test attribute "hidden"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "pulp_created"' do
66
+ describe 'test attribute "prn"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
@@ -75,19 +75,19 @@ describe PulpcoreClient::ArtifactDistributionResponse do
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "base_path"' do
78
+ describe 'test attribute "name"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "pulp_href"' do
84
+ describe 'test attribute "pulp_created"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "pulp_labels"' do
90
+ describe 'test attribute "base_path"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
@@ -141,4 +141,10 @@ describe PulpcoreClient::TaskResponse do
141
141
  end
142
142
  end
143
143
 
144
+ describe 'test attribute "result"' do
145
+ it 'should work' do
146
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
+ end
148
+ end
149
+
144
150
  end