pulpcore_client 3.11.0.dev01613619278 → 3.11.0.dev01614051194
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/WorkerResponse.md +3 -3
- 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/models/worker_response.rb +10 -10
- 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
- data/spec/models/worker_response_spec.rb +2 -2
- metadata +6 -6
@@ -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.
|
@@ -32,13 +32,13 @@ describe 'WorkerResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpcoreClient::WorkerResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "pulp_created"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "pulp_href"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
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.dev01614051194
|
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-23 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
|