pulp_container_client 2.9.1 → 2.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +5 -5
  4. data/docs/ContainerContainerDistributionResponse.md +8 -8
  5. data/docs/ContainerContainerPushRepository.md +5 -5
  6. data/docs/ContainerContainerPushRepositoryResponse.md +10 -10
  7. data/docs/ContainerContainerRemote.md +1 -1
  8. data/docs/ContainerContainerRemoteResponse.md +1 -1
  9. data/docs/PatchedcontainerContainerDistribution.md +5 -5
  10. data/docs/PatchedcontainerContainerPushRepository.md +5 -5
  11. data/docs/PatchedcontainerContainerRemote.md +1 -1
  12. data/lib/pulp_container_client/api/repositories_container_api.rb +4 -0
  13. data/lib/pulp_container_client/models/container_container_distribution.rb +71 -18
  14. data/lib/pulp_container_client/models/container_container_distribution_response.rb +31 -31
  15. data/lib/pulp_container_client/models/container_container_namespace.rb +9 -0
  16. data/lib/pulp_container_client/models/container_container_push_repository.rb +56 -22
  17. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +41 -41
  18. data/lib/pulp_container_client/models/container_container_remote.rb +178 -1
  19. data/lib/pulp_container_client/models/container_container_remote_response.rb +1 -1
  20. data/lib/pulp_container_client/models/container_container_repository.rb +34 -0
  21. data/lib/pulp_container_client/models/container_content_redirect_content_guard.rb +34 -0
  22. data/lib/pulp_container_client/models/oci_build_image.rb +15 -0
  23. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +63 -18
  24. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +52 -22
  25. data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +166 -1
  26. data/lib/pulp_container_client/models/patchedcontainer_container_repository.rb +30 -0
  27. data/lib/pulp_container_client/models/patchedcontainer_content_redirect_content_guard.rb +30 -0
  28. data/lib/pulp_container_client/models/remove_image.rb +19 -0
  29. data/lib/pulp_container_client/models/tag_image.rb +28 -0
  30. data/lib/pulp_container_client/models/un_tag_image.rb +9 -0
  31. data/lib/pulp_container_client/version.rb +1 -1
  32. data/spec/models/container_container_distribution_response_spec.rb +6 -6
  33. data/spec/models/container_container_distribution_spec.rb +5 -5
  34. data/spec/models/container_container_push_repository_response_spec.rb +7 -7
  35. data/spec/models/container_container_push_repository_spec.rb +3 -3
  36. data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
  37. data/spec/models/patchedcontainer_container_push_repository_spec.rb +3 -3
  38. metadata +45 -45
@@ -66,6 +66,10 @@ module PulpContainerClient
66
66
  invalid_properties.push('invalid value for "digest", digest cannot be nil.')
67
67
  end
68
68
 
69
+ if @digest.to_s.length < 1
70
+ invalid_properties.push('invalid value for "digest", the character length must be great than or equal to 1.')
71
+ end
72
+
69
73
  invalid_properties
70
74
  end
71
75
 
@@ -73,9 +77,24 @@ module PulpContainerClient
73
77
  # @return true if the model is valid
74
78
  def valid?
75
79
  return false if @digest.nil?
80
+ return false if @digest.to_s.length < 1
76
81
  true
77
82
  end
78
83
 
84
+ # Custom attribute writer method with validation
85
+ # @param [Object] digest Value to be assigned
86
+ def digest=(digest)
87
+ if digest.nil?
88
+ fail ArgumentError, 'digest cannot be nil'
89
+ end
90
+
91
+ if digest.to_s.length < 1
92
+ fail ArgumentError, 'invalid value for "digest", the character length must be great than or equal to 1.'
93
+ end
94
+
95
+ @digest = digest
96
+ end
97
+
79
98
  # Checks equality by comparing each attribute.
80
99
  # @param [Object] Object to be compared
81
100
  def ==(o)
@@ -75,6 +75,10 @@ module PulpContainerClient
75
75
  invalid_properties.push('invalid value for "tag", tag cannot be nil.')
76
76
  end
77
77
 
78
+ if @tag.to_s.length < 1
79
+ invalid_properties.push('invalid value for "tag", the character length must be great than or equal to 1.')
80
+ end
81
+
78
82
  pattern = Regexp.new(/^[A-Za-z0-9][A-Za-z0-9._-]*$/)
