pulpcore_client 3.21.29 → 3.22.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 +11 -5
- data/docs/AccessPoliciesApi.md +2 -2
- data/docs/ArtifactDistributionResponse.md +29 -0
- data/docs/ContentSettingsResponse.md +19 -0
- data/docs/ContentguardsApi.md +2 -2
- data/docs/ContentguardsContentRedirectApi.md +2 -2
- data/docs/ContentguardsRbacApi.md +2 -2
- data/docs/DistributionResponse.md +1 -1
- data/docs/DistributionsApi.md +5 -5
- data/docs/DistributionsArtifactsApi.md +154 -0
- data/docs/ExportersFilesystemApi.md +2 -2
- data/docs/ExportersPulpApi.md +2 -2
- data/docs/FilesystemExport.md +1 -3
- data/docs/ImportersPulpApi.md +2 -2
- data/docs/PaginatedArtifactDistributionResponseList.md +23 -0
- data/docs/PublicationsApi.md +2 -2
- data/docs/RemoteResponse.md +4 -2
- data/docs/RemoteResponseHiddenFields.md +19 -0
- data/docs/RemotesApi.md +4 -4
- data/docs/RepositoriesApi.md +3 -3
- data/docs/RepositoryResponse.md +1 -1
- data/docs/RepositoryVersionsApi.md +4 -4
- data/docs/SigningServicesApi.md +4 -2
- data/docs/StatusResponse.md +3 -1
- data/docs/TaskGroupsApi.md +0 -2
- data/docs/TaskSchedulesApi.md +4 -4
- data/docs/TasksApi.md +32 -18
- data/docs/UploadsApi.md +10 -0
- data/docs/UserResponse.md +3 -1
- data/docs/WorkersApi.md +4 -4
- data/lib/pulpcore_client/api/access_policies_api.rb +3 -3
- data/lib/pulpcore_client/api/artifacts_api.rb +1 -1
- data/lib/pulpcore_client/api/contentguards_api.rb +3 -3
- data/lib/pulpcore_client/api/contentguards_content_redirect_api.rb +3 -3
- data/lib/pulpcore_client/api/contentguards_rbac_api.rb +3 -3
- data/lib/pulpcore_client/api/distributions_api.rb +7 -7
- data/lib/pulpcore_client/api/distributions_artifacts_api.rb +198 -0
- data/lib/pulpcore_client/api/exporters_filesystem_api.rb +3 -3
- data/lib/pulpcore_client/api/exporters_pulp_api.rb +3 -3
- data/lib/pulpcore_client/api/groups_api.rb +1 -1
- data/lib/pulpcore_client/api/importers_pulp_api.rb +3 -3
- data/lib/pulpcore_client/api/publications_api.rb +3 -3
- data/lib/pulpcore_client/api/remotes_api.rb +5 -5
- data/lib/pulpcore_client/api/repositories_api.rb +3 -3
- data/lib/pulpcore_client/api/repository_versions_api.rb +5 -5
- data/lib/pulpcore_client/api/roles_api.rb +1 -1
- data/lib/pulpcore_client/api/signing_services_api.rb +9 -2
- data/lib/pulpcore_client/api/task_groups_api.rb +0 -7
- data/lib/pulpcore_client/api/task_schedules_api.rb +5 -5
- data/lib/pulpcore_client/api/tasks_api.rb +40 -19
- data/lib/pulpcore_client/api/uploads_api.rb +19 -0
- data/lib/pulpcore_client/api/users_api.rb +1 -1
- data/lib/pulpcore_client/api/workers_api.rb +5 -5
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +279 -0
- data/lib/pulpcore_client/models/content_settings_response.rb +228 -0
- data/lib/pulpcore_client/models/distribution_response.rb +4 -2
- data/lib/pulpcore_client/models/filesystem_export.rb +4 -14
- data/lib/pulpcore_client/models/group_role.rb +19 -0
- data/lib/pulpcore_client/models/paginated_artifact_distribution_response_list.rb +237 -0
- data/lib/pulpcore_client/models/remote_response.rb +21 -7
- data/lib/pulpcore_client/models/remote_response_hidden_fields.rb +215 -0
- data/lib/pulpcore_client/models/repository_response.rb +4 -2
- data/lib/pulpcore_client/models/status_response.rb +19 -4
- data/lib/pulpcore_client/models/user_response.rb +16 -4
- data/lib/pulpcore_client/models/user_role.rb +19 -0
- data/lib/pulpcore_client/version.rb +1 -1
- data/lib/pulpcore_client.rb +5 -0
- data/spec/api/access_policies_api_spec.rb +1 -1
- data/spec/api/contentguards_api_spec.rb +1 -1
- data/spec/api/contentguards_content_redirect_api_spec.rb +1 -1
- data/spec/api/contentguards_rbac_api_spec.rb +1 -1
- data/spec/api/distributions_api_spec.rb +3 -3
- data/spec/api/distributions_artifacts_api_spec.rb +76 -0
- data/spec/api/exporters_filesystem_api_spec.rb +1 -1
- data/spec/api/exporters_pulp_api_spec.rb +1 -1
- data/spec/api/importers_pulp_api_spec.rb +1 -1
- data/spec/api/publications_api_spec.rb +1 -1
- data/spec/api/remotes_api_spec.rb +2 -2
- data/spec/api/repositories_api_spec.rb +1 -1
- data/spec/api/repository_versions_api_spec.rb +2 -2
- data/spec/api/signing_services_api_spec.rb +2 -1
- data/spec/api/task_groups_api_spec.rb +0 -1
- data/spec/api/task_schedules_api_spec.rb +2 -2
- data/spec/api/tasks_api_spec.rb +16 -9
- data/spec/api/uploads_api_spec.rb +5 -0
- data/spec/api/workers_api_spec.rb +2 -2
- data/spec/models/artifact_distribution_response_spec.rb +77 -0
- data/spec/models/content_settings_response_spec.rb +47 -0
- data/spec/models/filesystem_export_spec.rb +0 -6
- data/spec/models/paginated_artifact_distribution_response_list_spec.rb +59 -0
- data/spec/models/remote_response_hidden_fields_spec.rb +47 -0
- data/spec/models/remote_response_spec.rb +6 -0
- data/spec/models/status_response_spec.rb +6 -0
- data/spec/models/user_response_spec.rb +6 -0
- metadata +148 -128
data/docs/RepositoriesApi.md
CHANGED
|
@@ -31,7 +31,7 @@ end
|
|
|
31
31
|
api_instance = PulpcoreClient::RepositoriesApi.new
|
|
32
32
|
opts = {
|
|
33
33
|
limit: 56, # Integer | Number of results to return per page.
|
|
34
|
-
name: 'name_example', # String |
|
|
34
|
+
name: 'name_example', # String | Filter results where name matches value
|
|
35
35
|
name__contains: 'name__contains_example', # String | Filter results where name contains value
|
|
36
36
|
name__icontains: 'name__icontains_example', # String | Filter results where name contains value
|
|
37
37
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
@@ -59,7 +59,7 @@ end
|
|
|
59
59
|
Name | Type | Description | Notes
|
|
60
60
|
------------- | ------------- | ------------- | -------------
|
|
61
61
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
62
|
-
**name** | **String**|
|
|
62
|
+
**name** | **String**| Filter results where name matches value | [optional]
|
|
63
63
|
**name__contains** | **String**| Filter results where name contains value | [optional]
|
|
64
64
|
**name__icontains** | **String**| Filter results where name contains value | [optional]
|
|
65
65
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
@@ -67,7 +67,7 @@ Name | Type | Description | Notes
|
|
|
67
67
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
68
68
|
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
69
69
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
|
70
|
-
**remote** |
|
|
70
|
+
**remote** | **String**| Foreign Key referenced by HREF | [optional]
|
|
71
71
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
72
72
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
73
73
|
|
data/docs/RepositoryResponse.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**pulp_href** | **String** | | [optional] [readonly]
|
|
8
8
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
9
9
|
**versions_href** | **String** | | [optional] [readonly]
|
|
10
|
-
**pulp_labels** |
|
|
10
|
+
**pulp_labels** | **Hash<String, String>** | | [optional]
|
|
11
11
|
**latest_version_href** | **String** | | [optional] [readonly]
|
|
12
12
|
**name** | **String** | A unique name for this repository. |
|
|
13
13
|
**description** | **String** | An optional description. | [optional]
|
|
@@ -31,7 +31,7 @@ opts = {
|
|
|
31
31
|
content: 'content_example', # String | Content Unit referenced by HREF
|
|
32
32
|
content__in: 'content__in_example', # String | Content Unit referenced by HREF
|
|
33
33
|
limit: 56, # Integer | Number of results to return per page.
|
|
34
|
-
number: 56, # Integer |
|
|
34
|
+
number: 56, # Integer | Filter results where number matches value
|
|
35
35
|
number__gt: 56, # Integer | Filter results where number is greater than value
|
|
36
36
|
number__gte: 56, # Integer | Filter results where number is greater than or equal to value
|
|
37
37
|
number__lt: 56, # Integer | Filter results where number is less than value
|
|
@@ -39,7 +39,7 @@ opts = {
|
|
|
39
39
|
number__range: [56], # Array<Integer> | Filter results where number is between two comma separated values
|
|
40
40
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
41
41
|
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
42
|
-
pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime |
|
|
42
|
+
pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created matches value
|
|
43
43
|
pulp_created__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than value
|
|
44
44
|
pulp_created__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than or equal to value
|
|
45
45
|
pulp_created__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than value
|
|
@@ -66,7 +66,7 @@ Name | Type | Description | Notes
|
|
|
66
66
|
**content** | **String**| Content Unit referenced by HREF | [optional]
|
|
67
67
|
**content__in** | **String**| Content Unit referenced by HREF | [optional]
|
|
68
68
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
69
|
-
**number** | **Integer**|
|
|
69
|
+
**number** | **Integer**| Filter results where number matches value | [optional]
|
|
70
70
|
**number__gt** | **Integer**| Filter results where number is greater than value | [optional]
|
|
71
71
|
**number__gte** | **Integer**| Filter results where number is greater than or equal to value | [optional]
|
|
72
72
|
**number__lt** | **Integer**| Filter results where number is less than value | [optional]
|
|
@@ -74,7 +74,7 @@ Name | Type | Description | Notes
|
|
|
74
74
|
**number__range** | [**Array<Integer>**](Integer.md)| Filter results where number is between two comma separated values | [optional]
|
|
75
75
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
76
76
|
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
77
|
-
**pulp_created** | **DateTime**|
|
|
77
|
+
**pulp_created** | **DateTime**| Filter results where pulp_created matches value | [optional]
|
|
78
78
|
**pulp_created__gt** | **DateTime**| Filter results where pulp_created is greater than value | [optional]
|
|
79
79
|
**pulp_created__gte** | **DateTime**| Filter results where pulp_created is greater than or equal to value | [optional]
|
|
80
80
|
**pulp_created__lt** | **DateTime**| Filter results where pulp_created is less than value | [optional]
|
data/docs/SigningServicesApi.md
CHANGED
|
@@ -32,8 +32,9 @@ end
|
|
|
32
32
|
api_instance = PulpcoreClient::SigningServicesApi.new
|
|
33
33
|
opts = {
|
|
34
34
|
limit: 56, # Integer | Number of results to return per page.
|
|
35
|
-
name: 'name_example', # String |
|
|
35
|
+
name: 'name_example', # String | Filter results where name matches value
|
|
36
36
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
37
|
+
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
37
38
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
38
39
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
39
40
|
}
|
|
@@ -53,8 +54,9 @@ end
|
|
|
53
54
|
Name | Type | Description | Notes
|
|
54
55
|
------------- | ------------- | ------------- | -------------
|
|
55
56
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
56
|
-
**name** | **String**|
|
|
57
|
+
**name** | **String**| Filter results where name matches value | [optional]
|
|
57
58
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
59
|
+
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
58
60
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
59
61
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
60
62
|
|
data/docs/StatusResponse.md
CHANGED
|
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**database_connection** | [**DatabaseConnectionResponse**](DatabaseConnectionResponse.md) | Database connection information |
|
|
11
11
|
**redis_connection** | [**RedisConnectionResponse**](RedisConnectionResponse.md) | Redis connection information | [optional]
|
|
12
12
|
**storage** | [**StorageResponse**](StorageResponse.md) | Storage information | [optional]
|
|
13
|
+
**content_settings** | [**ContentSettingsResponse**](ContentSettingsResponse.md) | Content-app settings |
|
|
13
14
|
|
|
14
15
|
## Code Sample
|
|
15
16
|
|
|
@@ -21,7 +22,8 @@ instance = PulpcoreClient::StatusResponse.new(versions: null,
|
|
|
21
22
|
online_content_apps: null,
|
|
22
23
|
database_connection: null,
|
|
23
24
|
redis_connection: null,
|
|
24
|
-
storage: null
|
|
25
|
+
storage: null,
|
|
26
|
+
content_settings: null)
|
|
25
27
|
```
|
|
26
28
|
|
|
27
29
|
|
data/docs/TaskGroupsApi.md
CHANGED
|
@@ -33,7 +33,6 @@ api_instance = PulpcoreClient::TaskGroupsApi.new
|
|
|
33
33
|
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
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
37
36
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
38
37
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
39
38
|
}
|
|
@@ -54,7 +53,6 @@ Name | Type | Description | Notes
|
|
|
54
53
|
------------- | ------------- | ------------- | -------------
|
|
55
54
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
56
55
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
57
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
58
56
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
59
57
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
60
58
|
|
data/docs/TaskSchedulesApi.md
CHANGED
|
@@ -90,11 +90,11 @@ end
|
|
|
90
90
|
api_instance = PulpcoreClient::TaskSchedulesApi.new
|
|
91
91
|
opts = {
|
|
92
92
|
limit: 56, # Integer | Number of results to return per page.
|
|
93
|
-
name: 'name_example', # String |
|
|
93
|
+
name: 'name_example', # String | Filter results where name matches value
|
|
94
94
|
name__contains: 'name__contains_example', # String | Filter results where name contains value
|
|
95
95
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
96
96
|
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
97
|
-
task_name: 'task_name_example', # String |
|
|
97
|
+
task_name: 'task_name_example', # String | Filter results where task_name matches value
|
|
98
98
|
task_name__contains: 'task_name__contains_example', # String | Filter results where task_name contains value
|
|
99
99
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
100
100
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
@@ -115,11 +115,11 @@ end
|
|
|
115
115
|
Name | Type | Description | Notes
|
|
116
116
|
------------- | ------------- | ------------- | -------------
|
|
117
117
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
118
|
-
**name** | **String**|
|
|
118
|
+
**name** | **String**| Filter results where name matches value | [optional]
|
|
119
119
|
**name__contains** | **String**| Filter results where name contains value | [optional]
|
|
120
120
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
121
121
|
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
122
|
-
**task_name** | **String**|
|
|
122
|
+
**task_name** | **String**| Filter results where task_name matches value | [optional]
|
|
123
123
|
**task_name__contains** | **String**| Filter results where task_name contains value | [optional]
|
|
124
124
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
125
125
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
data/docs/TasksApi.md
CHANGED
|
@@ -144,33 +144,40 @@ end
|
|
|
144
144
|
|
|
145
145
|
api_instance = PulpcoreClient::TasksApi.new
|
|
146
146
|
opts = {
|
|
147
|
-
child_tasks: 'child_tasks_example', # String |
|
|
147
|
+
child_tasks: 'child_tasks_example', # String | Filter results where child_tasks matches value
|
|
148
148
|
created_resources: 'created_resources_example', # String |
|
|
149
|
-
|
|
149
|
+
exclusive_resources: 'exclusive_resources_example', # String |
|
|
150
|
+
exclusive_resources__in: ['exclusive_resources__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
151
|
+
finished_at: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where finished_at matches value
|
|
150
152
|
finished_at__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where finished_at is greater than value
|
|
151
153
|
finished_at__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where finished_at is greater than or equal to value
|
|
152
154
|
finished_at__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where finished_at is less than value
|
|
153
155
|
finished_at__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where finished_at is less than or equal to value
|
|
154
156
|
finished_at__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where finished_at is between two comma separated values
|
|
155
157
|
limit: 56, # Integer | Number of results to return per page.
|
|
156
|
-
logging_cid: 'logging_cid_example', # String |
|
|
158
|
+
logging_cid: 'logging_cid_example', # String | Filter results where logging_cid matches value
|
|
157
159
|
logging_cid__contains: 'logging_cid__contains_example', # String | Filter results where logging_cid contains value
|
|
158
|
-
name: 'name_example', # String |
|
|
160
|
+
name: 'name_example', # String | Filter results where name matches value
|
|
159
161
|
name__contains: 'name__contains_example', # String | Filter results where name contains value
|
|
162
|
+
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
160
163
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
161
164
|
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
162
|
-
parent_task: 'parent_task_example', # String |
|
|
165
|
+
parent_task: 'parent_task_example', # String | Filter results where parent_task matches value
|
|
166
|
+
reserved_resources: 'reserved_resources_example', # String |
|
|
167
|
+
reserved_resources__in: ['reserved_resources__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
163
168
|
reserved_resources_record: ['reserved_resources_record_example'], # Array<String> |
|
|
164
|
-
|
|
169
|
+
shared_resources: 'shared_resources_example', # String |
|
|
170
|
+
shared_resources__in: ['shared_resources__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
171
|
+
started_at: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where started_at matches value
|
|
165
172
|
started_at__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where started_at is greater than value
|
|
166
173
|
started_at__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where started_at is greater than or equal to value
|
|
167
174
|
started_at__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where started_at is less than value
|
|
168
175
|
started_at__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where started_at is less than or equal to value
|
|
169
176
|
started_at__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where started_at is between two comma separated values
|
|
170
|
-
state: 'state_example', # String |
|
|
177
|
+
state: 'state_example', # String | Filter results where state matches value
|
|
171
178
|
state__in: ['state__in_example'], # Array<String> | Filter results where state is in a comma-separated list of values
|
|
172
|
-
task_group: 'task_group_example', # String |
|
|
173
|
-
worker: 'worker_example', # String |
|
|
179
|
+
task_group: 'task_group_example', # String | Filter results where task_group matches value
|
|
180
|
+
worker: 'worker_example', # String | Filter results where worker matches value
|
|
174
181
|
worker__in: ['worker__in_example'], # Array<String> | Filter results where worker is in a comma-separated list of values
|
|
175
182
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
176
183
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
@@ -190,33 +197,40 @@ end
|
|
|
190
197
|
|
|
191
198
|
Name | Type | Description | Notes
|
|
192
199
|
------------- | ------------- | ------------- | -------------
|
|
193
|
-
**child_tasks** |
|
|
200
|
+
**child_tasks** | **String**| Filter results where child_tasks matches value | [optional]
|
|
194
201
|
**created_resources** | [**String**](.md)| | [optional]
|
|
195
|
-
**
|
|
202
|
+
**exclusive_resources** | **String**| | [optional]
|
|
203
|
+
**exclusive_resources__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
204
|
+
**finished_at** | **DateTime**| Filter results where finished_at matches value | [optional]
|
|
196
205
|
**finished_at__gt** | **DateTime**| Filter results where finished_at is greater than value | [optional]
|
|
197
206
|
**finished_at__gte** | **DateTime**| Filter results where finished_at is greater than or equal to value | [optional]
|
|
198
207
|
**finished_at__lt** | **DateTime**| Filter results where finished_at is less than value | [optional]
|
|
199
208
|
**finished_at__lte** | **DateTime**| Filter results where finished_at is less than or equal to value | [optional]
|
|
200
209
|
**finished_at__range** | [**Array<DateTime>**](DateTime.md)| Filter results where finished_at is between two comma separated values | [optional]
|
|
201
210
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
202
|
-
**logging_cid** | **String**|
|
|
211
|
+
**logging_cid** | **String**| Filter results where logging_cid matches value | [optional]
|
|
203
212
|
**logging_cid__contains** | **String**| Filter results where logging_cid contains value | [optional]
|
|
204
|
-
**name** | **String**|
|
|
213
|
+
**name** | **String**| Filter results where name matches value | [optional]
|
|
205
214
|
**name__contains** | **String**| Filter results where name contains value | [optional]
|
|
215
|
+
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
206
216
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
207
217
|
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
208
|
-
**parent_task** |
|
|
218
|
+
**parent_task** | **String**| Filter results where parent_task matches value | [optional]
|
|
219
|
+
**reserved_resources** | **String**| | [optional]
|
|
220
|
+
**reserved_resources__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
209
221
|
**reserved_resources_record** | [**Array<String>**](String.md)| | [optional]
|
|
210
|
-
**
|
|
222
|
+
**shared_resources** | **String**| | [optional]
|
|
223
|
+
**shared_resources__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
224
|
+
**started_at** | **DateTime**| Filter results where started_at matches value | [optional]
|
|
211
225
|
**started_at__gt** | **DateTime**| Filter results where started_at is greater than value | [optional]
|
|
212
226
|
**started_at__gte** | **DateTime**| Filter results where started_at is greater than or equal to value | [optional]
|
|
213
227
|
**started_at__lt** | **DateTime**| Filter results where started_at is less than value | [optional]
|
|
214
228
|
**started_at__lte** | **DateTime**| Filter results where started_at is less than or equal to value | [optional]
|
|
215
229
|
**started_at__range** | [**Array<DateTime>**](DateTime.md)| Filter results where started_at is between two comma separated values | [optional]
|
|
216
|
-
**state** | **String**|
|
|
230
|
+
**state** | **String**| Filter results where state matches value | [optional]
|
|
217
231
|
**state__in** | [**Array<String>**](String.md)| Filter results where state is in a comma-separated list of values | [optional]
|
|
218
|
-
**task_group** |
|
|
219
|
-
**worker** |
|
|
232
|
+
**task_group** | **String**| Filter results where task_group matches value | [optional]
|
|
233
|
+
**worker** | **String**| Filter results where worker matches value | [optional]
|
|
220
234
|
**worker__in** | [**Array<String>**](String.md)| Filter results where worker is in a comma-separated list of values | [optional]
|
|
221
235
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
222
236
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
data/docs/UploadsApi.md
CHANGED
|
@@ -255,6 +255,11 @@ api_instance = PulpcoreClient::UploadsApi.new
|
|
|
255
255
|
opts = {
|
|
256
256
|
limit: 56, # Integer | Number of results to return per page.
|
|
257
257
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
258
|
+
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
259
|
+
size: 56, # Integer | Filter results where size matches value
|
|
260
|
+
size__gt: 56, # Integer | Filter results where size is greater than value
|
|
261
|
+
size__lt: 56, # Integer | Filter results where size is less than value
|
|
262
|
+
size__range: [56], # Array<Integer> | Filter results where size is between two comma separated values
|
|
258
263
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
259
264
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
260
265
|
}
|
|
@@ -275,6 +280,11 @@ Name | Type | Description | Notes
|
|
|
275
280
|
------------- | ------------- | ------------- | -------------
|
|
276
281
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
277
282
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
283
|
+
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
284
|
+
**size** | **Integer**| Filter results where size matches value | [optional]
|
|
285
|
+
**size__gt** | **Integer**| Filter results where size is greater than value | [optional]
|
|
286
|
+
**size__lt** | **Integer**| Filter results where size is less than value | [optional]
|
|
287
|
+
**size__range** | [**Array<Integer>**](Integer.md)| Filter results where size is between two comma separated values | [optional]
|
|
278
288
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
279
289
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
280
290
|
|
data/docs/UserResponse.md
CHANGED
|
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**is_active** | **Boolean** | Designates whether this user should be treated as active. | [optional] [default to true]
|
|
15
15
|
**date_joined** | **DateTime** | Date joined | [optional] [readonly]
|
|
16
16
|
**groups** | [**Array<UserGroupResponse>**](UserGroupResponse.md) | | [optional] [readonly]
|
|
17
|
+
**hidden_fields** | [**Array<RemoteResponseHiddenFields>**](RemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly]
|
|
17
18
|
|
|
18
19
|
## Code Sample
|
|
19
20
|
|
|
@@ -29,7 +30,8 @@ instance = PulpcoreClient::UserResponse.new(pulp_href: null,
|
|
|
29
30
|
is_staff: null,
|
|
30
31
|
is_active: null,
|
|
31
32
|
date_joined: null,
|
|
32
|
-
groups: null
|
|
33
|
+
groups: null,
|
|
34
|
+
hidden_fields: null)
|
|
33
35
|
```
|
|
34
36
|
|
|
35
37
|
|
data/docs/WorkersApi.md
CHANGED
|
@@ -31,7 +31,7 @@ end
|
|
|
31
31
|
|
|
32
32
|
api_instance = PulpcoreClient::WorkersApi.new
|
|
33
33
|
opts = {
|
|
34
|
-
last_heartbeat: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime |
|
|
34
|
+
last_heartbeat: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where last_heartbeat matches value
|
|
35
35
|
last_heartbeat__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where last_heartbeat is greater than value
|
|
36
36
|
last_heartbeat__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where last_heartbeat is greater than or equal to value
|
|
37
37
|
last_heartbeat__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where last_heartbeat is less than value
|
|
@@ -39,7 +39,7 @@ opts = {
|
|
|
39
39
|
last_heartbeat__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where last_heartbeat is between two comma separated values
|
|
40
40
|
limit: 56, # Integer | Number of results to return per page.
|
|
41
41
|
missing: true, # Boolean |
|
|
42
|
-
name: 'name_example', # String |
|
|
42
|
+
name: 'name_example', # String | Filter results where name matches value
|
|
43
43
|
name__contains: 'name__contains_example', # String | Filter results where name contains value
|
|
44
44
|
name__icontains: 'name__icontains_example', # String | Filter results where name contains value
|
|
45
45
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
@@ -65,7 +65,7 @@ end
|
|
|
65
65
|
|
|
66
66
|
Name | Type | Description | Notes
|
|
67
67
|
------------- | ------------- | ------------- | -------------
|
|
68
|
-
**last_heartbeat** | **DateTime**|
|
|
68
|
+
**last_heartbeat** | **DateTime**| Filter results where last_heartbeat matches value | [optional]
|
|
69
69
|
**last_heartbeat__gt** | **DateTime**| Filter results where last_heartbeat is greater than value | [optional]
|
|
70
70
|
**last_heartbeat__gte** | **DateTime**| Filter results where last_heartbeat is greater than or equal to value | [optional]
|
|
71
71
|
**last_heartbeat__lt** | **DateTime**| Filter results where last_heartbeat is less than value | [optional]
|
|
@@ -73,7 +73,7 @@ Name | Type | Description | Notes
|
|
|
73
73
|
**last_heartbeat__range** | [**Array<DateTime>**](DateTime.md)| Filter results where last_heartbeat is between two comma separated values | [optional]
|
|
74
74
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
75
75
|
**missing** | **Boolean**| | [optional]
|
|
76
|
-
**name** | **String**|
|
|
76
|
+
**name** | **String**| Filter results where name matches value | [optional]
|
|
77
77
|
**name__contains** | **String**| Filter results where name contains value | [optional]
|
|
78
78
|
**name__icontains** | **String**| Filter results where name contains value | [optional]
|
|
79
79
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
@@ -22,7 +22,7 @@ module PulpcoreClient
|
|
|
22
22
|
# List access policys
|
|
23
23
|
# ViewSet for AccessPolicy. NOTE: This API endpoint is in \"tech preview\" and subject to change
|
|
24
24
|
# @param [Hash] opts the optional parameters
|
|
25
|
-
# @option opts [Boolean] :customized
|
|
25
|
+
# @option opts [Boolean] :customized Filter results where customized matches value
|
|
26
26
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
27
27
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
28
28
|
# @option opts [Array<String>] :ordering Ordering
|
|
@@ -42,7 +42,7 @@ module PulpcoreClient
|
|
|
42
42
|
# List access policys
|
|
43
43
|
# ViewSet for AccessPolicy. NOTE: This API endpoint is in \"tech preview\" and subject to change
|
|
44
44
|
# @param [Hash] opts the optional parameters
|
|
45
|
-
# @option opts [Boolean] :customized
|
|
45
|
+
# @option opts [Boolean] :customized Filter results where customized matches value
|
|
46
46
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
47
47
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
48
48
|
# @option opts [Array<String>] :ordering Ordering
|
|
@@ -58,7 +58,7 @@ module PulpcoreClient
|
|
|
58
58
|
if @api_client.config.debugging
|
|
59
59
|
@api_client.config.logger.debug 'Calling API: AccessPoliciesApi.list ...'
|
|
60
60
|
end
|
|
61
|
-
allowable_values = ["-creation_hooks", "-customized", "-
|
|
61
|
+
allowable_values = ["-creation_hooks", "-customized", "-pk", "-pulp_created", "-pulp_id", "-pulp_last_updated", "-queryset_scoping", "-statements", "-viewset_name", "creation_hooks", "customized", "pk", "pulp_created", "pulp_id", "pulp_last_updated", "queryset_scoping", "statements", "viewset_name"]
|
|
62
62
|
if @api_client.config.client_side_validation && opts[:'ordering'] && !opts[:'ordering'].all? { |item| allowable_values.include?(item) }
|
|
63
63
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
|
64
64
|
end
|
|
@@ -230,7 +230,7 @@ module PulpcoreClient
|
|
|
230
230
|
if @api_client.config.debugging
|
|
231
231
|
@api_client.config.logger.debug 'Calling API: ArtifactsApi.list ...'
|
|
232
232
|
end
|
|
233
|
-
allowable_values = ["-
|
|
233
|
+
allowable_values = ["-file", "-md5", "-pk", "-pulp_created", "-pulp_id", "-pulp_last_updated", "-sha1", "-sha224", "-sha256", "-sha384", "-sha512", "-size", "-timestamp_of_interest", "file", "md5", "pk", "pulp_created", "pulp_id", "pulp_last_updated", "sha1", "sha224", "sha256", "sha384", "sha512", "size", "timestamp_of_interest"]
|
|
234
234
|
if @api_client.config.client_side_validation && opts[:'ordering'] && !opts[:'ordering'].all? { |item| allowable_values.include?(item) }
|
|
235
235
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
|
236
236
|
end
|
|
@@ -23,7 +23,7 @@ module PulpcoreClient
|
|
|
23
23
|
# Endpoint to list all contentguards.
|
|
24
24
|
# @param [Hash] opts the optional parameters
|
|
25
25
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
26
|
-
# @option opts [String] :name
|
|
26
|
+
# @option opts [String] :name Filter results where name matches value
|
|
27
27
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
28
28
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
29
29
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
@@ -42,7 +42,7 @@ module PulpcoreClient
|
|
|
42
42
|
# Endpoint to list all contentguards.
|
|
43
43
|
# @param [Hash] opts the optional parameters
|
|
44
44
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
45
|
-
# @option opts [String] :name
|
|
45
|
+
# @option opts [String] :name Filter results where name matches value
|
|
46
46
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
47
47
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
48
48
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
@@ -56,7 +56,7 @@ module PulpcoreClient
|
|
|
56
56
|
if @api_client.config.debugging
|
|
57
57
|
@api_client.config.logger.debug 'Calling API: ContentguardsApi.list ...'
|
|
58
58
|
end
|
|
59
|
-
allowable_values = ["-
|
|
59
|
+
allowable_values = ["-description", "-name", "-pk", "-pulp_created", "-pulp_id", "-pulp_last_updated", "-pulp_type", "description", "name", "pk", "pulp_created", "pulp_id", "pulp_last_updated", "pulp_type"]
|
|
60
60
|
if @api_client.config.client_side_validation && opts[:'ordering'] && !opts[:'ordering'].all? { |item| allowable_values.include?(item) }
|
|
61
61
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
|
62
62
|
end
|
|
@@ -215,7 +215,7 @@ module PulpcoreClient
|
|
|
215
215
|
# Content guard to protect preauthenticated redirects to the content app.
|
|
216
216
|
# @param [Hash] opts the optional parameters
|
|
217
217
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
218
|
-
# @option opts [String] :name
|
|
218
|
+
# @option opts [String] :name Filter results where name matches value
|
|
219
219
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
220
220
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
221
221
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
@@ -234,7 +234,7 @@ module PulpcoreClient
|
|
|
234
234
|
# Content guard to protect preauthenticated redirects to the content app.
|
|
235
235
|
# @param [Hash] opts the optional parameters
|
|
236
236
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
237
|
-
# @option opts [String] :name
|
|
237
|
+
# @option opts [String] :name Filter results where name matches value
|
|
238
238
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
239
239
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
240
240
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
@@ -248,7 +248,7 @@ module PulpcoreClient
|
|
|
248
248
|
if @api_client.config.debugging
|
|
249
249
|
@api_client.config.logger.debug 'Calling API: ContentguardsContentRedirectApi.list ...'
|
|
250
250
|
end
|
|
251
|
-
allowable_values = ["-
|
|
251
|
+
allowable_values = ["-description", "-name", "-pk", "-pulp_created", "-pulp_id", "-pulp_last_updated", "-pulp_type", "description", "name", "pk", "pulp_created", "pulp_id", "pulp_last_updated", "pulp_type"]
|
|
252
252
|
if @api_client.config.client_side_validation && opts[:'ordering'] && !opts[:'ordering'].all? { |item| allowable_values.include?(item) }
|
|
253
253
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
|
254
254
|
end
|
|
@@ -215,7 +215,7 @@ module PulpcoreClient
|
|
|
215
215
|
# Viewset for creating contentguards that use RBAC to protect content. Has add and remove actions for managing permission for users and groups to download content protected by this guard.
|
|
216
216
|
# @param [Hash] opts the optional parameters
|
|
217
217
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
218
|
-
# @option opts [String] :name
|
|
218
|
+
# @option opts [String] :name Filter results where name matches value
|
|
219
219
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
220
220
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
221
221
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
@@ -234,7 +234,7 @@ module PulpcoreClient
|
|
|
234
234
|
# Viewset for creating contentguards that use RBAC to protect content. Has add and remove actions for managing permission for users and groups to download content protected by this guard.
|
|
235
235
|
# @param [Hash] opts the optional parameters
|
|
236
236
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
237
|
-
# @option opts [String] :name
|
|
237
|
+
# @option opts [String] :name Filter results where name matches value
|
|
238
238
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
239
239
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
240
240
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
@@ -248,7 +248,7 @@ module PulpcoreClient
|
|
|
248
248
|
if @api_client.config.debugging
|
|
249
249
|
@api_client.config.logger.debug 'Calling API: ContentguardsRbacApi.list ...'
|
|
250
250
|
end
|
|
251
|
-
allowable_values = ["-
|
|
251
|
+
allowable_values = ["-description", "-name", "-pk", "-pulp_created", "-pulp_id", "-pulp_last_updated", "-pulp_type", "description", "name", "pk", "pulp_created", "pulp_id", "pulp_last_updated", "pulp_type"]
|
|
252
252
|
if @api_client.config.client_side_validation && opts[:'ordering'] && !opts[:'ordering'].all? { |item| allowable_values.include?(item) }
|
|
253
253
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
|
254
254
|
end
|
|
@@ -20,14 +20,14 @@ module PulpcoreClient
|
|
|
20
20
|
@api_client = api_client
|
|
21
21
|
end
|
|
22
22
|
# List distributions
|
|
23
|
-
#
|
|
23
|
+
# Provides base viewset for Distributions.
|
|
24
24
|
# @param [Hash] opts the optional parameters
|
|
25
|
-
# @option opts [String] :base_path
|
|
25
|
+
# @option opts [String] :base_path Filter results where base_path matches value
|
|
26
26
|
# @option opts [String] :base_path__contains Filter results where base_path contains value
|
|
27
27
|
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
|
28
28
|
# @option opts [Array<String>] :base_path__in Filter results where base_path is in a comma-separated list of values
|
|
29
29
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
30
|
-
# @option opts [String] :name
|
|
30
|
+
# @option opts [String] :name Filter results where name matches value
|
|
31
31
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
32
32
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
33
33
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
@@ -45,14 +45,14 @@ module PulpcoreClient
|
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
# List distributions
|
|
48
|
-
#
|
|
48
|
+
# Provides base viewset for Distributions.
|
|
49
49
|
# @param [Hash] opts the optional parameters
|
|
50
|
-
# @option opts [String] :base_path
|
|
50
|
+
# @option opts [String] :base_path Filter results where base_path matches value
|
|
51
51
|
# @option opts [String] :base_path__contains Filter results where base_path contains value
|
|
52
52
|
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
|
53
53
|
# @option opts [Array<String>] :base_path__in Filter results where base_path is in a comma-separated list of values
|
|
54
54
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
55
|
-
# @option opts [String] :name
|
|
55
|
+
# @option opts [String] :name Filter results where name matches value
|
|
56
56
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
57
57
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
58
58
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
@@ -68,7 +68,7 @@ module PulpcoreClient
|
|
|
68
68
|
if @api_client.config.debugging
|
|
69
69
|
@api_client.config.logger.debug 'Calling API: DistributionsApi.list ...'
|
|
70
70
|
end
|
|
71
|
-
allowable_values = ["-base_path", "-
|
|
71
|
+
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"]
|
|
72
72
|
if @api_client.config.client_side_validation && opts[:'ordering'] && !opts[:'ordering'].all? { |item| allowable_values.include?(item) }
|
|
73
73
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
|
74
74
|
end
|