pulp_container_client 2.14.0.dev1660017625 → 2.14.0.dev1660102598

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pulp_container_client might be problematic. Click here for more details.

Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +7 -7
  4. data/docs/ContainerContainerDistributionResponse.md +7 -7
  5. data/docs/ContainerContainerPushRepository.md +6 -6
  6. data/docs/ContainerContainerPushRepositoryResponse.md +11 -11
  7. data/docs/PatchedcontainerContainerDistribution.md +7 -7
  8. data/docs/PatchedcontainerContainerPushRepository.md +6 -6
  9. data/docs/RepositoriesContainerApi.md +2 -0
  10. data/docs/RepositoriesContainerPushApi.md +2 -0
  11. data/lib/pulp_container_client/api/repositories_container_api.rb +3 -0
  12. data/lib/pulp_container_client/api/repositories_container_push_api.rb +3 -0
  13. data/lib/pulp_container_client/models/container_container_distribution.rb +52 -52
  14. data/lib/pulp_container_client/models/container_container_distribution_response.rb +33 -33
  15. data/lib/pulp_container_client/models/container_container_push_repository.rb +51 -51
  16. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +45 -45
  17. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +43 -43
  18. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +43 -43
  19. data/lib/pulp_container_client/version.rb +1 -1
  20. data/spec/api/repositories_container_api_spec.rb +1 -0
  21. data/spec/api/repositories_container_push_api_spec.rb +1 -0
  22. data/spec/models/container_container_distribution_response_spec.rb +7 -7
  23. data/spec/models/container_container_distribution_spec.rb +5 -5
  24. data/spec/models/container_container_push_repository_response_spec.rb +6 -6
  25. data/spec/models/container_container_push_repository_spec.rb +5 -5
  26. data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
  27. data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
  28. metadata +2 -2
@@ -15,19 +15,19 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class PatchedcontainerContainerDistribution
18
- # The latest RepositoryVersion for this Repository will be served.
19
- attr_accessor :repository
20
-
21
- # A unique name. Ex, `rawhide` and `stable`.
22
- attr_accessor :name
23
-
24
18
  attr_accessor :pulp_labels
25
19
 
20
+ # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
21
+ attr_accessor :base_path
22
+
26
23
  # An optional content-guard. If none is specified, a default one will be used.
27
24
  attr_accessor :content_guard
28
25
 
29
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
30
- attr_accessor :base_path
26
+ # A unique name. Ex, `rawhide` and `stable`.
27
+ attr_accessor :name
28
+
29
+ # The latest RepositoryVersion for this Repository will be served.
30
+ attr_accessor :repository
31
31
 
32
32
  # RepositoryVersion to be served
33
33
  attr_accessor :repository_version
@@ -41,11 +41,11 @@ module PulpContainerClient
41
41
  # Attribute mapping from ruby-style variable name to JSON key.
42
42
  def self.attribute_map
