pulpcore_client 3.116.2 → 3.117.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 +4 -4
- data/docs/ArtifactDistributionResponse.md +11 -11
- data/docs/ArtifactsApi.md +3 -3
- data/docs/Domain.md +3 -1
- data/docs/DomainResponse.md +5 -1
- data/docs/PatchedDomain.md +3 -1
- data/docs/PatchedUser.md +1 -1
- data/docs/Purge.md +1 -1
- data/docs/RemotesApi.md +1 -1
- data/docs/TasksApi.md +3 -3
- data/docs/User.md +1 -1
- data/docs/VulnReportApi.md +3 -3
- data/docs/WorkersApi.md +2 -2
- data/lib/pulpcore_client/api/artifacts_api.rb +6 -6
- data/lib/pulpcore_client/api/remotes_api.rb +2 -2
- data/lib/pulpcore_client/api/tasks_api.rb +6 -6
- data/lib/pulpcore_client/api/vuln_report_api.rb +6 -6
- data/lib/pulpcore_client/api/workers_api.rb +4 -4
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +61 -61
- data/lib/pulpcore_client/models/artifact_response.rb +1 -1
- data/lib/pulpcore_client/models/domain.rb +15 -4
- data/lib/pulpcore_client/models/domain_response.rb +25 -4
- data/lib/pulpcore_client/models/group_progress_report_response.rb +1 -1
- data/lib/pulpcore_client/models/minimal_task_response.rb +1 -1
- data/lib/pulpcore_client/models/multiple_artifact_content_response.rb +1 -1
- data/lib/pulpcore_client/models/nested_open_pgp_public_subkey.rb +1 -1
- data/lib/pulpcore_client/models/nested_open_pgp_public_subkey_response.rb +1 -1
- data/lib/pulpcore_client/models/nested_open_pgp_signature.rb +1 -1
- data/lib/pulpcore_client/models/nested_open_pgp_signature_response.rb +1 -1
- data/lib/pulpcore_client/models/nested_open_pgp_user_attribute.rb +1 -1
- data/lib/pulpcore_client/models/nested_open_pgp_user_attribute_response.rb +1 -1
- data/lib/pulpcore_client/models/nested_open_pgp_user_id.rb +1 -1
- data/lib/pulpcore_client/models/nested_open_pgp_user_id_response.rb +1 -1
- data/lib/pulpcore_client/models/nested_role.rb +1 -1
- data/lib/pulpcore_client/models/nested_role_response.rb +1 -1
- data/lib/pulpcore_client/models/open_pgp_keyring.rb +1 -1
- data/lib/pulpcore_client/models/open_pgp_keyring_response.rb +1 -1
- data/lib/pulpcore_client/models/open_pgp_public_subkey_response.rb +1 -1
- data/lib/pulpcore_client/models/open_pgp_signature_response.rb +1 -1
- data/lib/pulpcore_client/models/open_pgp_user_attribute_response.rb +1 -1
- data/lib/pulpcore_client/models/open_pgp_user_id_response.rb +1 -1
- data/lib/pulpcore_client/models/patched_domain.rb +15 -4
- data/lib/pulpcore_client/models/patched_open_pgp_keyring.rb +1 -1
- data/lib/pulpcore_client/models/patched_user.rb +1 -1
- data/lib/pulpcore_client/models/progress_report_response.rb +1 -1
- data/lib/pulpcore_client/models/publication_response.rb +1 -1
- data/lib/pulpcore_client/models/purge.rb +1 -1
- data/lib/pulpcore_client/models/repository_add_remove_content.rb +1 -1
- data/lib/pulpcore_client/models/repository_response.rb +1 -1
- data/lib/pulpcore_client/models/repository_version_response.rb +1 -1
- data/lib/pulpcore_client/models/task_group_response.rb +1 -1
- data/lib/pulpcore_client/models/task_response.rb +1 -1
- data/lib/pulpcore_client/models/task_schedule_response.rb +1 -1
- data/lib/pulpcore_client/models/user.rb +1 -1
- data/lib/pulpcore_client/models/worker_response.rb +1 -1
- data/lib/pulpcore_client/version.rb +1 -1
- data/spec/api/artifacts_api_spec.rb +3 -3
- data/spec/api/remotes_api_spec.rb +1 -1
- data/spec/api/tasks_api_spec.rb +3 -3
- data/spec/api/vuln_report_api_spec.rb +3 -3
- data/spec/api/workers_api_spec.rb +2 -2
- data/spec/models/artifact_distribution_response_spec.rb +12 -12
- data/spec/models/domain_response_spec.rb +12 -0
- data/spec/models/domain_spec.rb +6 -0
- data/spec/models/patched_domain_spec.rb +6 -0
- metadata +2 -2
|
@@ -20,7 +20,7 @@ module PulpcoreClient
|
|
|
20
20
|
@api_client = api_client
|
|
21
21
|
end
|
|
22
22
|
# Delete a vulnerability report
|
|
23
|
-
# 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
|
|
23
|
+
# 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.
|
|
24
24
|
# @param vulnerability_report_href [String]
|
|
25
25
|
# @param [Hash] opts the optional parameters
|
|
26
26
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
@@ -31,7 +31,7 @@ module PulpcoreClient
|
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
# Delete a vulnerability report
|
|
34
|
-
# 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 `
|
|
34
|
+
# 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.
|
|
35
35
|
# @param vulnerability_report_href [String]
|
|
36
36
|
# @param [Hash] opts the optional parameters
|
|
37
37
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
@@ -84,7 +84,7 @@ module PulpcoreClient
|
|
|
84
84
|
end
|
|
85
85
|
|
|
86
86
|
# List vulnerability reports
|
|
87
|
-
# 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
|
|
87
|
+
# 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.
|
|
88
88
|
# @param [Hash] opts the optional parameters
|
|
89
89
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
90
90
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
@@ -104,7 +104,7 @@ module PulpcoreClient
|
|
|
104
104
|
end
|
|
105
105
|
|
|
106
106
|
# List vulnerability reports
|
|
107
|
-
# 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 `
|
|
107
|
+
# 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.
|
|
108
108
|
# @param [Hash] opts the optional parameters
|
|
109
109
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
110
110
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
@@ -178,7 +178,7 @@ module PulpcoreClient
|
|
|
178
178
|
end
|
|
179
179
|
|
|
180
180
|
# Inspect a vulnerability report
|
|
181
|
-
# 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
|
|
181
|
+
# 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.
|
|
182
182
|
# @param vulnerability_report_href [String]
|
|
183
183
|
# @param [Hash] opts the optional parameters
|
|
184
184
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
@@ -191,7 +191,7 @@ module PulpcoreClient
|
|
|
191
191
|
end
|
|
192
192
|
|
|
193
193
|
# Inspect a vulnerability report
|
|
194
|
-
# 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 `
|
|
194
|
+
# 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.
|
|
195
195
|
# @param vulnerability_report_href [String]
|
|
196
196
|
# @param [Hash] opts the optional parameters
|
|
197
197
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
@@ -20,7 +20,7 @@ module PulpcoreClient
|
|
|
20
20
|
@api_client = api_client
|
|
21
21
|
end
|
|
22
22
|
# List app statuss
|
|
23
|
-
# 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
|
|
23
|
+
# 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.
|
|
24
24
|
# @param [Hash] opts the optional parameters
|
|
25
25
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
26
26
|
# @option opts [Time] :last_heartbeat Filter results where last_heartbeat matches value
|
|
@@ -57,7 +57,7 @@ module PulpcoreClient
|
|
|
57
57
|
end
|
|
58
58
|
|
|
59
59
|
# List app statuss
|
|
60
|
-
# 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 `
|
|
60
|
+
# 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.
|
|
61
61
|
# @param [Hash] opts the optional parameters
|
|
62
62
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
63
63
|
# @option opts [Time] :last_heartbeat Filter results where last_heartbeat matches value
|
|
@@ -165,7 +165,7 @@ module PulpcoreClient
|
|
|
165
165
|
end
|
|
166
166
|
|
|
167
167
|
# Inspect an app status
|
|
168
|
-
# 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
|
|
168
|
+
# 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.
|
|
169
169
|
# @param worker_href [String]
|
|
170
170
|
# @param [Hash] opts the optional parameters
|
|
171
171
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
@@ -178,7 +178,7 @@ module PulpcoreClient
|
|
|
178
178
|
end
|
|
179
179
|
|
|
180
180
|
# Inspect an app status
|
|
181
|
-
# 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 `
|
|
181
|
+
# 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.
|
|
182
182
|
# @param worker_href [String]
|
|
183
183
|
# @param [Hash] opts the optional parameters
|
|
184
184
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
@@ -16,32 +16,34 @@ require 'time'
|
|
|
16
16
|
module PulpcoreClient
|
|
17
17
|
# A serializer for ArtifactDistribution.
|
|
18
18
|
class ArtifactDistributionResponse
|
|
19
|
+
attr_accessor :pulp_href
|
|
20
|
+
|
|
21
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
22
|
+
attr_accessor :base_path
|
|
23
|
+
|
|
24
|
+
# Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
|
|
25
|
+
attr_accessor :pulp_last_updated
|
|
26
|
+
|
|
19
27
|
# Whether this distribution should be shown in the content app.
|
|
20
28
|
attr_accessor :hidden
|
|
21
29
|
|
|
22
30
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
23
31
|
attr_accessor :name
|
|
24
32
|
|
|
25
|
-
# Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
|
|
26
|
-
attr_accessor :pulp_last_updated
|
|
27
|
-
|
|
28
33
|
# The Pulp Resource Name (PRN) of the associated optional content guard.
|
|
29
34
|
attr_accessor :content_guard_prn
|
|
30
35
|
|
|
36
|
+
# The URL for accessing the publication as defined by this distribution.
|
|
37
|
+
attr_accessor :base_url
|
|
38
|
+
|
|
39
|
+
attr_accessor :pulp_labels
|
|
40
|
+
|
|
31
41
|
# The Pulp Resource Name (PRN).
|
|
32
42
|
attr_accessor :prn
|
|
33
43
|
|
|
34
|
-
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
35
|
-
attr_accessor :base_path
|
|
36
|
-
|
|
37
44
|
# An optional content-guard.
|
|
38
45
|
attr_accessor :content_guard
|
|
39
46
|
|
|
40
|
-
attr_accessor :pulp_href
|
|
41
|
-
|
|
42
|
-
# The URL for accessing the publication as defined by this distribution.
|
|
43
|
-
attr_accessor :base_url
|
|
44
|
-
|
|
45
47
|
# RepositoryVersion to be served
|
|
46
48
|
attr_accessor :repository_version
|
|
47
49
|
|
|
@@ -51,24 +53,22 @@ module PulpcoreClient
|
|
|
51
53
|
# Timestamp of creation.
|
|
52
54
|
attr_accessor :pulp_created
|
|
53
55
|
|
|
54
|
-
attr_accessor :pulp_labels
|
|
55
|
-
|
|
56
56
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
57
57
|
def self.attribute_map
|
|
58
58
|
{
|
|
59
|
+
:'pulp_href' => :'pulp_href',
|
|
60
|
+
:'base_path' => :'base_path',
|
|
61
|
+
:'pulp_last_updated' => :'pulp_last_updated',
|
|
59
62
|
:'hidden' => :'hidden',
|
|
60
63
|
:'name' => :'name',
|
|
61
|
-
:'pulp_last_updated' => :'pulp_last_updated',
|
|
62
64
|
:'content_guard_prn' => :'content_guard_prn',
|
|
65
|
+
:'base_url' => :'base_url',
|
|
66
|
+
:'pulp_labels' => :'pulp_labels',
|
|
63
67
|
:'prn' => :'prn',
|
|
64
|
-
:'base_path' => :'base_path',
|
|
65
68
|
:'content_guard' => :'content_guard',
|
|
66
|
-
:'pulp_href' => :'pulp_href',
|
|
67
|
-
:'base_url' => :'base_url',
|
|
68
69
|
:'repository_version' => :'repository_version',
|
|
69
70
|
:'no_content_change_since' => :'no_content_change_since',
|
|
70
|
-
:'pulp_created' => :'pulp_created'
|
|
71
|
-
:'pulp_labels' => :'pulp_labels'
|
|
71
|
+
:'pulp_created' => :'pulp_created'
|
|
72
72
|
}
|
|
73
73
|
end
|
|
74
74
|
|
|
@@ -80,19 +80,19 @@ module PulpcoreClient
|
|
|
80
80
|
# Attribute type mapping.
|
|
81
81
|
def self.openapi_types
|
|
82
82
|
{
|
|
83
|
+
:'pulp_href' => :'String',
|
|
84
|
+
:'base_path' => :'String',
|
|
85
|
+
:'pulp_last_updated' => :'Time',
|
|
83
86
|
:'hidden' => :'Boolean',
|
|
84
87
|
:'name' => :'String',
|
|
85
|
-
:'pulp_last_updated' => :'Time',
|
|
86
88
|
:'content_guard_prn' => :'String',
|
|
89
|
+
:'base_url' => :'String',
|
|
90
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
87
91
|
:'prn' => :'String',
|
|
88
|
-
:'base_path' => :'String',
|
|
89
92
|
:'content_guard' => :'String',
|
|
90
|
-
:'pulp_href' => :'String',
|
|
91
|
-
:'base_url' => :'String',
|
|
92
93
|
:'repository_version' => :'String',
|
|
93
94
|
:'no_content_change_since' => :'String',
|
|
94
|
-
:'pulp_created' => :'Time'
|
|
95
|
-
:'pulp_labels' => :'Hash<String, String>'
|
|
95
|
+
:'pulp_created' => :'Time'
|
|
96
96
|
}
|
|
97
97
|
end
|
|
98
98
|
|
|
@@ -119,6 +119,20 @@ module PulpcoreClient
|
|
|
119
119
|
h[k.to_sym] = v
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
+
if attributes.key?(:'pulp_href')
|
|
123
|
+
self.pulp_href = attributes[:'pulp_href']
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
if attributes.key?(:'base_path')
|
|
127
|
+
self.base_path = attributes[:'base_path']
|
|
128
|
+
else
|
|
129
|
+
self.base_path = nil
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
if attributes.key?(:'pulp_last_updated')
|
|
133
|
+
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
134
|
+
end
|
|
135
|
+
|
|
122
136
|
if attributes.key?(:'hidden')
|
|
123
137
|
self.hidden = attributes[:'hidden']
|
|
124
138
|
else
|
|
@@ -131,34 +145,26 @@ module PulpcoreClient
|
|
|
131
145
|
self.name = nil
|
|
132
146
|
end
|
|
133
147
|
|
|
134
|
-
if attributes.key?(:'pulp_last_updated')
|
|
135
|
-
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
136
|
-
end
|
|
137
|
-
|
|
138
148
|
if attributes.key?(:'content_guard_prn')
|
|
139
149
|
self.content_guard_prn = attributes[:'content_guard_prn']
|
|
140
150
|
end
|
|
141
151
|
|
|
142
|
-
if attributes.key?(:'
|
|
143
|
-
self.
|
|
144
|
-
end
|
|
145
|
-
|
|
146
|
-
if attributes.key?(:'base_path')
|
|
147
|
-
self.base_path = attributes[:'base_path']
|
|
148
|
-
else
|
|
149
|
-
self.base_path = nil
|
|
152
|
+
if attributes.key?(:'base_url')
|
|
153
|
+
self.base_url = attributes[:'base_url']
|
|
150
154
|
end
|
|
151
155
|
|
|
152
|
-
if attributes.key?(:'
|
|
153
|
-
|
|
156
|
+
if attributes.key?(:'pulp_labels')
|
|
157
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
158
|
+
self.pulp_labels = value
|
|
159
|
+
end
|
|
154
160
|
end
|
|
155
161
|
|
|
156
|
-
if attributes.key?(:'
|
|
157
|
-
self.
|
|
162
|
+
if attributes.key?(:'prn')
|
|
163
|
+
self.prn = attributes[:'prn']
|
|
158
164
|
end
|
|
159
165
|
|
|
160
|
-
if attributes.key?(:'
|
|
161
|
-
self.
|
|
166
|
+
if attributes.key?(:'content_guard')
|
|
167
|
+
self.content_guard = attributes[:'content_guard']
|
|
162
168
|
end
|
|
163
169
|
|
|
164
170
|
if attributes.key?(:'repository_version')
|
|
@@ -172,12 +178,6 @@ module PulpcoreClient
|
|
|
172
178
|
if attributes.key?(:'pulp_created')
|
|
173
179
|
self.pulp_created = attributes[:'pulp_created']
|
|
174
180
|
end
|
|
175
|
-
|
|
176
|
-
if attributes.key?(:'pulp_labels')
|
|
177
|
-
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
178
|
-
self.pulp_labels = value
|
|
179
|
-
end
|
|
180
|
-
end
|
|
181
181
|
end
|
|
182
182
|
|
|
183
183
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -185,14 +185,14 @@ module PulpcoreClient
|
|
|
185
185
|
def list_invalid_properties
|
|
186
186
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
187
187
|
invalid_properties = Array.new
|
|
188
|
-
if @name.nil?
|
|
189
|
-
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
190
|
-
end
|
|
191
|
-
|
|
192
188
|
if @base_path.nil?
|
|
193
189
|
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
|
194
190
|
end
|
|
195
191
|
|
|
192
|
+
if @name.nil?
|
|
193
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
194
|
+
end
|
|
195
|
+
|
|
196
196
|
invalid_properties
|
|
197
197
|
end
|
|
198
198
|
|
|
@@ -200,8 +200,8 @@ module PulpcoreClient
|
|
|
200
200
|
# @return true if the model is valid
|
|
201
201
|
def valid?
|
|
202
202
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
203
|
-
return false if @name.nil?
|
|
204
203
|
return false if @base_path.nil?
|
|
204
|
+
return false if @name.nil?
|
|
205
205
|
true
|
|
206
206
|
end
|
|
207
207
|
|
|
@@ -210,19 +210,19 @@ module PulpcoreClient
|
|
|
210
210
|
def ==(o)
|
|
211
211
|
return true if self.equal?(o)
|
|
212
212
|
self.class == o.class &&
|
|
213
|
+
pulp_href == o.pulp_href &&
|
|
214
|
+
base_path == o.base_path &&
|
|
215
|
+
pulp_last_updated == o.pulp_last_updated &&
|
|
213
216
|
hidden == o.hidden &&
|
|
214
217
|
name == o.name &&
|
|
215
|
-
pulp_last_updated == o.pulp_last_updated &&
|
|
216
218
|
content_guard_prn == o.content_guard_prn &&
|
|
219
|
+
base_url == o.base_url &&
|
|
220
|
+
pulp_labels == o.pulp_labels &&
|
|
217
221
|
prn == o.prn &&
|
|
218
|
-
base_path == o.base_path &&
|
|
219
222
|
content_guard == o.content_guard &&
|
|
220
|
-
pulp_href == o.pulp_href &&
|
|
221
|
-
base_url == o.base_url &&
|
|
222
223
|
repository_version == o.repository_version &&
|
|
223
224
|
no_content_change_since == o.no_content_change_since &&
|
|
224
|
-
pulp_created == o.pulp_created
|
|
225
|
-
pulp_labels == o.pulp_labels
|
|
225
|
+
pulp_created == o.pulp_created
|
|
226
226
|
end
|
|
227
227
|
|
|
228
228
|
# @see the `==` method
|
|
@@ -234,7 +234,7 @@ module PulpcoreClient
|
|
|
234
234
|
# Calculates hash code according to all attributes.
|
|
235
235
|
# @return [Integer] Hash code
|
|
236
236
|
def hash
|
|
237
|
-
[
|
|
237
|
+
[pulp_href, base_path, pulp_last_updated, hidden, name, content_guard_prn, base_url, pulp_labels, prn, content_guard, repository_version, no_content_change_since, pulp_created].hash
|
|
238
238
|
end
|
|
239
239
|
|
|
240
240
|
# Builds the object from hash
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module PulpcoreClient
|
|
17
|
-
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the `ref_name` attribute in the ModelSerializers's `Meta` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
18
18
|
class ArtifactResponse
|
|
19
19
|
attr_accessor :pulp_href
|
|
20
20
|
|
|
@@ -36,6 +36,9 @@ module PulpcoreClient
|
|
|
36
36
|
# Boolean to hide distributions with a content guard in the content app.
|
|
37
37
|
attr_accessor :hide_guarded_distributions
|
|
38
38
|
|
|
39
|
+
# An optional content-guard that is automatically assigned to new distributions created within this domain when they do not specify their own content-guard. To apply multiple guards by default, use a composite content-guard.
|
|
40
|
+
attr_accessor :default_content_guard
|
|
41
|
+
|
|
39
42
|
class EnumAttributeValidator
|
|
40
43
|
attr_reader :datatype
|
|
41
44
|
attr_reader :allowable_values
|
|
@@ -67,7 +70,8 @@ module PulpcoreClient
|
|
|
67
70
|
:'storage_class' => :'storage_class',
|
|
68
71
|
:'storage_settings' => :'storage_settings',
|
|
69
72
|
:'redirect_to_object_storage' => :'redirect_to_object_storage',
|
|
70
|
-
:'hide_guarded_distributions' => :'hide_guarded_distributions'
|
|
73
|
+
:'hide_guarded_distributions' => :'hide_guarded_distributions',
|
|
74
|
+
:'default_content_guard' => :'default_content_guard'
|
|
71
75
|
}
|
|
72
76
|
end
|
|
73
77
|
|
|
@@ -85,7 +89,8 @@ module PulpcoreClient
|
|
|
85
89
|
:'storage_class' => :'StorageClassEnum',
|
|
86
90
|
:'storage_settings' => :'Object',
|
|
87
91
|
:'redirect_to_object_storage' => :'Boolean',
|
|
88
|
-
:'hide_guarded_distributions' => :'Boolean'
|
|
92
|
+
:'hide_guarded_distributions' => :'Boolean',
|
|
93
|
+
:'default_content_guard' => :'String'
|
|
89
94
|
}
|
|
90
95
|
end
|
|
91
96
|
|
|
@@ -93,6 +98,7 @@ module PulpcoreClient
|
|
|
93
98
|
def self.openapi_nullable
|
|
94
99
|
Set.new([
|
|
95
100
|
:'description',
|
|
101
|
+
:'default_content_guard'
|
|
96
102
|
])
|
|
97
103
|
end
|
|
98
104
|
|
|
@@ -150,6 +156,10 @@ module PulpcoreClient
|
|
|
150
156
|
else
|
|
151
157
|
self.hide_guarded_distributions = false
|
|
152
158
|
end
|
|
159
|
+
|
|
160
|
+
if attributes.key?(:'default_content_guard')
|
|
161
|
+
self.default_content_guard = attributes[:'default_content_guard']
|
|
162
|
+
end
|
|
153
163
|
end
|
|
154
164
|
|
|
155
165
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -247,7 +257,8 @@ module PulpcoreClient
|
|
|
247
257
|
storage_class == o.storage_class &&
|
|
248
258
|
storage_settings == o.storage_settings &&
|
|
249
259
|
redirect_to_object_storage == o.redirect_to_object_storage &&
|
|
250
|
-
hide_guarded_distributions == o.hide_guarded_distributions
|
|
260
|
+
hide_guarded_distributions == o.hide_guarded_distributions &&
|
|
261
|
+
default_content_guard == o.default_content_guard
|
|
251
262
|
end
|
|
252
263
|
|
|
253
264
|
# @see the `==` method
|
|
@@ -259,7 +270,7 @@ module PulpcoreClient
|
|
|
259
270
|
# Calculates hash code according to all attributes.
|
|
260
271
|
# @return [Integer] Hash code
|
|
261
272
|
def hash
|
|
262
|
-
[name, description, pulp_labels, storage_class, storage_settings, redirect_to_object_storage, hide_guarded_distributions].hash
|
|
273
|
+
[name, description, pulp_labels, storage_class, storage_settings, redirect_to_object_storage, hide_guarded_distributions, default_content_guard].hash
|
|
263
274
|
end
|
|
264
275
|
|
|
265
276
|
# Builds the object from hash
|
|
@@ -47,6 +47,12 @@ module PulpcoreClient
|
|
|
47
47
|
# Boolean to hide distributions with a content guard in the content app.
|
|
48
48
|
attr_accessor :hide_guarded_distributions
|
|
49
49
|
|
|
50
|
+
# An optional content-guard that is automatically assigned to new distributions created within this domain when they do not specify their own content-guard. To apply multiple guards by default, use a composite content-guard.
|
|
51
|
+
attr_accessor :default_content_guard
|
|
52
|
+
|
|
53
|
+
# The Pulp Resource Name (PRN) of the domain's default content-guard.
|
|
54
|
+
attr_accessor :default_content_guard_prn
|
|
55
|
+
|
|
50
56
|
class EnumAttributeValidator
|
|
51
57
|
attr_reader :datatype
|
|
52
58
|
attr_reader :allowable_values
|
|
@@ -82,7 +88,9 @@ module PulpcoreClient
|
|
|
82
88
|
:'storage_class' => :'storage_class',
|
|
83
89
|
:'storage_settings' => :'storage_settings',
|
|
84
90
|
:'redirect_to_object_storage' => :'redirect_to_object_storage',
|
|
85
|
-
:'hide_guarded_distributions' => :'hide_guarded_distributions'
|
|
91
|
+
:'hide_guarded_distributions' => :'hide_guarded_distributions',
|
|
92
|
+
:'default_content_guard' => :'default_content_guard',
|
|
93
|
+
:'default_content_guard_prn' => :'default_content_guard_prn'
|
|
86
94
|
}
|
|
87
95
|
end
|
|
88
96
|
|
|
@@ -104,7 +112,9 @@ module PulpcoreClient
|
|
|
104
112
|
:'storage_class' => :'StorageClassEnum',
|
|
105
113
|
:'storage_settings' => :'Object',
|
|
106
114
|
:'redirect_to_object_storage' => :'Boolean',
|
|
107
|
-
:'hide_guarded_distributions' => :'Boolean'
|
|
115
|
+
:'hide_guarded_distributions' => :'Boolean',
|
|
116
|
+
:'default_content_guard' => :'String',
|
|
117
|
+
:'default_content_guard_prn' => :'String'
|
|
108
118
|
}
|
|
109
119
|
end
|
|
110
120
|
|
|
@@ -112,6 +122,7 @@ module PulpcoreClient
|
|
|
112
122
|
def self.openapi_nullable
|
|
113
123
|
Set.new([
|
|
114
124
|
:'description',
|
|
125
|
+
:'default_content_guard',
|
|
115
126
|
])
|
|
116
127
|
end
|
|
117
128
|
|
|
@@ -185,6 +196,14 @@ module PulpcoreClient
|
|
|
185
196
|
else
|
|
186
197
|
self.hide_guarded_distributions = false
|
|
187
198
|
end
|
|
199
|
+
|
|
200
|
+
if attributes.key?(:'default_content_guard')
|
|
201
|
+
self.default_content_guard = attributes[:'default_content_guard']
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
if attributes.key?(:'default_content_guard_prn')
|
|
205
|
+
self.default_content_guard_prn = attributes[:'default_content_guard_prn']
|
|
206
|
+
end
|
|
188
207
|
end
|
|
189
208
|
|
|
190
209
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -262,7 +281,9 @@ module PulpcoreClient
|
|
|
262
281
|
storage_class == o.storage_class &&
|
|
263
282
|
storage_settings == o.storage_settings &&
|
|
264
283
|
redirect_to_object_storage == o.redirect_to_object_storage &&
|
|
265
|
-
hide_guarded_distributions == o.hide_guarded_distributions
|
|
284
|
+
hide_guarded_distributions == o.hide_guarded_distributions &&
|
|
285
|
+
default_content_guard == o.default_content_guard &&
|
|
286
|
+
default_content_guard_prn == o.default_content_guard_prn
|
|
266
287
|
end
|
|
267
288
|
|
|
268
289
|
# @see the `==` method
|
|
@@ -274,7 +295,7 @@ module PulpcoreClient
|
|
|
274
295
|
# Calculates hash code according to all attributes.
|
|
275
296
|
# @return [Integer] Hash code
|
|
276
297
|
def hash
|
|
277
|
-
[pulp_href, prn, pulp_created, pulp_last_updated, name, description, pulp_labels, storage_class, storage_settings, redirect_to_object_storage, hide_guarded_distributions].hash
|
|
298
|
+
[pulp_href, prn, pulp_created, pulp_last_updated, name, description, pulp_labels, storage_class, storage_settings, redirect_to_object_storage, hide_guarded_distributions, default_content_guard, default_content_guard_prn].hash
|
|
278
299
|
end
|
|
279
300
|
|
|
280
301
|
# Builds the object from hash
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module PulpcoreClient
|
|
17
|
-
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the `ref_name` attribute in the ModelSerializers's `Meta` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
18
18
|
class GroupProgressReportResponse
|
|
19
19
|
# The message shown to the user for the group progress report.
|
|
20
20
|
attr_accessor :message
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module PulpcoreClient
|
|
17
|
-
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the `ref_name` attribute in the ModelSerializers's `Meta` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
18
18
|
class MinimalTaskResponse
|
|
19
19
|
attr_accessor :pulp_href
|
|
20
20
|
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module PulpcoreClient
|
|
17
|
-
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the `ref_name` attribute in the ModelSerializers's `Meta` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
18
18
|
class MultipleArtifactContentResponse
|
|
19
19
|
attr_accessor :pulp_href
|
|
20
20
|
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module PulpcoreClient
|
|
17
|
-
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the `ref_name` attribute in the ModelSerializers's `Meta` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
18
18
|
class NestedOpenPGPPublicSubkey
|
|
19
19
|
attr_accessor :fingerprint
|
|
20
20
|
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module PulpcoreClient
|
|
17
|
-
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the `ref_name` attribute in the ModelSerializers's `Meta` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
18
18
|
class NestedOpenPGPPublicSubkeyResponse
|
|
19
19
|
attr_accessor :fingerprint
|
|
20
20
|
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module PulpcoreClient
|
|
17
|
-
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the `ref_name` attribute in the ModelSerializers's `Meta` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
18
18
|
class NestedOpenPGPSignature
|
|
19
19
|
attr_accessor :issuer
|
|
20
20
|
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module PulpcoreClient
|
|
17
|
-
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the `ref_name` attribute in the ModelSerializers's `Meta` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
18
18
|
class NestedOpenPGPSignatureResponse
|
|
19
19
|
attr_accessor :issuer
|
|
20
20
|
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module PulpcoreClient
|
|
17
|
-
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the `ref_name` attribute in the ModelSerializers's `Meta` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
18
18
|
class NestedOpenPGPUserAttribute
|
|
19
19
|
attr_accessor :sha256
|
|
20
20
|
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module PulpcoreClient
|
|
17
|
-
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the `ref_name` attribute in the ModelSerializers's `Meta` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
18
18
|
class NestedOpenPGPUserAttributeResponse
|
|
19
19
|
attr_accessor :sha256
|
|
20
20
|
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module PulpcoreClient
|
|
17
|
-
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the `ref_name` attribute in the ModelSerializers's `Meta` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
18
18
|
class NestedOpenPGPUserID
|
|
19
19
|
attr_accessor :user_id
|
|
20
20
|
|