pulpcore_client 3.26.2 → 3.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ArtifactDistributionResponse.md +9 -7
- 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 +49 -37
- 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 +140 -140
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 64fd0fe20d0dba9759b6bff06fb4780e61ec50cdd47acb25081b3939eaf29ef4
|
4
|
+
data.tar.gz: 07374bd143769c74994c19e89a49589d5881200bf5ea9099c518f2939ff3de9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7659e2f954a77fb052df7237769cebeca719dd75b8fccca160d809b17c6da89a4793b82297ee9d6e56d25a4dbbea53350275db950d65e243ac2b0685e5af149d
|
7
|
+
data.tar.gz: 450cde4d3af22fef0c6742959be55085b5db57043672ae3c4d27e33637615ed8f070c255e41c535456b64d8381146cb02d0f44e4d7ed16548a27bda474677518
|
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.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.
|
27
|
+
gem install ./pulpcore_client-3.27.0.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.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.
|
36
|
+
gem 'pulpcore_client', '~> 3.27.0'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -4,26 +4,28 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**
|
7
|
+
**pulp_labels** | **Hash<String, String>** | | [optional]
|
8
8
|
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
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
|
+
**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
|
9
11
|
**pulp_href** | **String** | | [optional] [readonly]
|
10
|
-
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
11
12
|
**content_guard** | **String** | An optional content-guard. | [optional]
|
13
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
12
14
|
**base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
|
13
|
-
**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
|
+
instance = PulpcoreClient::ArtifactDistributionResponse.new(pulp_labels: null,
|
21
22
|
name: null,
|
23
|
+
base_path: null,
|
24
|
+
hidden: null,
|
22
25
|
pulp_href: null,
|
23
|
-
pulp_created: null,
|
24
26
|
content_guard: null,
|
25
|
-
|
26
|
-
|
27
|
+
pulp_created: null,
|
28
|
+
base_url: 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
|
-
|
19
|
-
attr_accessor :base_path
|
18
|
+
attr_accessor :pulp_labels
|
20
19
|
|
21
20
|
# A unique name. Ex, `rawhide` and `stable`.
|
22
21
|
attr_accessor :name
|
23
22
|
|
24
|
-
|
23
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
24
|
+
attr_accessor :base_path
|
25
25
|
|
26
|
-
#
|
27
|
-
attr_accessor :
|
26
|
+
# Whether this distribution should be shown in the content app.
|
27
|
+
attr_accessor :hidden
|
28
|
+
|
29
|
+
attr_accessor :pulp_href
|
28
30
|
|
29
31
|
# An optional content-guard.
|
30
32
|
attr_accessor :content_guard
|
31
33
|
|
34
|
+
# Timestamp of creation.
|
35
|
+
attr_accessor :pulp_created
|
36
|
+
|
32
37
|
# The URL for accessing the publication as defined by this distribution.
|
33
38
|
attr_accessor :base_url
|
34
39
|
|
35
|
-
attr_accessor :pulp_labels
|
36
|
-
|
37
40
|
# Attribute mapping from ruby-style variable name to JSON key.
|
38
41
|
def self.attribute_map
|
39
42
|
{
|
40
|
-
:'
|
43
|
+
:'pulp_labels' => :'pulp_labels',
|
41
44
|
:'name' => :'name',
|
45
|
+
:'base_path' => :'base_path',
|
46
|
+
:'hidden' => :'hidden',
|
42
47
|
:'pulp_href' => :'pulp_href',
|
43
|
-
:'pulp_created' => :'pulp_created',
|
44
48
|
:'content_guard' => :'content_guard',
|
45
|
-
:'
|
46
|
-
:'
|
49
|
+
:'pulp_created' => :'pulp_created',
|
50
|
+
:'base_url' => :'base_url'
|
47
51
|
}
|
48
52
|
end
|
49
53
|
|
50
54
|
# Attribute type mapping.
|
51
55
|
def self.openapi_types
|
52
56
|
{
|
53
|
-
:'
|
57
|
+
:'pulp_labels' => :'Hash<String, String>',
|
54
58
|
:'name' => :'String',
|
59
|
+
:'base_path' => :'String',
|
60
|
+
:'hidden' => :'Boolean',
|
55
61
|
:'pulp_href' => :'String',
|
56
|
-
:'pulp_created' => :'DateTime',
|
57
62
|
:'content_guard' => :'String',
|
58
|
-
:'
|
59
|
-
:'
|
63
|
+
:'pulp_created' => :'DateTime',
|
64
|
+
:'base_url' => :'String'
|
60
65
|
}
|
61
66
|
end
|
62
67
|
|
@@ -82,34 +87,40 @@ module PulpcoreClient
|
|
82
87
|
h[k.to_sym] = v
|
83
88
|
}
|
84
89
|
|
85
|
-
if attributes.key?(:'
|
86
|
-
|
90
|
+
if attributes.key?(:'pulp_labels')
|
91
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
92
|
+
self.pulp_labels = value
|
93
|
+
end
|
87
94
|
end
|
88
95
|
|
89
96
|
if attributes.key?(:'name')
|
90
97
|
self.name = attributes[:'name']
|
91
98
|
end
|
92
99
|
|
93
|
-
if attributes.key?(:'
|
94
|
-
self.
|
100
|
+
if attributes.key?(:'base_path')
|
101
|
+
self.base_path = attributes[:'base_path']
|
95
102
|
end
|
96
103
|
|
97
|
-
if attributes.key?(:'
|
98
|
-
self.
|
104
|
+
if attributes.key?(:'hidden')
|
105
|
+
self.hidden = attributes[:'hidden']
|
106
|
+
else
|
107
|
+
self.hidden = false
|
108
|
+
end
|
109
|
+
|
110
|
+
if attributes.key?(:'pulp_href')
|
111
|
+
self.pulp_href = attributes[:'pulp_href']
|
99
112
|
end
|
100
113
|
|
101
114
|
if attributes.key?(:'content_guard')
|
102
115
|
self.content_guard = attributes[:'content_guard']
|
103
116
|
end
|
104
117
|
|
105
|
-
if attributes.key?(:'
|
106
|
-
self.
|
118
|
+
if attributes.key?(:'pulp_created')
|
119
|
+
self.pulp_created = attributes[:'pulp_created']
|
107
120
|
end
|
108
121
|
|
109
|
-
if attributes.key?(:'
|
110
|
-
|
111
|
-
self.pulp_labels = value
|
112
|
-
end
|
122
|
+
if attributes.key?(:'base_url')
|
123
|
+
self.base_url = attributes[:'base_url']
|
113
124
|
end
|
114
125
|
end
|
115
126
|
|
@@ -117,22 +128,22 @@ module PulpcoreClient
|
|
117
128
|
# @return Array for valid properties with the reasons
|
118
129
|
def list_invalid_properties
|
119
130
|
invalid_properties = Array.new
|
120
|
-
if @base_path.nil?
|
121
|
-
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
122
|
-
end
|
123
|
-
|
124
131
|
if @name.nil?
|
125
132
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
126
133
|
end
|
127
134
|
|
135
|
+
if @base_path.nil?
|
136
|
+
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
137
|
+
end
|
138
|
+
|
128
139
|
invalid_properties
|
129
140
|
end
|
130
141
|
|
131
142
|
# Check to see if the all the properties in the model are valid
|
132
143
|
# @return true if the model is valid
|
133
144
|
def valid?
|
134
|
-
return false if @base_path.nil?
|
135
145
|
return false if @name.nil?
|
146
|
+
return false if @base_path.nil?
|
136
147
|
true
|
137
148
|
end
|
138
149
|
|
@@ -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
|
-
|
155
|
+
pulp_labels == o.pulp_labels &&
|
145
156
|
name == o.name &&
|
157
|
+
base_path == o.base_path &&
|
158
|
+
hidden == o.hidden &&
|
146
159
|
pulp_href == o.pulp_href &&
|
147
|
-
pulp_created == o.pulp_created &&
|
148
160
|
content_guard == o.content_guard &&
|
149
|
-
|
150
|
-
|
161
|
+
pulp_created == o.pulp_created &&
|
162
|
+
base_url == o.base_url
|
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
|
+
[pulp_labels, name, base_path, hidden, pulp_href, content_guard, pulp_created, base_url].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,7 +32,7 @@ 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 "pulp_labels"' 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
|
@@ -44,13 +44,19 @@ describe 'ArtifactDistributionResponse' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "base_path"' 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
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "pulp_href"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
62
|
end
|
@@ -62,13 +68,13 @@ describe 'ArtifactDistributionResponse' do
|
|
62
68
|
end
|
63
69
|
end
|
64
70
|
|
65
|
-
describe 'test attribute "
|
71
|
+
describe 'test attribute "pulp_created"' do
|
66
72
|
it 'should work' do
|
67
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
74
|
end
|
69
75
|
end
|
70
76
|
|
71
|
-
describe 'test attribute "
|
77
|
+
describe 'test attribute "base_url"' do
|
72
78
|
it 'should work' do
|
73
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
80
|
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.0
|
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-
|
11
|
+
date: 2023-05-31 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/importers_pulp_api_spec.rb
|
622
|
-
- spec/api/users_roles_api_spec.rb
|
623
|
-
- spec/api/distributions_api_spec.rb
|
624
|
-
- spec/api/task_schedules_api_spec.rb
|
625
|
-
- spec/api/users_api_spec.rb
|
626
|
-
- spec/api/access_policies_api_spec.rb
|
627
|
-
- spec/api/importers_pulp_imports_api_spec.rb
|
628
|
-
- spec/api/contentguards_rbac_api_spec.rb
|
629
|
-
- spec/api/domains_api_spec.rb
|
630
|
-
- spec/api/exporters_pulp_api_spec.rb
|
631
|
-
- spec/api/content_api_spec.rb
|
632
|
-
- spec/api/repositories_reclaim_space_api_spec.rb
|
633
|
-
- spec/api/roles_api_spec.rb
|
634
|
-
- spec/api/repositories_api_spec.rb
|
635
|
-
- spec/api/exporters_filesystem_api_spec.rb
|
636
|
-
- spec/api/upstream_pulps_api_spec.rb
|
637
|
-
- spec/api/exporters_filesystem_exports_api_spec.rb
|
638
|
-
- spec/api/workers_api_spec.rb
|
639
|
-
- spec/api/tasks_api_spec.rb
|
640
|
-
- spec/api/contentguards_content_redirect_api_spec.rb
|
620
|
+
- spec/api/signing_services_api_spec.rb
|
641
621
|
- spec/api/groups_users_api_spec.rb
|
642
|
-
- spec/api/
|
622
|
+
- spec/api/workers_api_spec.rb
|
623
|
+
- spec/api/groups_roles_api_spec.rb
|
643
624
|
- spec/api/remotes_api_spec.rb
|
644
|
-
- spec/api/repair_api_spec.rb
|
645
|
-
- spec/api/orphans_cleanup_api_spec.rb
|
646
|
-
- spec/api/signing_services_api_spec.rb
|
647
|
-
- spec/api/repository_versions_api_spec.rb
|
648
625
|
- spec/api/artifacts_api_spec.rb
|
649
|
-
- spec/api/uploads_api_spec.rb
|
650
626
|
- spec/api/contentguards_api_spec.rb
|
651
|
-
- 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
|
630
|
+
- spec/api/orphans_api_spec.rb
|
631
|
+
- spec/api/roles_api_spec.rb
|
632
|
+
- spec/api/uploads_api_spec.rb
|
633
|
+
- spec/api/exporters_filesystem_api_spec.rb
|
634
|
+
- spec/api/repositories_api_spec.rb
|
652
635
|
- spec/api/status_api_spec.rb
|
636
|
+
- spec/api/contentguards_rbac_api_spec.rb
|
637
|
+
- spec/api/repository_versions_api_spec.rb
|
638
|
+
- spec/api/content_api_spec.rb
|
639
|
+
- spec/api/groups_api_spec.rb
|
640
|
+
- spec/api/upstream_pulps_api_spec.rb
|
653
641
|
- spec/api/distributions_artifacts_api_spec.rb
|
654
|
-
- spec/api/
|
642
|
+
- spec/api/importers_pulp_api_spec.rb
|
655
643
|
- spec/api/exporters_pulp_exports_api_spec.rb
|
644
|
+
- spec/api/repositories_reclaim_space_api_spec.rb
|
645
|
+
- spec/api/publications_api_spec.rb
|
646
|
+
- spec/api/repair_api_spec.rb
|
647
|
+
- spec/api/importers_pulp_import_check_api_spec.rb
|
648
|
+
- spec/api/domains_api_spec.rb
|
649
|
+
- spec/api/tasks_api_spec.rb
|
650
|
+
- spec/api/access_policies_api_spec.rb
|
651
|
+
- 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
656
|
- spec/api/task_groups_api_spec.rb
|
657
|
-
- spec/api/
|
657
|
+
- spec/api/exporters_filesystem_exports_api_spec.rb
|
658
658
|
- spec/api_client_spec.rb
|
659
659
|
- spec/configuration_spec.rb
|
660
|
-
- spec/models/
|
661
|
-
- spec/models/
|
662
|
-
- spec/models/
|
663
|
-
- spec/models/
|
660
|
+
- spec/models/reclaim_space_spec.rb
|
661
|
+
- spec/models/content_redirect_content_guard_response_spec.rb
|
662
|
+
- spec/models/paginated_task_group_response_list_spec.rb
|
663
|
+
- spec/models/group_role_response_spec.rb
|
664
|
+
- spec/models/paginated_group_response_list_spec.rb
|
664
665
|
- spec/models/paginated_content_redirect_content_guard_response_list_spec.rb
|
665
|
-
- spec/models/
|
666
|
-
- spec/models/
|
667
|
-
- spec/models/
|
666
|
+
- spec/models/pulp_exporter_spec.rb
|
667
|
+
- spec/models/content_guard_response_spec.rb
|
668
|
+
- spec/models/patched_role_spec.rb
|
668
669
|
- spec/models/nested_role_response_spec.rb
|
669
|
-
- spec/models/storage_class_enum_spec.rb
|
670
|
-
- spec/models/access_policy_response_spec.rb
|
671
|
-
- spec/models/import_response_spec.rb
|
672
|
-
- spec/models/user_spec.rb
|
673
|
-
- spec/models/pulp_export_response_spec.rb
|
674
|
-
- spec/models/evaluation_response_spec.rb
|
675
|
-
- spec/models/paginated_group_response_list_spec.rb
|
676
|
-
- spec/models/artifact_response_spec.rb
|
677
|
-
- spec/models/remote_response_spec.rb
|
678
|
-
- spec/models/status_response_spec.rb
|
679
|
-
- spec/models/pulp_importer_spec.rb
|
680
|
-
- spec/models/patched_pulp_exporter_spec.rb
|
681
670
|
- spec/models/group_response_spec.rb
|
682
|
-
- spec/models/
|
683
|
-
- spec/models/
|
684
|
-
- spec/models/
|
685
|
-
- spec/models/
|
686
|
-
- spec/models/
|
671
|
+
- spec/models/import_response_spec.rb
|
672
|
+
- spec/models/content_summary_response_spec.rb
|
673
|
+
- spec/models/paginated_task_response_list_spec.rb
|
674
|
+
- spec/models/pulp_import_spec.rb
|
675
|
+
- spec/models/rbac_content_guard_spec.rb
|
687
676
|
- spec/models/task_response_spec.rb
|
688
|
-
- spec/models/
|
689
|
-
- spec/models/
|
690
|
-
- spec/models/
|
691
|
-
- spec/models/
|
692
|
-
- spec/models/
|
693
|
-
- spec/models/
|
694
|
-
- spec/models/paginated_user_role_response_list_spec.rb
|
695
|
-
- spec/models/content_settings_response_spec.rb
|
696
|
-
- spec/models/paginated_upload_response_list_spec.rb
|
697
|
-
- spec/models/patched_content_redirect_content_guard_spec.rb
|
698
|
-
- spec/models/upload_chunk_response_spec.rb
|
677
|
+
- spec/models/rbac_content_guard_response_spec.rb
|
678
|
+
- spec/models/role_response_spec.rb
|
679
|
+
- spec/models/paginated_access_policy_response_list_spec.rb
|
680
|
+
- spec/models/pulp_export_spec.rb
|
681
|
+
- spec/models/filesystem_exporter_spec.rb
|
682
|
+
- spec/models/artifact_response_spec.rb
|
699
683
|
- spec/models/paginated_rbac_content_guard_response_list_spec.rb
|
700
|
-
- spec/models/pulp_exporter_response_spec.rb
|
701
|
-
- spec/models/paginated_artifact_response_list_spec.rb
|
702
|
-
- spec/models/patched_role_spec.rb
|
703
|
-
- spec/models/filesystem_export_response_spec.rb
|
704
|
-
- spec/models/states_enum_spec.rb
|
705
|
-
- spec/models/patched_group_spec.rb
|
706
|
-
- spec/models/paginated_task_group_response_list_spec.rb
|
707
|
-
- spec/models/domain_response_spec.rb
|
708
684
|
- spec/models/filesystem_export_spec.rb
|
709
|
-
- spec/models/
|
710
|
-
- spec/models/
|
711
|
-
- spec/models/
|
712
|
-
- spec/models/
|
713
|
-
- spec/models/
|
714
|
-
- spec/models/
|
715
|
-
- spec/models/
|
685
|
+
- spec/models/patched_task_cancel_spec.rb
|
686
|
+
- spec/models/pulp_importer_response_spec.rb
|
687
|
+
- 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
|
+
- spec/models/paginated_signing_service_response_list_spec.rb
|
696
|
+
- spec/models/storage_response_spec.rb
|
716
697
|
- spec/models/paginated_role_response_list_spec.rb
|
717
698
|
- spec/models/upload_commit_spec.rb
|
718
|
-
- spec/models/
|
719
|
-
- spec/models/
|
720
|
-
- spec/models/
|
721
|
-
- spec/models/
|
722
|
-
- spec/models/
|
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
|
703
|
+
- spec/models/paginated_content_guard_response_list_spec.rb
|
704
|
+
- spec/models/paginated_group_user_response_list_spec.rb
|
705
|
+
- spec/models/patched_domain_spec.rb
|
706
|
+
- spec/models/multiple_artifact_content_response_spec.rb
|
707
|
+
- spec/models/paginated_repository_response_list_spec.rb
|
723
708
|
- spec/models/patched_rbac_content_guard_spec.rb
|
724
|
-
- spec/models/
|
725
|
-
- spec/models/
|
709
|
+
- spec/models/paginated_import_response_list_spec.rb
|
710
|
+
- spec/models/orphans_cleanup_spec.rb
|
726
711
|
- spec/models/nested_role_spec.rb
|
727
|
-
- spec/models/
|
728
|
-
- spec/models/
|
712
|
+
- spec/models/pulp_exporter_response_spec.rb
|
713
|
+
- spec/models/paginated_multiple_artifact_content_response_list_spec.rb
|
729
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
|
730
724
|
- spec/models/paginated_group_role_response_list_spec.rb
|
731
|
-
- spec/models/
|
732
|
-
- spec/models/
|
733
|
-
- spec/models/
|
734
|
-
- spec/models/
|
725
|
+
- spec/models/domain_spec.rb
|
726
|
+
- spec/models/repair_spec.rb
|
727
|
+
- spec/models/group_user_spec.rb
|
728
|
+
- spec/models/task_group_response_spec.rb
|
735
729
|
- spec/models/worker_response_spec.rb
|
736
|
-
- 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
|
737
742
|
- spec/models/group_progress_report_response_spec.rb
|
738
|
-
- spec/models/
|
739
|
-
- spec/models/
|
743
|
+
- spec/models/upload_chunk_response_spec.rb
|
744
|
+
- spec/models/my_permissions_response_spec.rb
|
745
|
+
- spec/models/user_group_spec.rb
|
746
|
+
- spec/models/paginated_distribution_response_list_spec.rb
|
747
|
+
- spec/models/artifact_distribution_response_spec.rb
|
748
|
+
- spec/models/publication_response_spec.rb
|
749
|
+
- spec/models/content_app_status_response_spec.rb
|
750
|
+
- spec/models/user_role_spec.rb
|
751
|
+
- 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
|
+
- spec/models/user_group_response_spec.rb
|
757
|
+
- spec/models/domain_response_spec.rb
|
740
758
|
- spec/models/method_enum_spec.rb
|
741
|
-
- spec/models/
|
759
|
+
- spec/models/patched_pulp_exporter_spec.rb
|
760
|
+
- spec/models/upstream_pulp_spec.rb
|
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
|
742
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
|
743
773
|
- spec/models/paginated_pulp_importer_response_list_spec.rb
|
744
|
-
- spec/models/
|
745
|
-
- spec/models/group_user_spec.rb
|
774
|
+
- spec/models/repository_response_spec.rb
|
746
775
|
- spec/models/version_response_spec.rb
|
747
|
-
- spec/models/
|
748
|
-
- spec/models/
|
749
|
-
- spec/models/
|
750
|
-
- spec/models/paginated_signing_service_response_list_spec.rb
|
751
|
-
- spec/models/publication_response_spec.rb
|
752
|
-
- spec/models/role_response_spec.rb
|
753
|
-
- spec/models/policy_enum_spec.rb
|
754
|
-
- spec/models/user_group_spec.rb
|
755
|
-
- spec/models/upstream_pulp_spec.rb
|
756
|
-
- spec/models/pulp_import_check_spec.rb
|
757
|
-
- spec/models/storage_response_spec.rb
|
758
|
-
- spec/models/database_connection_response_spec.rb
|
776
|
+
- spec/models/user_spec.rb
|
777
|
+
- spec/models/states_enum_spec.rb
|
778
|
+
- spec/models/pulp_importer_spec.rb
|
759
779
|
- spec/models/paginated_filesystem_export_response_list_spec.rb
|
760
|
-
- spec/models/paginated_repository_response_list_spec.rb
|
761
|
-
- spec/models/paginated_access_policy_response_list_spec.rb
|
762
|
-
- spec/models/group_user_response_spec.rb
|
763
|
-
- spec/models/purge_spec.rb
|
764
|
-
- spec/models/remote_response_hidden_fields_spec.rb
|
765
|
-
- spec/models/pulp_import_spec.rb
|
766
|
-
- spec/models/artifact_spec.rb
|
767
|
-
- spec/models/signing_service_response_spec.rb
|
768
|
-
- spec/models/patched_user_spec.rb
|
769
780
|
- spec/models/upload_response_spec.rb
|
770
|
-
- spec/models/task_group_response_spec.rb
|
771
|
-
- spec/models/pulp_export_spec.rb
|
772
781
|
- spec/models/paginated_pulp_exporter_response_list_spec.rb
|
773
|
-
- spec/models/paginated_import_response_list_spec.rb
|
774
|
-
- spec/models/paginated_multiple_artifact_content_response_list_spec.rb
|
775
|
-
- spec/models/group_role_response_spec.rb
|
776
|
-
- spec/models/patched_filesystem_exporter_spec.rb
|
777
|
-
- spec/models/rbac_content_guard_spec.rb
|
778
|
-
- spec/models/role_spec.rb
|
779
|
-
- spec/models/paginated_filesystem_exporter_response_list_spec.rb
|
780
|
-
- spec/models/paginated_group_user_response_list_spec.rb
|
781
|
-
- spec/models/paginated_distribution_response_list_spec.rb
|
782
|
-
- spec/models/filesystem_exporter_spec.rb
|
783
|
-
- spec/models/distribution_response_spec.rb
|
784
|
-
- spec/models/pulp_importer_response_spec.rb
|
785
|
-
- spec/models/task_schedule_response_spec.rb
|
786
|
-
- spec/models/patched_upstream_pulp_spec.rb
|
787
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
788
782
|
- spec/models/paginated_worker_response_list_spec.rb
|
789
|
-
- spec/models/
|
783
|
+
- spec/models/pulp_import_check_response_spec.rb
|
784
|
+
- spec/models/redis_connection_response_spec.rb
|
785
|
+
- spec/models/pulp_export_response_spec.rb
|
786
|
+
- spec/models/patched_pulp_importer_spec.rb
|
787
|
+
- spec/models/patched_access_policy_spec.rb
|
788
|
+
- spec/models/upload_spec.rb
|
789
|
+
- spec/models/access_policy_response_spec.rb
|
790
790
|
- spec/spec_helper.rb
|