pulp_container_client 2.24.1 → 2.24.2

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.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -4
  3. data/docs/ContainerContainerDistribution.md +4 -4
  4. data/docs/ContainerContainerDistributionResponse.md +12 -12
  5. data/docs/ContainerContainerPullThroughDistribution.md +4 -4
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +12 -12
  7. data/docs/ContainerContainerPushRepository.md +6 -6
  8. data/docs/ContainerContainerPushRepositoryResponse.md +15 -15
  9. data/docs/ContentBlobsApi.md +146 -0
  10. data/docs/ContentManifestsApi.md +146 -0
  11. data/docs/ContentSignaturesApi.md +146 -0
  12. data/docs/ContentTagsApi.md +146 -0
  13. data/docs/DistributionsContainerApi.md +4 -2
  14. data/docs/DistributionsPullThroughApi.md +4 -2
  15. data/docs/PatchedcontainerContainerDistribution.md +4 -4
  16. data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
  17. data/docs/PatchedcontainerContainerPushRepository.md +6 -6
  18. data/lib/pulp_container_client/api/content_blobs_api.rb +148 -0
  19. data/lib/pulp_container_client/api/content_manifests_api.rb +148 -0
  20. data/lib/pulp_container_client/api/content_signatures_api.rb +148 -0
  21. data/lib/pulp_container_client/api/content_tags_api.rb +148 -0
  22. data/lib/pulp_container_client/api/distributions_container_api.rb +6 -3
  23. data/lib/pulp_container_client/api/distributions_pull_through_api.rb +6 -3
  24. data/lib/pulp_container_client/models/container_container_distribution.rb +25 -25
  25. data/lib/pulp_container_client/models/container_container_distribution_response.rb +61 -61
  26. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +25 -25
  27. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +61 -61
  28. data/lib/pulp_container_client/models/container_container_push_repository.rb +47 -47
  29. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +70 -70
  30. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +21 -21
  31. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +21 -21
  32. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +47 -47
  33. data/lib/pulp_container_client/models/unset_label.rb +1 -1
  34. data/lib/pulp_container_client/models/unset_label_response.rb +1 -1
  35. data/lib/pulp_container_client/version.rb +1 -1
  36. data/pulp_container_client.gemspec +0 -1
  37. data/spec/api/content_blobs_api_spec.rb +26 -0
  38. data/spec/api/content_manifests_api_spec.rb +26 -0
  39. data/spec/api/content_signatures_api_spec.rb +26 -0
  40. data/spec/api/content_tags_api_spec.rb +26 -0
  41. data/spec/api/distributions_container_api_spec.rb +2 -1
  42. data/spec/api/distributions_pull_through_api_spec.rb +2 -1
  43. data/spec/models/container_container_distribution_response_spec.rb +11 -11
  44. data/spec/models/container_container_distribution_spec.rb +5 -5
  45. data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
  46. data/spec/models/container_container_pull_through_distribution_spec.rb +5 -5
  47. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  48. data/spec/models/container_container_push_repository_spec.rb +5 -5
  49. data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
  50. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +5 -5
  51. data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
  52. metadata +2 -22
@@ -16,28 +16,28 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class PatchedcontainerContainerPushRepository
19
+ attr_accessor :pulp_labels
20
+
21
+ # An optional description.
22
+ attr_accessor :description
23
+
19
24
  # A reference to an associated signing service.
20
25
  attr_accessor :manifest_signing_service
21
26
 
22
- # Retain X versions of the repository. Default is null which retains all versions.
23
- attr_accessor :retain_repo_versions
24
-
25
27
  # A unique name for this repository.
26
28
  attr_accessor :name
27
29
 
28
- # An optional description.
29
- attr_accessor :description
30
-
31
- attr_accessor :pulp_labels
30
+ # Retain X versions of the repository. Default is null which retains all versions.
31
+ attr_accessor :retain_repo_versions
32
32
 
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
+ :'pulp_labels' => :'pulp_labels',
37
+ :'description' => :'description',
36
38
  :'manifest_signing_service' => :'manifest_signing_service',
