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.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +9 -5
  3. data/docs/AccessPoliciesApi.md +7 -1
  4. data/docs/ApiAppStatusResponse.md +21 -0
  5. data/docs/ArtifactDistributionResponse.md +8 -8
  6. data/docs/ArtifactsApi.md +3 -1
  7. data/docs/ContentApi.md +7 -3
  8. data/docs/ContentAppStatusResponse.md +3 -1
  9. data/docs/ContentguardsApi.md +11 -3
  10. data/docs/ContentguardsContentRedirectApi.md +7 -1
  11. data/docs/ContentguardsRbacApi.md +7 -1
  12. data/docs/DistributionsApi.md +11 -3
  13. data/docs/DistributionsArtifactsApi.md +7 -1
  14. data/docs/DomainsApi.md +7 -1
  15. data/docs/ExportersFilesystemApi.md +7 -1
  16. data/docs/ExportersFilesystemExportsApi.md +1 -1
  17. data/docs/ExportersPulpApi.md +7 -1
  18. data/docs/ExportersPulpExportsApi.md +1 -1
  19. data/docs/GroupsApi.md +3 -1
  20. data/docs/GroupsRolesApi.md +3 -1
  21. data/docs/GroupsUsersApi.md +1 -1
  22. data/docs/ImportersPulpApi.md +7 -1
  23. data/docs/ImportersPulpImportCheckApi.md +1 -1
  24. data/docs/ImportersPulpImportsApi.md +1 -1
  25. data/docs/OrphansApi.md +1 -1
  26. data/docs/OrphansCleanupApi.md +1 -1
  27. data/docs/PublicationsApi.md +7 -3
  28. data/docs/RemotesApi.md +11 -3
  29. data/docs/RepairApi.md +1 -1
  30. data/docs/RepositoriesApi.md +11 -3
  31. data/docs/RepositoriesReclaimSpaceApi.md +1 -1
  32. data/docs/RepositoryVersionsApi.md +3 -1
  33. data/docs/RolesApi.md +7 -1
  34. data/docs/SigningServicesApi.md +3 -1
  35. data/docs/StatusApi.md +1 -1
  36. data/docs/StatusResponse.md +4 -2
  37. data/docs/TaskGroupsApi.md +1 -1
  38. data/docs/TaskSchedulesApi.md +3 -1
  39. data/docs/TasksApi.md +9 -1
  40. data/docs/UploadsApi.md +3 -1
  41. data/docs/UpstreamPulpsApi.md +1 -1
  42. data/docs/UsersApi.md +3 -1
  43. data/docs/UsersRolesApi.md +3 -1
  44. data/docs/WorkerResponse.md +2 -0
  45. data/docs/WorkersApi.md +7 -1
  46. data/lib/pulpcore_client/api/access_policies_api.rb +9 -0
  47. data/lib/pulpcore_client/api/artifacts_api.rb +3 -0
  48. data/lib/pulpcore_client/api/content_api.rb +12 -2
  49. data/lib/pulpcore_client/api/contentguards_api.rb +18 -2
  50. data/lib/pulpcore_client/api/contentguards_content_redirect_api.rb +9 -0
  51. data/lib/pulpcore_client/api/contentguards_rbac_api.rb +9 -0
  52. data/lib/pulpcore_client/api/distributions_api.rb +18 -2
  53. data/lib/pulpcore_client/api/distributions_artifacts_api.rb +9 -0
  54. data/lib/pulpcore_client/api/domains_api.rb +9 -0
  55. data/lib/pulpcore_client/api/exporters_filesystem_api.rb +9 -0
  56. data/lib/pulpcore_client/api/exporters_pulp_api.rb +9 -0
  57. data/lib/pulpcore_client/api/groups_api.rb +3 -0
  58. data/lib/pulpcore_client/api/groups_roles_api.rb +3 -0
  59. data/lib/pulpcore_client/api/importers_pulp_api.rb +9 -0
  60. data/lib/pulpcore_client/api/publications_api.rb +12 -2
  61. data/lib/pulpcore_client/api/remotes_api.rb +18 -2
  62. data/lib/pulpcore_client/api/repositories_api.rb +18 -2
  63. data/lib/pulpcore_client/api/repository_versions_api.rb +3 -0
  64. data/lib/pulpcore_client/api/roles_api.rb +9 -0
  65. data/lib/pulpcore_client/api/signing_services_api.rb +3 -0
  66. data/lib/pulpcore_client/api/task_schedules_api.rb +3 -0
  67. data/lib/pulpcore_client/api/tasks_api.rb +12 -0
  68. data/lib/pulpcore_client/api/uploads_api.rb +3 -0
  69. data/lib/pulpcore_client/api/users_api.rb +3 -0
  70. data/lib/pulpcore_client/api/users_roles_api.rb +3 -0
  71. data/lib/pulpcore_client/api/workers_api.rb +9 -0
  72. data/lib/pulpcore_client/configuration.rb +2 -2
  73. data/lib/pulpcore_client/models/api_app_status_response.rb +230 -0
  74. data/lib/pulpcore_client/models/artifact_distribution_response.rb +31 -31
  75. data/lib/pulpcore_client/models/content_app_status_response.rb +16 -4
  76. data/lib/pulpcore_client/models/status_response.rb +20 -3
  77. data/lib/pulpcore_client/models/worker_response.rb +13 -1
  78. data/lib/pulpcore_client/version.rb +1 -1
  79. data/lib/pulpcore_client.rb +1 -0
  80. data/spec/api/access_policies_api_spec.rb +3 -0
  81. data/spec/api/artifacts_api_spec.rb +1 -0
  82. data/spec/api/content_api_spec.rb +3 -1
  83. data/spec/api/contentguards_api_spec.rb +5 -1
  84. data/spec/api/contentguards_content_redirect_api_spec.rb +3 -0
  85. data/spec/api/contentguards_rbac_api_spec.rb +3 -0
  86. data/spec/api/distributions_api_spec.rb +5 -1
  87. data/spec/api/distributions_artifacts_api_spec.rb +3 -0
  88. data/spec/api/domains_api_spec.rb +3 -0
  89. data/spec/api/exporters_filesystem_api_spec.rb +3 -0
  90. data/spec/api/exporters_pulp_api_spec.rb +3 -0
  91. data/spec/api/groups_api_spec.rb +1 -0
  92. data/spec/api/groups_roles_api_spec.rb +1 -0
  93. data/spec/api/importers_pulp_api_spec.rb +3 -0
  94. data/spec/api/publications_api_spec.rb +3 -1
  95. data/spec/api/remotes_api_spec.rb +5 -1
  96. data/spec/api/repositories_api_spec.rb +5 -1
  97. data/spec/api/repository_versions_api_spec.rb +1 -0
  98. data/spec/api/roles_api_spec.rb +3 -0
  99. data/spec/api/signing_services_api_spec.rb +1 -0
  100. data/spec/api/task_schedules_api_spec.rb +1 -0
  101. data/spec/api/tasks_api_spec.rb +4 -0
  102. data/spec/api/uploads_api_spec.rb +1 -0
  103. data/spec/api/users_api_spec.rb +1 -0
  104. data/spec/api/users_roles_api_spec.rb +1 -0
  105. data/spec/api/workers_api_spec.rb +3 -0
  106. data/spec/configuration_spec.rb +3 -3
  107. data/spec/models/api_app_status_response_spec.rb +53 -0
  108. data/spec/models/artifact_distribution_response_spec.rb +7 -7
  109. data/spec/models/content_app_status_response_spec.rb +6 -0
  110. data/spec/models/status_response_spec.rb +6 -0
  111. data/spec/models/worker_response_spec.rb +6 -0
  112. 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 content apps known to the application. An online content app is actively heartbeating and can serve data to clients
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
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpcoreClient
14
- VERSION = '3.32.1'
14
+ VERSION = '3.34.0'
15
15
  end