43
43
  {
44
- :'repository' => :'repository',
45
- :'name' => :'name',
46
44
  :'pulp_labels' => :'pulp_labels',
47
- :'content_guard' => :'content_guard',
48
45
  :'base_path' => :'base_path',
46
+ :'content_guard' => :'content_guard',
47
+ :'name' => :'name',
48
+ :'repository' => :'repository',
49
49
  :'repository_version' => :'repository_version',
50
50
  :'private' => :'private',
51
51
  :'description' => :'description'
@@ -55,11 +55,11 @@ module PulpContainerClient
55
55
  # Attribute type mapping.
56
56
  def self.openapi_types
57
57
  {
58
- :'repository' => :'String',
59
- :'name' => :'String',
60
58
  :'pulp_labels' => :'Object',
61
- :'content_guard' => :'String',
62
59
  :'base_path' => :'String',
60
+ :'content_guard' => :'String',
61
+ :'name' => :'String',
62
+ :'repository' => :'String',
63
63
  :'repository_version' => :'String',
64
64
  :'private' => :'Boolean',
65
65
  :'description' => :'String'
@@ -90,24 +90,24 @@ module PulpContainerClient
90
90
  h[k.to_sym] = v
91
91
  }
92
92
 
93
- if attributes.key?(:'repository')
94
- self.repository = attributes[:'repository']
95
- end
96
-
97
- if attributes.key?(:'name')
98
- self.name = attributes[:'name']
99
- end
100
-
101
93
  if attributes.key?(:'pulp_labels')
102
94
  self.pulp_labels = attributes[:'pulp_labels']
103
95
  end
104
96
 
97
+ if attributes.key?(:'base_path')
98
+ self.base_path = attributes[:'base_path']
99
+ end
100
+
105
101
  if attributes.key?(:'content_guard')
106
102
  self.content_guard = attributes[:'content_guard']
107
103
  end
108
104
 
109
- if attributes.key?(:'base_path')
110
- self.base_path = attributes[:'base_path']
105
+ if attributes.key?(:'name')
106
+ self.name = attributes[:'name']
107
+ end
108
+
109
+ if attributes.key?(:'repository')
110
+ self.repository = attributes[:'repository']
111
111
  end
112
112
 
113
113
  if attributes.key?(:'repository_version')
@@ -127,14 +127,14 @@ module PulpContainerClient
127
127
  # @return Array for valid properties with the reasons
128
128
  def list_invalid_properties
129
129
  invalid_properties = Array.new
130
- if !@name.nil? && @name.to_s.length < 1
131
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
132
- end
133
-
134
130
  if !@base_path.nil? && @base_path.to_s.length < 1
135
131
  invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
136
132
  end
137
133
 
134
+ if !@name.nil? && @name.to_s.length < 1
135
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
136
+ end
137
+
138
138
  if !@description.nil? && @description.to_s.length < 1
139
139
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
140
140
  end
@@ -145,22 +145,12 @@ module PulpContainerClient
145
145
  # Check to see if the all the properties in the model are valid
146
146
  # @return true if the model is valid
147
147
  def valid?
148
- return false if !@name.nil? && @name.to_s.length < 1
149
148
  return false if !@base_path.nil? && @base_path.to_s.length < 1
149
+ return false if !@name.nil? && @name.to_s.length < 1
150
150
  return false if !@description.nil? && @description.to_s.length < 1
151
151
  true
152
152
  end
153
153
 
154
- # Custom attribute writer method with validation
155
- # @param [Object] name Value to be assigned
156
- def name=(name)
157
- if !name.nil? && name.to_s.length < 1
158
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
159
- end
160
-
161
- @name = name
162
- end
163
-
164
154
  # Custom attribute writer method with validation
165
155
  # @param [Object] base_path Value to be assigned
166
156
  def base_path=(base_path)
@@ -171,6 +161,16 @@ module PulpContainerClient
171
161
  @base_path = base_path
172
162
  end
173
163
 
164
+ # Custom attribute writer method with validation
165
+ # @param [Object] name Value to be assigned
166
+ def name=(name)
167
+ if !name.nil? && name.to_s.length < 1
168
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
169
+ end
170
+
171
+ @name = name
172
+ end
173
+
174
174
  # Custom attribute writer method with validation
175
175
  # @param [Object] description Value to be assigned
176
176
  def description=(description)
@@ -186,11 +186,11 @@ module PulpContainerClient
186
186
  def ==(o)
187
187
  return true if self.equal?(o)
188
188
  self.class == o.class &&
189
- repository == o.repository &&
190
- name == o.name &&
191
189
  pulp_labels == o.pulp_labels &&
192
- content_guard == o.content_guard &&
193
190
  base_path == o.base_path &&
191
+ content_guard == o.content_guard &&
192
+ name == o.name &&
193
+ repository == o.repository &&
194
194
  repository_version == o.repository_version &&
195
195
  private == o.private &&
196
196
  description == o.description
@@ -205,7 +205,7 @@ module PulpContainerClient
205
205
  # Calculates hash code according to all attributes.
206
206
  # @return [Integer] Hash code
207
207
  def hash
208
- [repository, name, pulp_labels, content_guard, base_path, repository_version, private, description].hash
208
+ [pulp_labels, base_path, content_guard, name, repository, repository_version, private, description].hash
209
209
  end
210
210
 
211
211
  # Builds the object from hash
@@ -15,48 +15,48 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class PatchedcontainerContainerPushRepository
18
- # A unique name for this repository.
19
- attr_accessor :name
18
+ # Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
19
+ attr_accessor :retain_repo_versions
20
+
21
+ # An optional description.
22
+ attr_accessor :description
20
23
 
21
24
  attr_accessor :pulp_labels
22
25
 
23
26
  # A reference to an associated signing service.
24
27
  attr_accessor :manifest_signing_service
25
28
 
26
- # An optional description.
27
- attr_accessor :description
28
-
29
- # Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
30
- attr_accessor :retain_repo_versions
29
+ # A unique name for this repository.
30
+ attr_accessor :name
31
31
 
32
32
  # Attribute mapping from ruby-style variable name to JSON key.
33
33
  def self.attribute_map
34
34
  {
35
- :'name' => :'name',
35
+ :'retain_repo_versions' => :'retain_repo_versions',
36
+ :'description' => :'description',
36
37
  :'pulp_labels' => :'pulp_labels',
37
38
  :'manifest_signing_service' => :'manifest_signing_service',
38
- :'description' => :'description',
39
- :'retain_repo_versions' => :'retain_repo_versions'
39
+ :'name' => :'name'
40
40
  }
41
41
  end
42
42
 
43
43
  # Attribute type mapping.
44
44
  def self.openapi_types
45
45
  {
46
- :'name' => :'String',
46
+ :'retain_repo_versions' => :'Integer',
47
+ :'description' => :'String',
47
48
  :'pulp_labels' => :'Object',
48
49
  :'manifest_signing_service' => :'String',
49
- :'description' => :'String',
50
- :'retain_repo_versions' => :'Integer'
50
+ :'name' => :'String'
51
51
  }
52
52
  end
53
53
 
54
54
  # List of attributes with nullable: true
55
55
  def self.openapi_nullable
56
56
  Set.new([
57
- :'manifest_signing_service',
57
+ :'retain_repo_versions',
58
58
  :'description',
59
- :'retain_repo_versions'
59
+ :'manifest_signing_service',
60
60
  ])
61
61
  end
62
62
 
@@ -75,8 +75,12 @@ module PulpContainerClient
75
75
  h[k.to_sym] = v
76
76
  }
