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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 11bb22854aadb1bf525251ac0f4458edf92048d29e3ccaef71fd1579d2f92a17
4
- data.tar.gz: 5ef1539317fb227e16c1881addbd786fff3bac8f406502da431ed4fee6953b12
3
+ metadata.gz: 44924db6f7ec0f890c640e9f1875467bb5dfcf0412a0538862f8a5f933a1aaf0
4
+ data.tar.gz: d1ac4cbaed541fd0eb4ebc2687eedc94acffd42684dbf75fc6f9fb4bf8349a68
5
5
  SHA512:
6
- metadata.gz: ea37f78255a3f583a991252679e565f9e5f1dd460bcae8512c80d865578858fb085408dd96da75043ca0bb9f7e4870fc004086065f3187bcf378f79d62aeabcd
7
- data.tar.gz: 450f5b3590db235ff951840e3e95c2f98c5fb664630a3ce4206be9d6c77587c8809852ed878b47af858821123e51c99407402794218a01ee50a540722a853025
6
+ metadata.gz: d5bde7b7e9edf81e7f9eec1a62a65f2ac5a6b119f6085beabeb70470390c8a27d7711038c7deb3baf0e43e84378715b15abee7f6b3fcc6d28bbb605fc94bc1dc
7
+ data.tar.gz: 309319aa37a8710d3109222eaa4cd21b455a52f5eaa749fc9d2fc28af6485b9acaf45fb7873b20d9e955b40469abaf239000cfa4da4bdc9f25882f728da32f2d
data/README.md CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: v3
10
- - Package version: 3.32.1
10
+ - Package version: 3.34.0
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
13
13
 
@@ -24,16 +24,16 @@ gem build pulpcore_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulpcore_client-3.32.1.gem
27
+ gem install ./pulpcore_client-3.34.0.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulpcore_client-3.32.1.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulpcore_client-3.34.0.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'pulpcore_client', '~> 3.32.1'
36
+ gem 'pulpcore_client', '~> 3.34.0'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -72,10 +72,13 @@ opts = {
72
72
  ordering: ['ordering_example'], # Array<String> | 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)
73
73
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
74
74
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
75
+ q: 'q_example', # String |
75
76
  viewset_name: 'viewset_name_example', # String | Filter results where viewset_name matches value
76
77
  viewset_name__contains: 'viewset_name__contains_example', # String | Filter results where viewset_name contains value
77
78
  viewset_name__icontains: 'viewset_name__icontains_example', # String | Filter results where viewset_name contains value
79
+ viewset_name__iexact: 'viewset_name__iexact_example', # String | Filter results where viewset_name matches value
78
80
  viewset_name__in: ['viewset_name__in_example'], # Array<String> | Filter results where viewset_name is in a comma-separated list of values
81
+ viewset_name__istartswith: 'viewset_name__istartswith_example', # String | Filter results where viewset_name starts with value
79
82
  viewset_name__startswith: 'viewset_name__startswith_example', # String | Filter results where viewset_name starts with value
80
83
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
81
84
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
@@ -93,7 +96,7 @@ end
93
96
 
94
97
  ## Documentation for API Endpoints
95
98
 
96
- All URIs are relative to *https://pulp*
99
+ All URIs are relative to *http://pulp*
97
100
 
98
101
  Class | Method | HTTP request | Description
99
102
  ------------ | ------------- | ------------- | -------------
@@ -254,6 +257,7 @@ Class | Method | HTTP request | Description
254
257
 
255
258
  - [PulpcoreClient::AccessPolicy](docs/AccessPolicy.md)
256
259
  - [PulpcoreClient::AccessPolicyResponse](docs/AccessPolicyResponse.md)
260
+ - [PulpcoreClient::ApiAppStatusResponse](docs/ApiAppStatusResponse.md)
257
261
  - [PulpcoreClient::Artifact](docs/Artifact.md)
258
262
  - [PulpcoreClient::ArtifactDistributionResponse](docs/ArtifactDistributionResponse.md)
259
263
  - [PulpcoreClient::ArtifactResponse](docs/ArtifactResponse.md)
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::AccessPoliciesApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -40,10 +40,13 @@ opts = {
40
40
  ordering: ['ordering_example'], # Array<String> | 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)
41
41
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
42
42
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
43
+ q: 'q_example', # String |
43
44
  viewset_name: 'viewset_name_example', # String | Filter results where viewset_name matches value
44
45
  viewset_name__contains: 'viewset_name__contains_example', # String | Filter results where viewset_name contains value
45
46
  viewset_name__icontains: 'viewset_name__icontains_example', # String | Filter results where viewset_name contains value
47
+ viewset_name__iexact: 'viewset_name__iexact_example', # String | Filter results where viewset_name matches value
46
48
  viewset_name__in: ['viewset_name__in_example'], # Array<String> | Filter results where viewset_name is in a comma-separated list of values
49
+ viewset_name__istartswith: 'viewset_name__istartswith_example', # String | Filter results where viewset_name starts with value
47
50
  viewset_name__startswith: 'viewset_name__startswith_example', # String | Filter results where viewset_name starts with value
48
51
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
49
52
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
@@ -69,10 +72,13 @@ Name | Type | Description | Notes
69
72
  **ordering** | [**Array&lt;String&gt;**](String.md)| 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) | [optional]
70
73
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
71
74
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
75
+ **q** | **String**| | [optional]
72
76
  **viewset_name** | **String**| Filter results where viewset_name matches value | [optional]
73
77
  **viewset_name__contains** | **String**| Filter results where viewset_name contains value | [optional]
74
78
  **viewset_name__icontains** | **String**| Filter results where viewset_name contains value | [optional]
79
+ **viewset_name__iexact** | **String**| Filter results where viewset_name matches value | [optional]
75
80
  **viewset_name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where viewset_name is in a comma-separated list of values | [optional]
81
+ **viewset_name__istartswith** | **String**| Filter results where viewset_name starts with value | [optional]
76
82
  **viewset_name__startswith** | **String**| Filter results where viewset_name starts with value | [optional]
77
83
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
78
84
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
@@ -0,0 +1,21 @@
1
+ # PulpcoreClient::ApiAppStatusResponse
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **name** | **String** | The name of the worker. | [optional] [readonly]
8
+ **last_heartbeat** | **DateTime** | Timestamp of the last time the worker talked to the service. | [optional] [readonly]
9
+ **versions** | **Hash&lt;String, String&gt;** | Versions of the components installed. | [optional] [readonly]
10
+
11
+ ## Code Sample
12
+
13
+ ```ruby
14
+ require 'PulpcoreClient'
15
+
16
+ instance = PulpcoreClient::ApiAppStatusResponse.new(name: null,
17
+ last_heartbeat: null,
18
+ versions: null)
19
+ ```
20
+
21
+
@@ -4,28 +4,28 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
8
7
  **content_guard** | **String** | An optional content-guard. | [optional]
8
+ **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
9
+ **pulp_href** | **String** | | [optional] [readonly]
9
10
  **base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \&quot;foo\&quot; and \&quot;foo/bar\&quot;) |