37
- :'retain_repo_versions' => :'retain_repo_versions',
38
39
  :'name' => :'name',
39
- :'description' => :'description',
40
- :'pulp_labels' => :'pulp_labels'
40
+ :'retain_repo_versions' => :'retain_repo_versions'
41
41
  }
42
42
  end
43
43
 
@@ -49,20 +49,20 @@ module PulpContainerClient
49
49
  # Attribute type mapping.
50
50
  def self.openapi_types
51
51
  {
52
+ :'pulp_labels' => :'Hash<String, String>',
53
+ :'description' => :'String',
52
54
  :'manifest_signing_service' => :'String',
53
- :'retain_repo_versions' => :'Integer',
54
55
  :'name' => :'String',
55
- :'description' => :'String',
56
- :'pulp_labels' => :'Hash<String, String>'
56
+ :'retain_repo_versions' => :'Integer'
57
57
  }
58
58
  end
59
59
 
60
60
  # List of attributes with nullable: true
61
61
  def self.openapi_nullable
62
62
  Set.new([
63
- :'manifest_signing_service',
64
- :'retain_repo_versions',
65
63
  :'description',
64
+ :'manifest_signing_service',
65
+ :'retain_repo_versions'
66
66
  ])
67
67
  end
68
68
 
@@ -81,26 +81,26 @@ module PulpContainerClient
81
81
  h[k.to_sym] = v
82
82
  }
83
83
 
84
- if attributes.key?(:'manifest_signing_service')
85
- self.manifest_signing_service = attributes[:'manifest_signing_service']
84
+ if attributes.key?(:'pulp_labels')
85
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
86
+ self.pulp_labels = value
87
+ end
86
88
  end
87
89
 
88
- if attributes.key?(:'retain_repo_versions')
89
- self.retain_repo_versions = attributes[:'retain_repo_versions']
90
+ if attributes.key?(:'description')
91
+ self.description = attributes[:'description']
90
92
  end
91
93
 
92
- if attributes.key?(:'name')
93
- self.name = attributes[:'name']
94
+ if attributes.key?(:'manifest_signing_service')
95
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
94
96
  end
95
97
 
96
- if attributes.key?(:'description')
97
- self.description = attributes[:'description']
98
+ if attributes.key?(:'name')
99
+ self.name = attributes[:'name']
98
100
  end
99
101
 
100
- if attributes.key?(:'pulp_labels')
101
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
102
- self.pulp_labels = value
103
- end
102
+ if attributes.key?(:'retain_repo_versions')
103
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
104
104
  end
105
105
  end
106
106
 
@@ -109,16 +109,16 @@ module PulpContainerClient
109
109
  def list_invalid_properties
110
110
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
111
111
  invalid_properties = Array.new
112
- if !@retain_repo_versions.nil? && @retain_repo_versions < 1
113
- invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
112
+ if !@description.nil? && @description.to_s.length < 1
113
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
114
114
  end
115
115
 
116
116
  if !@name.nil? && @name.to_s.length < 1
117
117
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
118
118
  end
119
119
 
120
- if !@description.nil? && @description.to_s.length < 1
121
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
120
+ if !@retain_repo_versions.nil? && @retain_repo_versions < 1
121
+ invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
122
122
  end
123
123
 
124
124
  invalid_properties
@@ -128,20 +128,20 @@ module PulpContainerClient
128
128
  # @return true if the model is valid
129
129
  def valid?
130
130
  warn '[DEPRECATED] the `valid?` method is obsolete'
131
- return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
132
- return false if !@name.nil? && @name.to_s.length < 1
133
131
  return false if !@description.nil? && @description.to_s.length < 1
132
+ return false if !@name.nil? && @name.to_s.length < 1
133
+ return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
134
134
  true
135
135
  end
136
136
 
137
137
  # Custom attribute writer method with validation
138
- # @param [Object] retain_repo_versions Value to be assigned
139
- def retain_repo_versions=(retain_repo_versions)
140
- if !retain_repo_versions.nil? && retain_repo_versions < 1
141
- fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
138
+ # @param [Object] description Value to be assigned
139
+ def description=(description)
140
+ if !description.nil? && description.to_s.length < 1
141
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
142
142
  end
143
143
 
144
- @retain_repo_versions = retain_repo_versions
144
+ @description = description
145
145
  end
146
146
 
147
147
  # Custom attribute writer method with validation
@@ -159,13 +159,13 @@ module PulpContainerClient
159
159
  end
160
160
 
161
161
  # Custom attribute writer method with validation
162
- # @param [Object] description Value to be assigned
163
- def description=(description)
164
- if !description.nil? && description.to_s.length < 1
165
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
162
+ # @param [Object] retain_repo_versions Value to be assigned
163
+ def retain_repo_versions=(retain_repo_versions)
164
+ if !retain_repo_versions.nil? && retain_repo_versions < 1
165
+ fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
166
166
  end
167
167
 
168
- @description = description
168
+ @retain_repo_versions = retain_repo_versions
169
169
  end
170
170
 
171
171
  # Checks equality by comparing each attribute.
@@ -173,11 +173,11 @@ module PulpContainerClient
173
173
  def ==(o)
174
174
  return true if self.equal?(o)
175
175
  self.class == o.class &&
176
+ pulp_labels == o.pulp_labels &&
177
+ description == o.description &&
176
178
  manifest_signing_service == o.manifest_signing_service &&
177
- retain_repo_versions == o.retain_repo_versions &&
178
179
  name == o.name &&
179
- description == o.description &&
180
- pulp_labels == o.pulp_labels
180
+ retain_repo_versions == o.retain_repo_versions
181
181
  end
182
182
 
183
183
  # @see the `==` method
@@ -189,7 +189,7 @@ module PulpContainerClient
189
189
  # Calculates hash code according to all attributes.
190
190
  # @return [Integer] Hash code
191
191
  def hash
192
- [manifest_signing_service, retain_repo_versions, name, description, pulp_labels].hash
192
+ [pulp_labels, description, manifest_signing_service, name, retain_repo_versions].hash
193
193
  end
194
194
 
195
195
  # Builds the object from hash
@@ -14,7 +14,7 @@ require 'date'
14
14
  require 'time'
15
15
 
16
16
  module PulpContainerClient
17
- # Serializer for synchronously setting a label.
17
+ # Serializer for synchronously UNsetting a label.
18
18
  class UnsetLabel
19
19
  attr_accessor :key
20
20
 
@@ -14,7 +14,7 @@ require 'date'
14
14
  require 'time'
15
15
 
16
16
  module PulpContainerClient
17
- # Serializer for synchronously setting a label.
17
+ # Serializer for synchronously UNsetting a label.
18
18
  class UnsetLabelResponse
19
19
  attr_accessor :key
20
20
 
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.24.1'
14
+ VERSION = '2.24.2'
15
15
  end
@@ -28,7 +28,6 @@ Gem::Specification.new do |s|
28
28
  s.required_ruby_version = ">= 2.7"
29
29
  s.metadata = {}
30
30
 
31
- s.add_runtime_dependency 'faraday-net_http', '>= 2.0', '< 3.1'
32
31
  s.add_runtime_dependency 'faraday', '>= 1.0.1', '< 2.9'
33
32
  s.add_runtime_dependency 'faraday-multipart'
34
33
  s.add_runtime_dependency 'marcel'
@@ -73,4 +73,30 @@ describe 'ContentBlobsApi' do
73
73
  end
74
74
  end
75
75
 
76
+ # unit tests for set_label
77
+ # Set a label
78
+ # Set a single pulp_label on the object to a specific value or null.
79
+ # @param container_blob_href
80
+ # @param set_label
81
+ # @param [Hash] opts the optional parameters
82
+ # @return [SetLabelResponse]
83
+ describe 'set_label test' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
86
+ end
87
+ end
88
+
89
+ # unit tests for unset_label
90
+ # Unset a label
91
+ # Unset a single pulp_label on the object.
92
+ # @param container_blob_href
93
+ # @param unset_label
94
+ # @param [Hash] opts the optional parameters
95
+ # @return [UnsetLabelResponse]
96
+ describe 'unset_label test' do
97
+ it 'should work' do
98
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
+ end
100
+ end
101
+
76
102
  end
@@ -76,4 +76,30 @@ describe 'ContentManifestsApi' do
76
76
  end
77
77
  end
78
78
 
79
+ # unit tests for set_label
80
+ # Set a label
81
+ # Set a single pulp_label on the object to a specific value or null.
82
+ # @param container_manifest_href
83
+ # @param set_label
84
+ # @param [Hash] opts the optional parameters
85
+ # @return [SetLabelResponse]
86
+ describe 'set_label test' do
87
+ it 'should work' do
88
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
89
+ end
90
+ end
91
+
92
+ # unit tests for unset_label
93
+ # Unset a label
94
+ # Unset a single pulp_label on the object.
95
+ # @param container_manifest_href
96
+ # @param unset_label
97
+ # @param [Hash] opts the optional parameters
98
+ # @return [UnsetLabelResponse]
99
+ describe 'unset_label test' do
100
+ it 'should work' do
101
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
102
+ end
103
+ end
104
+
79
105
  end
@@ -85,4 +85,30 @@ describe 'ContentSignaturesApi' do
85
85
  end
86
86
  end
87
87
 
88
+ # unit tests for set_label
89
+ # Set a label
90
+ # Set a single pulp_label on the object to a specific value or null.
91
+ # @param container_manifest_signature_href
92
+ # @param set_label
93
+ # @param [Hash] opts the optional parameters
94
+ # @return [SetLabelResponse]
95
+ describe 'set_label test' do
96
+ it 'should work' do
97
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
98
+ end
99
+ end
100
+
101
+ # unit tests for unset_label
102
+ # Unset a label
103
+ # Unset a single pulp_label on the object.
104
+ # @param container_manifest_signature_href
105
+ # @param unset_label
106
+ # @param [Hash] opts the optional parameters
107
+ # @return [UnsetLabelResponse]
108
+ describe 'unset_label test' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
88
114
  end
@@ -75,4 +75,30 @@ describe 'ContentTagsApi' do
75
75
  end
76
76
  end
77
77
 
78
+ # unit tests for set_label
79
+ # Set a label
80
+ # Set a single pulp_label on the object to a specific value or null.
81
+ # @param container_tag_href
82
+ # @param set_label
83
+ # @param [Hash] opts the optional parameters
84
+ # @return [SetLabelResponse]
85
+ describe 'set_label test' do
86
+ it 'should work' do
87
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
88
+ end
89
+ end
90
+
91
+ # unit tests for unset_label
92
+ # Unset a label
93
+ # Unset a single pulp_label on the object.
94
+ # @param container_tag_href
95
+ # @param unset_label
96
+ # @param [Hash] opts the optional parameters
97
+ # @return [UnsetLabelResponse]
98
+ describe 'unset_label test' do
99
+ it 'should work' do
100
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
101
+ end
102
+ end
103
+
78
104
  end
@@ -77,6 +77,7 @@ describe 'DistributionsContainerApi' do
77
77
  # @option opts [String] :base_path__contains Filter results where base_path contains value
78
78
  # @option opts [String] :base_path__icontains Filter results where base_path contains value
79
79
  # @option opts [Array<String>] :base_path__in Filter results where base_path is in a comma-separated list of values
80
+ # @option opts [Boolean] :checkpoint Filter results where checkpoint matches value
80
81
  # @option opts [Integer] :limit Number of results to return per page.
81
82
  # @option opts [String] :name Filter results where name matches value
82
83
  # @option opts [String] :name__contains Filter results where name contains value
@@ -89,7 +90,7 @@ describe 'DistributionsContainerApi' do
89
90
  # @option opts [String] :name__startswith Filter results where name starts with value
90
91
  # @option opts [String] :namespace__name
91
92
  # @option opts [Integer] :offset The initial index from which to return the results.
92
- # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;private&#x60; - Private * &#x60;-private&#x60; - Private (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
93
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;checkpoint&#x60; - Checkpoint * &#x60;-checkpoint&#x60; - Checkpoint (descending) * &#x60;private&#x60; - Private * &#x60;-private&#x60; - Private (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
93
94
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
94
95
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
95
96
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
@@ -77,6 +77,7 @@ describe 'DistributionsPullThroughApi' do
77
77
  # @option opts [String] :base_path__contains Filter results where base_path contains value
78
78
  # @option opts [String] :base_path__icontains Filter results where base_path contains value
79
79
  # @option opts [Array<String>] :base_path__in Filter results where base_path is in a comma-separated list of values
80
+ # @option opts [Boolean] :checkpoint Filter results where checkpoint matches value
80
81
  # @option opts [Integer] :limit Number of results to return per page.
81
82
  # @option opts [String] :name Filter results where name matches value
82
83
  # @option opts [String] :name__contains Filter results where name contains value
@@ -88,7 +89,7 @@ describe 'DistributionsPullThroughApi' do
88
89
  # @option opts [String] :name__regex Filter results where name matches regex value
89
90
  # @option opts [String] :name__startswith Filter results where name starts with value
90
91
  # @option opts [Integer] :offset The initial index from which to return the results.
91
- # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
92
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;checkpoint&#x60; - Checkpoint * &#x60;-checkpoint&#x60; - Checkpoint (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
92
93
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
93
94
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
94
95
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
@@ -27,67 +27,67 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "prn"' do
30
+ describe 'test attribute "hidden"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "pulp_href"' do
36
+ describe 'test attribute "content_guard"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "pulp_last_updated"' do
42
+ describe 'test attribute "prn"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "hidden"' do
48
+ describe 'test attribute "pulp_labels"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "base_path"' do
54
+ describe 'test attribute "pulp_href"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "name"' do
60
+ describe 'test attribute "no_content_change_since"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "content_guard"' do
66
+ describe 'test attribute "repository"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "pulp_labels"' do
72
+ describe 'test attribute "pulp_created"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "no_content_change_since"' do
78
+ describe 'test attribute "base_path"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "pulp_created"' do
84
+ describe 'test attribute "name"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "repository"' do
90
+ describe 'test attribute "pulp_last_updated"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
@@ -33,31 +33,31 @@ describe PulpContainerClient::ContainerContainerDistribution do
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "base_path"' do
36
+ describe 'test attribute "content_guard"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "name"' do
42
+ describe 'test attribute "pulp_labels"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "content_guard"' do
48
+ describe 'test attribute "repository"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "pulp_labels"' do
54
+ describe 'test attribute "base_path"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "repository"' do
60
+ describe 'test attribute "name"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
@@ -27,67 +27,67 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "prn"' do
30
+ describe 'test attribute "hidden"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "pulp_href"' do
36
+ describe 'test attribute "content_guard"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "pulp_last_updated"' do
42
+ describe 'test attribute "prn"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "hidden"' do
48
+ describe 'test attribute "pulp_labels"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "base_path"' do
54
+ describe 'test attribute "pulp_href"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "name"' do
60
+ describe 'test attribute "no_content_change_since"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "content_guard"' do
66
+ describe 'test attribute "repository"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "pulp_labels"' do
72
+ describe 'test attribute "pulp_created"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "no_content_change_since"' do
78
+ describe 'test attribute "base_path"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "pulp_created"' do
84
+ describe 'test attribute "name"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "repository"' do
90
+ describe 'test attribute "pulp_last_updated"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
@@ -33,31 +33,31 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "base_path"' do
36
+ describe 'test attribute "content_guard"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "name"' do
42
+ describe 'test attribute "pulp_labels"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "content_guard"' do
48
+ describe 'test attribute "repository"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "pulp_labels"' do
54
+ describe 'test attribute "base_path"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "repository"' do
60
+ describe 'test attribute "name"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end