77
77
 
78
- if attributes.key?(:'name')
79
- self.name = attributes[:'name']
78
+ if attributes.key?(:'retain_repo_versions')
79
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
80
+ end
81
+
82
+ if attributes.key?(:'description')
83
+ self.description = attributes[:'description']
80
84
  end
81
85
 
82
86
  if attributes.key?(:'pulp_labels')
@@ -87,12 +91,8 @@ module PulpContainerClient
87
91
  self.manifest_signing_service = attributes[:'manifest_signing_service']
88
92
  end
89
93
 
90
- if attributes.key?(:'description')
91
- self.description = attributes[:'description']
92
- end
93
-
94
- if attributes.key?(:'retain_repo_versions')
95
- self.retain_repo_versions = attributes[:'retain_repo_versions']
94
+ if attributes.key?(:'name')
95
+ self.name = attributes[:'name']
96
96
  end
97
97
  end
98
98
 
@@ -100,16 +100,16 @@ module PulpContainerClient
100
100
  # @return Array for valid properties with the reasons
101
101
  def list_invalid_properties
102
102
  invalid_properties = Array.new
103
- if !@name.nil? && @name.to_s.length < 1
104
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
103
+ if !@retain_repo_versions.nil? && @retain_repo_versions < 1
104
+ invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
105
105
  end
106
106
 