@@ -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 * &#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;creation_hooks&#x60; - Creation hooks * &#x60;-creation_hooks&#x60; - Creation hooks (descending) * &#x60;statements&#x60; - Statements * &#x60;-statements&#x60; - Statements (descending) * &#x60;viewset_name&#x60; - Viewset name * &#x60;-viewset_name&#x60; - Viewset name (descending) * &#x60;customized&#x60; - Customized * &#x60;-customized&#x60; - Customized (descending) * &#x60;queryset_scoping&#x60; - Queryset scoping * &#x60;-queryset_scoping&#x60; - Queryset scoping (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#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;file&#x60; - File * &#x60;-file&#x60; - File (descending) * &#x60;size&#x60; - Size * &#x60;-size&#x60; - Size (descending) * &#x60;md5&#x60; - Md5 * &#x60;-md5&#x60; - Md5 (descending) * &#x60;sha1&#x60; - Sha1 * &#x60;-sha1&#x60; - Sha1 (descending) * &#x60;sha224&#x60; - Sha224 * &#x60;-sha224&#x60; - Sha224 (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;sha384&#x60; - Sha384 * &#x60;-sha384&#x60; - Sha384 (descending) * &#x60;sha512&#x60; - Sha512 * &#x60;-sha512&#x60; - Sha512 (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 [Array<String>] :pulp_type__in Pulp type is in * &#x60;core.publishedmetadata&#x60; - core.publishedmetadata * &#x60;file.file&#x60; - file.file
44
+ # @option opts [String] :pulp_type Pulp type * &#x60;core.publishedmetadata&#x60; - core.publishedmetadata * &#x60;file.file&#x60; - file.file
45
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;core.publishedmetadata&#x60; - core.publishedmetadata * &#x60;file.file&#x60; - 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 * &#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;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 [Array<String>] :pulp_type__in Pulp type is in * &#x60;core.rbac&#x60; - core.rbac * &#x60;core.content_redirect&#x60; - core.content_redirect * &#x60;certguard.rhsm&#x60; - certguard.rhsm * &#x60;certguard.x509&#x60; - certguard.x509
51
+ # @option opts [String] :pulp_type Pulp type * &#x60;core.rbac&#x60; - core.rbac * &#x60;core.content_redirect&#x60; - core.content_redirect * &#x60;certguard.rhsm&#x60; - certguard.rhsm * &#x60;certguard.x509&#x60; - certguard.x509
52
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;core.rbac&#x60; - core.rbac * &#x60;core.content_redirect&#x60; - core.content_redirect * &#x60;certguard.rhsm&#x60; - certguard.rhsm * &#x60;certguard.x509&#x60; - 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 * &#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;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#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;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#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;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 [Array<String>] :pulp_type__in Pulp type is in * &#x60;core.artifact&#x60; - core.artifact * &#x60;file.file&#x60; - file.file
56
+ # @option opts [String] :pulp_type Pulp type * &#x60;core.artifact&#x60; - core.artifact * &#x60;file.file&#x60; - file.file
57
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;core.artifact&#x60; - core.artifact * &#x60;file.file&#x60; - 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 * &#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;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#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;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;storage_class&#x60; - Storage class * &#x60;-storage_class&#x60; - Storage class (descending) * &#x60;storage_settings&#x60; - Storage settings * &#x60;-storage_settings&#x60; - Storage settings (descending) * &#x60;redirect_to_object_storage&#x60; - Redirect to object storage * &#x60;-redirect_to_object_storage&#x60; - Redirect to object storage (descending) * &#x60;hide_guarded_distributions&#x60; - Hide guarded distributions * &#x60;-hide_guarded_distributions&#x60; - Hide guarded distributions (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#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;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;path&#x60; - Path * &#x60;-path&#x60; - Path (descending) * &#x60;method&#x60; - Method * &#x60;-method&#x60; - Method (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#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;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;path&#x60; - Path * &#x60;-path&#x60; - Path (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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]
@@ -85,6 +85,7 @@ describe 'GroupsApi' do
85
85
  # @option opts [Array<String>] :ordering Ordering * &#x60;id&#x60; - Id * &#x60;-id&#x60; - Id (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;role&#x60; - Role * &#x60;-role&#x60; - Role (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#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;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 [Array<String>] :pulp_type__in Pulp type is in * &#x60;file.file&#x60; - file.file
52
+ # @option opts [String] :pulp_type Pulp type * &#x60;file.file&#x60; - file.file
53
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;file.file&#x60; - 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 * &#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;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;url&#x60; - Url * &#x60;-url&#x60; - Url (descending) * &#x60;ca_cert&#x60; - Ca cert * &#x60;-ca_cert&#x60; - Ca cert (descending) * &#x60;client_cert&#x60; - Client cert * &#x60;-client_cert&#x60; - Client cert (descending) * &#x60;client_key&#x60; - Client key * &#x60;-client_key&#x60; - Client key (descending) * &#x60;tls_validation&#x60; - Tls validation * &#x60;-tls_validation&#x60; - Tls validation (descending) * &#x60;username&#x60; - Username * &#x60;-username&#x60; - Username (descending) * &#x60;password&#x60; - Password * &#x60;-password&#x60; - Password (descending) * &#x60;proxy_url&#x60; - Proxy url * &#x60;-proxy_url&#x60; - Proxy url (descending) * &#x60;proxy_username&#x60; - Proxy username * &#x60;-proxy_username&#x60; - Proxy username (descending) * &#x60;proxy_password&#x60; - Proxy password * &#x60;-proxy_password&#x60; - Proxy password (descending) * &#x60;download_concurrency&#x60; - Download concurrency * &#x60;-download_concurrency&#x60; - Download concurrency (descending) * &#x60;max_retries&#x60; - Max retries * &#x60;-max_retries&#x60; - Max retries (descending) * &#x60;policy&#x60; - Policy * &#x60;-policy&#x60; - Policy (descending) * &#x60;total_timeout&#x60; - Total timeout * &#x60;-total_timeout&#x60; - Total timeout (descending) * &#x60;connect_timeout&#x60; - Connect timeout * &#x60;-connect_timeout&#x60; - Connect timeout (descending) * &#x60;sock_connect_timeout&#x60; - Sock connect timeout * &#x60;-sock_connect_timeout&#x60; - Sock connect timeout (descending) * &#x60;sock_read_timeout&#x60; - Sock read timeout * &#x60;-sock_read_timeout&#x60; - Sock read timeout (descending) * &#x60;headers&#x60; - Headers * &#x60;-headers&#x60; - Headers (descending) * &#x60;rate_limit&#x60; - Rate limit * &#x60;-rate_limit&#x60; - Rate limit (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 [Array<String>] :pulp_type__in Pulp type is in * &#x60;file.file&#x60; - file.file
58
+ # @option opts [String] :pulp_type Pulp type * &#x60;file.file&#x60; - file.file
59
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;file.file&#x60; - 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 * &#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;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;next_version&#x60; - Next version * &#x60;-next_version&#x60; - Next version (descending) * &#x60;retain_repo_versions&#x60; - Retain repo versions * &#x60;-retain_repo_versions&#x60; - Retain repo versions (descending) * &#x60;user_hidden&#x60; - User hidden * &#x60;-user_hidden&#x60; - User hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 [Array<String>] :pulp_type__in Pulp type is in * &#x60;file.file&#x60; - file.file
53
+ # @option opts [String] :pulp_type Pulp type * &#x60;file.file&#x60; - file.file
54
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;file.file&#x60; - 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]
@@ -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 * &#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;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;locked&#x60; - Locked * &#x60;-locked&#x60; - Locked (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#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;public_key&#x60; - Public key * &#x60;-public_key&#x60; - Public key (descending) * &#x60;pubkey_fingerprint&#x60; - Pubkey fingerprint * &#x60;-pubkey_fingerprint&#x60; - Pubkey fingerprint (descending) * &#x60;script&#x60; - Script * &#x60;-script&#x60; - Script (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#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;next_dispatch&#x60; - Next dispatch * &#x60;-next_dispatch&#x60; - Next dispatch (descending) * &#x60;dispatch_interval&#x60; - Dispatch interval * &#x60;-dispatch_interval&#x60; - Dispatch interval (descending) * &#x60;task_name&#x60; - Task name * &#x60;-task_name&#x60; - Task name (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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.
@@ -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 * &#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;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;args&#x60; - Args * &#x60;-args&#x60; - Args (descending) * &#x60;kwargs&#x60; - Kwargs * &#x60;-kwargs&#x60; - 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;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;waiting&#x60; - Waiting * &#x60;skipped&#x60; - Skipped * &#x60;running&#x60; - Running * &#x60;completed&#x60; - Completed * &#x60;failed&#x60; - Failed * &#x60;canceled&#x60; - Canceled * &#x60;canceling&#x60; - 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 * &#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;size&#x60; - Size * &#x60;-size&#x60; - Size (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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
@@ -82,6 +82,7 @@ describe 'UsersApi' do
82
82
  # @option opts [Array<String>] :ordering Ordering * &#x60;id&#x60; - Id * &#x60;-id&#x60; - Id (descending) * &#x60;password&#x60; - Password * &#x60;-password&#x60; - Password (descending) * &#x60;last_login&#x60; - Last login * &#x60;-last_login&#x60; - Last login (descending) * &#x60;is_superuser&#x60; - Is superuser * &#x60;-is_superuser&#x60; - Is superuser (descending) * &#x60;username&#x60; - Username * &#x60;-username&#x60; - Username (descending) * &#x60;first_name&#x60; - First name * &#x60;-first_name&#x60; - First name (descending) * &#x60;last_name&#x60; - Last name * &#x60;-last_name&#x60; - Last name (descending) * &#x60;email&#x60; - Email * &#x60;-email&#x60; - Email (descending) * &#x60;is_staff&#x60; - Is staff * &#x60;-is_staff&#x60; - Is staff (descending) * &#x60;is_active&#x60; - Is active * &#x60;-is_active&#x60; - Is active (descending) * &#x60;date_joined&#x60; - Date joined * &#x60;-date_joined&#x60; - Date joined (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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