pulp_container_client 2.26.3 → 2.26.4

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 +12 -12
  5. data/docs/ContainerContainerPullThroughDistribution.md +4 -4
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +12 -12
  7. data/docs/ContainerContainerPushRepository.md +7 -7
  8. data/docs/ContainerContainerPushRepositoryResponse.md +13 -13
  9. data/docs/PatchedcontainerContainerDistribution.md +4 -4
  10. data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
  11. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  12. data/lib/pulp_container_client/models/container_container_distribution.rb +18 -18
  13. data/lib/pulp_container_client/models/container_container_distribution_response.rb +53 -53
  14. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +18 -18
  15. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +53 -53
  16. data/lib/pulp_container_client/models/container_container_push_repository.rb +45 -45
  17. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +57 -57
  18. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +18 -18
  19. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +18 -18
  20. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +45 -45
  21. data/lib/pulp_container_client/version.rb +1 -1
  22. data/spec/models/container_container_distribution_response_spec.rb +9 -9
  23. data/spec/models/container_container_distribution_spec.rb +4 -4
  24. data/spec/models/container_container_pull_through_distribution_response_spec.rb +9 -9
  25. data/spec/models/container_container_pull_through_distribution_spec.rb +4 -4
  26. data/spec/models/container_container_push_repository_response_spec.rb +9 -9
  27. data/spec/models/container_container_push_repository_spec.rb +5 -5
  28. data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
  29. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +4 -4
  30. data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
  31. metadata +2 -2
@@ -16,28 +16,28 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class PatchedcontainerContainerPushRepository
19
- # An optional description.
20
- attr_accessor :description
19
+ # Retain X versions of the repository. Default is null which retains all versions.
20
+ attr_accessor :retain_repo_versions
21
+
22
+ # A reference to an associated signing service.
23
+ attr_accessor :manifest_signing_service
21
24
 
22
25
  # A unique name for this repository.
23
26
  attr_accessor :name
24
27
 
25
- # Retain X versions of the repository. Default is null which retains all versions.
26
- attr_accessor :retain_repo_versions
28
+ # An optional description.
29
+ attr_accessor :description
27
30
 
28
31
  attr_accessor :pulp_labels
29
32
 
30
- # A reference to an associated signing service.
31
- attr_accessor :manifest_signing_service
32
-
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
- :'description' => :'description',
37
- :'name' => :'name',
38
36
  :'retain_repo_versions' => :'retain_repo_versions',
39
- :'pulp_labels' => :'pulp_labels',
40
- :'manifest_signing_service' => :'manifest_signing_service'
37
+ :'manifest_signing_service' => :'manifest_signing_service',
38
+ :'name' => :'name',
39
+ :'description' => :'description',
40
+ :'pulp_labels' => :'pulp_labels'
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
- :'description' => :'String',
53
- :'name' => :'String',
54
52
  :'retain_repo_versions' => :'Integer',
55
- :'pulp_labels' => :'Hash<String, String>',
56
- :'manifest_signing_service' => :'String'
53
+ :'manifest_signing_service' => :'String',
54
+ :'name' => :'String',
55
+ :'description' => :'String',
56
+ :'pulp_labels' => :'Hash<String, 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',
64
63
  :'retain_repo_versions',
65
- :'manifest_signing_service'
64
+ :'manifest_signing_service',
65
+ :'description',
66
66
  ])
67
67
  end
68
68
 
@@ -81,16 +81,20 @@ module PulpContainerClient
81
81
  h[k.to_sym] = v
82
82
  }
83
83
 
84
- if attributes.key?(:'description')
85
- self.description = attributes[:'description']
84
+ if attributes.key?(:'retain_repo_versions')
85
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
86
+ end
87
+
88
+ if attributes.key?(:'manifest_signing_service')
89
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
86
90
  end
87
91
 
88
92
  if attributes.key?(:'name')
89
93
  self.name = attributes[:'name']
90
94
  end
91
95
 
92
- if attributes.key?(:'retain_repo_versions')
93
- self.retain_repo_versions = attributes[:'retain_repo_versions']
96
+ if attributes.key?(:'description')
97
+ self.description = attributes[:'description']
94
98
  end
95
99
 
96
100
  if attributes.key?(:'pulp_labels')
@@ -98,10 +102,6 @@ module PulpContainerClient
98
102
  self.pulp_labels = value
99
103
  end
100
104
  end
101
-
102
- if attributes.key?(:'manifest_signing_service')
103
- self.manifest_signing_service = attributes[:'manifest_signing_service']
104
- end
105
105
  end
106
106
 
107
107
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -109,14 +109,14 @@ 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 !@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
- end
115
-
116
112
  if !@name.nil? && @name.to_s.length < 1
117
113
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
118
114
  end
119
115
 
116
+ if !@description.nil? && @description.to_s.length < 1
117
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
118
+ end
119
+
120
120
  invalid_properties
121
121
  end
122
122
 
@@ -124,21 +124,11 @@ module PulpContainerClient
124
124
  # @return true if the model is valid
125
125
  def valid?
126
126
  warn '[DEPRECATED] the `valid?` method is obsolete'
127
- return false if !@description.nil? && @description.to_s.length < 1
128
127
  return false if !@name.nil? && @name.to_s.length < 1
128
+ return false if !@description.nil? && @description.to_s.length < 1
129
129
  true
130
130
  end
131
131
 
132
- # Custom attribute writer method with validation
133
- # @param [Object] description Value to be assigned
134
- def description=(description)
135
- if !description.nil? && description.to_s.length < 1
136
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
137
- end
138
-
139
- @description = description
140
- end
141
-
142
132
  # Custom attribute writer method with validation