10
- **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
11
11
  **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. |
12
- **pulp_href** | **String** | | [optional] [readonly]
13
12
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
14
13
  **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
14
+ **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
15
15
 
16
16
  ## Code Sample
17
17
 
18
18
  ```ruby
19
19
  require 'PulpcoreClient'
20
20
 
21
- instance = PulpcoreClient::ArtifactDistributionResponse.new(base_url: null,
22
- content_guard: null,
21
+ instance = PulpcoreClient::ArtifactDistributionResponse.new(content_guard: null,
22
+ base_url: null,
23
+ pulp_href: null,
23
24
  base_path: null,
24
- pulp_labels: null,
25
25
  name: null,
26
- pulp_href: null,
27
26
  pulp_created: null,
28
- hidden: null)
27
+ hidden: null,
28
+ pulp_labels: null)
29
29
  ```
30
30
 
31
31
 
data/docs/ArtifactsApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ArtifactsApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -160,6 +160,7 @@ opts = {
160
160
  ordering: ['ordering_example'], # Array<String> | 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)
161
161
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
162
162
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
163
+ q: 'q_example', # String |
163
164
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
164
165
  sha1: 'sha1_example', # String | Filter results where sha1 matches value
165
166
  sha224: 'sha224_example', # String | Filter results where sha224 matches value
@@ -190,6 +191,7 @@ Name | Type | Description | Notes
190
191
  **ordering** | [**Array&lt;String&gt;**](String.md)| 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) | [optional]
191
192
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
192
193
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
194
+ **q** | **String**| | [optional]
193
195
  **repository_version** | **String**| Repository Version referenced by HREF | [optional]
194
196
  **sha1** | **String**| Filter results where sha1 matches value | [optional]
195
197
  **sha224** | **String**| Filter results where sha224 matches value | [optional]
