pulpcore_client 3.21.35 → 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 +12 -6
- data/docs/AccessPoliciesApi.md +3 -3
- data/docs/ArtifactDistributionResponse.md +29 -0
- data/docs/ArtifactsApi.md +1 -1
- data/docs/ContentApi.md +1 -1
- data/docs/ContentSettingsResponse.md +19 -0
- data/docs/ContentguardsApi.md +3 -3
- data/docs/ContentguardsContentRedirectApi.md +3 -3
- data/docs/ContentguardsRbacApi.md +3 -3
- data/docs/DistributionResponse.md +1 -1
- data/docs/DistributionsApi.md +6 -6
- data/docs/DistributionsArtifactsApi.md +154 -0
- data/docs/ExportersFilesystemApi.md +3 -3
- data/docs/ExportersFilesystemExportsApi.md +1 -1
- data/docs/ExportersPulpApi.md +3 -3
- data/docs/ExportersPulpExportsApi.md +1 -1
- data/docs/FilesystemExport.md +1 -3
- data/docs/GroupsApi.md +1 -1
- data/docs/GroupsRolesApi.md +1 -1
- data/docs/GroupsUsersApi.md +1 -1
- data/docs/ImportersPulpApi.md +3 -3
- data/docs/ImportersPulpImportCheckApi.md +1 -1
- data/docs/ImportersPulpImportsApi.md +1 -1
- data/docs/OrphansApi.md +1 -1
- data/docs/OrphansCleanupApi.md +1 -1
- data/docs/PaginatedArtifactDistributionResponseList.md +23 -0
- data/docs/PublicationsApi.md +3 -3
- data/docs/RemoteResponse.md +4 -2
- data/docs/RemoteResponseHiddenFields.md +19 -0
- data/docs/RemotesApi.md +5 -5
- data/docs/RepairApi.md +1 -1
- data/docs/RepositoriesApi.md +4 -4
- data/docs/RepositoriesReclaimSpaceApi.md +1 -1
- data/docs/RepositoryResponse.md +1 -1
- data/docs/RepositoryVersionsApi.md +5 -5
- data/docs/RolesApi.md +1 -1
- data/docs/SigningServicesApi.md +5 -3
- data/docs/StatusApi.md +1 -1
- data/docs/StatusResponse.md +3 -1
- data/docs/TaskGroupsApi.md +1 -3
- data/docs/TaskSchedulesApi.md +5 -5
- data/docs/TasksApi.md +33 -19
- data/docs/UploadsApi.md +11 -1
- data/docs/UserResponse.md +3 -1
- data/docs/UsersApi.md +1 -1
- data/docs/UsersRolesApi.md +1 -1
- data/docs/WorkersApi.md +5 -5
- 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/configuration.rb +3 -3
- 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 +41 -27
- 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/configuration_spec.rb +3 -3
- 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 +159 -139
data/docs/OrphansApi.md
CHANGED
data/docs/OrphansCleanupApi.md
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# PulpcoreClient::PaginatedArtifactDistributionResponseList
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**count** | **Integer** | | [optional]
|
|
8
|
+
**_next** | **String** | | [optional]
|
|
9
|
+
**previous** | **String** | | [optional]
|
|
10
|
+
**results** | [**Array<ArtifactDistributionResponse>**](ArtifactDistributionResponse.md) | | [optional]
|
|
11
|
+
|
|
12
|
+
## Code Sample
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'PulpcoreClient'
|
|
16
|
+
|
|
17
|
+
instance = PulpcoreClient::PaginatedArtifactDistributionResponseList.new(count: 123,
|
|
18
|
+
_next: http://api.example.org/accounts/?offset=400&limit=100,
|
|
19
|
+
previous: http://api.example.org/accounts/?offset=200&limit=100,
|
|
20
|
+
results: null)
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
|
data/docs/PublicationsApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::PublicationsApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
3
|
+
All URIs are relative to *https://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -35,7 +35,7 @@ opts = {
|
|
|
35
35
|
limit: 56, # Integer | Number of results to return per page.
|
|
36
36
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
37
37
|
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
38
|
-
pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime |
|
|
38
|
+
pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created matches value
|
|
39
39
|
pulp_created__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than value
|
|
40
40
|
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
|
|
41
41
|
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
|
**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** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
69
|
-
**pulp_created** | **DateTime**|
|
|
69
|
+
**pulp_created** | **DateTime**| Filter results where pulp_created matches value | [optional]
|
|
70
70
|
**pulp_created__gt** | **DateTime**| Filter results where pulp_created is greater than value | [optional]
|
|
71
71
|
**pulp_created__gte** | **DateTime**| Filter results where pulp_created is greater than or equal to value | [optional]
|
|
72
72
|
**pulp_created__lt** | **DateTime**| Filter results where pulp_created is less than value | [optional]
|
data/docs/RemoteResponse.md
CHANGED
|
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
|
13
13
|
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
|
14
14
|
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
|
15
|
-
**pulp_labels** |
|
|
15
|
+
**pulp_labels** | **Hash<String, String>** | | [optional]
|
|
16
16
|
**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
|
|
17
17
|
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
|
18
18
|
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
|
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
|
|
|
23
23
|
**sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
|
24
24
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
|
25
25
|
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
|
26
|
+
**hidden_fields** | [**Array<RemoteResponseHiddenFields>**](RemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly]
|
|
26
27
|
|
|
27
28
|
## Code Sample
|
|
28
29
|
|
|
@@ -47,7 +48,8 @@ instance = PulpcoreClient::RemoteResponse.new(pulp_href: null,
|
|
|
47
48
|
sock_connect_timeout: null,
|
|
48
49
|
sock_read_timeout: null,
|
|
49
50
|
headers: null,
|
|
50
|
-
rate_limit: null
|
|
51
|
+
rate_limit: null,
|
|
52
|
+
hidden_fields: null)
|
|
51
53
|
```
|
|
52
54
|
|
|
53
55
|
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# PulpcoreClient::RemoteResponseHiddenFields
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**name** | **String** | | [optional]
|
|
8
|
+
**is_set** | **Boolean** | | [optional]
|
|
9
|
+
|
|
10
|
+
## Code Sample
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'PulpcoreClient'
|
|
14
|
+
|
|
15
|
+
instance = PulpcoreClient::RemoteResponseHiddenFields.new(name: null,
|
|
16
|
+
is_set: null)
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
|
data/docs/RemotesApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::RemotesApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
3
|
+
All URIs are relative to *https://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -31,7 +31,7 @@ end
|
|
|
31
31
|
api_instance = PulpcoreClient::RemotesApi.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
|
|
@@ -39,7 +39,7 @@ opts = {
|
|
|
39
39
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
40
40
|
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
41
41
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
42
|
-
pulp_last_updated: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime |
|
|
42
|
+
pulp_last_updated: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated matches value
|
|
43
43
|
pulp_last_updated__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is greater than value
|
|
44
44
|
pulp_last_updated__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is greater than or equal to value
|
|
45
45
|
pulp_last_updated__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than value
|
|
@@ -64,7 +64,7 @@ end
|
|
|
64
64
|
Name | Type | Description | Notes
|
|
65
65
|
------------- | ------------- | ------------- | -------------
|
|
66
66
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
67
|
-
**name** | **String**|
|
|
67
|
+
**name** | **String**| Filter results where name matches value | [optional]
|
|
68
68
|
**name__contains** | **String**| Filter results where name contains value | [optional]
|
|
69
69
|
**name__icontains** | **String**| Filter results where name contains value | [optional]
|
|
70
70
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
@@ -72,7 +72,7 @@ Name | Type | Description | Notes
|
|
|
72
72
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
73
73
|
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
74
74
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
|
75
|
-
**pulp_last_updated** | **DateTime**|
|
|
75
|
+
**pulp_last_updated** | **DateTime**| Filter results where pulp_last_updated matches value | [optional]
|
|
76
76
|
**pulp_last_updated__gt** | **DateTime**| Filter results where pulp_last_updated is greater than value | [optional]
|
|
77
77
|
**pulp_last_updated__gte** | **DateTime**| Filter results where pulp_last_updated is greater than or equal to value | [optional]
|
|
78
78
|
**pulp_last_updated__lt** | **DateTime**| Filter results where pulp_last_updated is less than value | [optional]
|
data/docs/RepairApi.md
CHANGED
data/docs/RepositoriesApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::RepositoriesApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
3
|
+
All URIs are relative to *https://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -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]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::RepositoryVersionsApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
3
|
+
All URIs are relative to *https://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -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/RolesApi.md
CHANGED
data/docs/SigningServicesApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::SigningServicesApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
3
|
+
All URIs are relative to *https://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -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/StatusApi.md
CHANGED
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::TaskGroupsApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
3
|
+
All URIs are relative to *https://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::TaskSchedulesApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
3
|
+
All URIs are relative to *https://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::TasksApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
3
|
+
All URIs are relative to *https://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::UploadsApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
3
|
+
All URIs are relative to *https://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -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/UsersApi.md
CHANGED
data/docs/UsersRolesApi.md
CHANGED
data/docs/WorkersApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::WorkersApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
3
|
+
All URIs are relative to *https://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -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]
|