143
133
  # @param [Object] name Value to be assigned
144
134
  def name=(name)
@@ -153,16 +143,26 @@ module PulpContainerClient
153
143
  @name = name
154
144
  end
155
145
 
146
+ # Custom attribute writer method with validation
147
+ # @param [Object] description Value to be assigned
148
+ def description=(description)
149
+ if !description.nil? && description.to_s.length < 1
150
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
151
+ end
152
+
153
+ @description = description
154
+ end
155
+
156
156
  # Checks equality by comparing each attribute.
157
157
  # @param [Object] Object to be compared
158
158
  def ==(o)
159
159
  return true if self.equal?(o)
160
160
  self.class == o.class &&
161
- description == o.description &&
162
- name == o.name &&
163
161
  retain_repo_versions == o.retain_repo_versions &&
164
- pulp_labels == o.pulp_labels &&
165
- manifest_signing_service == o.manifest_signing_service
162
+ manifest_signing_service == o.manifest_signing_service &&
163
+ name == o.name &&
164
+ description == o.description &&
165
+ pulp_labels == o.pulp_labels
166
166
  end
167
167
 
168
168
  # @see the `==` method
@@ -174,7 +174,7 @@ module PulpContainerClient
174
174
  # Calculates hash code according to all attributes.
175
175
  # @return [Integer] Hash code
176
176
  def hash
177
- [description, name, retain_repo_versions, pulp_labels, manifest_signing_service].hash
177
+ [retain_repo_versions, manifest_signing_service, name, description, pulp_labels].hash
178
178
  end
179
179
 
180
180
  # 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.26.3'
14
+ VERSION = '2.26.4'
15
15
  end
@@ -33,25 +33,25 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
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 "no_content_change_since"' do
42
+ describe 'test attribute "name"' 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 "repository"' 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 "name"' do
54
+ describe 'test attribute "no_content_change_since"' 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
@@ -63,31 +63,31 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "pulp_labels"' 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_created"' do
72
+ describe 'test attribute "pulp_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 "base_path"' do
78
+ describe 'test attribute "pulp_labels"' 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 "prn"' do
84
+ describe 'test attribute "base_path"' 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 "content_guard"' do
90
+ describe 'test attribute "pulp_created"' 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,7 +27,7 @@ describe PulpContainerClient::ContainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' 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
@@ -45,19 +45,19 @@ describe PulpContainerClient::ContainerContainerDistribution do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "pulp_labels"' 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 "base_path"' 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 "content_guard"' do
60
+ describe 'test attribute "base_path"' 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,25 +33,25 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
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 "no_content_change_since"' do
42
+ describe 'test attribute "name"' 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 "repository"' 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 "name"' do
54
+ describe 'test attribute "no_content_change_since"' 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
@@ -63,31 +63,31 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "pulp_labels"' 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_created"' do
72
+ describe 'test attribute "pulp_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 "base_path"' do
78
+ describe 'test attribute "pulp_labels"' 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 "prn"' do
84
+ describe 'test attribute "base_path"' 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 "content_guard"' do
90
+ describe 'test attribute "pulp_created"' 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,7 +27,7 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' 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
@@ -45,19 +45,19 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "pulp_labels"' 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 "base_path"' 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 "content_guard"' do
60
+ describe 'test attribute "base_path"' 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,19 +33,19 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "pulp_href"' do
36
+ describe 'test attribute "versions_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 "description"' do
42
+ describe 'test attribute "retain_repo_versions"' 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 "latest_version_href"' do
48
+ describe 'test attribute "manifest_signing_service"' 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
@@ -57,37 +57,37 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "retain_repo_versions"' do
60
+ describe 'test attribute "prn"' 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 "pulp_labels"' do
66
+ describe 'test attribute "description"' 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 "manifest_signing_service"' 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 "pulp_created"' do
78
+ describe 'test attribute "pulp_href"' 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 "versions_href"' do
84
+ describe 'test attribute "pulp_labels"' 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 "prn"' do
90
+ describe 'test attribute "pulp_created"' 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,31 +27,31 @@ describe PulpContainerClient::ContainerContainerPushRepository do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "description"' do
30
+ describe 'test attribute "retain_repo_versions"' 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 "name"' do
36
+ describe 'test attribute "manifest_signing_service"' 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 "retain_repo_versions"' do
42
+ describe 'test attribute "name"' 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 "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 "manifest_signing_service"' 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
@@ -27,7 +27,7 @@ describe PulpContainerClient::PatchedcontainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' 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
@@ -45,19 +45,19 @@ describe PulpContainerClient::PatchedcontainerContainerDistribution do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "pulp_labels"' 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 "base_path"' 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 "content_guard"' do
60
+ describe 'test attribute "base_path"' 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,7 +27,7 @@ describe PulpContainerClient::PatchedcontainerContainerPullThroughDistribution d
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' 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
@@ -45,19 +45,19 @@ describe PulpContainerClient::PatchedcontainerContainerPullThroughDistribution d
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "pulp_labels"' 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 "base_path"' 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 "content_guard"' do
60
+ describe 'test attribute "base_path"' 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,31 +27,31 @@ describe PulpContainerClient::PatchedcontainerContainerPushRepository do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "description"' do
30
+ describe 'test attribute "retain_repo_versions"' 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 "name"' do
36
+ describe 'test attribute "manifest_signing_service"' 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 "retain_repo_versions"' do
42
+ describe 'test attribute "name"' 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 "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 "manifest_signing_service"' 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
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_container_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.26.3
4
+ version: 2.26.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-10-16 00:00:00.000000000 Z
11
+ date: 2025-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday