pulp_2to3_migration_client 0.8.0 → 0.9.0.dev01613726251
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/Pulp2ContentApi.md +22 -22
- data/docs/Pulp2RepositoriesApi.md +8 -8
- data/lib/pulp_2to3_migration_client/api/pulp2_content_api.rb +45 -25
- data/lib/pulp_2to3_migration_client/api/pulp2_repositories_api.rb +9 -9
- data/lib/pulp_2to3_migration_client/version.rb +1 -1
- data/spec/api/pulp2_content_api_spec.rb +11 -11
- data/spec/api/pulp2_repositories_api_spec.rb +4 -4
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14752893ec42cfe01bce25fb3d022434bc314bbc57b732fa3beab4aae02dab5e
|
4
|
+
data.tar.gz: 61d34162befdc2174928436929fa1f8edb0ec49dece464cb8ecc004066bfc286
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 557c008968163209852e1a46704ccf285d064d06b84d1cafc3c06880ad93421a9c2138759fb1f5223e1620c094e3122e060beda98e2a264f912ce55674a73f21
|
7
|
+
data.tar.gz: 74e3935de67a807115f9b9d85dbf7c4e0f4287b4f63ccbfbed2edcdc44102d8f9a84b18847681d656b5076cb0da4ba1d7fedfc36494a8a61a610f879649ba0ca
|
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: 0.
|
10
|
+
- Package version: 0.9.0.dev01613726251
|
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 pulp_2to3_migration_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_2to3_migration_client-0.
|
27
|
+
gem install ./pulp_2to3_migration_client-0.9.0.dev01613726251.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_2to3_migration_client-0.
|
30
|
+
(for development, run `gem install --dev ./pulp_2to3_migration_client-0.9.0.dev01613726251.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 'pulp_2to3_migration_client', '~> 0.
|
36
|
+
gem 'pulp_2to3_migration_client', '~> 0.9.0.dev01613726251'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
data/docs/Pulp2ContentApi.md
CHANGED
@@ -34,17 +34,17 @@ opts = {
|
|
34
34
|
limit: 56, # Integer | Number of results to return per page.
|
35
35
|
offset: 56, # Integer | The initial index from which to return the results.
|
36
36
|
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
37
|
-
pulp2_content_type_id: 'pulp2_content_type_id_example', # String |
|
38
|
-
pulp2_content_type_id__in: 'pulp2_content_type_id__in_example', # String |
|
39
|
-
pulp2_id: 'pulp2_id_example', # String |
|
40
|
-
pulp2_id__in: 'pulp2_id__in_example', # String |
|
41
|
-
pulp2_last_updated:
|
42
|
-
pulp2_last_updated__gt:
|
43
|
-
pulp2_last_updated__gte:
|
44
|
-
pulp2_last_updated__lt:
|
45
|
-
pulp2_last_updated__lte:
|
46
|
-
pulp2_last_updated__range:
|
47
|
-
pulp3_content: 'pulp3_content_example', # String |
|
37
|
+
pulp2_content_type_id: 'pulp2_content_type_id_example', # String |
|
38
|
+
pulp2_content_type_id__in: ['pulp2_content_type_id__in_example'], # Array<String> | Filter results where pulp2_content_type_id is in a comma-separated list of values
|
39
|
+
pulp2_id: 'pulp2_id_example', # String |
|
40
|
+
pulp2_id__in: ['pulp2_id__in_example'], # Array<String> | Filter results where pulp2_id is in a comma-separated list of values
|
41
|
+
pulp2_last_updated: 56, # Integer | ISO 8601 formatted dates are supported
|
42
|
+
pulp2_last_updated__gt: 56, # Integer | Filter results where pulp2_last_updated is greater than value
|
43
|
+
pulp2_last_updated__gte: 56, # Integer | Filter results where pulp2_last_updated is greater than or equal to value
|
44
|
+
pulp2_last_updated__lt: 56, # Integer | Filter results where pulp2_last_updated is less than value
|
45
|
+
pulp2_last_updated__lte: 56, # Integer | Filter results where pulp2_last_updated is less than or equal to value
|
46
|
+
pulp2_last_updated__range: [56], # Array<Integer> | Filter results where pulp2_last_updated is between two comma separated values
|
47
|
+
pulp3_content: 'pulp3_content_example', # String | Foreign Key referenced by HREF
|
48
48
|
fields: 'fields_example', # String | A list of fields to include in the response.
|
49
49
|
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
50
50
|
}
|
@@ -66,17 +66,17 @@ Name | Type | Description | Notes
|
|
66
66
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
67
67
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
68
68
|
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
69
|
-
**pulp2_content_type_id** | **String**|
|
70
|
-
**pulp2_content_type_id__in** | **String
|
71
|
-
**pulp2_id** | **String**|
|
72
|
-
**pulp2_id__in** | **String
|
73
|
-
**pulp2_last_updated** | **
|
74
|
-
**pulp2_last_updated__gt** | **
|
75
|
-
**pulp2_last_updated__gte** | **
|
76
|
-
**pulp2_last_updated__lt** | **
|
77
|
-
**pulp2_last_updated__lte** | **
|
78
|
-
**pulp2_last_updated__range** | **
|
79
|
-
**pulp3_content** | **String
|
69
|
+
**pulp2_content_type_id** | **String**| | [optional]
|
70
|
+
**pulp2_content_type_id__in** | [**Array<String>**](String.md)| Filter results where pulp2_content_type_id is in a comma-separated list of values | [optional]
|
71
|
+
**pulp2_id** | **String**| | [optional]
|
72
|
+
**pulp2_id__in** | [**Array<String>**](String.md)| Filter results where pulp2_id is in a comma-separated list of values | [optional]
|
73
|
+
**pulp2_last_updated** | **Integer**| ISO 8601 formatted dates are supported | [optional]
|
74
|
+
**pulp2_last_updated__gt** | **Integer**| Filter results where pulp2_last_updated is greater than value | [optional]
|
75
|
+
**pulp2_last_updated__gte** | **Integer**| Filter results where pulp2_last_updated is greater than or equal to value | [optional]
|
76
|
+
**pulp2_last_updated__lt** | **Integer**| Filter results where pulp2_last_updated is less than value | [optional]
|
77
|
+
**pulp2_last_updated__lte** | **Integer**| Filter results where pulp2_last_updated is less than or equal to value | [optional]
|
78
|
+
**pulp2_last_updated__range** | [**Array<Integer>**](Integer.md)| Filter results where pulp2_last_updated is between two comma separated values | [optional]
|
79
|
+
**pulp3_content** | [**String**](.md)| Foreign Key referenced by HREF | [optional]
|
80
80
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
81
81
|
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
82
82
|
|
@@ -31,13 +31,13 @@ end
|
|
31
31
|
|
32
32
|
api_instance = Pulp2to3MigrationClient::Pulp2RepositoriesApi.new
|
33
33
|
opts = {
|
34
|
-
is_migrated:
|
34
|
+
is_migrated: true, # Boolean |
|
35
35
|
limit: 56, # Integer | Number of results to return per page.
|
36
|
-
not_in_plan:
|
36
|
+
not_in_plan: true, # Boolean |
|
37
37
|
offset: 56, # Integer | The initial index from which to return the results.
|
38
38
|
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
39
|
-
pulp2_repo_id: 'pulp2_repo_id_example', # String |
|
40
|
-
pulp2_repo_id__in: 'pulp2_repo_id__in_example', # String |
|
39
|
+
pulp2_repo_id: 'pulp2_repo_id_example', # String |
|
40
|
+
pulp2_repo_id__in: ['pulp2_repo_id__in_example'], # Array<String> | Filter results where pulp2_repo_id is in a comma-separated list of values
|
41
41
|
fields: 'fields_example', # String | A list of fields to include in the response.
|
42
42
|
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
43
43
|
}
|
@@ -56,13 +56,13 @@ end
|
|
56
56
|
|
57
57
|
Name | Type | Description | Notes
|
58
58
|
------------- | ------------- | ------------- | -------------
|
59
|
-
**is_migrated** | **
|
59
|
+
**is_migrated** | **Boolean**| | [optional]
|
60
60
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
61
|
-
**not_in_plan** | **
|
61
|
+
**not_in_plan** | **Boolean**| | [optional]
|
62
62
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
63
63
|
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
64
|
-
**pulp2_repo_id** | **String**|
|
65
|
-
**pulp2_repo_id__in** | **String
|
64
|
+
**pulp2_repo_id** | **String**| | [optional]
|
65
|
+
**pulp2_repo_id__in** | [**Array<String>**](String.md)| Filter results where pulp2_repo_id is in a comma-separated list of values | [optional]
|
66
66
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
67
67
|
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
68
68
|
|
@@ -25,17 +25,17 @@ module Pulp2to3MigrationClient
|
|
25
25
|
# @option opts [Integer] :limit Number of results to return per page.
|
26
26
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
27
27
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
28
|
-
# @option opts [String] :pulp2_content_type_id
|
29
|
-
# @option opts [String] :pulp2_content_type_id__in
|
30
|
-
# @option opts [String] :pulp2_id
|
31
|
-
# @option opts [String] :pulp2_id__in
|
32
|
-
# @option opts [
|
33
|
-
# @option opts [
|
34
|
-
# @option opts [
|
35
|
-
# @option opts [
|
36
|
-
# @option opts [
|
37
|
-
# @option opts [
|
38
|
-
# @option opts [String] :pulp3_content
|
28
|
+
# @option opts [String] :pulp2_content_type_id
|
29
|
+
# @option opts [Array<String>] :pulp2_content_type_id__in Filter results where pulp2_content_type_id is in a comma-separated list of values
|
30
|
+
# @option opts [String] :pulp2_id
|
31
|
+
# @option opts [Array<String>] :pulp2_id__in Filter results where pulp2_id is in a comma-separated list of values
|
32
|
+
# @option opts [Integer] :pulp2_last_updated ISO 8601 formatted dates are supported
|
33
|
+
# @option opts [Integer] :pulp2_last_updated__gt Filter results where pulp2_last_updated is greater than value
|
34
|
+
# @option opts [Integer] :pulp2_last_updated__gte Filter results where pulp2_last_updated is greater than or equal to value
|
35
|
+
# @option opts [Integer] :pulp2_last_updated__lt Filter results where pulp2_last_updated is less than value
|
36
|
+
# @option opts [Integer] :pulp2_last_updated__lte Filter results where pulp2_last_updated is less than or equal to value
|
37
|
+
# @option opts [Array<Integer>] :pulp2_last_updated__range Filter results where pulp2_last_updated is between two comma separated values
|
38
|
+
# @option opts [String] :pulp3_content Foreign Key referenced by HREF
|
39
39
|
# @option opts [String] :fields A list of fields to include in the response.
|
40
40
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
41
41
|
# @return [Paginatedpulp2to3MigrationPulp2ContentResponseList]
|
@@ -50,17 +50,17 @@ module Pulp2to3MigrationClient
|
|
50
50
|
# @option opts [Integer] :limit Number of results to return per page.
|
51
51
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
52
52
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
53
|
-
# @option opts [String] :pulp2_content_type_id
|
54
|
-
# @option opts [String] :pulp2_content_type_id__in
|
55
|
-
# @option opts [String] :pulp2_id
|
56
|
-
# @option opts [String] :pulp2_id__in
|
57
|
-
# @option opts [
|
58
|
-
# @option opts [
|
59
|
-
# @option opts [
|
60
|
-
# @option opts [
|
61
|
-
# @option opts [
|
62
|
-
# @option opts [
|
63
|
-
# @option opts [String] :pulp3_content
|
53
|
+
# @option opts [String] :pulp2_content_type_id
|
54
|
+
# @option opts [Array<String>] :pulp2_content_type_id__in Filter results where pulp2_content_type_id is in a comma-separated list of values
|
55
|
+
# @option opts [String] :pulp2_id
|
56
|
+
# @option opts [Array<String>] :pulp2_id__in Filter results where pulp2_id is in a comma-separated list of values
|
57
|
+
# @option opts [Integer] :pulp2_last_updated ISO 8601 formatted dates are supported
|
58
|
+
# @option opts [Integer] :pulp2_last_updated__gt Filter results where pulp2_last_updated is greater than value
|
59
|
+
# @option opts [Integer] :pulp2_last_updated__gte Filter results where pulp2_last_updated is greater than or equal to value
|
60
|
+
# @option opts [Integer] :pulp2_last_updated__lt Filter results where pulp2_last_updated is less than value
|
61
|
+
# @option opts [Integer] :pulp2_last_updated__lte Filter results where pulp2_last_updated is less than or equal to value
|
62
|
+
# @option opts [Array<Integer>] :pulp2_last_updated__range Filter results where pulp2_last_updated is between two comma separated values
|
63
|
+
# @option opts [String] :pulp3_content Foreign Key referenced by HREF
|
64
64
|
# @option opts [String] :fields A list of fields to include in the response.
|
65
65
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
66
66
|
# @return [Array<(Paginatedpulp2to3MigrationPulp2ContentResponseList, Integer, Hash)>] Paginatedpulp2to3MigrationPulp2ContentResponseList data, response status code and response headers
|
@@ -68,6 +68,26 @@ module Pulp2to3MigrationClient
|
|
68
68
|
if @api_client.config.debugging
|
69
69
|
@api_client.config.logger.debug 'Calling API: Pulp2ContentApi.list ...'
|
70
70
|
end
|
71
|
+
if @api_client.config.client_side_validation && !opts[:'pulp2_last_updated'].nil? && opts[:'pulp2_last_updated'] > 2147483647
|
72
|
+
fail ArgumentError, 'invalid value for "opts[:"pulp2_last_updated"]" when calling Pulp2ContentApi.list, must be smaller than or equal to 2147483647.'
|
73
|
+
end
|
74
|
+
|
75
|
+
if @api_client.config.client_side_validation && !opts[:'pulp2_last_updated__gt'].nil? && opts[:'pulp2_last_updated__gt'] > 2147483647
|
76
|
+
fail ArgumentError, 'invalid value for "opts[:"pulp2_last_updated__gt"]" when calling Pulp2ContentApi.list, must be smaller than or equal to 2147483647.'
|
77
|
+
end
|
78
|
+
|
79
|
+
if @api_client.config.client_side_validation && !opts[:'pulp2_last_updated__gte'].nil? && opts[:'pulp2_last_updated__gte'] > 2147483647
|
80
|
+
fail ArgumentError, 'invalid value for "opts[:"pulp2_last_updated__gte"]" when calling Pulp2ContentApi.list, must be smaller than or equal to 2147483647.'
|
81
|
+
end
|
82
|
+
|
83
|
+
if @api_client.config.client_side_validation && !opts[:'pulp2_last_updated__lt'].nil? && opts[:'pulp2_last_updated__lt'] > 2147483647
|
84
|
+
fail ArgumentError, 'invalid value for "opts[:"pulp2_last_updated__lt"]" when calling Pulp2ContentApi.list, must be smaller than or equal to 2147483647.'
|
85
|
+
end
|
86
|
+
|
87
|
+
if @api_client.config.client_side_validation && !opts[:'pulp2_last_updated__lte'].nil? && opts[:'pulp2_last_updated__lte'] > 2147483647
|
88
|
+
fail ArgumentError, 'invalid value for "opts[:"pulp2_last_updated__lte"]" when calling Pulp2ContentApi.list, must be smaller than or equal to 2147483647.'
|
89
|
+
end
|
90
|
+
|
71
91
|
# resource path
|
72
92
|
local_var_path = '/pulp/api/v3/pulp2content/'
|
73
93
|
|
@@ -77,15 +97,15 @@ module Pulp2to3MigrationClient
|
|
77
97
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
78
98
|
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
79
99
|
query_params[:'pulp2_content_type_id'] = opts[:'pulp2_content_type_id'] if !opts[:'pulp2_content_type_id'].nil?
|
80
|
-
query_params[:'pulp2_content_type_id__in'] = opts[:'pulp2_content_type_id__in'] if !opts[:'pulp2_content_type_id__in'].nil?
|
100
|
+
query_params[:'pulp2_content_type_id__in'] = @api_client.build_collection_param(opts[:'pulp2_content_type_id__in'], :csv) if !opts[:'pulp2_content_type_id__in'].nil?
|
81
101
|
query_params[:'pulp2_id'] = opts[:'pulp2_id'] if !opts[:'pulp2_id'].nil?
|
82
|
-
query_params[:'pulp2_id__in'] = opts[:'pulp2_id__in'] if !opts[:'pulp2_id__in'].nil?
|
102
|
+
query_params[:'pulp2_id__in'] = @api_client.build_collection_param(opts[:'pulp2_id__in'], :csv) if !opts[:'pulp2_id__in'].nil?
|
83
103
|
query_params[:'pulp2_last_updated'] = opts[:'pulp2_last_updated'] if !opts[:'pulp2_last_updated'].nil?
|
84
104
|
query_params[:'pulp2_last_updated__gt'] = opts[:'pulp2_last_updated__gt'] if !opts[:'pulp2_last_updated__gt'].nil?
|
85
105
|
query_params[:'pulp2_last_updated__gte'] = opts[:'pulp2_last_updated__gte'] if !opts[:'pulp2_last_updated__gte'].nil?
|
86
106
|
query_params[:'pulp2_last_updated__lt'] = opts[:'pulp2_last_updated__lt'] if !opts[:'pulp2_last_updated__lt'].nil?
|
87
107
|
query_params[:'pulp2_last_updated__lte'] = opts[:'pulp2_last_updated__lte'] if !opts[:'pulp2_last_updated__lte'].nil?
|
88
|
-
query_params[:'pulp2_last_updated__range'] = opts[:'pulp2_last_updated__range'] if !opts[:'pulp2_last_updated__range'].nil?
|
108
|
+
query_params[:'pulp2_last_updated__range'] = @api_client.build_collection_param(opts[:'pulp2_last_updated__range'], :csv) if !opts[:'pulp2_last_updated__range'].nil?
|
89
109
|
query_params[:'pulp3_content'] = opts[:'pulp3_content'] if !opts[:'pulp3_content'].nil?
|
90
110
|
query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
|
91
111
|
query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
|
@@ -22,13 +22,13 @@ module Pulp2to3MigrationClient
|
|
22
22
|
# List pulp2 repositorys
|
23
23
|
# ViewSet for Pulp2Repositories model.
|
24
24
|
# @param [Hash] opts the optional parameters
|
25
|
-
# @option opts [
|
25
|
+
# @option opts [Boolean] :is_migrated
|
26
26
|
# @option opts [Integer] :limit Number of results to return per page.
|
27
|
-
# @option opts [
|
27
|
+
# @option opts [Boolean] :not_in_plan
|
28
28
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
29
29
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
30
|
-
# @option opts [String] :pulp2_repo_id
|
31
|
-
# @option opts [String] :pulp2_repo_id__in
|
30
|
+
# @option opts [String] :pulp2_repo_id
|
31
|
+
# @option opts [Array<String>] :pulp2_repo_id__in Filter results where pulp2_repo_id is in a comma-separated list of values
|
32
32
|
# @option opts [String] :fields A list of fields to include in the response.
|
33
33
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
34
34
|
# @return [Paginatedpulp2to3MigrationPulp2RepositoryResponseList]
|
@@ -40,13 +40,13 @@ module Pulp2to3MigrationClient
|
|
40
40
|
# List pulp2 repositorys
|
41
41
|
# ViewSet for Pulp2Repositories model.
|
42
42
|
# @param [Hash] opts the optional parameters
|
43
|
-
# @option opts [
|
43
|
+
# @option opts [Boolean] :is_migrated
|
44
44
|
# @option opts [Integer] :limit Number of results to return per page.
|
45
|
-
# @option opts [
|
45
|
+
# @option opts [Boolean] :not_in_plan
|
46
46
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
47
47
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
48
|
-
# @option opts [String] :pulp2_repo_id
|
49
|
-
# @option opts [String] :pulp2_repo_id__in
|
48
|
+
# @option opts [String] :pulp2_repo_id
|
49
|
+
# @option opts [Array<String>] :pulp2_repo_id__in Filter results where pulp2_repo_id is in a comma-separated list of values
|
50
50
|
# @option opts [String] :fields A list of fields to include in the response.
|
51
51
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
52
52
|
# @return [Array<(Paginatedpulp2to3MigrationPulp2RepositoryResponseList, Integer, Hash)>] Paginatedpulp2to3MigrationPulp2RepositoryResponseList data, response status code and response headers
|
@@ -65,7 +65,7 @@ module Pulp2to3MigrationClient
|
|
65
65
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
66
66
|
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
67
67
|
query_params[:'pulp2_repo_id'] = opts[:'pulp2_repo_id'] if !opts[:'pulp2_repo_id'].nil?
|
68
|
-
query_params[:'pulp2_repo_id__in'] = opts[:'pulp2_repo_id__in'] if !opts[:'pulp2_repo_id__in'].nil?
|
68
|
+
query_params[:'pulp2_repo_id__in'] = @api_client.build_collection_param(opts[:'pulp2_repo_id__in'], :csv) if !opts[:'pulp2_repo_id__in'].nil?
|
69
69
|
query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
|
70
70
|
query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
|
71
71
|
|
@@ -39,17 +39,17 @@ describe 'Pulp2ContentApi' do
|
|
39
39
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
40
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
41
41
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
42
|
-
# @option opts [String] :pulp2_content_type_id
|
43
|
-
# @option opts [String] :pulp2_content_type_id__in
|
44
|
-
# @option opts [String] :pulp2_id
|
45
|
-
# @option opts [String] :pulp2_id__in
|
46
|
-
# @option opts [
|
47
|
-
# @option opts [
|
48
|
-
# @option opts [
|
49
|
-
# @option opts [
|
50
|
-
# @option opts [
|
51
|
-
# @option opts [
|
52
|
-
# @option opts [String] :pulp3_content
|
42
|
+
# @option opts [String] :pulp2_content_type_id
|
43
|
+
# @option opts [Array<String>] :pulp2_content_type_id__in Filter results where pulp2_content_type_id is in a comma-separated list of values
|
44
|
+
# @option opts [String] :pulp2_id
|
45
|
+
# @option opts [Array<String>] :pulp2_id__in Filter results where pulp2_id is in a comma-separated list of values
|
46
|
+
# @option opts [Integer] :pulp2_last_updated ISO 8601 formatted dates are supported
|
47
|
+
# @option opts [Integer] :pulp2_last_updated__gt Filter results where pulp2_last_updated is greater than value
|
48
|
+
# @option opts [Integer] :pulp2_last_updated__gte Filter results where pulp2_last_updated is greater than or equal to value
|
49
|
+
# @option opts [Integer] :pulp2_last_updated__lt Filter results where pulp2_last_updated is less than value
|
50
|
+
# @option opts [Integer] :pulp2_last_updated__lte Filter results where pulp2_last_updated is less than or equal to value
|
51
|
+
# @option opts [Array<Integer>] :pulp2_last_updated__range Filter results where pulp2_last_updated is between two comma separated values
|
52
|
+
# @option opts [String] :pulp3_content Foreign Key referenced by HREF
|
53
53
|
# @option opts [String] :fields A list of fields to include in the response.
|
54
54
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
55
55
|
# @return [Paginatedpulp2to3MigrationPulp2ContentResponseList]
|
@@ -36,13 +36,13 @@ describe 'Pulp2RepositoriesApi' do
|
|
36
36
|
# List pulp2 repositorys
|
37
37
|
# ViewSet for Pulp2Repositories model.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
-
# @option opts [
|
39
|
+
# @option opts [Boolean] :is_migrated
|
40
40
|
# @option opts [Integer] :limit Number of results to return per page.
|
41
|
-
# @option opts [
|
41
|
+
# @option opts [Boolean] :not_in_plan
|
42
42
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
43
43
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
44
|
-
# @option opts [String] :pulp2_repo_id
|
45
|
-
# @option opts [String] :pulp2_repo_id__in
|
44
|
+
# @option opts [String] :pulp2_repo_id
|
45
|
+
# @option opts [Array<String>] :pulp2_repo_id__in Filter results where pulp2_repo_id is in a comma-separated list of values
|
46
46
|
# @option opts [String] :fields A list of fields to include in the response.
|
47
47
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
48
48
|
# @return [Paginatedpulp2to3MigrationPulp2RepositoryResponseList]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_2to3_migration_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0.dev01613726251
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-02-
|
11
|
+
date: 2021-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -135,9 +135,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
135
135
|
version: '1.9'
|
136
136
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
137
|
requirements:
|
138
|
-
- - "
|
138
|
+
- - ">"
|
139
139
|
- !ruby/object:Gem::Version
|
140
|
-
version:
|
140
|
+
version: 1.3.1
|
141
141
|
requirements: []
|
142
142
|
rubygems_version: 3.0.3
|
143
143
|
signing_key:
|