pulpcore_client 3.32.1 → 3.34.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 +9 -5
- data/docs/AccessPoliciesApi.md +7 -1
- data/docs/ApiAppStatusResponse.md +21 -0
- data/docs/ArtifactDistributionResponse.md +8 -8
- data/docs/ArtifactsApi.md +3 -1
- data/docs/ContentApi.md +7 -3
- data/docs/ContentAppStatusResponse.md +3 -1
- data/docs/ContentguardsApi.md +11 -3
- data/docs/ContentguardsContentRedirectApi.md +7 -1
- data/docs/ContentguardsRbacApi.md +7 -1
- data/docs/DistributionsApi.md +11 -3
- data/docs/DistributionsArtifactsApi.md +7 -1
- data/docs/DomainsApi.md +7 -1
- data/docs/ExportersFilesystemApi.md +7 -1
- data/docs/ExportersFilesystemExportsApi.md +1 -1
- data/docs/ExportersPulpApi.md +7 -1
- data/docs/ExportersPulpExportsApi.md +1 -1
- data/docs/GroupsApi.md +3 -1
- data/docs/GroupsRolesApi.md +3 -1
- data/docs/GroupsUsersApi.md +1 -1
- data/docs/ImportersPulpApi.md +7 -1
- data/docs/ImportersPulpImportCheckApi.md +1 -1
- data/docs/ImportersPulpImportsApi.md +1 -1
- data/docs/OrphansApi.md +1 -1
- data/docs/OrphansCleanupApi.md +1 -1
- data/docs/PublicationsApi.md +7 -3
- data/docs/RemotesApi.md +11 -3
- data/docs/RepairApi.md +1 -1
- data/docs/RepositoriesApi.md +11 -3
- data/docs/RepositoriesReclaimSpaceApi.md +1 -1
- data/docs/RepositoryVersionsApi.md +3 -1
- data/docs/RolesApi.md +7 -1
- data/docs/SigningServicesApi.md +3 -1
- data/docs/StatusApi.md +1 -1
- data/docs/StatusResponse.md +4 -2
- data/docs/TaskGroupsApi.md +1 -1
- data/docs/TaskSchedulesApi.md +3 -1
- data/docs/TasksApi.md +9 -1
- data/docs/UploadsApi.md +3 -1
- data/docs/UpstreamPulpsApi.md +1 -1
- data/docs/UsersApi.md +3 -1
- data/docs/UsersRolesApi.md +3 -1
- data/docs/WorkerResponse.md +2 -0
- data/docs/WorkersApi.md +7 -1
- data/lib/pulpcore_client/api/access_policies_api.rb +9 -0
- data/lib/pulpcore_client/api/artifacts_api.rb +3 -0
- data/lib/pulpcore_client/api/content_api.rb +12 -2
- data/lib/pulpcore_client/api/contentguards_api.rb +18 -2
- data/lib/pulpcore_client/api/contentguards_content_redirect_api.rb +9 -0
- data/lib/pulpcore_client/api/contentguards_rbac_api.rb +9 -0
- data/lib/pulpcore_client/api/distributions_api.rb +18 -2
- data/lib/pulpcore_client/api/distributions_artifacts_api.rb +9 -0
- data/lib/pulpcore_client/api/domains_api.rb +9 -0
- data/lib/pulpcore_client/api/exporters_filesystem_api.rb +9 -0
- data/lib/pulpcore_client/api/exporters_pulp_api.rb +9 -0
- data/lib/pulpcore_client/api/groups_api.rb +3 -0
- data/lib/pulpcore_client/api/groups_roles_api.rb +3 -0
- data/lib/pulpcore_client/api/importers_pulp_api.rb +9 -0
- data/lib/pulpcore_client/api/publications_api.rb +12 -2
- data/lib/pulpcore_client/api/remotes_api.rb +18 -2
- data/lib/pulpcore_client/api/repositories_api.rb +18 -2
- data/lib/pulpcore_client/api/repository_versions_api.rb +3 -0
- data/lib/pulpcore_client/api/roles_api.rb +9 -0
- data/lib/pulpcore_client/api/signing_services_api.rb +3 -0
- data/lib/pulpcore_client/api/task_schedules_api.rb +3 -0
- data/lib/pulpcore_client/api/tasks_api.rb +12 -0
- data/lib/pulpcore_client/api/uploads_api.rb +3 -0
- data/lib/pulpcore_client/api/users_api.rb +3 -0
- data/lib/pulpcore_client/api/users_roles_api.rb +3 -0
- data/lib/pulpcore_client/api/workers_api.rb +9 -0
- data/lib/pulpcore_client/configuration.rb +2 -2
- data/lib/pulpcore_client/models/api_app_status_response.rb +230 -0
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +31 -31
- data/lib/pulpcore_client/models/content_app_status_response.rb +16 -4
- data/lib/pulpcore_client/models/status_response.rb +20 -3
- data/lib/pulpcore_client/models/worker_response.rb +13 -1
- data/lib/pulpcore_client/version.rb +1 -1
- data/lib/pulpcore_client.rb +1 -0
- data/spec/api/access_policies_api_spec.rb +3 -0
- data/spec/api/artifacts_api_spec.rb +1 -0
- data/spec/api/content_api_spec.rb +3 -1
- data/spec/api/contentguards_api_spec.rb +5 -1
- data/spec/api/contentguards_content_redirect_api_spec.rb +3 -0
- data/spec/api/contentguards_rbac_api_spec.rb +3 -0
- data/spec/api/distributions_api_spec.rb +5 -1
- data/spec/api/distributions_artifacts_api_spec.rb +3 -0
- data/spec/api/domains_api_spec.rb +3 -0
- data/spec/api/exporters_filesystem_api_spec.rb +3 -0
- data/spec/api/exporters_pulp_api_spec.rb +3 -0
- data/spec/api/groups_api_spec.rb +1 -0
- data/spec/api/groups_roles_api_spec.rb +1 -0
- data/spec/api/importers_pulp_api_spec.rb +3 -0
- data/spec/api/publications_api_spec.rb +3 -1
- data/spec/api/remotes_api_spec.rb +5 -1
- data/spec/api/repositories_api_spec.rb +5 -1
- data/spec/api/repository_versions_api_spec.rb +1 -0
- data/spec/api/roles_api_spec.rb +3 -0
- data/spec/api/signing_services_api_spec.rb +1 -0
- data/spec/api/task_schedules_api_spec.rb +1 -0
- data/spec/api/tasks_api_spec.rb +4 -0
- data/spec/api/uploads_api_spec.rb +1 -0
- data/spec/api/users_api_spec.rb +1 -0
- data/spec/api/users_roles_api_spec.rb +1 -0
- data/spec/api/workers_api_spec.rb +3 -0
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/api_app_status_response_spec.rb +53 -0
- data/spec/models/artifact_distribution_response_spec.rb +7 -7
- data/spec/models/content_app_status_response_spec.rb +6 -0
- data/spec/models/status_response_spec.rb +6 -0
- data/spec/models/worker_response_spec.rb +6 -0
- metadata +6 -2
|
@@ -21,11 +21,15 @@ module PulpcoreClient
|
|
|
21
21
|
# Timestamp of the last time the worker talked to the service.
|
|
22
22
|
attr_accessor :last_heartbeat
|
|
23
23
|
|
|
24
|
+
# Versions of the components installed.
|
|
25
|
+
attr_accessor :versions
|
|
26
|
+
|
|
24
27
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
25
28
|
def self.attribute_map
|
|
26
29
|
{
|
|
27
30
|
:'name' => :'name',
|
|
28
|
-
:'last_heartbeat' => :'last_heartbeat'
|
|
31
|
+
:'last_heartbeat' => :'last_heartbeat',
|
|
32
|
+
:'versions' => :'versions'
|
|
29
33
|
}
|
|
30
34
|
end
|
|
31
35
|
|
|
@@ -33,7 +37,8 @@ module PulpcoreClient
|
|
|
33
37
|
def self.openapi_types
|
|
34
38
|
{
|
|
35
39
|
:'name' => :'String',
|
|
36
|
-
:'last_heartbeat' => :'DateTime'
|
|
40
|
+
:'last_heartbeat' => :'DateTime',
|
|
41
|
+
:'versions' => :'Hash<String, String>'
|
|
37
42
|
}
|
|
38
43
|
end
|
|
39
44
|
|
|
@@ -65,6 +70,12 @@ module PulpcoreClient
|
|
|
65
70
|
if attributes.key?(:'last_heartbeat')
|
|
66
71
|
self.last_heartbeat = attributes[:'last_heartbeat']
|
|
67
72
|
end
|
|
73
|
+
|
|
74
|
+
if attributes.key?(:'versions')
|
|
75
|
+
if (value = attributes[:'versions']).is_a?(Hash)
|
|
76
|
+
self.versions = value
|
|
77
|
+
end
|
|
78
|
+
end
|
|
68
79
|
end
|
|
69
80
|
|
|
70
81
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -86,7 +97,8 @@ module PulpcoreClient
|
|
|
86
97
|
return true if self.equal?(o)
|
|
87
98
|
self.class == o.class &&
|
|
88
99
|
name == o.name &&
|
|
89
|
-
last_heartbeat == o.last_heartbeat
|
|
100
|
+
last_heartbeat == o.last_heartbeat &&
|
|
101
|
+
versions == o.versions
|
|
90
102
|
end
|
|
91
103
|
|
|
92
104
|
# @see the `==` method
|
|
@@ -98,7 +110,7 @@ module PulpcoreClient
|
|
|
98
110
|
# Calculates hash code according to all attributes.
|
|
99
111
|
# @return [Integer] Hash code
|
|
100
112
|
def hash
|
|
101
|
-
[name, last_heartbeat].hash
|
|
113
|
+
[name, last_heartbeat, versions].hash
|
|
102
114
|
end
|
|
103
115
|
|
|
104
116
|
# Builds the object from hash
|
|
@@ -18,10 +18,13 @@ module PulpcoreClient
|
|
|
18
18
|
# Version information of Pulp components
|
|
19
19
|
attr_accessor :versions
|
|
20
20
|
|
|
21
|
-
# List of online workers known to the application. An online worker is actively heartbeating and can respond to new work
|
|
21
|
+
# List of online workers known to the application. An online worker is actively heartbeating and can respond to new work.
|
|
22
22
|
attr_accessor :online_workers
|
|
23
23
|
|
|
24
|
-
# List of online
|
|
24
|
+
# List of online api apps known to the application. An online api app is actively heartbeating and can serve the rest api to clients.
|
|
25
|
+
attr_accessor :online_api_apps
|
|
26
|
+
|
|
27
|
+
# List of online content apps known to the application. An online content app is actively heartbeating and can serve data to clients.
|
|
25
28
|
attr_accessor :online_content_apps
|
|
26
29
|
|
|
27
30
|
# Database connection information
|
|
@@ -44,6 +47,7 @@ module PulpcoreClient
|
|
|
44
47
|
{
|
|
45
48
|
:'versions' => :'versions',
|
|
46
49
|
:'online_workers' => :'online_workers',
|
|
50
|
+
:'online_api_apps' => :'online_api_apps',
|
|
47
51
|
:'online_content_apps' => :'online_content_apps',
|
|
48
52
|
:'database_connection' => :'database_connection',
|
|
49
53
|
:'redis_connection' => :'redis_connection',
|
|
@@ -58,6 +62,7 @@ module PulpcoreClient
|
|
|
58
62
|
{
|
|
59
63
|
:'versions' => :'Array<VersionResponse>',
|
|
60
64
|
:'online_workers' => :'Array<WorkerResponse>',
|
|
65
|
+
:'online_api_apps' => :'Array<ApiAppStatusResponse>',
|
|
61
66
|
:'online_content_apps' => :'Array<ContentAppStatusResponse>',
|
|
62
67
|
:'database_connection' => :'DatabaseConnectionResponse',
|
|
63
68
|
:'redis_connection' => :'RedisConnectionResponse',
|
|
@@ -100,6 +105,12 @@ module PulpcoreClient
|
|
|
100
105
|
end
|
|
101
106
|
end
|
|
102
107
|
|
|
108
|
+
if attributes.key?(:'online_api_apps')
|
|
109
|
+
if (value = attributes[:'online_api_apps']).is_a?(Array)
|
|
110
|
+
self.online_api_apps = value
|
|
111
|
+
end
|
|
112
|
+
end
|
|
113
|
+
|
|
103
114
|
if attributes.key?(:'online_content_apps')
|
|
104
115
|
if (value = attributes[:'online_content_apps']).is_a?(Array)
|
|
105
116
|
self.online_content_apps = value
|
|
@@ -139,6 +150,10 @@ module PulpcoreClient
|
|
|
139
150
|
invalid_properties.push('invalid value for "online_workers", online_workers cannot be nil.')
|
|
140
151
|
end
|
|
141
152
|
|
|
153
|
+
if @online_api_apps.nil?
|
|
154
|
+
invalid_properties.push('invalid value for "online_api_apps", online_api_apps cannot be nil.')
|
|
155
|
+
end
|
|
156
|
+
|
|
142
157
|
if @online_content_apps.nil?
|
|
143
158
|
invalid_properties.push('invalid value for "online_content_apps", online_content_apps cannot be nil.')
|
|
144
159
|
end
|
|
@@ -163,6 +178,7 @@ module PulpcoreClient
|
|
|
163
178
|
def valid?
|
|
164
179
|
return false if @versions.nil?
|
|
165
180
|
return false if @online_workers.nil?
|
|
181
|
+
return false if @online_api_apps.nil?
|
|
166
182
|
return false if @online_content_apps.nil?
|
|
167
183
|
return false if @database_connection.nil?
|
|
168
184
|
return false if @content_settings.nil?
|
|
@@ -177,6 +193,7 @@ module PulpcoreClient
|
|
|
177
193
|
self.class == o.class &&
|
|
178
194
|
versions == o.versions &&
|
|
179
195
|
online_workers == o.online_workers &&
|
|
196
|
+
online_api_apps == o.online_api_apps &&
|
|
180
197
|
online_content_apps == o.online_content_apps &&
|
|
181
198
|
database_connection == o.database_connection &&
|
|
182
199
|
redis_connection == o.redis_connection &&
|
|
@@ -194,7 +211,7 @@ module PulpcoreClient
|
|
|
194
211
|
# Calculates hash code according to all attributes.
|
|
195
212
|
# @return [Integer] Hash code
|
|
196
213
|
def hash
|
|
197
|
-
[versions, online_workers, online_content_apps, database_connection, redis_connection, storage, content_settings, domain_enabled].hash
|
|
214
|
+
[versions, online_workers, online_api_apps, online_content_apps, database_connection, redis_connection, storage, content_settings, domain_enabled].hash
|
|
198
215
|
end
|
|
199
216
|
|
|
200
217
|
# Builds the object from hash
|
|
@@ -26,6 +26,9 @@ module PulpcoreClient
|
|
|
26
26
|
# Timestamp of the last time the worker talked to the service.
|
|
27
27
|
attr_accessor :last_heartbeat
|
|
28
28
|
|
|
29
|
+
# Versions of the components installed.
|
|
30
|
+
attr_accessor :versions
|
|
31
|
+
|
|
29
32
|
# The task this worker is currently executing, or empty if the worker is not currently assigned to a task.
|
|
30
33
|
attr_accessor :current_task
|
|
31
34
|
|
|
@@ -36,6 +39,7 @@ module PulpcoreClient
|
|
|
36
39
|
:'pulp_created' => :'pulp_created',
|
|
37
40
|
:'name' => :'name',
|
|
38
41
|
:'last_heartbeat' => :'last_heartbeat',
|
|
42
|
+
:'versions' => :'versions',
|
|
39
43
|
:'current_task' => :'current_task'
|
|
40
44
|
}
|
|
41
45
|
end
|
|
@@ -47,6 +51,7 @@ module PulpcoreClient
|
|
|
47
51
|
:'pulp_created' => :'DateTime',
|
|
48
52
|
:'name' => :'String',
|
|
49
53
|
:'last_heartbeat' => :'DateTime',
|
|
54
|
+
:'versions' => :'Hash<String, String>',
|
|
50
55
|
:'current_task' => :'String'
|
|
51
56
|
}
|
|
52
57
|
end
|
|
@@ -88,6 +93,12 @@ module PulpcoreClient
|
|
|
88
93
|
self.last_heartbeat = attributes[:'last_heartbeat']
|
|
89
94
|
end
|
|
90
95
|
|
|
96
|
+
if attributes.key?(:'versions')
|
|
97
|
+
if (value = attributes[:'versions']).is_a?(Hash)
|
|
98
|
+
self.versions = value
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
|
|
91
102
|
if attributes.key?(:'current_task')
|
|
92
103
|
self.current_task = attributes[:'current_task']
|
|
93
104
|
end
|
|
@@ -115,6 +126,7 @@ module PulpcoreClient
|
|
|
115
126
|
pulp_created == o.pulp_created &&
|
|
116
127
|
name == o.name &&
|
|
117
128
|
last_heartbeat == o.last_heartbeat &&
|
|
129
|
+
versions == o.versions &&
|
|
118
130
|
current_task == o.current_task
|
|
119
131
|
end
|
|
120
132
|
|
|
@@ -127,7 +139,7 @@ module PulpcoreClient
|
|
|
127
139
|
# Calculates hash code according to all attributes.
|
|
128
140
|
# @return [Integer] Hash code
|
|
129
141
|
def hash
|
|
130
|
-
[pulp_href, pulp_created, name, last_heartbeat, current_task].hash
|
|
142
|
+
[pulp_href, pulp_created, name, last_heartbeat, versions, current_task].hash
|
|
131
143
|
end
|
|
132
144
|
|
|
133
145
|
# Builds the object from hash
|
data/lib/pulpcore_client.rb
CHANGED
|
@@ -19,6 +19,7 @@ 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
23
|
require 'pulpcore_client/models/artifact'
|
|
23
24
|
require 'pulpcore_client/models/artifact_distribution_response'
|
|
24
25
|
require 'pulpcore_client/models/artifact_response'
|
|
@@ -42,10 +42,13 @@ describe 'AccessPoliciesApi' do
|
|
|
42
42
|
# @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) * `creation_hooks` - Creation hooks * `-creation_hooks` - Creation hooks (descending) * `statements` - Statements * `-statements` - Statements (descending) * `viewset_name` - Viewset name * `-viewset_name` - Viewset name (descending) * `customized` - Customized * `-customized` - Customized (descending) * `queryset_scoping` - Queryset scoping * `-queryset_scoping` - Queryset scoping (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
43
43
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
44
44
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
45
|
+
# @option opts [String] :q
|
|
45
46
|
# @option opts [String] :viewset_name Filter results where viewset_name matches value
|
|
46
47
|
# @option opts [String] :viewset_name__contains Filter results where viewset_name contains value
|
|
47
48
|
# @option opts [String] :viewset_name__icontains Filter results where viewset_name contains value
|
|
49
|
+
# @option opts [String] :viewset_name__iexact Filter results where viewset_name matches value
|
|
48
50
|
# @option opts [Array<String>] :viewset_name__in Filter results where viewset_name is in a comma-separated list of values
|
|
51
|
+
# @option opts [String] :viewset_name__istartswith Filter results where viewset_name starts with value
|
|
49
52
|
# @option opts [String] :viewset_name__startswith Filter results where viewset_name starts with value
|
|
50
53
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
51
54
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
@@ -73,6 +73,7 @@ describe 'ArtifactsApi' do
|
|
|
73
73
|
# @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) * `file` - File * `-file` - File (descending) * `size` - Size * `-size` - Size (descending) * `md5` - Md5 * `-md5` - Md5 (descending) * `sha1` - Sha1 * `-sha1` - Sha1 (descending) * `sha224` - Sha224 * `-sha224` - Sha224 (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `sha384` - Sha384 * `-sha384` - Sha384 (descending) * `sha512` - Sha512 * `-sha512` - Sha512 (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
74
74
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
75
75
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
76
|
+
# @option opts [String] :q
|
|
76
77
|
# @option opts [String] :repository_version Repository Version referenced by HREF
|
|
77
78
|
# @option opts [String] :sha1 Filter results where sha1 matches value
|
|
78
79
|
# @option opts [String] :sha224 Filter results where sha224 matches value
|
|
@@ -41,7 +41,9 @@ describe 'ContentApi' do
|
|
|
41
41
|
# @option opts [Array<String>] :ordering Ordering * `pk` - Pk * `-pk` - Pk (descending)
|
|
42
42
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
43
43
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
44
|
-
# @option opts [
|
|
44
|
+
# @option opts [String] :pulp_type Pulp type * `core.publishedmetadata` - core.publishedmetadata * `file.file` - file.file
|
|
45
|
+
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `core.publishedmetadata` - core.publishedmetadata * `file.file` - file.file
|
|
46
|
+
# @option opts [String] :q
|
|
45
47
|
# @option opts [String] :repository_version Repository Version referenced by HREF
|
|
46
48
|
# @option opts [String] :repository_version_added Repository Version referenced by HREF
|
|
47
49
|
# @option opts [String] :repository_version_removed Repository Version referenced by HREF
|
|
@@ -40,13 +40,17 @@ describe 'ContentguardsApi' do
|
|
|
40
40
|
# @option opts [String] :name Filter results where name matches value
|
|
41
41
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
42
42
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
43
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
43
44
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
45
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
44
46
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
45
47
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
46
48
|
# @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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `description` - Description * `-description` - Description (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
47
49
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
48
50
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
49
|
-
# @option opts [
|
|
51
|
+
# @option opts [String] :pulp_type Pulp type * `core.rbac` - core.rbac * `core.content_redirect` - core.content_redirect * `certguard.rhsm` - certguard.rhsm * `certguard.x509` - certguard.x509
|
|
52
|
+
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `core.rbac` - core.rbac * `core.content_redirect` - core.content_redirect * `certguard.rhsm` - certguard.rhsm * `certguard.x509` - certguard.x509
|
|
53
|
+
# @option opts [String] :q
|
|
50
54
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
51
55
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
52
56
|
# @return [PaginatedContentGuardResponseList]
|
|
@@ -77,12 +77,15 @@ describe 'ContentguardsContentRedirectApi' do
|
|
|
77
77
|
# @option opts [String] :name Filter results where name matches value
|
|
78
78
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
79
79
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
80
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
80
81
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
82
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
81
83
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
82
84
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
83
85
|
# @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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `description` - Description * `-description` - Description (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
84
86
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
85
87
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
88
|
+
# @option opts [String] :q
|
|
86
89
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
87
90
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
88
91
|
# @return [PaginatedContentRedirectContentGuardResponseList]
|
|
@@ -77,12 +77,15 @@ describe 'ContentguardsRbacApi' do
|
|
|
77
77
|
# @option opts [String] :name Filter results where name matches value
|
|
78
78
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
79
79
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
80
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
80
81
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
82
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
81
83
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
82
84
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
83
85
|
# @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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `description` - Description * `-description` - Description (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
84
86
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
85
87
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
88
|
+
# @option opts [String] :q
|
|
86
89
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
87
90
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
88
91
|
# @return [PaginatedRBACContentGuardResponseList]
|
|
@@ -44,14 +44,18 @@ describe 'DistributionsApi' do
|
|
|
44
44
|
# @option opts [String] :name Filter results where name matches value
|
|
45
45
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
46
46
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
47
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
47
48
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
49
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
48
50
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
49
51
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
50
52
|
# @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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
51
53
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
52
54
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
53
55
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
54
|
-
# @option opts [
|
|
56
|
+
# @option opts [String] :pulp_type Pulp type * `core.artifact` - core.artifact * `file.file` - file.file
|
|
57
|
+
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `core.artifact` - core.artifact * `file.file` - file.file
|
|
58
|
+
# @option opts [String] :q
|
|
55
59
|
# @option opts [String] :repository Filter results where repository matches value
|
|
56
60
|
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
|
57
61
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
|
@@ -44,13 +44,16 @@ describe 'DistributionsArtifactsApi' do
|
|
|
44
44
|
# @option opts [String] :name Filter results where name matches value
|
|
45
45
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
46
46
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
47
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
47
48
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
49
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
48
50
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
49
51
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
50
52
|
# @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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
51
53
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
52
54
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
53
55
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
56
|
+
# @option opts [String] :q
|
|
54
57
|
# @option opts [String] :repository Filter results where repository matches value
|
|
55
58
|
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
|
56
59
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
|
@@ -64,12 +64,15 @@ describe 'DomainsApi' do
|
|
|
64
64
|
# @option opts [String] :name Filter results where name matches value
|
|
65
65
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
66
66
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
67
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
67
68
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
69
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
68
70
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
69
71
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
70
72
|
# @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) * `description` - Description * `-description` - Description (descending) * `storage_class` - Storage class * `-storage_class` - Storage class (descending) * `storage_settings` - Storage settings * `-storage_settings` - Storage settings (descending) * `redirect_to_object_storage` - Redirect to object storage * `-redirect_to_object_storage` - Redirect to object storage (descending) * `hide_guarded_distributions` - Hide guarded distributions * `-hide_guarded_distributions` - Hide guarded distributions (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
71
73
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
72
74
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
75
|
+
# @option opts [String] :q
|
|
73
76
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
74
77
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
75
78
|
# @return [PaginatedDomainResponseList]
|
|
@@ -64,12 +64,15 @@ describe 'ExportersFilesystemApi' do
|
|
|
64
64
|
# @option opts [String] :name Filter results where name matches value
|
|
65
65
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
66
66
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
67
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
67
68
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
69
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
68
70
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
69
71
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
70
72
|
# @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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `path` - Path * `-path` - Path (descending) * `method` - Method * `-method` - Method (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
71
73
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
72
74
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
75
|
+
# @option opts [String] :q
|
|
73
76
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
74
77
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
75
78
|
# @return [PaginatedFilesystemExporterResponseList]
|
|
@@ -64,12 +64,15 @@ describe 'ExportersPulpApi' do
|
|
|
64
64
|
# @option opts [String] :name Filter results where name matches value
|
|
65
65
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
66
66
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
67
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
67
68
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
69
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
68
70
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
69
71
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
70
72
|
# @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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `path` - Path * `-path` - Path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
71
73
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
72
74
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
75
|
+
# @option opts [String] :q
|
|
73
76
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
74
77
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
75
78
|
# @return [PaginatedPulpExporterResponseList]
|
data/spec/api/groups_api_spec.rb
CHANGED
|
@@ -85,6 +85,7 @@ describe 'GroupsApi' do
|
|
|
85
85
|
# @option opts [Array<String>] :ordering Ordering * `id` - Id * `-id` - Id (descending) * `name` - Name * `-name` - Name (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
86
86
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
87
87
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
88
|
+
# @option opts [String] :q
|
|
88
89
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
89
90
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
90
91
|
# @return [PaginatedGroupResponseList]
|
|
@@ -69,6 +69,7 @@ describe 'GroupsRolesApi' do
|
|
|
69
69
|
# @option opts [Array<String>] :ordering Ordering * `role` - Role * `-role` - Role (descending) * `description` - Description * `-description` - Description (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
70
70
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
71
71
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
72
|
+
# @option opts [String] :q
|
|
72
73
|
# @option opts [String] :role
|
|
73
74
|
# @option opts [String] :role__contains
|
|
74
75
|
# @option opts [String] :role__icontains
|
|
@@ -64,12 +64,15 @@ describe 'ImportersPulpApi' do
|
|
|
64
64
|
# @option opts [String] :name Filter results where name matches value
|
|
65
65
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
66
66
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
67
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
67
68
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
69
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
68
70
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
69
71
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
70
72
|
# @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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
71
73
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
72
74
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
75
|
+
# @option opts [String] :q
|
|
73
76
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
74
77
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
75
78
|
# @return [PaginatedPulpImporterResponseList]
|
|
@@ -49,7 +49,9 @@ describe 'PublicationsApi' do
|
|
|
49
49
|
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
|
50
50
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
51
51
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
52
|
-
# @option opts [
|
|
52
|
+
# @option opts [String] :pulp_type Pulp type * `file.file` - file.file
|
|
53
|
+
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `file.file` - file.file
|
|
54
|
+
# @option opts [String] :q
|
|
53
55
|
# @option opts [String] :repository Repository referenced by HREF
|
|
54
56
|
# @option opts [String] :repository_version Repository Version referenced by HREF
|
|
55
57
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
@@ -40,7 +40,9 @@ describe 'RemotesApi' do
|
|
|
40
40
|
# @option opts [String] :name Filter results where name matches value
|
|
41
41
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
42
42
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
43
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
43
44
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
45
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
44
46
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
45
47
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
46
48
|
# @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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
@@ -53,7 +55,9 @@ describe 'RemotesApi' do
|
|
|
53
55
|
# @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
|
|
54
56
|
# @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
|
|
55
57
|
# @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
|
|
56
|
-
# @option opts [
|
|
58
|
+
# @option opts [String] :pulp_type Pulp type * `file.file` - file.file
|
|
59
|
+
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `file.file` - file.file
|
|
60
|
+
# @option opts [String] :q
|
|
57
61
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
58
62
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
59
63
|
# @return [PaginatedRemoteResponseList]
|
|
@@ -41,14 +41,18 @@ describe 'RepositoriesApi' do
|
|
|
41
41
|
# @option opts [String] :name Filter results where name matches value
|
|
42
42
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
43
43
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
44
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
44
45
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
46
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
45
47
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
46
48
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
47
49
|
# @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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
48
50
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
49
51
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
50
52
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
51
|
-
# @option opts [
|
|
53
|
+
# @option opts [String] :pulp_type Pulp type * `file.file` - file.file
|
|
54
|
+
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `file.file` - file.file
|
|
55
|
+
# @option opts [String] :q
|
|
52
56
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
|
53
57
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
|
54
58
|
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
|
@@ -54,6 +54,7 @@ describe 'RepositoryVersionsApi' do
|
|
|
54
54
|
# @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
|
55
55
|
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
|
56
56
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
57
|
+
# @option opts [String] :q
|
|
57
58
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
58
59
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
59
60
|
# @return [PaginatedRepositoryVersionResponseList]
|
data/spec/api/roles_api_spec.rb
CHANGED
|
@@ -71,12 +71,15 @@ describe 'RolesApi' do
|
|
|
71
71
|
# @option opts [String] :name Filter results where name matches value
|
|
72
72
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
73
73
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
74
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
74
75
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
76
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
75
77
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
76
78
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
77
79
|
# @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) * `description` - Description * `-description` - Description (descending) * `locked` - Locked * `-locked` - Locked (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
78
80
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
79
81
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
82
|
+
# @option opts [String] :q
|
|
80
83
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
81
84
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
82
85
|
# @return [PaginatedRoleResponseList]
|
|
@@ -42,6 +42,7 @@ describe 'SigningServicesApi' do
|
|
|
42
42
|
# @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) * `public_key` - Public key * `-public_key` - Public key (descending) * `pubkey_fingerprint` - Pubkey fingerprint * `-pubkey_fingerprint` - Pubkey fingerprint (descending) * `script` - Script * `-script` - Script (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
43
43
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
44
44
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
45
|
+
# @option opts [String] :q
|
|
45
46
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
46
47
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
47
48
|
# @return [PaginatedSigningServiceResponseList]
|
|
@@ -56,6 +56,7 @@ describe 'TaskSchedulesApi' do
|
|
|
56
56
|
# @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) * `next_dispatch` - Next dispatch * `-next_dispatch` - Next dispatch (descending) * `dispatch_interval` - Dispatch interval * `-dispatch_interval` - Dispatch interval (descending) * `task_name` - Task name * `-task_name` - Task name (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
57
57
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
58
58
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
59
|
+
# @option opts [String] :q
|
|
59
60
|
# @option opts [String] :task_name Filter results where task_name matches value
|
|
60
61
|
# @option opts [String] :task_name__contains Filter results where task_name contains value
|
|
61
62
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
data/spec/api/tasks_api_spec.rb
CHANGED
|
@@ -77,11 +77,13 @@ describe 'TasksApi' do
|
|
|
77
77
|
# @option opts [String] :name Filter results where name matches value
|
|
78
78
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
79
79
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
80
|
+
# @option opts [String] :name__ne Filter results where name not equal to value
|
|
80
81
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
81
82
|
# @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) * `started_at` - Started at * `-started_at` - Started at (descending) * `finished_at` - Finished at * `-finished_at` - Finished at (descending) * `error` - Error * `-error` - Error (descending) * `args` - Args * `-args` - Args (descending) * `kwargs` - Kwargs * `-kwargs` - Kwargs (descending) * `reserved_resources_record` - Reserved resources record * `-reserved_resources_record` - Reserved resources record (descending) * `versions` - Versions * `-versions` - Versions (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
82
83
|
# @option opts [String] :parent_task Filter results where parent_task matches value
|
|
83
84
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
84
85
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
86
|
+
# @option opts [String] :q
|
|
85
87
|
# @option opts [String] :reserved_resources
|
|
86
88
|
# @option opts [Array<String>] :reserved_resources__in Multiple values may be separated by commas.
|
|
87
89
|
# @option opts [Array<String>] :reserved_resources_record
|
|
@@ -95,9 +97,11 @@ describe 'TasksApi' do
|
|
|
95
97
|
# @option opts [Array<DateTime>] :started_at__range Filter results where started_at is between two comma separated values
|
|
96
98
|
# @option opts [String] :state Filter results where state matches value * `waiting` - Waiting * `skipped` - Skipped * `running` - Running * `completed` - Completed * `failed` - Failed * `canceled` - Canceled * `canceling` - Canceling
|
|
97
99
|
# @option opts [Array<String>] :state__in Filter results where state is in a comma-separated list of values
|
|
100
|
+
# @option opts [String] :state__ne Filter results where state not equal to value
|
|
98
101
|
# @option opts [String] :task_group Filter results where task_group matches value
|
|
99
102
|
# @option opts [String] :worker Filter results where worker matches value
|
|
100
103
|
# @option opts [Array<String>] :worker__in Filter results where worker is in a comma-separated list of values
|
|
104
|
+
# @option opts [Boolean] :worker__isnull Filter results where worker has a null value
|
|
101
105
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
102
106
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
103
107
|
# @return [PaginatedTaskResponseList]
|
|
@@ -91,6 +91,7 @@ describe 'UploadsApi' do
|
|
|
91
91
|
# @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) * `size` - Size * `-size` - Size (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
92
92
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
93
93
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
94
|
+
# @option opts [String] :q
|
|
94
95
|
# @option opts [Integer] :size Filter results where size matches value
|
|
95
96
|
# @option opts [Integer] :size__gt Filter results where size is greater than value
|
|
96
97
|
# @option opts [Integer] :size__lt Filter results where size is less than value
|
data/spec/api/users_api_spec.rb
CHANGED
|
@@ -82,6 +82,7 @@ describe 'UsersApi' do
|
|
|
82
82
|
# @option opts [Array<String>] :ordering Ordering * `id` - Id * `-id` - Id (descending) * `password` - Password * `-password` - Password (descending) * `last_login` - Last login * `-last_login` - Last login (descending) * `is_superuser` - Is superuser * `-is_superuser` - Is superuser (descending) * `username` - Username * `-username` - Username (descending) * `first_name` - First name * `-first_name` - First name (descending) * `last_name` - Last name * `-last_name` - Last name (descending) * `email` - Email * `-email` - Email (descending) * `is_staff` - Is staff * `-is_staff` - Is staff (descending) * `is_active` - Is active * `-is_active` - Is active (descending) * `date_joined` - Date joined * `-date_joined` - Date joined (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
83
83
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
84
84
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
85
|
+
# @option opts [String] :q
|
|
85
86
|
# @option opts [String] :username Filter results where username matches value
|
|
86
87
|
# @option opts [String] :username__contains Filter results where username contains value
|
|
87
88
|
# @option opts [String] :username__icontains Filter results where username contains value
|