pulpcore_client 3.11.0.dev01613446453 → 3.11.0.dev01613878485
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.
Potentially problematic release.
This version of pulpcore_client might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +11 -11
- data/docs/AccessPoliciesApi.md +12 -12
- data/docs/ArtifactsApi.md +14 -14
- data/docs/ContentApi.md +6 -6
- data/docs/{ContentGuardsApi.md → ContentguardsApi.md} +15 -15
- data/docs/ExportersPulpApi.md +10 -10
- data/docs/GroupsApi.md +14 -14
- data/docs/ImportersPulpApi.md +10 -10
- data/docs/RepositoriesApi.md +12 -12
- data/docs/SigningServicesApi.md +2 -2
- data/docs/TasksApi.md +46 -46
- data/docs/UsersApi.md +44 -44
- data/docs/WorkersApi.md +26 -26
- data/lib/pulpcore_client.rb +1 -1
- data/lib/pulpcore_client/api/access_policies_api.rb +13 -13
- data/lib/pulpcore_client/api/artifacts_api.rb +14 -14
- data/lib/pulpcore_client/api/content_api.rb +6 -6
- data/lib/pulpcore_client/api/{content_guards_api.rb → contentguards_api.rb} +17 -17
- data/lib/pulpcore_client/api/exporters_pulp_api.rb +11 -11
- data/lib/pulpcore_client/api/groups_api.rb +16 -16
- data/lib/pulpcore_client/api/importers_pulp_api.rb +11 -11
- data/lib/pulpcore_client/api/repositories_api.rb +13 -13
- data/lib/pulpcore_client/api/signing_services_api.rb +2 -2
- data/lib/pulpcore_client/api/tasks_api.rb +58 -50
- data/lib/pulpcore_client/api/users_api.rb +48 -48
- data/lib/pulpcore_client/api/workers_api.rb +28 -28
- data/lib/pulpcore_client/version.rb +1 -1
- data/spec/api/access_policies_api_spec.rb +6 -6
- data/spec/api/artifacts_api_spec.rb +7 -7
- data/spec/api/content_api_spec.rb +3 -3
- data/spec/api/{content_guards_api_spec.rb → contentguards_api_spec.rb} +12 -12
- data/spec/api/exporters_pulp_api_spec.rb +5 -5
- data/spec/api/groups_api_spec.rb +7 -7
- data/spec/api/importers_pulp_api_spec.rb +5 -5
- data/spec/api/repositories_api_spec.rb +6 -6
- data/spec/api/signing_services_api_spec.rb +1 -1
- data/spec/api/tasks_api_spec.rb +23 -23
- data/spec/api/users_api_spec.rb +22 -22
- data/spec/api/workers_api_spec.rb +13 -13
- metadata +6 -6
@@ -36,15 +36,15 @@ describe 'AccessPoliciesApi' do
|
|
36
36
|
# List access policys
|
37
37
|
# ViewSet for AccessPolicy. NOTE: This API endpoint is in \"tech preview\" and subject to change
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
-
# @option opts [
|
39
|
+
# @option opts [Boolean] :customized
|
40
40
|
# @option opts [Integer] :limit Number of results to return per page.
|
41
41
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
42
42
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
43
|
-
# @option opts [String] :viewset_name viewset_name
|
44
|
-
# @option opts [String] :viewset_name__contains
|
45
|
-
# @option opts [String] :viewset_name__icontains
|
46
|
-
# @option opts [String] :viewset_name__in
|
47
|
-
# @option opts [String] :viewset_name__startswith
|
43
|
+
# @option opts [String] :viewset_name Filter results where viewset_name matches value
|
44
|
+
# @option opts [String] :viewset_name__contains Filter results where viewset_name contains value
|
45
|
+
# @option opts [String] :viewset_name__icontains Filter results where viewset_name contains value
|
46
|
+
# @option opts [Array<String>] :viewset_name__in Filter results where viewset_name is in a comma-separated list of values
|
47
|
+
# @option opts [String] :viewset_name__startswith Filter results where viewset_name starts with value
|
48
48
|
# @option opts [String] :fields A list of fields to include in the response.
|
49
49
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
50
50
|
# @return [PaginatedAccessPolicyResponseList]
|
@@ -68,15 +68,15 @@ describe 'ArtifactsApi' do
|
|
68
68
|
# A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \"Normal\" Django Models and Master/Detail models are supported by the ``register_with`` method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to 'pk' endpoint_name (str): The name of the final path segment that should identify the ViewSet's collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \"parent_prefix\" of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object's identity. schema (DefaultSchema): The schema class to use by default in a viewset.
|
69
69
|
# @param [Hash] opts the optional parameters
|
70
70
|
# @option opts [Integer] :limit Number of results to return per page.
|
71
|
-
# @option opts [String] :md5 md5
|
71
|
+
# @option opts [String] :md5 Filter results where md5 matches value
|
72
72
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
73
73
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
74
|
-
# @option opts [String] :repository_version
|
75
|
-
# @option opts [String] :sha1 sha1
|
76
|
-
# @option opts [String] :sha224 sha224
|
77
|
-
# @option opts [String] :sha256 sha256
|
78
|
-
# @option opts [String] :sha384 sha384
|
79
|
-
# @option opts [String] :sha512 sha512
|
74
|
+
# @option opts [String] :repository_version Repository Version referenced by HREF
|
75
|
+
# @option opts [String] :sha1 Filter results where sha1 matches value
|
76
|
+
# @option opts [String] :sha224 Filter results where sha224 matches value
|
77
|
+
# @option opts [String] :sha256 Filter results where sha256 matches value
|
78
|
+
# @option opts [String] :sha384 Filter results where sha384 matches value
|
79
|
+
# @option opts [String] :sha512 Filter results where sha512 matches value
|
80
80
|
# @option opts [String] :fields A list of fields to include in the response.
|
81
81
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
82
82
|
# @return [PaginatedArtifactResponseList]
|
@@ -39,9 +39,9 @@ describe 'ContentApi' 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] :repository_version
|
43
|
-
# @option opts [String] :repository_version_added
|
44
|
-
# @option opts [String] :repository_version_removed
|
42
|
+
# @option opts [String] :repository_version Repository Version referenced by HREF
|
43
|
+
# @option opts [String] :repository_version_added Repository Version referenced by HREF
|
44
|
+
# @option opts [String] :repository_version_removed Repository Version referenced by HREF
|
45
45
|
# @option opts [String] :fields A list of fields to include in the response.
|
46
46
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
47
47
|
# @return [PaginatedMultipleArtifactContentResponseList]
|
@@ -13,35 +13,35 @@ OpenAPI Generator version: 4.2.3
|
|
13
13
|
require 'spec_helper'
|
14
14
|
require 'json'
|
15
15
|
|
16
|
-
# Unit tests for PulpcoreClient::
|
16
|
+
# Unit tests for PulpcoreClient::ContentguardsApi
|
17
17
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
18
18
|
# Please update as you see appropriate
|
19
|
-
describe '
|
19
|
+
describe 'ContentguardsApi' do
|
20
20
|
before do
|
21
21
|
# run before each test
|
22
|
-
@api_instance = PulpcoreClient::
|
22
|
+
@api_instance = PulpcoreClient::ContentguardsApi.new
|
23
23
|
end
|
24
24
|
|
25
25
|
after do
|
26
26
|
# run after each test
|
27
27
|
end
|
28
28
|
|
29
|
-
describe 'test an instance of
|
30
|
-
it 'should create an instance of
|
31
|
-
expect(@api_instance).to be_instance_of(PulpcoreClient::
|
29
|
+
describe 'test an instance of ContentguardsApi' do
|
30
|
+
it 'should create an instance of ContentguardsApi' do
|
31
|
+
expect(@api_instance).to be_instance_of(PulpcoreClient::ContentguardsApi)
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
35
|
# unit tests for list
|
36
36
|
# List content guards
|
37
|
-
# Endpoint to list all
|
37
|
+
# Endpoint to list all contentguards.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
39
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
|
-
# @option opts [String] :name
|
41
|
-
# @option opts [String] :name__contains
|
42
|
-
# @option opts [String] :name__icontains
|
43
|
-
# @option opts [String] :name__in
|
44
|
-
# @option opts [String] :name__startswith
|
40
|
+
# @option opts [String] :name
|
41
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
42
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
43
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
44
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
45
45
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
46
46
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
47
47
|
# @option opts [String] :fields A list of fields to include in the response.
|
@@ -61,11 +61,11 @@ describe 'ExportersPulpApi' do
|
|
61
61
|
# ViewSet for viewing PulpExporters.
|
62
62
|
# @param [Hash] opts the optional parameters
|
63
63
|
# @option opts [Integer] :limit Number of results to return per page.
|
64
|
-
# @option opts [String] :name
|
65
|
-
# @option opts [String] :name__contains
|
66
|
-
# @option opts [String] :name__icontains
|
67
|
-
# @option opts [String] :name__in
|
68
|
-
# @option opts [String] :name__startswith
|
64
|
+
# @option opts [String] :name
|
65
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
66
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
67
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
68
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
69
69
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
70
70
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
71
71
|
# @option opts [String] :fields A list of fields to include in the response.
|
data/spec/api/groups_api_spec.rb
CHANGED
@@ -60,14 +60,14 @@ describe 'GroupsApi' do
|
|
60
60
|
# List groups
|
61
61
|
# ViewSet for Group. NOTE: This API endpoint is in \"tech preview\" and subject to change
|
62
62
|
# @param [Hash] opts the optional parameters
|
63
|
-
# @option opts [
|
64
|
-
# @option opts [
|
63
|
+
# @option opts [Integer] :id Filter results where id matches value
|
64
|
+
# @option opts [Array<Integer>] :id__in Filter results where id is in a comma-separated list of values
|
65
65
|
# @option opts [Integer] :limit Number of results to return per page.
|
66
|
-
# @option opts [String] :name name
|
67
|
-
# @option opts [String] :name__contains
|
68
|
-
# @option opts [String] :name__icontains
|
69
|
-
# @option opts [String] :name__iexact
|
70
|
-
# @option opts [String] :name__in
|
66
|
+
# @option opts [String] :name Filter results where name matches value
|
67
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
68
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
69
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
70
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
71
71
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
72
72
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
73
73
|
# @option opts [String] :fields A list of fields to include in the response.
|
@@ -61,11 +61,11 @@ describe 'ImportersPulpApi' do
|
|
61
61
|
# ViewSet for PulpImporters.
|
62
62
|
# @param [Hash] opts the optional parameters
|
63
63
|
# @option opts [Integer] :limit Number of results to return per page.
|
64
|
-
# @option opts [String] :name
|
65
|
-
# @option opts [String] :name__contains
|
66
|
-
# @option opts [String] :name__icontains
|
67
|
-
# @option opts [String] :name__in
|
68
|
-
# @option opts [String] :name__startswith
|
64
|
+
# @option opts [String] :name
|
65
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
66
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
67
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
68
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
69
69
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
70
70
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
71
71
|
# @option opts [String] :fields A list of fields to include in the response.
|
@@ -37,14 +37,14 @@ describe 'RepositoriesApi' do
|
|
37
37
|
# Endpoint to list all repositories.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
39
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
|
-
# @option opts [String] :name
|
41
|
-
# @option opts [String] :name__contains
|
42
|
-
# @option opts [String] :name__icontains
|
43
|
-
# @option opts [String] :name__in
|
44
|
-
# @option opts [String] :name__startswith
|
40
|
+
# @option opts [String] :name
|
41
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
42
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
43
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
44
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
45
45
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
46
46
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
47
|
-
# @option opts [String] :pulp_label_select
|
47
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
48
48
|
# @option opts [String] :fields A list of fields to include in the response.
|
49
49
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
50
50
|
# @return [PaginatedRepositoryResponseList]
|
@@ -37,7 +37,7 @@ describe 'SigningServicesApi' do
|
|
37
37
|
# A ViewSet that supports browsing of existing signing services.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
39
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
|
-
# @option opts [String] :name
|
40
|
+
# @option opts [String] :name
|
41
41
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
42
42
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
43
43
|
# @option opts [String] :fields A list of fields to include in the response.
|
data/spec/api/tasks_api_spec.rb
CHANGED
@@ -48,32 +48,32 @@ describe 'TasksApi' do
|
|
48
48
|
# List tasks
|
49
49
|
# A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \"Normal\" Django Models and Master/Detail models are supported by the ``register_with`` method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to 'pk' endpoint_name (str): The name of the final path segment that should identify the ViewSet's collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \"parent_prefix\" of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object's identity. schema (DefaultSchema): The schema class to use by default in a viewset.
|
50
50
|
# @param [Hash] opts the optional parameters
|
51
|
-
# @option opts [String] :child_tasks
|
52
|
-
# @option opts [String] :created_resources
|
53
|
-
# @option opts [
|
54
|
-
# @option opts [
|
55
|
-
# @option opts [
|
56
|
-
# @option opts [
|
57
|
-
# @option opts [
|
58
|
-
# @option opts [
|
51
|
+
# @option opts [String] :child_tasks Foreign Key referenced by HREF
|
52
|
+
# @option opts [String] :created_resources
|
53
|
+
# @option opts [DateTime] :finished_at ISO 8601 formatted dates are supported
|
54
|
+
# @option opts [DateTime] :finished_at__gt Filter results where finished_at is greater than value
|
55
|
+
# @option opts [DateTime] :finished_at__gte Filter results where finished_at is greater than or equal to value
|
56
|
+
# @option opts [DateTime] :finished_at__lt Filter results where finished_at is less than value
|
57
|
+
# @option opts [DateTime] :finished_at__lte Filter results where finished_at is less than or equal to value
|
58
|
+
# @option opts [Array<DateTime>] :finished_at__range Filter results where finished_at is between two comma separated values
|
59
59
|
# @option opts [Integer] :limit Number of results to return per page.
|
60
|
-
# @option opts [String] :name
|
61
|
-
# @option opts [String] :name__contains
|
60
|
+
# @option opts [String] :name
|
61
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
62
62
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
63
63
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
64
|
-
# @option opts [String] :parent_task
|
65
|
-
# @option opts [String] :reserved_resources_record
|
66
|
-
# @option opts [
|
67
|
-
# @option opts [
|
68
|
-
# @option opts [
|
69
|
-
# @option opts [
|
70
|
-
# @option opts [
|
71
|
-
# @option opts [
|
72
|
-
# @option opts [String] :state
|
73
|
-
# @option opts [String] :state__in
|
74
|
-
# @option opts [String] :task_group
|
75
|
-
# @option opts [String] :worker
|
76
|
-
# @option opts [String] :worker__in
|
64
|
+
# @option opts [String] :parent_task Foreign Key referenced by HREF
|
65
|
+
# @option opts [String] :reserved_resources_record
|
66
|
+
# @option opts [DateTime] :started_at ISO 8601 formatted dates are supported
|
67
|
+
# @option opts [DateTime] :started_at__gt Filter results where started_at is greater than value
|
68
|
+
# @option opts [DateTime] :started_at__gte Filter results where started_at is greater than or equal to value
|
69
|
+
# @option opts [DateTime] :started_at__lt Filter results where started_at is less than value
|
70
|
+
# @option opts [DateTime] :started_at__lte Filter results where started_at is less than or equal to value
|
71
|
+
# @option opts [Array<DateTime>] :started_at__range Filter results where started_at is between two comma separated values
|
72
|
+
# @option opts [String] :state
|
73
|
+
# @option opts [Array<String>] :state__in Filter results where state is in a comma-separated list of values
|
74
|
+
# @option opts [String] :task_group Foreign Key referenced by HREF
|
75
|
+
# @option opts [String] :worker Foreign Key referenced by HREF
|
76
|
+
# @option opts [Array<String>] :worker__in Filter results where worker is in a comma-separated list of values
|
77
77
|
# @option opts [String] :fields A list of fields to include in the response.
|
78
78
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
79
79
|
# @return [PaginatedTaskResponseList]
|
data/spec/api/users_api_spec.rb
CHANGED
@@ -36,31 +36,31 @@ describe 'UsersApi' do
|
|
36
36
|
# List users
|
37
37
|
# ViewSet for User. NOTE: This API endpoint is in \"tech preview\" and subject to change
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
-
# @option opts [String] :email email
|
40
|
-
# @option opts [String] :email__contains
|
41
|
-
# @option opts [String] :email__icontains
|
42
|
-
# @option opts [String] :email__iexact
|
43
|
-
# @option opts [String] :email__in
|
44
|
-
# @option opts [String] :first_name first_name
|
45
|
-
# @option opts [String] :first_name__contains
|
46
|
-
# @option opts [String] :first_name__icontains
|
47
|
-
# @option opts [String] :first_name__iexact
|
48
|
-
# @option opts [String] :first_name__in
|
49
|
-
# @option opts [
|
50
|
-
# @option opts [
|
51
|
-
# @option opts [String] :last_name last_name
|
52
|
-
# @option opts [String] :last_name__contains
|
53
|
-
# @option opts [String] :last_name__icontains
|
54
|
-
# @option opts [String] :last_name__iexact
|
55
|
-
# @option opts [String] :last_name__in
|
39
|
+
# @option opts [String] :email Filter results where email matches value
|
40
|
+
# @option opts [String] :email__contains Filter results where email contains value
|
41
|
+
# @option opts [String] :email__icontains Filter results where email contains value
|
42
|
+
# @option opts [String] :email__iexact Filter results where email matches value
|
43
|
+
# @option opts [Array<String>] :email__in Filter results where email is in a comma-separated list of values
|
44
|
+
# @option opts [String] :first_name Filter results where first_name matches value
|
45
|
+
# @option opts [String] :first_name__contains Filter results where first_name contains value
|
46
|
+
# @option opts [String] :first_name__icontains Filter results where first_name contains value
|
47
|
+
# @option opts [String] :first_name__iexact Filter results where first_name matches value
|
48
|
+
# @option opts [Array<String>] :first_name__in Filter results where first_name is in a comma-separated list of values
|
49
|
+
# @option opts [Boolean] :is_active Filter results where is_active matches value
|
50
|
+
# @option opts [Boolean] :is_staff Filter results where is_staff matches value
|
51
|
+
# @option opts [String] :last_name Filter results where last_name matches value
|
52
|
+
# @option opts [String] :last_name__contains Filter results where last_name contains value
|
53
|
+
# @option opts [String] :last_name__icontains Filter results where last_name contains value
|
54
|
+
# @option opts [String] :last_name__iexact Filter results where last_name matches value
|
55
|
+
# @option opts [Array<String>] :last_name__in Filter results where last_name is in a comma-separated list of values
|
56
56
|
# @option opts [Integer] :limit Number of results to return per page.
|
57
57
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
58
58
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
59
|
-
# @option opts [String] :username username
|
60
|
-
# @option opts [String] :username__contains
|
61
|
-
# @option opts [String] :username__icontains
|
62
|
-
# @option opts [String] :username__iexact
|
63
|
-
# @option opts [String] :username__in
|
59
|
+
# @option opts [String] :username Filter results where username matches value
|
60
|
+
# @option opts [String] :username__contains Filter results where username contains value
|
61
|
+
# @option opts [String] :username__icontains Filter results where username contains value
|
62
|
+
# @option opts [String] :username__iexact Filter results where username matches value
|
63
|
+
# @option opts [Array<String>] :username__in Filter results where username is in a comma-separated list of values
|
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 [PaginatedUserResponseList]
|
@@ -36,21 +36,21 @@ describe 'WorkersApi' do
|
|
36
36
|
# List workers
|
37
37
|
# A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \"Normal\" Django Models and Master/Detail models are supported by the ``register_with`` method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to 'pk' endpoint_name (str): The name of the final path segment that should identify the ViewSet's collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \"parent_prefix\" of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object's identity. schema (DefaultSchema): The schema class to use by default in a viewset.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
-
# @option opts [
|
40
|
-
# @option opts [
|
41
|
-
# @option opts [
|
42
|
-
# @option opts [
|
43
|
-
# @option opts [
|
44
|
-
# @option opts [
|
39
|
+
# @option opts [DateTime] :last_heartbeat ISO 8601 formatted dates are supported
|
40
|
+
# @option opts [DateTime] :last_heartbeat__gt Filter results where last_heartbeat is greater than value
|
41
|
+
# @option opts [DateTime] :last_heartbeat__gte Filter results where last_heartbeat is greater than or equal to value
|
42
|
+
# @option opts [DateTime] :last_heartbeat__lt Filter results where last_heartbeat is less than value
|
43
|
+
# @option opts [DateTime] :last_heartbeat__lte Filter results where last_heartbeat is less than or equal to value
|
44
|
+
# @option opts [Array<DateTime>] :last_heartbeat__range Filter results where last_heartbeat is between two comma separated values
|
45
45
|
# @option opts [Integer] :limit Number of results to return per page.
|
46
|
-
# @option opts [
|
47
|
-
# @option opts [String] :name
|
48
|
-
# @option opts [String] :name__contains
|
49
|
-
# @option opts [String] :name__icontains
|
50
|
-
# @option opts [String] :name__in
|
51
|
-
# @option opts [String] :name__startswith
|
46
|
+
# @option opts [Boolean] :missing
|
47
|
+
# @option opts [String] :name
|
48
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
49
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
50
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
51
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
52
52
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
53
|
-
# @option opts [
|
53
|
+
# @option opts [Boolean] :online
|
54
54
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
55
55
|
# @option opts [String] :fields A list of fields to include in the response.
|
56
56
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulpcore_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.11.0.
|
4
|
+
version: 3.11.0.dev01613878485
|
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-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -84,7 +84,7 @@ files:
|
|
84
84
|
- docs/ContentApi.md
|
85
85
|
- docs/ContentAppStatusResponse.md
|
86
86
|
- docs/ContentGuardResponse.md
|
87
|
-
- docs/
|
87
|
+
- docs/ContentguardsApi.md
|
88
88
|
- docs/DatabaseConnectionResponse.md
|
89
89
|
- docs/EvaluationResponse.md
|
90
90
|
- docs/ExportersCoreExportsApi.md
|
@@ -169,7 +169,7 @@ files:
|
|
169
169
|
- lib/pulpcore_client/api/access_policies_api.rb
|
170
170
|
- lib/pulpcore_client/api/artifacts_api.rb
|
171
171
|
- lib/pulpcore_client/api/content_api.rb
|
172
|
-
- lib/pulpcore_client/api/
|
172
|
+
- lib/pulpcore_client/api/contentguards_api.rb
|
173
173
|
- lib/pulpcore_client/api/exporters_core_exports_api.rb
|
174
174
|
- lib/pulpcore_client/api/exporters_pulp_api.rb
|
175
175
|
- lib/pulpcore_client/api/groups_api.rb
|
@@ -264,7 +264,7 @@ files:
|
|
264
264
|
- spec/api/access_policies_api_spec.rb
|
265
265
|
- spec/api/artifacts_api_spec.rb
|
266
266
|
- spec/api/content_api_spec.rb
|
267
|
-
- spec/api/
|
267
|
+
- spec/api/contentguards_api_spec.rb
|
268
268
|
- spec/api/exporters_core_exports_api_spec.rb
|
269
269
|
- spec/api/exporters_pulp_api_spec.rb
|
270
270
|
- spec/api/groups_api_spec.rb
|
@@ -389,10 +389,10 @@ test_files:
|
|
389
389
|
- spec/api/access_policies_api_spec.rb
|
390
390
|
- spec/api/users_api_spec.rb
|
391
391
|
- spec/api/status_api_spec.rb
|
392
|
+
- spec/api/contentguards_api_spec.rb
|
392
393
|
- spec/api/tasks_api_spec.rb
|
393
394
|
- spec/api/groups_model_permissions_api_spec.rb
|
394
395
|
- spec/api/orphans_api_spec.rb
|
395
|
-
- spec/api/content_guards_api_spec.rb
|
396
396
|
- spec/api/content_api_spec.rb
|
397
397
|
- spec/api/importers_core_imports_api_spec.rb
|
398
398
|
- spec/api/exporters_core_exports_api_spec.rb
|