79
83
  if @tag !~ pattern
80
84
  invalid_properties.push("invalid value for \"tag\", must conform to the pattern #{pattern}.")
@@ -84,6 +88,10 @@ module PulpContainerClient
84
88
  invalid_properties.push('invalid value for "digest", digest cannot be nil.')
85
89
  end
86
90
 
91
+ if @digest.to_s.length < 1
92
+ invalid_properties.push('invalid value for "digest", the character length must be great than or equal to 1.')
93
+ end
94
+
87
95
  invalid_properties
88
96
  end
89
97
 
@@ -91,8 +99,10 @@ module PulpContainerClient
91
99
  # @return true if the model is valid
92
100
  def valid?
93
101
  return false if @tag.nil?
102
+ return false if @tag.to_s.length < 1
94
103
  return false if @tag !~ Regexp.new(/^[A-Za-z0-9][A-Za-z0-9._-]*$/)
95
104
  return false if @digest.nil?
105
+ return false if @digest.to_s.length < 1
96
106
  true
97
107
  end
98
108
 
@@ -103,6 +113,10 @@ module PulpContainerClient
103
113
  fail ArgumentError, 'tag cannot be nil'
104
114
  end
105
115
 
116
+ if tag.to_s.length < 1
117
+ fail ArgumentError, 'invalid value for "tag", the character length must be great than or equal to 1.'
118
+ end
119
+
106
120
  pattern = Regexp.new(/^[A-Za-z0-9][A-Za-z0-9._-]*$/)
107
121
  if tag !~ pattern
108
122
  fail ArgumentError, "invalid value for \"tag\", must conform to the pattern #{pattern}."
@@ -111,6 +125,20 @@ module PulpContainerClient
111
125
  @tag = tag
112
126
  end
113
127
 
128
+ # Custom attribute writer method with validation
129
+ # @param [Object] digest Value to be assigned
130
+ def digest=(digest)
131
+ if digest.nil?
132
+ fail ArgumentError, 'digest cannot be nil'
133
+ end
134
+
135
+ if digest.to_s.length < 1
136
+ fail ArgumentError, 'invalid value for "digest", the character length must be great than or equal to 1.'
137
+ end
138
+
139
+ @digest = digest
140
+ end
141
+
114
142
  # Checks equality by comparing each attribute.
115
143
  # @param [Object] Object to be compared
116
144
  def ==(o)
@@ -66,6 +66,10 @@ module PulpContainerClient
66
66
  invalid_properties.push('invalid value for "tag", tag cannot be nil.')
67
67
  end
68
68
 
69
+ if @tag.to_s.length < 1
70
+ invalid_properties.push('invalid value for "tag", the character length must be great than or equal to 1.')
71
+ end
72
+
69
73
  pattern = Regexp.new(/^[A-Za-z0-9][A-Za-z0-9._-]*$/)
70
74
  if @tag !~ pattern
71
75
  invalid_properties.push("invalid value for \"tag\", must conform to the pattern #{pattern}.")
@@ -78,6 +82,7 @@ module PulpContainerClient
78
82
  # @return true if the model is valid
79
83
  def valid?
80
84
  return false if @tag.nil?
85
+ return false if @tag.to_s.length < 1
81
86
  return false if @tag !~ Regexp.new(/^[A-Za-z0-9][A-Za-z0-9._-]*$/)
82
87
  true
83
88
  end
@@ -89,6 +94,10 @@ module PulpContainerClient
89
94
  fail ArgumentError, 'tag cannot be nil'
90
95
  end
91
96
 
97
+ if tag.to_s.length < 1
98
+ fail ArgumentError, 'invalid value for "tag", the character length must be great than or equal to 1.'
99
+ end
100
+
92
101
  pattern = Regexp.new(/^[A-Za-z0-9][A-Za-z0-9._-]*$/)
93
102
  if tag !~ pattern
94
103
  fail ArgumentError, "invalid value for \"tag\", must conform to the pattern #{pattern}."
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.9.1'
14
+ VERSION = '2.10.0'
15
15
  end
