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.
- checksums.yaml +4 -4
- data/README.md +7 -8
- data/docs/{ApiAppStatusResponse.md → AppStatusResponse.md} +2 -2
- data/docs/ArtifactDistributionResponse.md +11 -11
- data/docs/Purge.md +1 -1
- data/docs/StatusResponse.md +3 -3
- data/docs/TaskResponse.md +3 -1
- data/docs/TasksApi.md +4 -4
- data/docs/WorkersApi.md +10 -10
- data/lib/pulpcore_client/api/tasks_api.rb +5 -5
- data/lib/pulpcore_client/api/workers_api.rb +7 -7
- data/lib/pulpcore_client/models/{api_app_status_response.rb → app_status_response.rb} +3 -4
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +51 -51
- data/lib/pulpcore_client/models/purge.rb +1 -1
- data/lib/pulpcore_client/models/status_response.rb +3 -3
- data/lib/pulpcore_client/models/task_response.rb +14 -4
- data/lib/pulpcore_client/version.rb +1 -1
- data/lib/pulpcore_client.rb +1 -2
- data/spec/api/tasks_api_spec.rb +2 -2
- data/spec/api/workers_api_spec.rb +3 -3
- data/spec/models/{api_app_status_response_spec.rb → app_status_response_spec.rb} +6 -6
- data/spec/models/artifact_distribution_response_spec.rb +7 -7
- data/spec/models/task_response_spec.rb +6 -0
- metadata +197 -201
- data/docs/ContentAppStatusResponse.md +0 -22
- data/lib/pulpcore_client/models/content_app_status_response.rb +0 -238
- data/spec/models/content_app_status_response_spec.rb +0 -48
@@ -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
|
-
|
26
|
-
attr_accessor :hidden
|
25
|
+
attr_accessor :pulp_href
|
27
26
|
|
28
|
-
|
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
|
-
#
|
44
|
-
attr_accessor :
|
41
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
42
|
+
attr_accessor :name
|
45
43
|
|
46
|
-
|
44
|
+
# Timestamp of creation.
|
45
|
+
attr_accessor :pulp_created
|
47
46
|
|
48
|
-
|
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
|
-
:'
|
56
|
-
:'
|
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
|
-
:'
|
62
|
-
:'
|
63
|
-
:'
|
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
|
-
:'
|
78
|
-
:'
|
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
|
-
:'
|
84
|
-
:'
|
85
|
-
:'
|
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?(:'
|
120
|
-
self.
|
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?(:'
|
126
|
-
|
127
|
-
|
128
|
-
|
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?(:'
|
136
|
-
self.
|
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?(:'
|
140
|
-
self.
|
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?(:'
|
148
|
-
self.
|
147
|
+
if attributes.key?(:'name')
|
148
|
+
self.name = attributes[:'name']
|
149
149
|
else
|
150
|
-
self.
|
150
|
+
self.name = nil
|
151
151
|
end
|
152
152
|
|
153
|
-
if attributes.key?(:'
|
154
|
-
self.
|
153
|
+
if attributes.key?(:'pulp_created')
|
154
|
+
self.pulp_created = attributes[:'pulp_created']
|
155
155
|
end
|
156
156
|
|
157
|
-
if attributes.key?(:'
|
158
|
-
|
159
|
-
|
160
|
-
|
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
|
-
|
197
|
-
|
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
|
-
|
203
|
-
|
204
|
-
|
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,
|
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
|
@@ -67,9 +67,9 @@ module PulpcoreClient
|
|
67
67
|
def self.openapi_types
|
68
68
|
{
|
69
69
|
:'versions' => :'Array<VersionResponse>',
|
70
|
-
:'online_workers' => :'Array<
|
71
|
-
:'online_api_apps' => :'Array<
|
72
|
-
:'online_content_apps' => :'Array<
|
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
|
data/lib/pulpcore_client.rb
CHANGED
@@ -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/
|
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'
|
data/spec/api/tasks_api_spec.rb
CHANGED
@@ -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 * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `state` - State * `-state` - State (descending) * `name` - Name * `-name` - Name (descending) * `logging_cid` - Logging cid * `-logging_cid` - Logging cid (descending) * `unblocked_at` - Unblocked at * `-unblocked_at` - Unblocked at (descending) * `started_at` - Started at * `-started_at` - Started at (descending) * `finished_at` - Finished at * `-finished_at` - Finished at (descending) * `error` - Error * `-error` - Error (descending) * `enc_args` - Enc args * `-enc_args` - Enc args (descending) * `enc_kwargs` - Enc kwargs * `-enc_kwargs` - Enc kwargs (descending) * `reserved_resources_record` - Reserved resources record * `-reserved_resources_record` - Reserved resources record (descending) * `versions` - Versions * `-versions` - Versions (descending) * `profile_options` - Profile options * `-profile_options` - Profile options (descending) * `immediate` - Immediate * `-immediate` - Immediate (descending) * `deferred` - Deferred * `-deferred` - Deferred (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
86
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `state` - State * `-state` - State (descending) * `name` - Name * `-name` - Name (descending) * `logging_cid` - Logging cid * `-logging_cid` - Logging cid (descending) * `unblocked_at` - Unblocked at * `-unblocked_at` - Unblocked at (descending) * `started_at` - Started at * `-started_at` - Started at (descending) * `finished_at` - Finished at * `-finished_at` - Finished at (descending) * `error` - Error * `-error` - Error (descending) * `enc_args` - Enc args * `-enc_args` - Enc args (descending) * `enc_kwargs` - Enc kwargs * `-enc_kwargs` - Enc kwargs (descending) * `reserved_resources_record` - Reserved resources record * `-reserved_resources_record` - Reserved resources record (descending) * `versions` - Versions * `-versions` - Versions (descending) * `profile_options` - Profile options * `-profile_options` - Profile options (descending) * `immediate` - Immediate * `-immediate` - Immediate (descending) * `deferred` - Deferred * `-deferred` - Deferred (descending) * `result` - Result * `-result` - Result (descending) * `pk` - Pk * `-pk` - 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
|
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
|
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. \"Normal\" Django Models and Master/Detail models are supported by the ``register_with`` 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 'pk' endpoint_name (str): The name of the final path segment that should identify the ViewSet's collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \"parent_prefix\" 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'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 * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `
|
60
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `app_type` - App type * `-app_type` - App type (descending) * `name` - Name * `-name` - Name (descending) * `versions` - Versions * `-versions` - Versions (descending) * `ttl` - Ttl * `-ttl` - Ttl (descending) * `last_heartbeat` - Last heartbeat * `-last_heartbeat` - Last heartbeat (descending) * `pk` - Pk * `-pk` - 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
|
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. \"Normal\" Django Models and Master/Detail models are supported by the ``register_with`` 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 'pk' endpoint_name (str): The name of the final path segment that should identify the ViewSet's collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \"parent_prefix\" 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'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::
|
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::
|
21
|
-
let(:instance) { PulpcoreClient::
|
20
|
+
describe PulpcoreClient::AppStatusResponse do
|
21
|
+
let(:instance) { PulpcoreClient::AppStatusResponse.new }
|
22
22
|
|
23
|
-
describe 'test an instance of
|
24
|
-
it 'should create an instance of
|
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::
|
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 "
|
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 "
|
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 "
|
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 "
|
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 "
|
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 "
|
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 "
|
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
|