pulp_container_client 2.10.6 → 2.10.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -15,42 +15,42 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class PatchedcontainerContainerPushRepository
18
- attr_accessor :pulp_labels
19
-
20
- # A unique name for this repository.
21
- 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
22
20
 
23
21
  # An optional description.
24
22
  attr_accessor :description
25
23
 
26
- # 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.
27
- attr_accessor :retain_repo_versions
24
+ attr_accessor :pulp_labels
25
+
26
+ # A unique name for this repository.
27
+ attr_accessor :name
28
28
 
29
29
  # Attribute mapping from ruby-style variable name to JSON key.
30
30
  def self.attribute_map
31
31
  {
32
- :'pulp_labels' => :'pulp_labels',
33
- :'name' => :'name',
32
+ :'retain_repo_versions' => :'retain_repo_versions',
34
33
  :'description' => :'description',
35
- :'retain_repo_versions' => :'retain_repo_versions'
34
+ :'pulp_labels' => :'pulp_labels',
35
+ :'name' => :'name'
36
36
  }
37
37
  end
38
38
 
39
39
  # Attribute type mapping.
40
40
  def self.openapi_types
41
41
  {
42
- :'pulp_labels' => :'Object',
43
- :'name' => :'String',
42
+ :'retain_repo_versions' => :'Integer',
44
43
  :'description' => :'String',
45
- :'retain_repo_versions' => :'Integer'
44
+ :'pulp_labels' => :'Object',
45
+ :'name' => :'String'
46
46
  }
47
47
  end
48
48
 
49
49
  # List of attributes with nullable: true
50
50
  def self.openapi_nullable
51
51
  Set.new([
52
+ :'retain_repo_versions',
52
53
  :'description',
53
- :'retain_repo_versions'
54
54
  ])
55
55
  end
56
56
 
@@ -69,20 +69,20 @@ module PulpContainerClient
69
69
  h[k.to_sym] = v
70
70
  }
71
71
 
72
- if attributes.key?(:'pulp_labels')
73
- self.pulp_labels = attributes[:'pulp_labels']
74
- end
75
-
76
- if attributes.key?(:'name')
77
- self.name = attributes[:'name']
72
+ if attributes.key?(:'retain_repo_versions')
73
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
78
74
  end
79
75
 
80
76
  if attributes.key?(:'description')
81
77
  self.description = attributes[:'description']
82
78
  end
83
79
 
84
- if attributes.key?(:'retain_repo_versions')
85
- self.retain_repo_versions = attributes[:'retain_repo_versions']
80
+ if attributes.key?(:'pulp_labels')
81
+ self.pulp_labels = attributes[:'pulp_labels']
82
+ end
83
+
84
+ if attributes.key?(:'name')
85
+ self.name = attributes[:'name']
86
86
  end
87
87
  end
88
88
 
@@ -90,16 +90,16 @@ module PulpContainerClient
90
90
  # @return Array for valid properties with the reasons
91
91
  def list_invalid_properties
92
92
  invalid_properties = Array.new
93
- if !@name.nil? && @name.to_s.length < 1
94
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
93
+ if !@retain_repo_versions.nil? && @retain_repo_versions < 1
94
+ invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
95
95
  end
96
96
 
97
97
  if !@description.nil? && @description.to_s.length < 1
98
98
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
99
99
  end
100
100
 
101
- if !@retain_repo_versions.nil? && @retain_repo_versions < 1
102
- invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
101
+ if !@name.nil? && @name.to_s.length < 1
102
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
103
103
  end
104
104
 
105
105
  invalid_properties
@@ -108,20 +108,20 @@ module PulpContainerClient
108
108
  # Check to see if the all the properties in the model are valid
109
109
  # @return true if the model is valid
110
110
  def valid?
111
- return false if !@name.nil? && @name.to_s.length < 1
112
- return false if !@description.nil? && @description.to_s.length < 1
113
111
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
112
+ return false if !@description.nil? && @description.to_s.length < 1
113
+ return false if !@name.nil? && @name.to_s.length < 1
114
114
  true
115
115
  end
116
116
 
117
117
  # Custom attribute writer method with validation
118
- # @param [Object] name Value to be assigned
119
- def name=(name)
120
- if !name.nil? && name.to_s.length < 1
121
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
118
+ # @param [Object] retain_repo_versions Value to be assigned
119
+ def retain_repo_versions=(retain_repo_versions)
120
+ if !retain_repo_versions.nil? && retain_repo_versions < 1
121
+ fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
122
122
  end
123
123
 
124
- @name = name
124
+ @retain_repo_versions = retain_repo_versions
125
125
  end
126
126
 
127
127
  # Custom attribute writer method with validation
@@ -135,13 +135,13 @@ module PulpContainerClient
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] name Value to be assigned
139
+ def name=(name)
140
+ if !name.nil? && name.to_s.length < 1
141
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
142
142
  end
143
143
 
144
- @retain_repo_versions = retain_repo_versions
144
+ @name = name
145
145
  end
