pulp_container_client 2.3.0.dev01611374760 → 2.3.0.dev01611890753

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 (34) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +7 -5
  4. data/docs/ContainerContainerDistributionResponse.md +10 -8
  5. data/docs/ContainerContainerPushRepositoryResponse.md +2 -0
  6. data/docs/ContainerContainerRemote.md +4 -0
  7. data/docs/ContainerContainerRemoteResponse.md +4 -0
  8. data/docs/ContainerContainerRepository.md +3 -1
  9. data/docs/ContainerContainerRepositoryResponse.md +2 -0
  10. data/docs/PatchedcontainerContainerDistribution.md +7 -5
  11. data/docs/PatchedcontainerContainerRemote.md +4 -0
  12. data/docs/PatchedcontainerContainerRepository.md +3 -1
  13. data/lib/pulp_container_client/models/container_container_distribution.rb +28 -19
  14. data/lib/pulp_container_client/models/container_container_distribution_response.rb +41 -32
  15. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +10 -1
  16. data/lib/pulp_container_client/models/container_container_remote.rb +21 -1
  17. data/lib/pulp_container_client/models/container_container_remote_response.rb +21 -1
  18. data/lib/pulp_container_client/models/container_container_repository.rb +10 -1
  19. data/lib/pulp_container_client/models/container_container_repository_response.rb +10 -1
  20. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +28 -19
  21. data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +21 -1
  22. data/lib/pulp_container_client/models/patchedcontainer_container_repository.rb +10 -1
  23. data/lib/pulp_container_client/version.rb +1 -1
  24. data/spec/models/container_container_distribution_response_spec.rb +11 -5
  25. data/spec/models/container_container_distribution_spec.rb +9 -3
  26. data/spec/models/container_container_push_repository_response_spec.rb +6 -0
  27. data/spec/models/container_container_remote_response_spec.rb +12 -0
  28. data/spec/models/container_container_remote_spec.rb +12 -0
  29. data/spec/models/container_container_repository_response_spec.rb +6 -0
  30. data/spec/models/container_container_repository_spec.rb +6 -0
  31. data/spec/models/patchedcontainer_container_distribution_spec.rb +9 -3
  32. data/spec/models/patchedcontainer_container_remote_spec.rb +12 -0
  33. data/spec/models/patchedcontainer_container_repository_spec.rb +6 -0
  34. metadata +40 -40
@@ -42,6 +42,8 @@ module PulpContainerClient
42
42
  # The password to be used for authentication when syncing.
43
43
  attr_accessor :password
44
44
 
45
+ attr_accessor :pulp_labels
46
+
45
47
  # Total number of simultaneous connections.
46
48
  attr_accessor :download_concurrency
47
49
 
@@ -60,6 +62,9 @@ module PulpContainerClient
60
62
  # aiohttp.ClientTimeout.sock_read (q.v.) for download-connections.
61
63
  attr_accessor :sock_read_timeout
62
64
 
65
+ # Limits total download rate in requests per second
66
+ attr_accessor :rate_limit
67
+
63
68
  # Name of the upstream repository
64
69
  attr_accessor :upstream_name
65
70
 
@@ -81,12 +86,14 @@ module PulpContainerClient
81
86
  :'proxy_url' => :'proxy_url',
82
87
  :'username' => :'username',
83
88
  :'password' => :'password',
89
+ :'pulp_labels' => :'pulp_labels',
84
90
  :'download_concurrency' => :'download_concurrency',
85
91
  :'policy' => :'policy',
86
92
  :'total_timeout' => :'total_timeout',
87
93
  :'connect_timeout' => :'connect_timeout',
88
94
  :'sock_connect_timeout' => :'sock_connect_timeout',
89
95
  :'sock_read_timeout' => :'sock_read_timeout',
96
+ :'rate_limit' => :'rate_limit',
90
97
  :'upstream_name' => :'upstream_name',
91
98
  :'include_tags' => :'include_tags',
