pulpcore_client 3.26.1 → 3.27.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ArtifactDistributionResponse.md +10 -8
- data/docs/DistributionResponse.md +2 -0
- data/docs/DistributionsApi.md +2 -2
- data/docs/DistributionsArtifactsApi.md +2 -2
- data/docs/TaskResponse.md +2 -0
- data/lib/pulpcore_client/api/distributions_api.rb +3 -3
- data/lib/pulpcore_client/api/distributions_artifacts_api.rb +3 -3
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +44 -32
- data/lib/pulpcore_client/models/distribution_response.rb +13 -1
- data/lib/pulpcore_client/models/task_response.rb +11 -1
- data/lib/pulpcore_client/version.rb +1 -1
- data/spec/api/distributions_api_spec.rb +1 -1
- data/spec/api/distributions_artifacts_api_spec.rb +1 -1
- data/spec/models/artifact_distribution_response_spec.rb +11 -5
- data/spec/models/distribution_response_spec.rb +6 -0
- data/spec/models/task_response_spec.rb +6 -0
- metadata +141 -141
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: abd589de98c2d4ab907c494938f6fb8d55d345a95e795c67d0c5c65f78bc5a72
|
4
|
+
data.tar.gz: 195a7ae32a42aeb3fa273ee0aaf9b9dbba20408b8d2a5af74668d443a5b0202c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ae383aa9a8020ff93c3101cea90380cc237e164efc5a0c6d007dffd83e024c55734746259a39a210d2841bef53ec6ee3972efc7d38632b803b19bf5410a7560
|
7
|
+
data.tar.gz: c9f30448450ce207f7c7941fd00bd8978558682796e7b339f2a4d3ed0107ffcd9ccf00a706b0c77e3e784c3172ba6dda14f295976b7c574e75260f6994e3f825
|
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.
|
10
|
+
- Package version: 3.27.1
|
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.
|
27
|
+
gem install ./pulpcore_client-3.27.1.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulpcore_client-3.
|
30
|
+
(for development, run `gem install --dev ./pulpcore_client-3.27.1.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.
|
36
|
+
gem 'pulpcore_client', '~> 3.27.1'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -4,26 +4,28 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**content_guard** | **String** | An optional content-guard. | [optional]
|
8
7
|
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
9
|
-
**
|
10
|
-
**pulp_labels** | **Hash<String, String>** | | [optional]
|
8
|
+
**content_guard** | **String** | An optional content-guard. | [optional]
|
11
9
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
10
|
+
**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
|
11
|
+
**base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
|
12
12
|
**pulp_href** | **String** | | [optional] [readonly]
|
13
13
|
**base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") |
|
14
|
+
**pulp_labels** | **Hash<String, String>** | | [optional]
|
14
15
|
|
15
16
|
## Code Sample
|
16
17
|
|
17
18
|
```ruby
|
18
19
|
require 'PulpcoreClient'
|
19
20
|
|
20
|
-
instance = PulpcoreClient::ArtifactDistributionResponse.new(
|
21
|
-
|
22
|
-
base_url: null,
|
23
|
-
pulp_labels: null,
|
21
|
+
instance = PulpcoreClient::ArtifactDistributionResponse.new(name: null,
|
22
|
+
content_guard: null,
|
24
23
|
pulp_created: null,
|
24
|
+
hidden: null,
|
25
|
+
base_url: null,
|
25
26
|
pulp_href: null,
|
26
|
-
base_path: null
|
27
|
+
base_path: null,
|
28
|
+
pulp_labels: null)
|
27
29
|
```
|
28
30
|
|
29
31
|
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
9
9
|
**base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") |
|
10
10
|
**base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
|
11
11
|
**content_guard** | **String** | An optional content-guard. | [optional]
|
12
|
+
**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
|
12
13
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
13
14
|
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
14
15
|
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
@@ -23,6 +24,7 @@ instance = PulpcoreClient::DistributionResponse.new(pulp_href: null,
|
|
23
24
|
base_path: null,
|
24
25
|
base_url: null,
|
25
26
|
content_guard: null,
|
27
|
+
hidden: null,
|
26
28
|
pulp_labels: null,
|
27
29
|
name: null,
|
28
30
|
repository: null)
|
data/docs/DistributionsApi.md
CHANGED
@@ -41,7 +41,7 @@ opts = {
|
|
41
41
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
42
42
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
43
43
|
offset: 56, # Integer | The initial index from which to return the results.
|
44
|
-
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) * `pk` - Pk * `-pk` - Pk (descending)
|
44
|
+
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
45
|
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
46
46
|
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
47
47
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
@@ -78,7 +78,7 @@ Name | Type | Description | Notes
|
|
78
78
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
79
79
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
80
80
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
81
|
-
**ordering** | [**Array<String>**](String.md)| 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) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
81
|
+
**ordering** | [**Array<String>**](String.md)| 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) | [optional]
|
82
82
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
83
83
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
84
84
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
@@ -42,7 +42,7 @@ opts = {
|
|
42
42
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
43
43
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
44
44
|
offset: 56, # Integer | The initial index from which to return the results.
|
45
|
-
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) * `pk` - Pk * `-pk` - Pk (descending)
|
45
|
+
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
46
|
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
47
47
|
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
48
48
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
@@ -78,7 +78,7 @@ Name | Type | Description | Notes
|
|
78
78
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
79
79
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
80
80
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
81
|
-
**ordering** | [**Array<String>**](String.md)| 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) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
81
|
+
**ordering** | [**Array<String>**](String.md)| 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) | [optional]
|
82
82
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
83
83
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
84
84
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
data/docs/TaskResponse.md
CHANGED
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
9
9
|
**state** | **String** | The current state of the task. The possible values include: 'waiting', 'skipped', 'running', 'completed', 'failed', 'canceled' and 'canceling'. | [optional] [readonly]
|
10
10
|
**name** | **String** | The name of task. |
|
11
11
|
**logging_cid** | **String** | The logging correlation id associated with this task |
|
12
|
+
**created_by** | **String** | User who dispatched this task. | [optional] [readonly]
|
12
13
|
**started_at** | **DateTime** | Timestamp of the when this task started execution. | [optional] [readonly]
|
13
14
|
**finished_at** | **DateTime** | Timestamp of the when this task stopped execution. | [optional] [readonly]
|
14
15
|
**error** | **Hash<String, Object>** | A JSON Object of a fatal error encountered during the execution of this task. | [optional] [readonly]
|
@@ -30,6 +31,7 @@ instance = PulpcoreClient::TaskResponse.new(pulp_href: null,
|
|
30
31
|
state: null,
|
31
32
|
name: null,
|
32
33
|
logging_cid: null,
|
34
|
+
created_by: null,
|
33
35
|
started_at: null,
|
34
36
|
finished_at: null,
|
35
37
|
error: null,
|
@@ -33,7 +33,7 @@ module PulpcoreClient
|
|
33
33
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
34
34
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
35
35
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
36
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
36
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
37
37
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
38
38
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
39
39
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
@@ -63,7 +63,7 @@ module PulpcoreClient
|
|
63
63
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
64
64
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
65
65
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
66
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
66
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
67
67
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
68
68
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
69
69
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
@@ -78,7 +78,7 @@ module PulpcoreClient
|
|
78
78
|
if @api_client.config.debugging
|
79
79
|
@api_client.config.logger.debug 'Calling API: DistributionsApi.list ...'
|
80
80
|
end
|
81
|
-
allowable_values = ["-base_path", "-name", "-pk", "-pulp_created", "-pulp_id", "-pulp_labels", "-pulp_last_updated", "-pulp_type", "base_path", "name", "pk", "pulp_created", "pulp_id", "pulp_labels", "pulp_last_updated", "pulp_type"]
|
81
|
+
allowable_values = ["-base_path", "-hidden", "-name", "-pk", "-pulp_created", "-pulp_id", "-pulp_labels", "-pulp_last_updated", "-pulp_type", "base_path", "hidden", "name", "pk", "pulp_created", "pulp_id", "pulp_labels", "pulp_last_updated", "pulp_type"]
|
82
82
|
if @api_client.config.client_side_validation && opts[:'ordering'] && !opts[:'ordering'].all? { |item| allowable_values.include?(item) }
|
83
83
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
84
84
|
end
|
@@ -33,7 +33,7 @@ module PulpcoreClient
|
|
33
33
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
34
34
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
35
35
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
36
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
36
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
37
37
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
38
38
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
39
39
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
@@ -62,7 +62,7 @@ module PulpcoreClient
|
|
62
62
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
63
63
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
64
64
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
65
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
65
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
66
66
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
67
67
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
68
68
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
@@ -76,7 +76,7 @@ module PulpcoreClient
|
|
76
76
|
if @api_client.config.debugging
|
77
77
|
@api_client.config.logger.debug 'Calling API: DistributionsArtifactsApi.list ...'
|
78
78
|
end
|
79
|
-
allowable_values = ["-base_path", "-name", "-pk", "-pulp_created", "-pulp_id", "-pulp_labels", "-pulp_last_updated", "-pulp_type", "base_path", "name", "pk", "pulp_created", "pulp_id", "pulp_labels", "pulp_last_updated", "pulp_type"]
|
79
|
+
allowable_values = ["-base_path", "-hidden", "-name", "-pk", "-pulp_created", "-pulp_id", "-pulp_labels", "-pulp_last_updated", "-pulp_type", "base_path", "hidden", "name", "pk", "pulp_created", "pulp_id", "pulp_labels", "pulp_last_updated", "pulp_type"]
|
80
80
|
if @api_client.config.client_side_validation && opts[:'ordering'] && !opts[:'ordering'].all? { |item| allowable_values.include?(item) }
|
81
81
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
82
82
|
end
|
@@ -15,48 +15,53 @@ require 'date'
|
|
15
15
|
module PulpcoreClient
|
16
16
|
# A serializer for ArtifactDistribution.
|
17
17
|
class ArtifactDistributionResponse
|
18
|
-
# An optional content-guard.
|
19
|
-
attr_accessor :content_guard
|
20
|
-
|
21
18
|
# A unique name. Ex, `rawhide` and `stable`.
|
22
19
|
attr_accessor :name
|
23
20
|
|
24
|
-
#
|
25
|
-
attr_accessor :
|
26
|
-
|
27
|
-
attr_accessor :pulp_labels
|
21
|
+
# An optional content-guard.
|
22
|
+
attr_accessor :content_guard
|
28
23
|
|
29
24
|
# Timestamp of creation.
|
30
25
|
attr_accessor :pulp_created
|
31
26
|
|
27
|
+
# Whether this distribution should be shown in the content app.
|
28
|
+
attr_accessor :hidden
|
29
|
+
|
30
|
+
# The URL for accessing the publication as defined by this distribution.
|
31
|
+
attr_accessor :base_url
|
32
|
+
|
32
33
|
attr_accessor :pulp_href
|
33
34
|
|
34
35
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
35
36
|
attr_accessor :base_path
|
36
37
|
|
38
|
+
attr_accessor :pulp_labels
|
39
|
+
|
37
40
|
# Attribute mapping from ruby-style variable name to JSON key.
|
38
41
|
def self.attribute_map
|
39
42
|
{
|
40
|
-
:'content_guard' => :'content_guard',
|
41
43
|
:'name' => :'name',
|
42
|
-
:'
|
43
|
-
:'pulp_labels' => :'pulp_labels',
|
44
|
+
:'content_guard' => :'content_guard',
|
44
45
|
:'pulp_created' => :'pulp_created',
|
46
|
+
:'hidden' => :'hidden',
|
47
|
+
:'base_url' => :'base_url',
|
45
48
|
:'pulp_href' => :'pulp_href',
|
46
|
-
:'base_path' => :'base_path'
|
49
|
+
:'base_path' => :'base_path',
|
50
|
+
:'pulp_labels' => :'pulp_labels'
|
47
51
|
}
|
48
52
|
end
|
49
53
|
|
50
54
|
# Attribute type mapping.
|
51
55
|
def self.openapi_types
|
52
56
|
{
|
53
|
-
:'content_guard' => :'String',
|
54
57
|
:'name' => :'String',
|
55
|
-
:'
|
56
|
-
:'pulp_labels' => :'Hash<String, String>',
|
58
|
+
:'content_guard' => :'String',
|
57
59
|
:'pulp_created' => :'DateTime',
|
60
|
+
:'hidden' => :'Boolean',
|
61
|
+
:'base_url' => :'String',
|
58
62
|
:'pulp_href' => :'String',
|
59
|
-
:'base_path' => :'String'
|
63
|
+
:'base_path' => :'String',
|
64
|
+
:'pulp_labels' => :'Hash<String, String>'
|
60
65
|
}
|
61
66
|
end
|
62
67
|
|
@@ -82,28 +87,28 @@ module PulpcoreClient
|
|
82
87
|
h[k.to_sym] = v
|
83
88
|
}
|
84
89
|
|
85
|
-
if attributes.key?(:'content_guard')
|
86
|
-
self.content_guard = attributes[:'content_guard']
|
87
|
-
end
|
88
|
-
|
89
90
|
if attributes.key?(:'name')
|
90
91
|
self.name = attributes[:'name']
|
91
92
|
end
|
92
93
|
|
93
|
-
if attributes.key?(:'
|
94
|
-
self.
|
95
|
-
end
|
96
|
-
|
97
|
-
if attributes.key?(:'pulp_labels')
|
98
|
-
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
99
|
-
self.pulp_labels = value
|
100
|
-
end
|
94
|
+
if attributes.key?(:'content_guard')
|
95
|
+
self.content_guard = attributes[:'content_guard']
|
101
96
|
end
|
102
97
|
|
103
98
|
if attributes.key?(:'pulp_created')
|
104
99
|
self.pulp_created = attributes[:'pulp_created']
|
105
100
|
end
|
106
101
|
|
102
|
+
if attributes.key?(:'hidden')
|
103
|
+
self.hidden = attributes[:'hidden']
|
104
|
+
else
|
105
|
+
self.hidden = false
|
106
|
+
end
|
107
|
+
|
108
|
+
if attributes.key?(:'base_url')
|
109
|
+
self.base_url = attributes[:'base_url']
|
110
|
+
end
|
111
|
+
|
107
112
|
if attributes.key?(:'pulp_href')
|
108
113
|
self.pulp_href = attributes[:'pulp_href']
|
109
114
|
end
|
@@ -111,6 +116,12 @@ module PulpcoreClient
|
|
111
116
|
if attributes.key?(:'base_path')
|
112
117
|
self.base_path = attributes[:'base_path']
|
113
118
|
end
|
119
|
+
|
120
|
+
if attributes.key?(:'pulp_labels')
|
121
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
122
|
+
self.pulp_labels = value
|
123
|
+
end
|
124
|
+
end
|
114
125
|
end
|
115
126
|
|
116
127
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -141,13 +152,14 @@ module PulpcoreClient
|
|
141
152
|
def ==(o)
|
142
153
|
return true if self.equal?(o)
|
143
154
|
self.class == o.class &&
|
144
|
-
content_guard == o.content_guard &&
|
145
155
|
name == o.name &&
|
146
|
-
|
147
|
-
pulp_labels == o.pulp_labels &&
|
156
|
+
content_guard == o.content_guard &&
|
148
157
|
pulp_created == o.pulp_created &&
|
158
|
+
hidden == o.hidden &&
|
159
|
+
base_url == o.base_url &&
|
149
160
|
pulp_href == o.pulp_href &&
|
150
|
-
base_path == o.base_path
|
161
|
+
base_path == o.base_path &&
|
162
|
+
pulp_labels == o.pulp_labels
|
151
163
|
end
|
152
164
|
|
153
165
|
# @see the `==` method
|
@@ -159,7 +171,7 @@ module PulpcoreClient
|
|
159
171
|
# Calculates hash code according to all attributes.
|
160
172
|
# @return [Integer] Hash code
|
161
173
|
def hash
|
162
|
-
[
|
174
|
+
[name, content_guard, pulp_created, hidden, base_url, pulp_href, base_path, pulp_labels].hash
|
163
175
|
end
|
164
176
|
|
165
177
|
# Builds the object from hash
|
@@ -29,6 +29,9 @@ module PulpcoreClient
|
|
29
29
|
# An optional content-guard.
|
30
30
|
attr_accessor :content_guard
|
31
31
|
|
32
|
+
# Whether this distribution should be shown in the content app.
|
33
|
+
attr_accessor :hidden
|
34
|
+
|
32
35
|
attr_accessor :pulp_labels
|
33
36
|
|
34
37
|
# A unique name. Ex, `rawhide` and `stable`.
|
@@ -45,6 +48,7 @@ module PulpcoreClient
|
|
45
48
|
:'base_path' => :'base_path',
|
46
49
|
:'base_url' => :'base_url',
|
47
50
|
:'content_guard' => :'content_guard',
|
51
|
+
:'hidden' => :'hidden',
|
48
52
|
:'pulp_labels' => :'pulp_labels',
|
49
53
|
:'name' => :'name',
|
50
54
|
:'repository' => :'repository'
|
@@ -59,6 +63,7 @@ module PulpcoreClient
|
|
59
63
|
:'base_path' => :'String',
|
60
64
|
:'base_url' => :'String',
|
61
65
|
:'content_guard' => :'String',
|
66
|
+
:'hidden' => :'Boolean',
|
62
67
|
:'pulp_labels' => :'Hash<String, String>',
|
63
68
|
:'name' => :'String',
|
64
69
|
:'repository' => :'String'
|
@@ -108,6 +113,12 @@ module PulpcoreClient
|
|
108
113
|
self.content_guard = attributes[:'content_guard']
|
109
114
|
end
|
110
115
|
|
116
|
+
if attributes.key?(:'hidden')
|
117
|
+
self.hidden = attributes[:'hidden']
|
118
|
+
else
|
119
|
+
self.hidden = false
|
120
|
+
end
|
121
|
+
|
111
122
|
if attributes.key?(:'pulp_labels')
|
112
123
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
113
124
|
self.pulp_labels = value
|
@@ -156,6 +167,7 @@ module PulpcoreClient
|
|
156
167
|
base_path == o.base_path &&
|
157
168
|
base_url == o.base_url &&
|
158
169
|
content_guard == o.content_guard &&
|
170
|
+
hidden == o.hidden &&
|
159
171
|
pulp_labels == o.pulp_labels &&
|
160
172
|
name == o.name &&
|
161
173
|
repository == o.repository
|
@@ -170,7 +182,7 @@ module PulpcoreClient
|
|
170
182
|
# Calculates hash code according to all attributes.
|
171
183
|
# @return [Integer] Hash code
|
172
184
|
def hash
|
173
|
-
[pulp_href, pulp_created, base_path, base_url, content_guard, pulp_labels, name, repository].hash
|
185
|
+
[pulp_href, pulp_created, base_path, base_url, content_guard, hidden, pulp_labels, name, repository].hash
|
174
186
|
end
|
175
187
|
|
176
188
|
# Builds the object from hash
|
@@ -29,6 +29,9 @@ module PulpcoreClient
|
|
29
29
|
# The logging correlation id associated with this task
|
30
30
|
attr_accessor :logging_cid
|
31
31
|
|
32
|
+
# User who dispatched this task.
|
33
|
+
attr_accessor :created_by
|
34
|
+
|
32
35
|
# Timestamp of the when this task started execution.
|
33
36
|
attr_accessor :started_at
|
34
37
|
|
@@ -66,6 +69,7 @@ module PulpcoreClient
|
|
66
69
|
:'state' => :'state',
|
67
70
|
:'name' => :'name',
|
68
71
|
:'logging_cid' => :'logging_cid',
|
72
|
+
:'created_by' => :'created_by',
|
69
73
|
:'started_at' => :'started_at',
|
70
74
|
:'finished_at' => :'finished_at',
|
71
75
|
:'error' => :'error',
|
@@ -87,6 +91,7 @@ module PulpcoreClient
|
|
87
91
|
:'state' => :'String',
|
88
92
|
:'name' => :'String',
|
89
93
|
:'logging_cid' => :'String',
|
94
|
+
:'created_by' => :'String',
|
90
95
|
:'started_at' => :'DateTime',
|
91
96
|
:'finished_at' => :'DateTime',
|
92
97
|
:'error' => :'Hash<String, Object>',
|
@@ -141,6 +146,10 @@ module PulpcoreClient
|
|
141
146
|
self.logging_cid = attributes[:'logging_cid']
|
142
147
|
end
|
143
148
|
|
149
|
+
if attributes.key?(:'created_by')
|
150
|
+
self.created_by = attributes[:'created_by']
|
151
|
+
end
|
152
|
+
|
144
153
|
if attributes.key?(:'started_at')
|
145
154
|
self.started_at = attributes[:'started_at']
|
146
155
|
end
|
@@ -225,6 +234,7 @@ module PulpcoreClient
|
|
225
234
|
state == o.state &&
|
226
235
|
name == o.name &&
|
227
236
|
logging_cid == o.logging_cid &&
|
237
|
+
created_by == o.created_by &&
|
228
238
|
started_at == o.started_at &&
|
229
239
|
finished_at == o.finished_at &&
|
230
240
|
error == o.error &&
|
@@ -246,7 +256,7 @@ module PulpcoreClient
|
|
246
256
|
# Calculates hash code according to all attributes.
|
247
257
|
# @return [Integer] Hash code
|
248
258
|
def hash
|
249
|
-
[pulp_href, pulp_created, state, name, logging_cid, started_at, finished_at, error, worker, parent_task, child_tasks, task_group, progress_reports, created_resources, reserved_resources_record].hash
|
259
|
+
[pulp_href, pulp_created, state, name, logging_cid, created_by, started_at, finished_at, error, worker, parent_task, child_tasks, task_group, progress_reports, created_resources, reserved_resources_record].hash
|
250
260
|
end
|
251
261
|
|
252
262
|
# Builds the object from hash
|
@@ -47,7 +47,7 @@ describe 'DistributionsApi' do
|
|
47
47
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
48
48
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
49
49
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
50
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
50
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
51
51
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
52
52
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
53
53
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
@@ -47,7 +47,7 @@ describe 'DistributionsArtifactsApi' do
|
|
47
47
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
48
48
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
49
49
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
50
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
50
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
51
51
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
52
52
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
53
53
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
@@ -32,31 +32,31 @@ describe 'ArtifactDistributionResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpcoreClient::ArtifactDistributionResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "name"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "content_guard"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "pulp_created"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "hidden"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "base_url"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
@@ -74,4 +74,10 @@ describe 'ArtifactDistributionResponse' do
|
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
+
describe 'test attribute "pulp_labels"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
77
83
|
end
|
@@ -62,6 +62,12 @@ describe 'DistributionResponse' do
|
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
+
describe 'test attribute "hidden"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
65
71
|
describe 'test attribute "pulp_labels"' do
|
66
72
|
it 'should work' do
|
67
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -62,6 +62,12 @@ describe 'TaskResponse' do
|
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
+
describe 'test attribute "created_by"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
65
71
|
describe 'test attribute "started_at"' do
|
66
72
|
it 'should work' do
|
67
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulpcore_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.27.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05
|
11
|
+
date: 2023-06-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -617,174 +617,174 @@ signing_key:
|
|
617
617
|
specification_version: 4
|
618
618
|
summary: Pulp 3 API Ruby Gem
|
619
619
|
test_files:
|
620
|
-
- spec/api/
|
621
|
-
- spec/api/
|
622
|
-
- spec/api/
|
623
|
-
- spec/api/
|
624
|
-
- spec/api/
|
625
|
-
- spec/api/
|
626
|
-
- spec/api/
|
627
|
-
- spec/api/distributions_api_spec.rb
|
628
|
-
- spec/api/importers_pulp_imports_api_spec.rb
|
629
|
-
- spec/api/orphans_cleanup_api_spec.rb
|
620
|
+
- spec/api/tasks_api_spec.rb
|
621
|
+
- spec/api/contentguards_content_redirect_api_spec.rb
|
622
|
+
- spec/api/domains_api_spec.rb
|
623
|
+
- spec/api/content_api_spec.rb
|
624
|
+
- spec/api/exporters_pulp_exports_api_spec.rb
|
625
|
+
- spec/api/upstream_pulps_api_spec.rb
|
626
|
+
- spec/api/publications_api_spec.rb
|
630
627
|
- spec/api/orphans_api_spec.rb
|
631
|
-
- spec/api/roles_api_spec.rb
|
632
628
|
- spec/api/uploads_api_spec.rb
|
633
|
-
- spec/api/
|
634
|
-
- spec/api/repositories_api_spec.rb
|
635
|
-
- spec/api/status_api_spec.rb
|
629
|
+
- spec/api/importers_pulp_api_spec.rb
|
636
630
|
- spec/api/contentguards_rbac_api_spec.rb
|
637
|
-
- spec/api/
|
638
|
-
- spec/api/
|
631
|
+
- spec/api/distributions_api_spec.rb
|
632
|
+
- spec/api/orphans_cleanup_api_spec.rb
|
633
|
+
- spec/api/roles_api_spec.rb
|
634
|
+
- spec/api/task_schedules_api_spec.rb
|
635
|
+
- spec/api/groups_users_api_spec.rb
|
636
|
+
- spec/api/exporters_pulp_api_spec.rb
|
639
637
|
- spec/api/groups_api_spec.rb
|
640
|
-
- spec/api/upstream_pulps_api_spec.rb
|
641
|
-
- spec/api/distributions_artifacts_api_spec.rb
|
642
|
-
- spec/api/importers_pulp_api_spec.rb
|
643
|
-
- spec/api/exporters_pulp_exports_api_spec.rb
|
644
638
|
- spec/api/repositories_reclaim_space_api_spec.rb
|
645
|
-
- spec/api/
|
646
|
-
- spec/api/
|
647
|
-
- spec/api/
|
648
|
-
- spec/api/domains_api_spec.rb
|
649
|
-
- spec/api/tasks_api_spec.rb
|
650
|
-
- spec/api/access_policies_api_spec.rb
|
639
|
+
- spec/api/groups_roles_api_spec.rb
|
640
|
+
- spec/api/distributions_artifacts_api_spec.rb
|
641
|
+
- spec/api/signing_services_api_spec.rb
|
651
642
|
- spec/api/users_api_spec.rb
|
652
|
-
- spec/api/contentguards_content_redirect_api_spec.rb
|
653
|
-
- spec/api/users_roles_api_spec.rb
|
654
|
-
- spec/api/exporters_pulp_api_spec.rb
|
655
|
-
- spec/api/task_schedules_api_spec.rb
|
656
643
|
- spec/api/task_groups_api_spec.rb
|
644
|
+
- spec/api/status_api_spec.rb
|
645
|
+
- spec/api/artifacts_api_spec.rb
|
646
|
+
- spec/api/users_roles_api_spec.rb
|
657
647
|
- spec/api/exporters_filesystem_exports_api_spec.rb
|
648
|
+
- spec/api/contentguards_api_spec.rb
|
649
|
+
- spec/api/repositories_api_spec.rb
|
650
|
+
- spec/api/importers_pulp_imports_api_spec.rb
|
651
|
+
- spec/api/importers_pulp_import_check_api_spec.rb
|
652
|
+
- spec/api/repair_api_spec.rb
|
653
|
+
- spec/api/exporters_filesystem_api_spec.rb
|
654
|
+
- spec/api/access_policies_api_spec.rb
|
655
|
+
- spec/api/workers_api_spec.rb
|
656
|
+
- spec/api/remotes_api_spec.rb
|
657
|
+
- spec/api/repository_versions_api_spec.rb
|
658
658
|
- spec/api_client_spec.rb
|
659
659
|
- spec/configuration_spec.rb
|
660
|
-
- spec/models/
|
661
|
-
- spec/models/
|
660
|
+
- spec/models/paginated_worker_response_list_spec.rb
|
661
|
+
- spec/models/remote_response_spec.rb
|
662
|
+
- spec/models/paginated_multiple_artifact_content_response_list_spec.rb
|
663
|
+
- spec/models/nested_role_spec.rb
|
664
|
+
- spec/models/paginated_access_policy_response_list_spec.rb
|
665
|
+
- spec/models/content_app_status_response_spec.rb
|
666
|
+
- spec/models/paginated_pulp_exporter_response_list_spec.rb
|
667
|
+
- spec/models/paginated_upstream_pulp_response_list_spec.rb
|
668
|
+
- spec/models/artifact_response_spec.rb
|
669
|
+
- spec/models/repair_spec.rb
|
670
|
+
- spec/models/upload_commit_spec.rb
|
671
|
+
- spec/models/publication_response_spec.rb
|
672
|
+
- spec/models/group_role_spec.rb
|
673
|
+
- spec/models/filesystem_export_response_spec.rb
|
674
|
+
- spec/models/repository_version_response_spec.rb
|
675
|
+
- spec/models/paginated_pulp_importer_response_list_spec.rb
|
662
676
|
- spec/models/paginated_task_group_response_list_spec.rb
|
663
|
-
- spec/models/
|
664
|
-
- spec/models/
|
665
|
-
- spec/models/
|
666
|
-
- spec/models/
|
667
|
-
- spec/models/
|
677
|
+
- spec/models/patched_task_cancel_spec.rb
|
678
|
+
- spec/models/paginated_repository_response_list_spec.rb
|
679
|
+
- spec/models/paginated_publication_response_list_spec.rb
|
680
|
+
- spec/models/worker_response_spec.rb
|
681
|
+
- spec/models/patched_filesystem_exporter_spec.rb
|
682
|
+
- spec/models/filesystem_export_spec.rb
|
683
|
+
- spec/models/group_spec.rb
|
684
|
+
- spec/models/filesystem_exporter_response_spec.rb
|
685
|
+
- spec/models/upload_response_spec.rb
|
686
|
+
- spec/models/domain_spec.rb
|
687
|
+
- spec/models/redis_connection_response_spec.rb
|
688
|
+
- spec/models/paginated_domain_response_list_spec.rb
|
689
|
+
- spec/models/patched_content_redirect_content_guard_spec.rb
|
668
690
|
- spec/models/patched_role_spec.rb
|
669
|
-
- spec/models/
|
691
|
+
- spec/models/status_response_spec.rb
|
692
|
+
- spec/models/artifact_spec.rb
|
693
|
+
- spec/models/patched_access_policy_spec.rb
|
694
|
+
- spec/models/my_permissions_response_spec.rb
|
695
|
+
- spec/models/user_spec.rb
|
696
|
+
- spec/models/paginated_task_schedule_response_list_spec.rb
|
670
697
|
- spec/models/group_response_spec.rb
|
671
|
-
- spec/models/
|
672
|
-
- spec/models/
|
673
|
-
- spec/models/paginated_task_response_list_spec.rb
|
698
|
+
- spec/models/rbac_content_guard_response_spec.rb
|
699
|
+
- spec/models/patched_user_spec.rb
|
674
700
|
- spec/models/pulp_import_spec.rb
|
675
|
-
- spec/models/rbac_content_guard_spec.rb
|
676
701
|
- spec/models/task_response_spec.rb
|
677
|
-
- spec/models/
|
678
|
-
- spec/models/role_response_spec.rb
|
679
|
-
- spec/models/paginated_access_policy_response_list_spec.rb
|
680
|
-
- spec/models/pulp_export_spec.rb
|
702
|
+
- spec/models/upload_detail_response_spec.rb
|
681
703
|
- spec/models/filesystem_exporter_spec.rb
|
682
|
-
- spec/models/
|
704
|
+
- spec/models/group_user_response_spec.rb
|
705
|
+
- spec/models/pulp_import_check_response_spec.rb
|
683
706
|
- spec/models/paginated_rbac_content_guard_response_list_spec.rb
|
684
|
-
- spec/models/
|
685
|
-
- spec/models/
|
686
|
-
- spec/models/
|
707
|
+
- spec/models/group_user_spec.rb
|
708
|
+
- spec/models/upstream_pulp_spec.rb
|
709
|
+
- spec/models/pulp_importer_spec.rb
|
710
|
+
- spec/models/group_progress_report_response_spec.rb
|
711
|
+
- spec/models/role_response_spec.rb
|
712
|
+
- spec/models/pulp_exporter_spec.rb
|
713
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
714
|
+
- spec/models/paginated_filesystem_export_response_list_spec.rb
|
715
|
+
- spec/models/method_enum_spec.rb
|
716
|
+
- spec/models/distribution_response_spec.rb
|
687
717
|
- spec/models/purge_spec.rb
|
688
|
-
- spec/models/object_roles_response_spec.rb
|
689
|
-
- spec/models/task_group_operation_response_spec.rb
|
690
|
-
- spec/models/group_spec.rb
|
691
|
-
- spec/models/upload_detail_response_spec.rb
|
692
|
-
- spec/models/patched_user_spec.rb
|
693
|
-
- spec/models/group_user_response_spec.rb
|
694
|
-
- spec/models/filesystem_exporter_response_spec.rb
|
695
718
|
- spec/models/paginated_signing_service_response_list_spec.rb
|
719
|
+
- spec/models/paginated_upload_response_list_spec.rb
|
720
|
+
- spec/models/access_policy_spec.rb
|
721
|
+
- spec/models/artifact_distribution_response_spec.rb
|
722
|
+
- spec/models/group_role_response_spec.rb
|
723
|
+
- spec/models/pulp_exporter_response_spec.rb
|
724
|
+
- spec/models/policy_enum_spec.rb
|
725
|
+
- spec/models/task_group_operation_response_spec.rb
|
726
|
+
- spec/models/user_role_response_spec.rb
|
727
|
+
- spec/models/patched_group_spec.rb
|
728
|
+
- spec/models/remote_response_hidden_fields_spec.rb
|
729
|
+
- spec/models/patched_domain_spec.rb
|
730
|
+
- spec/models/minimal_task_response_spec.rb
|
731
|
+
- spec/models/paginated_user_response_list_spec.rb
|
732
|
+
- spec/models/upload_spec.rb
|
733
|
+
- spec/models/content_settings_response_spec.rb
|
734
|
+
- spec/models/patched_upstream_pulp_spec.rb
|
735
|
+
- spec/models/access_policy_response_spec.rb
|
736
|
+
- spec/models/reclaim_space_spec.rb
|
696
737
|
- spec/models/storage_response_spec.rb
|
697
|
-
- spec/models/
|
698
|
-
- spec/models/upload_commit_spec.rb
|
699
|
-
- spec/models/status_response_spec.rb
|
700
|
-
- spec/models/task_schedule_response_spec.rb
|
701
|
-
- spec/models/content_redirect_content_guard_spec.rb
|
702
|
-
- spec/models/paginated_filesystem_exporter_response_list_spec.rb
|
738
|
+
- spec/models/evaluation_response_spec.rb
|
703
739
|
- spec/models/paginated_content_guard_response_list_spec.rb
|
704
|
-
- spec/models/
|
705
|
-
- spec/models/
|
740
|
+
- spec/models/paginated_content_redirect_content_guard_response_list_spec.rb
|
741
|
+
- spec/models/paginated_group_response_list_spec.rb
|
706
742
|
- spec/models/multiple_artifact_content_response_spec.rb
|
707
|
-
- spec/models/
|
708
|
-
- spec/models/
|
709
|
-
- spec/models/
|
743
|
+
- spec/models/paginated_artifact_response_list_spec.rb
|
744
|
+
- spec/models/content_guard_response_spec.rb
|
745
|
+
- spec/models/content_redirect_content_guard_response_spec.rb
|
746
|
+
- spec/models/states_enum_spec.rb
|
710
747
|
- spec/models/orphans_cleanup_spec.rb
|
711
|
-
- spec/models/
|
712
|
-
- spec/models/pulp_exporter_response_spec.rb
|
713
|
-
- spec/models/paginated_multiple_artifact_content_response_list_spec.rb
|
714
|
-
- spec/models/paginated_upstream_pulp_response_list_spec.rb
|
715
|
-
- spec/models/access_policy_spec.rb
|
716
|
-
- spec/models/paginated_domain_response_list_spec.rb
|
717
|
-
- spec/models/paginated_pulp_export_response_list_spec.rb
|
718
|
-
- spec/models/paginated_user_response_list_spec.rb
|
719
|
-
- spec/models/pulp_import_check_spec.rb
|
720
|
-
- spec/models/user_response_spec.rb
|
721
|
-
- spec/models/filesystem_export_response_spec.rb
|
722
|
-
- spec/models/content_settings_response_spec.rb
|
723
|
-
- spec/models/role_spec.rb
|
748
|
+
- spec/models/domain_response_spec.rb
|
724
749
|
- spec/models/paginated_group_role_response_list_spec.rb
|
725
|
-
- spec/models/
|
726
|
-
- spec/models/
|
727
|
-
- spec/models/
|
728
|
-
- spec/models/
|
729
|
-
- spec/models/
|
730
|
-
- spec/models/patched_upstream_pulp_spec.rb
|
731
|
-
- spec/models/patched_content_redirect_content_guard_spec.rb
|
732
|
-
- spec/models/paginated_upload_response_list_spec.rb
|
733
|
-
- spec/models/group_role_spec.rb
|
734
|
-
- spec/models/paginated_user_role_response_list_spec.rb
|
735
|
-
- spec/models/policy_enum_spec.rb
|
736
|
-
- spec/models/artifact_spec.rb
|
737
|
-
- spec/models/distribution_response_spec.rb
|
738
|
-
- spec/models/database_connection_response_spec.rb
|
739
|
-
- spec/models/paginated_task_schedule_response_list_spec.rb
|
740
|
-
- spec/models/remote_response_spec.rb
|
741
|
-
- spec/models/user_role_response_spec.rb
|
742
|
-
- spec/models/group_progress_report_response_spec.rb
|
750
|
+
- spec/models/signing_service_response_spec.rb
|
751
|
+
- spec/models/content_summary_response_spec.rb
|
752
|
+
- spec/models/object_roles_response_spec.rb
|
753
|
+
- spec/models/patched_rbac_content_guard_spec.rb
|
754
|
+
- spec/models/paginated_group_user_response_list_spec.rb
|
743
755
|
- spec/models/upload_chunk_response_spec.rb
|
744
|
-
- spec/models/
|
745
|
-
- spec/models/
|
756
|
+
- spec/models/paginated_role_response_list_spec.rb
|
757
|
+
- spec/models/import_response_spec.rb
|
746
758
|
- spec/models/paginated_distribution_response_list_spec.rb
|
747
|
-
- spec/models/
|
748
|
-
- spec/models/
|
749
|
-
- spec/models/
|
750
|
-
- spec/models/
|
759
|
+
- spec/models/rbac_content_guard_spec.rb
|
760
|
+
- spec/models/paginated_artifact_distribution_response_list_spec.rb
|
761
|
+
- spec/models/user_response_spec.rb
|
762
|
+
- spec/models/pulp_importer_response_spec.rb
|
763
|
+
- spec/models/pulp_export_response_spec.rb
|
751
764
|
- spec/models/storage_class_enum_spec.rb
|
752
|
-
- spec/models/signing_service_response_spec.rb
|
753
|
-
- spec/models/paginated_artifact_response_list_spec.rb
|
754
|
-
- spec/models/minimal_task_response_spec.rb
|
755
|
-
- spec/models/upload_chunk_spec.rb
|
756
765
|
- spec/models/user_group_response_spec.rb
|
757
|
-
- spec/models/domain_response_spec.rb
|
758
|
-
- spec/models/method_enum_spec.rb
|
759
766
|
- spec/models/patched_pulp_exporter_spec.rb
|
760
|
-
- spec/models/
|
761
|
-
- spec/models/progress_report_response_spec.rb
|
762
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
763
|
-
- spec/models/upstream_pulp_response_spec.rb
|
764
|
-
- spec/models/paginated_remote_response_list_spec.rb
|
765
|
-
- spec/models/async_operation_response_spec.rb
|
766
|
-
- spec/models/paginated_artifact_distribution_response_list_spec.rb
|
767
|
-
- spec/models/patched_group_spec.rb
|
768
|
-
- spec/models/evaluation_response_spec.rb
|
769
|
-
- spec/models/paginated_publication_response_list_spec.rb
|
770
|
-
- spec/models/patched_filesystem_exporter_spec.rb
|
771
|
-
- spec/models/repository_version_response_spec.rb
|
772
|
-
- spec/models/remote_response_hidden_fields_spec.rb
|
773
|
-
- spec/models/paginated_pulp_importer_response_list_spec.rb
|
774
|
-
- spec/models/repository_response_spec.rb
|
767
|
+
- spec/models/database_connection_response_spec.rb
|
775
768
|
- spec/models/version_response_spec.rb
|
776
|
-
- spec/models/
|
777
|
-
- spec/models/
|
778
|
-
- spec/models/
|
779
|
-
- spec/models/
|
780
|
-
- spec/models/
|
781
|
-
- spec/models/
|
782
|
-
- spec/models/
|
783
|
-
- spec/models/
|
784
|
-
- spec/models/
|
785
|
-
- spec/models/pulp_export_response_spec.rb
|
769
|
+
- spec/models/role_spec.rb
|
770
|
+
- spec/models/content_redirect_content_guard_spec.rb
|
771
|
+
- spec/models/repository_response_spec.rb
|
772
|
+
- spec/models/pulp_export_spec.rb
|
773
|
+
- spec/models/paginated_remote_response_list_spec.rb
|
774
|
+
- spec/models/upload_chunk_spec.rb
|
775
|
+
- spec/models/progress_report_response_spec.rb
|
776
|
+
- spec/models/paginated_filesystem_exporter_response_list_spec.rb
|
777
|
+
- spec/models/task_group_response_spec.rb
|
786
778
|
- spec/models/patched_pulp_importer_spec.rb
|
787
|
-
- spec/models/
|
788
|
-
- spec/models/
|
789
|
-
- spec/models/
|
779
|
+
- spec/models/paginated_pulp_export_response_list_spec.rb
|
780
|
+
- spec/models/nested_role_response_spec.rb
|
781
|
+
- spec/models/pulp_import_check_spec.rb
|
782
|
+
- spec/models/async_operation_response_spec.rb
|
783
|
+
- spec/models/paginated_user_role_response_list_spec.rb
|
784
|
+
- spec/models/user_group_spec.rb
|
785
|
+
- spec/models/paginated_task_response_list_spec.rb
|
786
|
+
- spec/models/upstream_pulp_response_spec.rb
|
787
|
+
- spec/models/task_schedule_response_spec.rb
|
788
|
+
- spec/models/user_role_spec.rb
|
789
|
+
- spec/models/paginated_import_response_list_spec.rb
|
790
790
|
- spec/spec_helper.rb
|