@@ -32,7 +32,7 @@ describe 'ContainerContainerDistributionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "content_guard"' 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
@@ -44,31 +44,31 @@ describe 'ContainerContainerDistributionResponse' do
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "repository"' 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 "pulp_href"' 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 "name"' do
59
+ describe 'test attribute "base_path"' 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_href"' 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 "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 "content_guard"' 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 "pulp_labels"' do
41
+ describe 'test attribute "content_guard"' 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 "repository"' do
47
+ describe 'test attribute "name"' 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 "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 "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,13 +32,13 @@ describe 'ContainerContainerPushRepositoryResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepositoryResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "retain_repo_versions"' 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 "versions_href"' 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
@@ -50,31 +50,31 @@ describe 'ContainerContainerPushRepositoryResponse' do
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "latest_version_href"' do
53
+ describe 'test attribute "retain_repo_versions"' 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 "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 "name"' do
65
+ describe 'test attribute "versions_href"' 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 "description"' do
71
+ describe 'test attribute "latest_version_href"' 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 "pulp_created"' do
77
+ describe 'test attribute "pulp_href"' 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,7 +32,7 @@ describe 'ContainerContainerPushRepository' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepository)
33
33
  end
34
34
  end
35
- describe 'test attribute "retain_repo_versions"' do
35
+ describe 'test attribute "description"' 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
@@ -44,13 +44,13 @@ describe 'ContainerContainerPushRepository' do
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "name"' do
47
+ describe 'test attribute "retain_repo_versions"' 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 "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 "content_guard"' 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 "pulp_labels"' do
41
+ describe 'test attribute "content_guard"' 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 "repository"' do
47
+ describe 'test attribute "name"' 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 "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 "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,7 +32,7 @@ describe 'PatchedcontainerContainerPushRepository' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerPushRepository)
33
33
  end
34
34
  end
35
- describe 'test attribute "retain_repo_versions"' do
35
+ describe 'test attribute "description"' 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
@@ -44,13 +44,13 @@ describe 'PatchedcontainerContainerPushRepository' do
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "name"' do
47
+ describe 'test attribute "retain_repo_versions"' 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 "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.9.1
4
+ version: 2.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-23 00:00:00.000000000 Z
11
+ date: 2021-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -279,63 +279,63 @@ signing_key:
279
279
  specification_version: 4
280
280
  summary: Pulp 3 API Ruby Gem
281
281
  test_files:
282
- - spec/api/distributions_container_api_spec.rb
283
- - spec/api/repositories_container_push_api_spec.rb
284
- - spec/api/repositories_container_versions_api_spec.rb
282
+ - spec/api/content_blobs_api_spec.rb
283
+ - spec/api/pulp_container_namespaces_api_spec.rb
285
284
  - spec/api/repositories_container_push_versions_api_spec.rb
285
+ - spec/api/remotes_container_api_spec.rb
286
286
  - spec/api/content_manifests_api_spec.rb
287
- - spec/api/pulp_container_namespaces_api_spec.rb
288
- - spec/api/contentguards_content_redirect_api_spec.rb
287
+ - spec/api/repositories_container_api_spec.rb
288
+ - spec/api/repositories_container_versions_api_spec.rb
289
+ - spec/api/repositories_container_push_api_spec.rb
289
290
  - spec/api/token_api_spec.rb
290
291
  - spec/api/content_tags_api_spec.rb
291
- - spec/api/content_blobs_api_spec.rb
292
- - spec/api/repositories_container_api_spec.rb
293
- - spec/api/remotes_container_api_spec.rb
292
+ - spec/api/contentguards_content_redirect_api_spec.rb
293
+ - spec/api/distributions_container_api_spec.rb
294
294
  - spec/api_client_spec.rb
295
295
  - spec/configuration_spec.rb
296
- - spec/models/container_tag_response_spec.rb
297
- - spec/models/container_container_distribution_response_spec.rb
298
- - spec/models/container_container_push_repository_spec.rb
296
+ - spec/models/paginatedcontainer_tag_response_list_spec.rb
297
+ - spec/models/patchedcontainer_container_repository_spec.rb
298
+ - spec/models/patchedcontainer_container_remote_spec.rb
299
+ - spec/models/media_types_enum_spec.rb
300
+ - spec/models/patchedcontainer_container_push_repository_spec.rb
301
+ - spec/models/container_container_remote_response_spec.rb
299
302
  - spec/models/tag_image_spec.rb