92
99
  :'exclude_tags' => :'exclude_tags'
@@ -105,12 +112,14 @@ module PulpContainerClient
105
112
  :'proxy_url' => :'String',
106
113
  :'username' => :'String',
107
114
  :'password' => :'String',
115
+ :'pulp_labels' => :'Object',
108
116
  :'download_concurrency' => :'Integer',
109
117
  :'policy' => :'PolicyEnum',
110
118
  :'total_timeout' => :'Float',
111
119
  :'connect_timeout' => :'Float',
112
120
  :'sock_connect_timeout' => :'Float',
113
121
  :'sock_read_timeout' => :'Float',
122
+ :'rate_limit' => :'Integer',
114
123
  :'upstream_name' => :'String',
115
124
  :'include_tags' => :'Array<String>',
116
125
  :'exclude_tags' => :'Array<String>'
@@ -130,6 +139,7 @@ module PulpContainerClient
130
139
  :'connect_timeout',
131
140
  :'sock_connect_timeout',
132
141
  :'sock_read_timeout',
142
+ :'rate_limit',
133
143
  :'include_tags',
134
144
  :'exclude_tags'
135
145
  ])
@@ -186,6 +196,10 @@ module PulpContainerClient
186
196
  self.password = attributes[:'password']
187
197
  end
188
198
 
199
+ if attributes.key?(:'pulp_labels')
200
+ self.pulp_labels = attributes[:'pulp_labels']
201
+ end
202
+
189
203
  if attributes.key?(:'download_concurrency')
190
204
  self.download_concurrency = attributes[:'download_concurrency']
191
205
  end
@@ -210,6 +224,10 @@ module PulpContainerClient
210
224
  self.sock_read_timeout = attributes[:'sock_read_timeout']
211
225
  end
212
226
 
227
+ if attributes.key?(:'rate_limit')
228
+ self.rate_limit = attributes[:'rate_limit']
229
+ end
230
+
213
231
  if attributes.key?(:'upstream_name')
214
232
  self.upstream_name = attributes[:'upstream_name']
215
233
  end
@@ -329,12 +347,14 @@ module PulpContainerClient
329
347
  proxy_url == o.proxy_url &&
330
348
  username == o.username &&
331
349
  password == o.password &&
350
+ pulp_labels == o.pulp_labels &&
332
351
  download_concurrency == o.download_concurrency &&
333
352
  policy == o.policy &&
334
353
  total_timeout == o.total_timeout &&
335
354
  connect_timeout == o.connect_timeout &&
336
355
  sock_connect_timeout == o.sock_connect_timeout &&
337
356
  sock_read_timeout == o.sock_read_timeout &&
357
+ rate_limit == o.rate_limit &&
338
358
  upstream_name == o.upstream_name &&
339
359
  include_tags == o.include_tags &&
340
360
  exclude_tags == o.exclude_tags
@@ -349,7 +369,7 @@ module PulpContainerClient
349
369
  # Calculates hash code according to all attributes.
350
370
  # @return [Integer] Hash code
351
371
  def hash
352
- [name, url, ca_cert, client_cert, client_key, tls_validation, proxy_url, username, password, download_concurrency, policy, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, upstream_name, include_tags, exclude_tags].hash
372
+ [name, url, ca_cert, client_cert, client_key, tls_validation, proxy_url, username, password, pulp_labels, download_concurrency, policy, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, rate_limit, upstream_name, include_tags, exclude_tags].hash
353
373
  end
354
374
 
355
375
  # Builds the object from hash
@@ -15,6 +15,8 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Repositories.
17
17
  class PatchedcontainerContainerRepository
18
+ attr_accessor :pulp_labels
19
+
18
20
  # A unique name for this repository.
19
21
  attr_accessor :name
20
22
 
@@ -26,6 +28,7 @@ module PulpContainerClient
26
28
  # Attribute mapping from ruby-style variable name to JSON key.
27
29
  def self.attribute_map