146
146
 
147
147
  # Checks equality by comparing each attribute.
@@ -149,10 +149,10 @@ module PulpContainerClient
149
149
  def ==(o)
150
150
  return true if self.equal?(o)
151
151
  self.class == o.class &&
152
- pulp_labels == o.pulp_labels &&
153
- name == o.name &&
152
+ retain_repo_versions == o.retain_repo_versions &&
154
153
  description == o.description &&
155
- retain_repo_versions == o.retain_repo_versions
154
+ pulp_labels == o.pulp_labels &&
155
+ name == o.name
156
156
  end
157
157
 
158
158
  # @see the `==` method
@@ -164,7 +164,7 @@ module PulpContainerClient
164
164
  # Calculates hash code according to all attributes.
165
165
  # @return [Integer] Hash code
166
166
  def hash
167
- [pulp_labels, name, description, retain_repo_versions].hash
167
+ [retain_repo_versions, description, pulp_labels, name].hash
168
168
  end
169
169
 
170
170
  # 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.10.6'
14
+ VERSION = '2.10.7'
15
15
  end
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
27
27
  s.license = 'GPLv2+'
28
28
  s.required_ruby_version = ">= 1.9"
29
29
 
30
- s.add_runtime_dependency 'faraday', '>= 0.17', '< 2.0'
30
+ s.add_runtime_dependency 'faraday', '>= 1.0.1', '< 2.0'
31
31
  s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
32
32
 
33
33
  s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
@@ -38,37 +38,37 @@ describe 'ContainerContainerDistributionResponse' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' 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 "content_guard"' do
47
+ describe 'test attribute "repository"' 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 "pulp_labels"' 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_created"' 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
63
63
  end
64
64
 
65
- describe 'test attribute "base_path"' do
65
+ describe 'test attribute "pulp_created"' 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 "repository"' do
71
+ describe 'test attribute "content_guard"' 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 "pulp_labels"' do
35
+ describe 'test attribute "base_path"' 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 "content_guard"' do
41
+ describe 'test attribute "repository"' 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_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 "base_path"' 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 "repository"' 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
@@ -38,43 +38,43 @@ describe 'ContainerContainerPushRepositoryResponse' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' 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 "name"' do
47
+ describe 'test attribute "versions_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 "versions_href"' do
53
+ describe 'test attribute "latest_version_href"' 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 "latest_version_href"' do
59
+ describe 'test attribute "description"' 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 "description"' do
65
+ describe 'test attribute "pulp_labels"' 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 "pulp_created"' do
71
+ describe 'test attribute "name"' 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
75
75
  end
76
76
 
77
- describe 'test attribute "retain_repo_versions"' do
77
+ describe 'test attribute "pulp_created"' 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
@@ -32,25 +32,25 @@ describe 'ContainerContainerPushRepository' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepository)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_labels"' 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 "name"' 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 "description"' 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 "retain_repo_versions"' 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
@@ -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 "pulp_labels"' do
35
+ describe 'test attribute "base_path"' 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 "content_guard"' do
41
+ describe 'test attribute "repository"' 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_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 "base_path"' 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 "repository"' 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
@@ -32,25 +32,25 @@ describe 'PatchedcontainerContainerPushRepository' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerPushRepository)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_labels"' 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 "name"' 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 "description"' 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 "retain_repo_versions"' 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
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.10.6
4
+ version: 2.10.7
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-15 00:00:00.000000000 Z
11
+ date: 2022-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.17'
19
+ version: 1.0.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: '2.0'
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.17'
29
+ version: 1.0.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '2.0'
@@ -281,62 +281,62 @@ signing_key:
281
281
  specification_version: 4
282
282
  summary: Pulp 3 API Ruby Gem
283
283
  test_files:
284
- - spec/api/content_tags_api_spec.rb
285
- - spec/api/distributions_container_api_spec.rb
286
- - spec/api/repositories_container_api_spec.rb
287
- - spec/api/token_api_spec.rb
288
- - spec/api/remotes_container_api_spec.rb
289
284
  - spec/api/repositories_container_push_versions_api_spec.rb
290
285
  - spec/api/contentguards_content_redirect_api_spec.rb
286
+ - spec/api/repositories_container_versions_api_spec.rb
291
287
  - spec/api/content_manifests_api_spec.rb
288
+ - spec/api/token_api_spec.rb
292
289
  - spec/api/content_blobs_api_spec.rb
293
- - spec/api/pulp_container_namespaces_api_spec.rb
294
290
  - spec/api/repositories_container_push_api_spec.rb
295
- - spec/api/repositories_container_versions_api_spec.rb
291
+ - spec/api/repositories_container_api_spec.rb
292
+ - spec/api/pulp_container_namespaces_api_spec.rb
293
+ - spec/api/distributions_container_api_spec.rb
294
+ - spec/api/remotes_container_api_spec.rb
295
+ - spec/api/content_tags_api_spec.rb
296
296
  - spec/api_client_spec.rb
297
297
  - spec/configuration_spec.rb
298
- - spec/models/oci_build_image_spec.rb
299
- - spec/models/container_container_push_repository_spec.rb
300
- - spec/models/container_container_namespace_response_spec.rb
301
- - spec/models/container_tag_response_spec.rb
302
- - spec/models/container_content_redirect_content_guard_response_spec.rb
303
- - spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
304
- - spec/models/container_content_redirect_content_guard_spec.rb
298
+ - spec/models/paginatedcontainer_container_distribution_response_list_spec.rb
299
+ - spec/models/container_manifest_response_spec.rb
300
+ - spec/models/patchedcontainer_container_distribution_spec.rb
301
+ - spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb
305
302
  - spec/models/async_operation_response_spec.rb
306
- - spec/models/media_types_enum_spec.rb
307
- - spec/models/container_container_distribution_spec.rb
308
- - spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
303
+ - spec/models/remove_image_spec.rb
304
+ - spec/models/recursive_manage_spec.rb
305
+ - spec/models/container_container_distribution_response_spec.rb
306
+ - spec/models/repository_version_response_spec.rb
307
+ - spec/models/container_tag_response_spec.rb
309
308
  - spec/models/repair_spec.rb
310
- - spec/models/patchedcontainer_container_push_repository_spec.rb
311
- - spec/models/container_container_namespace_spec.rb
309
+ - spec/models/manifest_copy_spec.rb
310
+ - spec/models/container_container_remote_spec.rb
311
+ - spec/models/container_container_push_repository_response_spec.rb
312
312
  - spec/models/patchedcontainer_container_remote_spec.rb
313
- - spec/models/repository_version_response_spec.rb
314
- - spec/models/container_container_repository_spec.rb
315
313
  - spec/models/repository_sync_url_spec.rb
316
- - spec/models/tag_copy_spec.rb
317
- - spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb
318
- - spec/models/patchedcontainer_content_redirect_content_guard_spec.rb
319
- - spec/models/policy_enum_spec.rb
320
- - spec/models/container_container_repository_response_spec.rb
314
+ - spec/models/container_container_push_repository_spec.rb
321
315
  - spec/models/paginatedcontainer_blob_response_list_spec.rb
322
- - spec/models/un_tag_image_spec.rb
323
- - spec/models/paginatedcontainer_container_distribution_response_list_spec.rb
324
- - spec/models/recursive_manage_spec.rb
325
- - spec/models/container_blob_response_spec.rb
326
316
  - spec/models/tag_image_spec.rb
317
+ - spec/models/container_blob_response_spec.rb
318
+ - spec/models/container_container_repository_response_spec.rb
319
+ - spec/models/paginatedcontainer_manifest_response_list_spec.rb
320
+ - spec/models/media_types_enum_spec.rb
321
+ - spec/models/paginatedcontainer_container_remote_response_list_spec.rb
322
+ - spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
323
+ - spec/models/policy_enum_spec.rb
327
324
  - spec/models/paginatedcontainer_container_repository_response_list_spec.rb
328
- - spec/models/manifest_copy_spec.rb
329
- - spec/models/container_container_remote_response_spec.rb
325
+ - spec/models/patchedcontainer_container_push_repository_spec.rb
326
+ - spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
330
327
  - spec/models/paginated_repository_version_response_list_spec.rb
331
- - spec/models/paginatedcontainer_tag_response_list_spec.rb
332
- - spec/models/patchedcontainer_container_distribution_spec.rb
333
- - spec/models/container_container_distribution_response_spec.rb
334
- - spec/models/container_manifest_response_spec.rb
335
- - spec/models/paginatedcontainer_container_remote_response_list_spec.rb
336
- - spec/models/container_container_remote_spec.rb
337
- - spec/models/paginatedcontainer_manifest_response_list_spec.rb
338
- - spec/models/container_container_push_repository_response_spec.rb
328
+ - spec/models/container_content_redirect_content_guard_spec.rb
329
+ - spec/models/container_container_distribution_spec.rb
330
+ - spec/models/patchedcontainer_content_redirect_content_guard_spec.rb
331
+ - spec/models/container_container_namespace_spec.rb
339
332
  - spec/models/patchedcontainer_container_repository_spec.rb
340
- - spec/models/remove_image_spec.rb
333
+ - spec/models/container_content_redirect_content_guard_response_spec.rb
334
+ - spec/models/un_tag_image_spec.rb
335
+ - spec/models/container_container_repository_spec.rb
336
+ - spec/models/container_container_remote_response_spec.rb
337
+ - spec/models/oci_build_image_spec.rb
338
+ - spec/models/paginatedcontainer_tag_response_list_spec.rb
341
339
  - spec/models/content_summary_response_spec.rb
340
+ - spec/models/tag_copy_spec.rb
341
+ - spec/models/container_container_namespace_response_spec.rb
342
342
  - spec/spec_helper.rb