107
107
  if !@description.nil? && @description.to_s.length < 1
108
108
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
109
109
  end
110
110
 
111
- if !@retain_repo_versions.nil? && @retain_repo_versions < 1
112
- invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
111
+ if !@name.nil? && @name.to_s.length < 1
112
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
113
113
  end
114
114
 
115
115
  invalid_properties
@@ -118,20 +118,20 @@ module PulpContainerClient
118
118
  # Check to see if the all the properties in the model are valid
119
119
  # @return true if the model is valid
120
120
  def valid?
121
- return false if !@name.nil? && @name.to_s.length < 1
122
- return false if !@description.nil? && @description.to_s.length < 1
123
121
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
122
+ return false if !@description.nil? && @description.to_s.length < 1
123
+ return false if !@name.nil? && @name.to_s.length < 1
124
124
  true
125
125
  end
126
126
 
127
127
  # Custom attribute writer method with validation
128
- # @param [Object] name Value to be assigned
129
- def name=(name)
130
- if !name.nil? && name.to_s.length < 1
131
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
128
+ # @param [Object] retain_repo_versions Value to be assigned
129
+ def retain_repo_versions=(retain_repo_versions)
130
+ if !retain_repo_versions.nil? && retain_repo_versions < 1
131
+ fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
132
132
  end
133
133
 
134
- @name = name
134
+ @retain_repo_versions = retain_repo_versions
135
135
  end
136
136
 
137
137
  # Custom attribute writer method with validation
@@ -145,13 +145,13 @@ module PulpContainerClient
145
145
  end
146
146
 
147
147
  # Custom attribute writer method with validation
148
- # @param [Object] retain_repo_versions Value to be assigned
149
- def retain_repo_versions=(retain_repo_versions)
150
- if !retain_repo_versions.nil? && retain_repo_versions < 1
151
- fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
148
+ # @param [Object] name Value to be assigned
149
+ def name=(name)
150
+ if !name.nil? && name.to_s.length < 1
151
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
152
152
  end
153
153
 
154
- @retain_repo_versions = retain_repo_versions
154
+ @name = name
155
155
  end
156
156
 
157
157
  # Checks equality by comparing each attribute.
@@ -159,11 +159,11 @@ module PulpContainerClient
159
159
  def ==(o)
160
160
  return true if self.equal?(o)
161
161
  self.class == o.class &&
162
- name == o.name &&
162
+ retain_repo_versions == o.retain_repo_versions &&
163
+ description == o.description &&
163
164
  pulp_labels == o.pulp_labels &&
164
165
  manifest_signing_service == o.manifest_signing_service &&
165
- description == o.description &&
166
- retain_repo_versions == o.retain_repo_versions
166
+ name == o.name
167
167
  end
168
168
 
169
169
  # @see the `==` method
@@ -175,7 +175,7 @@ module PulpContainerClient
175
175
  # Calculates hash code according to all attributes.
176
176
  # @return [Integer] Hash code
177
177
  def hash
178
- [name, pulp_labels, manifest_signing_service, description, retain_repo_versions].hash
178
+ [retain_repo_versions, description, pulp_labels, manifest_signing_service, name].hash
179
179
  end
180
180
 
181
181
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.14.0.dev1660017625'
14
+ VERSION = '2.14.0.dev1660102598'
15
15
  end
@@ -136,6 +136,7 @@ describe 'RepositoriesContainerApi' do
136
136
  # @option opts [Integer] :offset The initial index from which to return the results.
137
137
  # @option opts [Array<String>] :ordering Ordering
138
138
  # @option opts [String] :pulp_label_select Filter labels by search string
139
+ # @option opts [String] :remote Foreign Key referenced by HREF
139
140
  # @option opts [String] :fields A list of fields to include in the response.
140
141
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
141
142
  # @return [PaginatedcontainerContainerRepositoryResponseList]
@@ -57,6 +57,7 @@ describe 'RepositoriesContainerPushApi' do
57
57
  # @option opts [Integer] :offset The initial index from which to return the results.