28
30
  {
31
+ :'pulp_labels' => :'pulp_labels',
29
32
  :'name' => :'name',
30
33
  :'description' => :'description',
31
34
  :'remote' => :'remote'
@@ -35,6 +38,7 @@ module PulpContainerClient
35
38
  # Attribute type mapping.
36
39
  def self.openapi_types
37
40
  {
41
+ :'pulp_labels' => :'Object',
38
42
  :'name' => :'String',
39
43
  :'description' => :'String',
40
44
  :'remote' => :'String'
@@ -64,6 +68,10 @@ module PulpContainerClient
64
68
  h[k.to_sym] = v
65
69
  }
66
70
 
71
+ if attributes.key?(:'pulp_labels')
72
+ self.pulp_labels = attributes[:'pulp_labels']
73
+ end
74
+
67
75
  if attributes.key?(:'name')
68
76
  self.name = attributes[:'name']
69
77
  end
@@ -95,6 +103,7 @@ module PulpContainerClient
95
103
  def ==(o)
96
104
  return true if self.equal?(o)
97
105
  self.class == o.class &&
106
+ pulp_labels == o.pulp_labels &&
98
107
  name == o.name &&
99
108
  description == o.description &&
100
109
  remote == o.remote
@@ -109,7 +118,7 @@ module PulpContainerClient
109
118
  # Calculates hash code according to all attributes.
110
119
  # @return [Integer] Hash code
111
120
  def hash
112
- [name, description, remote].hash
121
+ [pulp_labels, name, description, remote].hash
113
122
  end
114
123
 
115
124
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.3
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.3.0.dev01611374760'
14
+ VERSION = '2.3.0.dev01611890753'
15
15
  end
@@ -32,31 +32,31 @@ describe 'ContainerContainerDistributionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_href"' 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 "repository"' 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 "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 "repository"' 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 "pulp_href"' 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
@@ -68,6 +68,12 @@ describe 'ContainerContainerDistributionResponse' do
68
68
  end
69
69
  end
70
70
 
71
+ describe 'test attribute "content_guard"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
71
77
  describe 'test attribute "name"' do
72
78
  it 'should work' do
73
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -32,19 +32,19 @@ 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 "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 "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 "base_path"' 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
@@ -56,6 +56,12 @@ describe 'ContainerContainerDistribution' do
56
56
  end
57
57
  end
58
58
 
59
+ describe 'test attribute "content_guard"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
59
65
  describe 'test attribute "name"' do
60
66
  it 'should work' do
61
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -50,6 +50,12 @@ describe 'ContainerContainerPushRepositoryResponse' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "pulp_labels"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
53
59
  describe 'test attribute "latest_version_href"' do
54
60
  it 'should work' do
55
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -98,6 +98,12 @@ describe 'ContainerContainerRemoteResponse' do
98
98
  end
99
99
  end
100
100
 
101
+ describe 'test attribute "pulp_labels"' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
101
107
  describe 'test attribute "pulp_last_updated"' do
102
108
  it 'should work' do
103
109
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -140,6 +146,12 @@ describe 'ContainerContainerRemoteResponse' do
140
146
  end
141
147
  end
142
148
 
149
+ describe 'test attribute "rate_limit"' do
150
+ it 'should work' do
151
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
152
+ end
153
+ end
154
+
143
155
  describe 'test attribute "upstream_name"' do
144
156
  it 'should work' do
145
157
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -86,6 +86,12 @@ describe 'ContainerContainerRemote' do
86
86
  end
87
87
  end
88
88
 
89
+ describe 'test attribute "pulp_labels"' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
89
95
  describe 'test attribute "download_concurrency"' do
90
96
  it 'should work' do
91
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -122,6 +128,12 @@ describe 'ContainerContainerRemote' do
122
128
  end
123
129
  end
124
130
 
131
+ describe 'test attribute "rate_limit"' do
132
+ it 'should work' do
133
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
+ end
135
+ end
136
+
125
137
  describe 'test attribute "upstream_name"' do
126
138
  it 'should work' do
127
139
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -50,6 +50,12 @@ describe 'ContainerContainerRepositoryResponse' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "pulp_labels"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
53
59
  describe 'test attribute "latest_version_href"' do
54
60
  it 'should work' do
55
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -32,6 +32,12 @@ describe 'ContainerContainerRepository' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerRepository)
33
33
  end
