pulp_container_client 2.3.0.dev01611547658 → 2.3.0.dev01612063510
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulp_container_client might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +10 -10
- data/docs/ContainerContainerDistribution.md +7 -5
- data/docs/ContainerContainerDistributionResponse.md +8 -6
- data/docs/ContainerContainerPushRepositoryResponse.md +2 -0
- data/docs/ContainerContainerRemote.md +4 -0
- data/docs/ContainerContainerRemoteResponse.md +4 -0
- data/docs/ContainerContainerRepository.md +3 -1
- data/docs/ContainerContainerRepositoryResponse.md +2 -0
- data/docs/{ContentguardsContentRedirectApi.md → ContentGuardsContentRedirectApi.md} +19 -19
- data/docs/PatchedcontainerContainerDistribution.md +7 -5
- data/docs/PatchedcontainerContainerRemote.md +4 -0
- data/docs/PatchedcontainerContainerRepository.md +3 -1
- data/lib/pulp_container_client.rb +1 -1
- data/lib/pulp_container_client/api/{contentguards_content_redirect_api.rb → content_guards_content_redirect_api.rb} +22 -22
- data/lib/pulp_container_client/models/container_container_distribution.rb +28 -19
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +35 -26
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +10 -1
- data/lib/pulp_container_client/models/container_container_remote.rb +21 -1
- data/lib/pulp_container_client/models/container_container_remote_response.rb +21 -1
- data/lib/pulp_container_client/models/container_container_repository.rb +10 -1
- data/lib/pulp_container_client/models/container_container_repository_response.rb +10 -1
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +28 -19
- data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +21 -1
- data/lib/pulp_container_client/models/patchedcontainer_container_repository.rb +10 -1
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/api/{contentguards_content_redirect_api_spec.rb → content_guards_content_redirect_api_spec.rb} +6 -6
- data/spec/models/container_container_distribution_response_spec.rb +10 -4
- data/spec/models/container_container_distribution_spec.rb +8 -2
- data/spec/models/container_container_push_repository_response_spec.rb +6 -0
- data/spec/models/container_container_remote_response_spec.rb +12 -0
- data/spec/models/container_container_remote_spec.rb +12 -0
- data/spec/models/container_container_repository_response_spec.rb +6 -0
- data/spec/models/container_container_repository_spec.rb +6 -0
- data/spec/models/patchedcontainer_container_distribution_spec.rb +8 -2
- data/spec/models/patchedcontainer_container_remote_spec.rb +12 -0
- data/spec/models/patchedcontainer_container_repository_spec.rb +6 -0
- metadata +43 -43
@@ -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
|
@@ -13,22 +13,22 @@ OpenAPI Generator version: 4.2.3
|
|
13
13
|
require 'spec_helper'
|
14
14
|
require 'json'
|
15
15
|
|
16
|
-
# Unit tests for PulpContainerClient::
|
16
|
+
# Unit tests for PulpContainerClient::ContentGuardsContentRedirectApi
|
17
17
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
18
18
|
# Please update as you see appropriate
|
19
|
-
describe '
|
19
|
+
describe 'ContentGuardsContentRedirectApi' do
|
20
20
|
before do
|
21
21
|
# run before each test
|
22
|
-
@api_instance = PulpContainerClient::
|
22
|
+
@api_instance = PulpContainerClient::ContentGuardsContentRedirectApi.new
|
23
23
|
end
|
24
24
|
|
25
25
|
after do
|
26
26
|
# run after each test
|
27
27
|
end
|
28
28
|
|
29
|
-
describe 'test an instance of
|
30
|
-
it 'should create an instance of
|
31
|
-
expect(@api_instance).to be_instance_of(PulpContainerClient::
|
29
|
+
describe 'test an instance of ContentGuardsContentRedirectApi' do
|
30
|
+
it 'should create an instance of ContentGuardsContentRedirectApi' do
|
31
|
+
expect(@api_instance).to be_instance_of(PulpContainerClient::ContentGuardsContentRedirectApi)
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
@@ -38,13 +38,13 @@ describe 'ContainerContainerDistributionResponse' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
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 "
|
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
|
@@ -56,13 +56,13 @@ describe 'ContainerContainerDistributionResponse' do
|
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
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 "
|
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
|
@@ -74,6 +74,12 @@ describe 'ContainerContainerDistributionResponse' do
|
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
+
describe 'test attribute "pulp_labels"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
77
83
|
describe 'test attribute "registry_path"' do
|
78
84
|
it 'should work' do
|
79
85
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -38,7 +38,7 @@ describe 'ContainerContainerDistribution' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
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
|
@@ -50,7 +50,7 @@ describe 'ContainerContainerDistribution' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "content_guard"' 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
|
@@ -62,4 +62,10 @@ describe 'ContainerContainerDistribution' do
|
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
+
describe 'test attribute "pulp_labels"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
65
71
|
end
|
@@ -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
|
@@ -38,7 +38,7 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
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
|
@@ -50,7 +50,7 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "content_guard"' 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
|
@@ -62,4 +62,10 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
+
describe 'test attribute "pulp_labels"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
65
71
|
end
|
@@ -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.
|
4
|
+
version: 2.3.0.dev01612063510
|
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-
|
11
|
+
date: 2021-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -90,11 +90,11 @@ files:
|
|
90
90
|
- docs/ContainerManifestResponse.md
|
91
91
|
- docs/ContainerTagResponse.md
|
92
92
|
- docs/ContentBlobsApi.md
|
93
|
+
- docs/ContentGuardsContentRedirectApi.md
|
93
94
|
- docs/ContentManifestsApi.md
|
94
95
|
- docs/ContentSummary.md
|
95
96
|
- docs/ContentSummaryResponse.md
|
96
97
|
- docs/ContentTagsApi.md
|
97
|
-
- docs/ContentguardsContentRedirectApi.md
|
98
98
|
- docs/DistributionsContainerApi.md
|
99
99
|
- docs/ManifestCopy.md
|
100
100
|
- docs/OCIBuildImage.md
|
@@ -129,9 +129,9 @@ files:
|
|
129
129
|
- git_push.sh
|
130
130
|
- lib/pulp_container_client.rb
|
131
131
|
- lib/pulp_container_client/api/content_blobs_api.rb
|
132
|
+
- lib/pulp_container_client/api/content_guards_content_redirect_api.rb
|
132
133
|
- lib/pulp_container_client/api/content_manifests_api.rb
|
133
134
|
- lib/pulp_container_client/api/content_tags_api.rb
|
134
|
-
- lib/pulp_container_client/api/contentguards_content_redirect_api.rb
|
135
135
|
- lib/pulp_container_client/api/distributions_container_api.rb
|
136
136
|
- lib/pulp_container_client/api/pulp_container_namespaces_api.rb
|
137
137
|
- lib/pulp_container_client/api/remotes_container_api.rb
|
@@ -186,9 +186,9 @@ files:
|
|
186
186
|
- lib/pulp_container_client/version.rb
|
187
187
|
- pulp_container_client.gemspec
|
188
188
|
- spec/api/content_blobs_api_spec.rb
|
189
|
+
- spec/api/content_guards_content_redirect_api_spec.rb
|
189
190
|
- spec/api/content_manifests_api_spec.rb
|
190
191
|
- spec/api/content_tags_api_spec.rb
|
191
|
-
- spec/api/contentguards_content_redirect_api_spec.rb
|
192
192
|
- spec/api/distributions_container_api_spec.rb
|
193
193
|
- spec/api/pulp_container_namespaces_api_spec.rb
|
194
194
|
- spec/api/remotes_container_api_spec.rb
|
@@ -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/
|
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/
|
272
|
+
- spec/api/content_manifests_api_spec.rb
|
273
|
+
- spec/api/content_guards_content_redirect_api_spec.rb
|
274
|
+
- spec/api/pulp_container_namespaces_api_spec.rb
|
276
275
|
- spec/api/token_api_spec.rb
|
277
|
-
- spec/api/
|
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/
|
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/
|
283
|
-
- spec/models/
|
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/
|
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/
|
298
|
-
- spec/models/
|
299
|
-
- spec/models/
|
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/
|
313
|
-
- spec/models/
|
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/
|
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
|