300
- - spec/models/manifest_copy_spec.rb
301
- - spec/models/paginated_repository_version_response_list_spec.rb
302
- - spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb
303
+ - spec/models/tag_copy_spec.rb
303
304
  - spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
304
- - spec/models/repository_sync_url_spec.rb
305
+ - spec/models/container_container_remote_spec.rb
306
+ - spec/models/paginated_repository_version_response_list_spec.rb
307
+ - spec/models/remove_image_spec.rb
305
308
  - spec/models/paginatedcontainer_container_remote_response_list_spec.rb
309
+ - spec/models/un_tag_image_spec.rb
310
+ - spec/models/container_container_distribution_spec.rb
311
+ - spec/models/policy_enum_spec.rb
312
+ - spec/models/repository_sync_url_spec.rb
313
+ - spec/models/manifest_copy_spec.rb
314
+ - spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb
306
315
  - spec/models/repository_version_response_spec.rb
307
- - spec/models/paginatedcontainer_blob_response_list_spec.rb
316
+ - spec/models/container_content_redirect_content_guard_response_spec.rb
317
+ - spec/models/container_container_namespace_response_spec.rb
318
+ - spec/models/content_summary_response_spec.rb
319
+ - spec/models/container_container_repository_response_spec.rb
320
+ - spec/models/paginatedcontainer_container_repository_response_list_spec.rb
321
+ - spec/models/container_blob_response_spec.rb
322
+ - spec/models/container_content_redirect_content_guard_spec.rb
308
323
  - spec/models/oci_build_image_spec.rb
309
- - spec/models/patchedcontainer_container_repository_spec.rb
310
- - spec/models/media_types_enum_spec.rb
311
324
  - spec/models/container_container_push_repository_response_spec.rb
312
- - spec/models/container_container_namespace_spec.rb
313
325
  - spec/models/content_summary_spec.rb
314
- - spec/models/container_container_remote_response_spec.rb
315
- - spec/models/patchedcontainer_content_redirect_content_guard_spec.rb
316
- - spec/models/patchedcontainer_container_push_repository_spec.rb
317
- - spec/models/container_container_distribution_spec.rb
318
- - spec/models/recursive_manage_spec.rb
319
- - spec/models/container_blob_response_spec.rb
320
- - spec/models/container_container_namespace_response_spec.rb
321
- - spec/models/container_container_repository_spec.rb
322
- - spec/models/patchedcontainer_container_remote_spec.rb
323
- - spec/models/container_content_redirect_content_guard_response_spec.rb
324
- - spec/models/container_content_redirect_content_guard_spec.rb
325
- - spec/models/paginatedcontainer_container_distribution_response_list_spec.rb
326
- - spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
327
- - spec/models/paginatedcontainer_container_repository_response_list_spec.rb
328
326
  - spec/models/repository_version_spec.rb
327
+ - spec/models/container_container_namespace_spec.rb
329
328
  - spec/models/async_operation_response_spec.rb
330
- - spec/models/content_summary_response_spec.rb
331
- - spec/models/remove_image_spec.rb
332
- - spec/models/patchedcontainer_container_distribution_spec.rb
333
- - spec/models/paginatedcontainer_tag_response_list_spec.rb
334
- - spec/models/policy_enum_spec.rb
335
- - spec/models/paginatedcontainer_manifest_response_list_spec.rb
336
- - spec/models/container_container_repository_response_spec.rb
337
- - spec/models/container_container_remote_spec.rb
338
- - spec/models/tag_copy_spec.rb
339
- - spec/models/un_tag_image_spec.rb
329
+ - spec/models/paginatedcontainer_container_distribution_response_list_spec.rb
340
330
  - spec/models/container_manifest_response_spec.rb
331
+ - spec/models/container_container_repository_spec.rb
332
+ - spec/models/recursive_manage_spec.rb
333
+ - spec/models/paginatedcontainer_manifest_response_list_spec.rb
334
+ - spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
335
+ - spec/models/container_container_push_repository_spec.rb
336
+ - spec/models/container_tag_response_spec.rb
337
+ - spec/models/patchedcontainer_content_redirect_content_guard_spec.rb
338
+ - spec/models/paginatedcontainer_blob_response_list_spec.rb
339
+ - spec/models/container_container_distribution_response_spec.rb
340
+ - spec/models/patchedcontainer_container_distribution_spec.rb
341
341
  - spec/spec_helper.rb