34
34
  end
35
+ describe 'test attribute "pulp_labels"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
35
41
  describe 'test attribute "name"' do
36
42
  it 'should work' do
37
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -32,19 +32,19 @@ 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 "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 "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 "base_path"' 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
@@ -56,6 +56,12 @@ describe 'PatchedcontainerContainerDistribution' do
56
56
  end
57
57
  end
58
58
 
59
+ describe 'test attribute "content_guard"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
59
65
  describe 'test attribute "name"' do
60
66
  it 'should work' do
61
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -86,6 +86,12 @@ describe 'PatchedcontainerContainerRemote' do
86
86
  end
87
87
  end
88
88
 
89
+ describe 'test attribute "pulp_labels"' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
89
95
  describe 'test attribute "download_concurrency"' do
90
96
  it 'should work' do
91
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -122,6 +128,12 @@ describe 'PatchedcontainerContainerRemote' do
122
128
  end
123
129
  end
124
130
 
131
+ describe 'test attribute "rate_limit"' do
132
+ it 'should work' do
133
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
+ end
135
+ end
136
+
125
137
  describe 'test attribute "upstream_name"' do
126
138
  it 'should work' do
127
139
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -32,6 +32,12 @@ describe 'PatchedcontainerContainerRepository' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerRepository)
33
33
  end
34
34
  end
35
+ describe 'test attribute "pulp_labels"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
35
41
  describe 'test attribute "name"' do
36
42
  it 'should work' do
37
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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.3.0.dev01611374760
4
+ version: 2.3.0.dev01611890753
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-01-23 00:00:00.000000000 Z
11
+ date: 2021-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -264,58 +264,58 @@ signing_key:
264
264
  specification_version: 4
265
265
  summary: Pulp 3 API Ruby Gem
266
266
  test_files:
267
- - spec/api/content_blobs_api_spec.rb
268
- - spec/api/distributions_container_api_spec.rb
269
- - spec/api/content_manifests_api_spec.rb
270
- - spec/api/repositories_container_versions_api_spec.rb
271
267
  - spec/api/content_tags_api_spec.rb
272
- - spec/api/pulp_container_namespaces_api_spec.rb
268
+ - spec/api/repositories_container_versions_api_spec.rb
273
269
  - spec/api/remotes_container_api_spec.rb
270
+ - spec/api/content_blobs_api_spec.rb
274
271
  - spec/api/repositories_container_api_spec.rb
275
- - spec/api/repositories_container_push_api_spec.rb
276
- - spec/api/token_api_spec.rb
277
272
  - spec/api/contentguards_content_redirect_api_spec.rb
273
+ - spec/api/content_manifests_api_spec.rb
274
+ - spec/api/pulp_container_namespaces_api_spec.rb
275
+ - spec/api/token_api_spec.rb
276
+ - spec/api/repositories_container_push_api_spec.rb
277
+ - spec/api/distributions_container_api_spec.rb
278
278
  - spec/api_client_spec.rb
279
279
  - spec/configuration_spec.rb
280
- - spec/models/content_summary_spec.rb
280
+ - spec/models/tag_copy_spec.rb
281
+ - spec/models/repository_sync_url_spec.rb
282
+ - spec/models/manifest_copy_spec.rb
283
+ - spec/models/container_container_repository_response_spec.rb
284
+ - spec/models/patchedcontainer_container_remote_spec.rb
285
+ - spec/models/policy_enum_spec.rb
281
286
  - spec/models/container_tag_response_spec.rb