data/docs/ContentApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ContentApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -35,7 +35,9 @@ opts = {
35
35
  ordering: ['ordering_example'], # Array<String> | Ordering * `pk` - Pk * `-pk` - Pk (descending)
36
36
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
37
37
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
38
- pulp_type__in: ['pulp_type__in_example'], # Array<String> | Pulp type is in * `core.publishedmetadata` - core.publishedmetadata * `file.file` - file.file
38
+ pulp_type: 'pulp_type_example', # String | Pulp type * `core.publishedmetadata` - core.publishedmetadata * `file.file` - file.file
39
+ pulp_type__in: ['pulp_type__in_example'], # Array<String> | Multiple values may be separated by commas. * `core.publishedmetadata` - core.publishedmetadata * `file.file` - file.file
40
+ q: 'q_example', # String |
39
41
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
40
42
  repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
41
43
  repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
@@ -62,7 +64,9 @@ Name | Type | Description | Notes
62
64
  **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
63
65
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
64
66
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
65
- **pulp_type__in** | [**Array&lt;String&gt;**](String.md)| Pulp type is in * &#x60;core.publishedmetadata&#x60; - core.publishedmetadata * &#x60;file.file&#x60; - file.file | [optional]
67
+ **pulp_type** | **String**| Pulp type * &#x60;core.publishedmetadata&#x60; - core.publishedmetadata * &#x60;file.file&#x60; - file.file | [optional]
68
+ **pulp_type__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. * &#x60;core.publishedmetadata&#x60; - core.publishedmetadata * &#x60;file.file&#x60; - file.file | [optional]
69
+ **q** | **String**| | [optional]
66
70
  **repository_version** | **String**| Repository Version referenced by HREF | [optional]
67
71
  **repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
68
72
  **repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **name** | **String** | The name of the worker. | [optional] [readonly]
8
8
  **last_heartbeat** | **DateTime** | Timestamp of the last time the worker talked to the service. | [optional] [readonly]
9
+ **versions** | **Hash&lt;String, String&gt;** | Versions of the components installed. | [optional] [readonly]
9
10
 
10
11
  ## Code Sample
11
12
 
@@ -13,7 +14,8 @@ Name | Type | Description | Notes
13
14
  require 'PulpcoreClient'
14
15
 
15
16
  instance = PulpcoreClient::ContentAppStatusResponse.new(name: null,
16
- last_heartbeat: null)
17
+ last_heartbeat: null,
18
+ versions: null)
17
19
  ```
18
20
 
19
21
 
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ContentguardsApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -34,13 +34,17 @@ opts = {
34
34
  name: 'name_example', # String | Filter results where name matches value
35
35
  name__contains: 'name__contains_example', # String | Filter results where name contains value
36
36
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
37
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
37
38
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
39
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
38
40
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
39
41
  offset: 56, # Integer | The initial index from which to return the results.
40
42
  ordering: ['ordering_example'], # Array<String> | 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)
41
43
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
42
44
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
43
- pulp_type__in: ['pulp_type__in_example'], # Array<String> | Pulp type is in * `core.rbac` - core.rbac * `core.content_redirect` - core.content_redirect * `certguard.rhsm` - certguard.rhsm * `certguard.x509` - certguard.x509
45
+ pulp_type: 'pulp_type_example', # String | Pulp type * `core.rbac` - core.rbac * `core.content_redirect` - core.content_redirect * `certguard.rhsm` - certguard.rhsm * `certguard.x509` - certguard.x509
46
+ pulp_type__in: ['pulp_type__in_example'], # Array<String> | 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
47
+ q: 'q_example', # String |
44
48
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
45
49
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
46
50
  }
@@ -63,13 +67,17 @@ Name | Type | Description | Notes
63
67
  **name** | **String**| Filter results where name matches value | [optional]
64
68
  **name__contains** | **String**| Filter results where name contains value | [optional]
65
69
  **name__icontains** | **String**| Filter results where name contains value | [optional]
70
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
66
71
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
72
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
67
73
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
68
74
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
69
75
  **ordering** | [**Array&lt;String&gt;**](String.md)| 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) | [optional]
70
76
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
71
77
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
72
- **pulp_type__in** | [**Array&lt;String&gt;**](String.md)| 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 | [optional]
78
+ **pulp_type** | **String**| 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 | [optional]
79
+ **pulp_type__in** | [**Array&lt;String&gt;**](String.md)| 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 | [optional]
80
+ **q** | **String**| | [optional]
73
81
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
74
82
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
75
83
 
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ContentguardsContentRedirectApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -203,12 +203,15 @@ opts = {
203
203
  name: 'name_example', # String | Filter results where name matches value
204
204
  name__contains: 'name__contains_example', # String | Filter results where name contains value
205
205
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
206
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
206
207
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
208
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
207
209
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
208
210
  offset: 56, # Integer | The initial index from which to return the results.
209
211
  ordering: ['ordering_example'], # Array<String> | 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)
210
212
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
211
213
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
214
+ q: 'q_example', # String |
212
215
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
213
216
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
214
217
  }
@@ -231,12 +234,15 @@ Name | Type | Description | Notes
231
234
  **name** | **String**| Filter results where name matches value | [optional]
232
235
  **name__contains** | **String**| Filter results where name contains value | [optional]
233
236
  **name__icontains** | **String**| Filter results where name contains value | [optional]
237
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
234
238
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
239
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
235
240
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
236
241
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
237
242
  **ordering** | [**Array&lt;String&gt;**](String.md)| 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) | [optional]
238
243
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
239
244
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
245
+ **q** | **String**| | [optional]
240
246
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
241
247
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
242
248
 
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ContentguardsRbacApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -203,12 +203,15 @@ opts = {
203
203
  name: 'name_example', # String | Filter results where name matches value
204
204
  name__contains: 'name__contains_example', # String | Filter results where name contains value
205
205
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
206
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
206
207
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
208
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
207
209
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
208
210
  offset: 56, # Integer | The initial index from which to return the results.
209
211
  ordering: ['ordering_example'], # Array<String> | 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)
210
212
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
211
213
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
214
+ q: 'q_example', # String |
212
215
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
213
216
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
214
217
  }
@@ -231,12 +234,15 @@ Name | Type | Description | Notes
231
234
  **name** | **String**| Filter results where name matches value | [optional]
232
235
  **name__contains** | **String**| Filter results where name contains value | [optional]
233
236
  **name__icontains** | **String**| Filter results where name contains value | [optional]
237
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
234
238
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
239
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
235
240
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
236
241
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
237
242
  **ordering** | [**Array&lt;String&gt;**](String.md)| 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) | [optional]
238
243
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
239
244
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
245
+ **q** | **String**| | [optional]
240
246
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
241
247
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
242
248
 
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::DistributionsApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -38,14 +38,18 @@ opts = {
38
38
  name: 'name_example', # String | Filter results where name matches value
39
39
  name__contains: 'name__contains_example', # String | Filter results where name contains value
40
40
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
41
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
41
42
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
43
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
42
44
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
43
45
  offset: 56, # Integer | The initial index from which to return the results.
44
46
  ordering: ['ordering_example'], # Array<String> | 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)
45
47
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
46
48
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
47
49
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
48
- pulp_type__in: ['pulp_type__in_example'], # Array<String> | Pulp type is in * `core.artifact` - core.artifact * `file.file` - file.file
50
+ pulp_type: 'pulp_type_example', # String | Pulp type * `core.artifact` - core.artifact * `file.file` - file.file
51
+ pulp_type__in: ['pulp_type__in_example'], # Array<String> | Multiple values may be separated by commas. * `core.artifact` - core.artifact * `file.file` - file.file
52
+ q: 'q_example', # String |
49
53
  repository: 'repository_example', # String | Filter results where repository matches value
50
54
  repository__in: ['repository__in_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
51
55
  with_content: 'with_content_example', # String | Filter distributions based on the content served by them
@@ -75,14 +79,18 @@ Name | Type | Description | Notes
75
79
  **name** | **String**| Filter results where name matches value | [optional]
76
80
  **name__contains** | **String**| Filter results where name contains value | [optional]
77
81
  **name__icontains** | **String**| Filter results where name contains value | [optional]
82
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
78
83
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
84
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
79
85
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
80
86
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
81
87
  **ordering** | [**Array&lt;String&gt;**](String.md)| 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) | [optional]
82
88
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
83
89
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
84
90
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
85
- **pulp_type__in** | [**Array&lt;String&gt;**](String.md)| Pulp type is in * &#x60;core.artifact&#x60; - core.artifact * &#x60;file.file&#x60; - file.file | [optional]
91
+ **pulp_type** | **String**| Pulp type * &#x60;core.artifact&#x60; - core.artifact * &#x60;file.file&#x60; - file.file | [optional]
92
+ **pulp_type__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. * &#x60;core.artifact&#x60; - core.artifact * &#x60;file.file&#x60; - file.file | [optional]
93
+ **q** | **String**| | [optional]
86
94
  **repository** | [**String**](.md)| Filter results where repository matches value | [optional]
87
95
  **repository__in** | [**Array&lt;String&gt;**](String.md)| Filter results where repository is in a comma-separated list of values | [optional]
88
96
  **with_content** | **String**| Filter distributions based on the content served by them | [optional]
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::DistributionsArtifactsApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -39,13 +39,16 @@ opts = {
39
39
  name: 'name_example', # String | Filter results where name matches value
40
40
  name__contains: 'name__contains_example', # String | Filter results where name contains value
41
41
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
42
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
42
43
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
44
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
43
45
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
44
46
  offset: 56, # Integer | The initial index from which to return the results.
45
47
  ordering: ['ordering_example'], # Array<String> | 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)
46
48
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
47
49
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
48
50
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
51
+ q: 'q_example', # String |
49
52
  repository: 'repository_example', # String | Filter results where repository matches value
50
53
  repository__in: ['repository__in_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
51
54
  with_content: 'with_content_example', # String | Filter distributions based on the content served by them
@@ -75,13 +78,16 @@ Name | Type | Description | Notes
75
78
  **name** | **String**| Filter results where name matches value | [optional]
76
79
  **name__contains** | **String**| Filter results where name contains value | [optional]
77
80
  **name__icontains** | **String**| Filter results where name contains value | [optional]
81
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
78
82
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
83
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
79
84
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
80
85
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
81
86
  **ordering** | [**Array&lt;String&gt;**](String.md)| 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) | [optional]
82
87
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
83
88
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
84
89
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
90
+ **q** | **String**| | [optional]
85
91
  **repository** | [**String**](.md)| Filter results where repository matches value | [optional]
86
92
  **repository__in** | [**Array&lt;String&gt;**](String.md)| Filter results where repository is in a comma-separated list of values | [optional]
87
93
  **with_content** | **String**| Filter distributions based on the content served by them | [optional]
data/docs/DomainsApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::DomainsApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -145,12 +145,15 @@ opts = {
145
145
  name: 'name_example', # String | Filter results where name matches value
146
146
  name__contains: 'name__contains_example', # String | Filter results where name contains value
147
147
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
148
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
148
149
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
150
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
149
151
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
150
152
  offset: 56, # Integer | The initial index from which to return the results.
151
153
  ordering: ['ordering_example'], # Array<String> | 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)
152
154
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
153
155
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
156
+ q: 'q_example', # String |
154
157
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
155
158
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
156
159
  }
@@ -173,12 +176,15 @@ Name | Type | Description | Notes
173
176
  **name** | **String**| Filter results where name matches value | [optional]
174
177
  **name__contains** | **String**| Filter results where name contains value | [optional]
175
178
  **name__icontains** | **String**| Filter results where name contains value | [optional]
179
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
176
180
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
181
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
177
182
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
178
183
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
179
184
  **ordering** | [**Array&lt;String&gt;**](String.md)| 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) | [optional]
180
185
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
181
186
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
187
+ **q** | **String**| | [optional]
182
188
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
183
189
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
184
190
 
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ExportersFilesystemApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -145,12 +145,15 @@ opts = {
145
145
  name: 'name_example', # String | Filter results where name matches value
146
146
  name__contains: 'name__contains_example', # String | Filter results where name contains value
147
147
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
148
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
148
149
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
150
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
149
151
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
150
152
  offset: 56, # Integer | The initial index from which to return the results.
151
153
  ordering: ['ordering_example'], # Array<String> | 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)
152
154
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
153
155
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
156
+ q: 'q_example', # String |
154
157
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
155
158
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
156
159
  }
@@ -173,12 +176,15 @@ Name | Type | Description | Notes
173
176
  **name** | **String**| Filter results where name matches value | [optional]
174
177
  **name__contains** | **String**| Filter results where name contains value | [optional]
175
178
  **name__icontains** | **String**| Filter results where name contains value | [optional]
179
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
176
180
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
181
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
177
182
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
178
183
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
179
184
  **ordering** | [**Array&lt;String&gt;**](String.md)| 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) | [optional]
180
185
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
181
186
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
187
+ **q** | **String**| | [optional]
182
188
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
183
189
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
184
190
 
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ExportersFilesystemExportsApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------