58
58
  # @option opts [Array<String>] :ordering Ordering
59
59
  # @option opts [String] :pulp_label_select Filter labels by search string
60
+ # @option opts [String] :remote Foreign Key referenced by HREF
60
61
  # @option opts [String] :fields A list of fields to include in the response.
61
62
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
62
63
  # @return [PaginatedcontainerContainerPushRepositoryResponseList]
@@ -32,43 +32,43 @@ describe 'ContainerContainerDistributionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "repository"' do
35
+ describe 'test attribute "pulp_created"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_created"' do
41
+ describe 'test attribute "pulp_labels"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "name"' do
47
+ describe 'test attribute "pulp_href"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "pulp_labels"' do
53
+ describe 'test attribute "base_path"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "pulp_href"' do
59
+ describe 'test attribute "content_guard"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "content_guard"' do
65
+ describe 'test attribute "name"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "base_path"' do
71
+ describe 'test attribute "repository"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
@@ -32,31 +32,31 @@ describe 'ContainerContainerDistribution' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistribution)
33
33
  end
34
34
  end
35
- describe 'test attribute "repository"' do
35
+ describe 'test attribute "pulp_labels"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "name"' do
41
+ describe 'test attribute "base_path"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_labels"' do
47
+ describe 'test attribute "content_guard"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "content_guard"' do
53
+ describe 'test attribute "name"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "base_path"' do
59
+ describe 'test attribute "repository"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
@@ -32,25 +32,25 @@ describe 'ContainerContainerPushRepositoryResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepositoryResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_created"' do
35
+ describe 'test attribute "latest_version_href"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "latest_version_href"' do
41
+ describe 'test attribute "retain_repo_versions"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "versions_href"' do
47
+ describe 'test attribute "pulp_created"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "name"' do
53
+ describe 'test attribute "description"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
@@ -74,13 +74,13 @@ describe 'ContainerContainerPushRepositoryResponse' do
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "description"' do
77
+ describe 'test attribute "name"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
81
81
  end
82
82
 
83
- describe 'test attribute "retain_repo_versions"' do
83
+ describe 'test attribute "versions_href"' do
84
84
  it 'should work' do
85
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
86
  end
@@ -32,31 +32,31 @@ describe 'ContainerContainerPushRepository' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepository)
33
33
  end
34
34
  end
35
- describe 'test attribute "name"' do
35
+ describe 'test attribute "retain_repo_versions"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' do
41
+ describe 'test attribute "description"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "manifest_signing_service"' do
47
+ describe 'test attribute "pulp_labels"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "description"' do
53
+ describe 'test attribute "manifest_signing_service"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "retain_repo_versions"' do
59
+ describe 'test attribute "name"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
@@ -32,31 +32,31 @@ describe 'PatchedcontainerContainerDistribution' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerDistribution)
33
33
  end
34
34
  end
35
- describe 'test attribute "repository"' do
35
+ describe 'test attribute "pulp_labels"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "name"' do
41
+ describe 'test attribute "base_path"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_labels"' do
47
+ describe 'test attribute "content_guard"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "content_guard"' do
53
+ describe 'test attribute "name"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "base_path"' do
59
+ describe 'test attribute "repository"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
@@ -32,31 +32,31 @@ describe 'PatchedcontainerContainerPushRepository' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerPushRepository)
33
33
  end
34
34
  end
35
- describe 'test attribute "name"' do
35
+ describe 'test attribute "retain_repo_versions"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' do
41
+ describe 'test attribute "description"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "manifest_signing_service"' do
47
+ describe 'test attribute "pulp_labels"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "description"' do
53
+ describe 'test attribute "manifest_signing_service"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "retain_repo_versions"' do
59
+ describe 'test attribute "name"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  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.14.0.dev1660017625
4
+ version: 2.14.0.dev1660102598
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-09 00:00:00.000000000 Z
11
+ date: 2022-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday