pulp_container_client 2.24.2 → 2.25.1

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 (31) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +4 -4
  4. data/docs/ContainerContainerDistributionResponse.md +10 -10
  5. data/docs/ContainerContainerPullThroughDistribution.md +4 -4
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +10 -10
  7. data/docs/ContainerContainerPushRepository.md +5 -5
  8. data/docs/ContainerContainerPushRepositoryResponse.md +14 -14
  9. data/docs/PatchedcontainerContainerDistribution.md +4 -4
  10. data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
  11. data/docs/PatchedcontainerContainerPushRepository.md +5 -5
  12. data/lib/pulp_container_client/models/container_container_distribution.rb +23 -23
  13. data/lib/pulp_container_client/models/container_container_distribution_response.rb +46 -46
  14. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +23 -23
  15. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +46 -46
  16. data/lib/pulp_container_client/models/container_container_push_repository.rb +38 -38
  17. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +62 -62
  18. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +23 -23
  19. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +23 -23
  20. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +38 -38
  21. data/lib/pulp_container_client/version.rb +1 -1
  22. data/spec/models/container_container_distribution_response_spec.rb +10 -10
  23. data/spec/models/container_container_distribution_spec.rb +5 -5
  24. data/spec/models/container_container_pull_through_distribution_response_spec.rb +10 -10
  25. data/spec/models/container_container_pull_through_distribution_spec.rb +5 -5
  26. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  27. data/spec/models/container_container_push_repository_spec.rb +3 -3
  28. data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
  29. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +5 -5
  30. data/spec/models/patchedcontainer_container_push_repository_spec.rb +3 -3
  31. metadata +60 -60
@@ -18,26 +18,26 @@ module PulpContainerClient
18
18
  class PatchedcontainerContainerPushRepository
19
19
  attr_accessor :pulp_labels
20
20
 
21
- # An optional description.
22
- attr_accessor :description
21
+ # Retain X versions of the repository. Default is null which retains all versions.
22
+ attr_accessor :retain_repo_versions
23
23
 
24
24
  # A reference to an associated signing service.
25
25
  attr_accessor :manifest_signing_service
26
26
 
27
+ # An optional description.
28
+ attr_accessor :description
29
+
27
30
  # A unique name for this repository.
28
31
  attr_accessor :name
29
32
 
30
- # Retain X versions of the repository. Default is null which retains all versions.
31
- attr_accessor :retain_repo_versions
32
-
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
36
  :'pulp_labels' => :'pulp_labels',
37
- :'description' => :'description',
37
+ :'retain_repo_versions' => :'retain_repo_versions',
38
38
  :'manifest_signing_service' => :'manifest_signing_service',
39
- :'name' => :'name',
40
- :'retain_repo_versions' => :'retain_repo_versions'
39
+ :'description' => :'description',
40
+ :'name' => :'name'
41
41
  }
42
42
  end
43
43
 
@@ -50,19 +50,19 @@ module PulpContainerClient
50
50
  def self.openapi_types
51
51
  {
52
52
  :'pulp_labels' => :'Hash<String, String>',
53
- :'description' => :'String',
53
+ :'retain_repo_versions' => :'Integer',
54
54
  :'manifest_signing_service' => :'String',
55
- :'name' => :'String',
56
- :'retain_repo_versions' => :'Integer'
55
+ :'description' => :'String',
56
+ :'name' => :'String'
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
- :'description',
63
+ :'retain_repo_versions',
64
64
  :'manifest_signing_service',
65
- :'retain_repo_versions'
65
+ :'description',
66
66
  ])
67
67
  end
68
68
 
@@ -87,20 +87,20 @@ module PulpContainerClient
87
87
  end
88
88
  end
89
89
 
90
- if attributes.key?(:'description')
91
- self.description = attributes[:'description']
90
+ if attributes.key?(:'retain_repo_versions')
91
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
92
92
  end
93
93
 
94
94
  if attributes.key?(:'manifest_signing_service')
95
95
  self.manifest_signing_service = attributes[:'manifest_signing_service']
96
96
  end
97
97
 
98
- if attributes.key?(:'name')
99
- self.name = attributes[:'name']
98
+ if attributes.key?(:'description')
99
+ self.description = attributes[:'description']
100
100
  end
101
101
 
102
- if attributes.key?(:'retain_repo_versions')
103
- self.retain_repo_versions = attributes[:'retain_repo_versions']
102
+ if attributes.key?(:'name')
103
+ self.name = attributes[:'name']
104
104
  end
105
105
  end
106
106
 
@@ -109,6 +109,10 @@ 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.')
114
+ end
115
+
112
116
  if !@description.nil? && @description.to_s.length < 1
113
117
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
114
118
  end
@@ -117,10 +121,6 @@ module PulpContainerClient
117
121
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
118
122
  end
119
123
 
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
- end
123
-
124
124
  invalid_properties
125
125
  end
126
126
 
@@ -128,12 +128,22 @@ 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
131
132
  return false if !@description.nil? && @description.to_s.length < 1
132
133
  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
+ # 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.'
142
+ end
143
+
144
+ @retain_repo_versions = retain_repo_versions
145
+ end
146
+
137
147
  # Custom attribute writer method with validation
138
148
  # @param [Object] description Value to be assigned
139
149
  def description=(description)
@@ -158,26 +168,16 @@ module PulpContainerClient
158
168
  @name = name
159
169
  end
160
170
 
161
- # Custom attribute writer method with validation
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
- end
167
-
168
- @retain_repo_versions = retain_repo_versions
169
- end
170
-
171
171
  # Checks equality by comparing each attribute.
172
172
  # @param [Object] Object to be compared
173
173
  def ==(o)
174
174
  return true if self.equal?(o)
175
175
  self.class == o.class &&
176
176
  pulp_labels == o.pulp_labels &&
177
- description == o.description &&
177
+ retain_repo_versions == o.retain_repo_versions &&
178
178
  manifest_signing_service == o.manifest_signing_service &&
179
- name == o.name &&
180
- retain_repo_versions == o.retain_repo_versions
179
+ description == o.description &&
180
+ name == o.name
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
- [pulp_labels, description, manifest_signing_service, name, retain_repo_versions].hash
192
+ [pulp_labels, retain_repo_versions, manifest_signing_service, description, name].hash
193
193
  end
194
194
 
195
195
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.24.2'
14
+ VERSION = '2.25.1'
15
15
  end
@@ -27,55 +27,55 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "hidden"' do
30
+ describe 'test attribute "content_guard"' 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 "content_guard"' do
36
+ describe 'test attribute "pulp_href"' 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 "prn"' do
42
+ describe 'test attribute "pulp_last_updated"' 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 "pulp_labels"' do
48
+ describe 'test attribute "prn"' 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_href"' do
54
+ describe 'test attribute "pulp_labels"' 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 "no_content_change_since"' do
60
+ describe 'test attribute "pulp_created"' 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 "repository"' do
66
+ describe 'test attribute "no_content_change_since"' 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_created"' do
72
+ describe 'test attribute "base_path"' 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 "base_path"' do
78
+ describe 'test attribute "repository"' 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
@@ -87,7 +87,7 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "pulp_last_updated"' do
90
+ describe 'test attribute "hidden"' 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
@@ -27,19 +27,19 @@ describe PulpContainerClient::ContainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "hidden"' do
30
+ describe 'test attribute "content_guard"' 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 "content_guard"' do
36
+ describe 'test attribute "pulp_labels"' 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_labels"' do
42
+ describe 'test attribute "base_path"' 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
@@ -51,13 +51,13 @@ describe PulpContainerClient::ContainerContainerDistribution do
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "base_path"' do
54
+ describe 'test attribute "name"' 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 "hidden"' 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,55 +27,55 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "hidden"' do
30
+ describe 'test attribute "content_guard"' 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 "content_guard"' do
36
+ describe 'test attribute "pulp_href"' 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 "prn"' do
42
+ describe 'test attribute "pulp_last_updated"' 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 "pulp_labels"' do
48
+ describe 'test attribute "prn"' 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_href"' do
54
+ describe 'test attribute "pulp_labels"' 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 "no_content_change_since"' do
60
+ describe 'test attribute "pulp_created"' 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 "repository"' do
66
+ describe 'test attribute "no_content_change_since"' 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_created"' do
72
+ describe 'test attribute "base_path"' 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 "base_path"' do
78
+ describe 'test attribute "repository"' 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
@@ -87,7 +87,7 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "pulp_last_updated"' do
90
+ describe 'test attribute "hidden"' 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
@@ -27,19 +27,19 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "hidden"' do
30
+ describe 'test attribute "content_guard"' 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 "content_guard"' do
36
+ describe 'test attribute "pulp_labels"' 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_labels"' do
42
+ describe 'test attribute "base_path"' 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
@@ -51,13 +51,13 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "base_path"' do
54
+ describe 'test attribute "name"' 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 "hidden"' 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::ContainerContainerPushRepositoryResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_labels"' do
30
+ describe 'test attribute "pulp_href"' 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 "prn"' do
36
+ describe 'test attribute "pulp_last_updated"' 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 "latest_version_href"' 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 "pulp_href"' 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 "description"' do
54
+ describe 'test attribute "retain_repo_versions"' 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 "manifest_signing_service"' do
60
+ describe 'test attribute "pulp_created"' 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 "versions_href"' do
66
+ describe 'test attribute "manifest_signing_service"' 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_created"' do
72
+ describe 'test attribute "latest_version_href"' 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 "name"' do
78
+ describe 'test attribute "description"' 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 "retain_repo_versions"' 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 "pulp_last_updated"' do
90
+ describe 'test attribute "versions_href"' 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,7 +33,7 @@ describe PulpContainerClient::ContainerContainerPushRepository do
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "description"' do
36
+ describe 'test attribute "retain_repo_versions"' 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
@@ -45,13 +45,13 @@ describe PulpContainerClient::ContainerContainerPushRepository do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "name"' do
48
+ describe 'test attribute "description"' 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 "retain_repo_versions"' do
54
+ describe 'test attribute "name"' 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
@@ -27,19 +27,19 @@ describe PulpContainerClient::PatchedcontainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "hidden"' do
30
+ describe 'test attribute "content_guard"' 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 "content_guard"' do
36
+ describe 'test attribute "pulp_labels"' 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_labels"' do
42
+ describe 'test attribute "base_path"' 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
@@ -51,13 +51,13 @@ describe PulpContainerClient::PatchedcontainerContainerDistribution do
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "base_path"' do
54
+ describe 'test attribute "name"' 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 "hidden"' 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,19 +27,19 @@ describe PulpContainerClient::PatchedcontainerContainerPullThroughDistribution d
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "hidden"' do
30
+ describe 'test attribute "content_guard"' 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 "content_guard"' do
36
+ describe 'test attribute "pulp_labels"' 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_labels"' do
42
+ describe 'test attribute "base_path"' 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
@@ -51,13 +51,13 @@ describe PulpContainerClient::PatchedcontainerContainerPullThroughDistribution d
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "base_path"' do
54
+ describe 'test attribute "name"' 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 "hidden"' 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
@@ -33,7 +33,7 @@ describe PulpContainerClient::PatchedcontainerContainerPushRepository do
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "description"' do
36
+ describe 'test attribute "retain_repo_versions"' 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
@@ -45,13 +45,13 @@ describe PulpContainerClient::PatchedcontainerContainerPushRepository do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "name"' do
48
+ describe 'test attribute "description"' 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 "retain_repo_versions"' do
54
+ describe 'test attribute "name"' 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