282
- - spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
283
- - spec/models/container_container_namespace_response_spec.rb
284
- - spec/models/repository_version_spec.rb
285
- - spec/models/content_summary_response_spec.rb
286
- - spec/models/un_tag_image_spec.rb
287
+ - spec/models/paginatedcontainer_container_distribution_response_list_spec.rb
288
+ - spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
287
289
  - spec/models/patchedcontainer_container_distribution_spec.rb
288
- - spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb
289
- - spec/models/patchedcontainer_container_remote_spec.rb
290
- - spec/models/container_container_remote_spec.rb
291
- - spec/models/container_container_distribution_response_spec.rb
292
290
  - spec/models/paginatedcontainer_manifest_response_list_spec.rb
293
- - spec/models/container_container_push_repository_response_spec.rb
291
+ - spec/models/container_container_remote_response_spec.rb
292
+ - spec/models/paginatedcontainer_blob_response_list_spec.rb
293
+ - spec/models/tag_image_spec.rb
294
+ - spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb
295
+ - spec/models/container_container_namespace_spec.rb
296
+ - spec/models/container_manifest_response_spec.rb
294
297
  - spec/models/repository_version_response_spec.rb
295
- - spec/models/patchedcontainer_content_redirect_content_guard_spec.rb
296
298
  - spec/models/paginatedcontainer_container_remote_response_list_spec.rb
297
- - spec/models/paginatedcontainer_container_repository_response_list_spec.rb
298
- - spec/models/paginatedcontainer_container_distribution_response_list_spec.rb
299
- - spec/models/repository_sync_url_spec.rb
300
- - spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
301
- - spec/models/container_container_repository_response_spec.rb
302
- - spec/models/patchedcontainer_container_repository_spec.rb
303
- - spec/models/container_blob_response_spec.rb
304
- - spec/models/tag_copy_spec.rb
305
- - spec/models/async_operation_response_spec.rb
306
- - spec/models/policy_enum_spec.rb
307
- - spec/models/manifest_copy_spec.rb
299
+ - spec/models/container_content_redirect_content_guard_spec.rb
300
+ - spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
301
+ - spec/models/container_container_push_repository_response_spec.rb
308
302
  - spec/models/container_container_repository_spec.rb
303
+ - spec/models/async_operation_response_spec.rb
309
304
  - spec/models/recursive_manage_spec.rb
305
+ - spec/models/container_container_distribution_response_spec.rb
310
306
  - spec/models/paginatedcontainer_tag_response_list_spec.rb
307
+ - spec/models/content_summary_response_spec.rb
308
+ - spec/models/paginatedcontainer_container_repository_response_list_spec.rb
309
+ - spec/models/container_container_distribution_spec.rb
310
+ - spec/models/patchedcontainer_content_redirect_content_guard_spec.rb
311
311
  - spec/models/container_content_redirect_content_guard_response_spec.rb
312
- - spec/models/oci_build_image_spec.rb
313
- - spec/models/tag_image_spec.rb
314
- - spec/models/container_content_redirect_content_guard_spec.rb
315
- - spec/models/container_container_remote_response_spec.rb
316
- - spec/models/container_manifest_response_spec.rb
317
- - spec/models/container_container_namespace_spec.rb
318
- - spec/models/paginatedcontainer_blob_response_list_spec.rb
312
+ - spec/models/container_container_remote_spec.rb
313
+ - spec/models/container_blob_response_spec.rb
319
314
  - spec/models/paginated_repository_version_response_list_spec.rb
320
- - spec/models/container_container_distribution_spec.rb
315
+ - spec/models/content_summary_spec.rb
316
+ - spec/models/repository_version_spec.rb
317
+ - spec/models/un_tag_image_spec.rb
318
+ - spec/models/patchedcontainer_container_repository_spec.rb
319
+ - spec/models/oci_build_image_spec.rb
320
+ - spec/models/container_container_namespace_response_spec.rb
321
321
  - spec/spec_helper.rb