pulp_container_client 2.8.0 → 2.8.4
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.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ContainerContainerDistribution.md +4 -4
- data/docs/ContainerContainerDistributionResponse.md +6 -6
- data/docs/ContainerContainerPushRepository.md +5 -5
- data/docs/ContainerContainerPushRepositoryResponse.md +9 -9
- data/docs/ContainerContainerRepository.md +3 -3
- data/docs/ContainerContainerRepositoryResponse.md +3 -3
- data/docs/PatchedcontainerContainerDistribution.md +4 -4
- data/docs/PatchedcontainerContainerPushRepository.md +5 -5
- data/docs/PatchedcontainerContainerRepository.md +3 -3
- data/lib/pulp_container_client/models/container_container_distribution.rb +15 -15
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +25 -25
- data/lib/pulp_container_client/models/container_container_push_repository.rb +32 -32
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +46 -46
- data/lib/pulp_container_client/models/container_container_repository.rb +17 -16
- data/lib/pulp_container_client/models/container_container_repository_response.rb +17 -16
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +15 -15
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +30 -30
- data/lib/pulp_container_client/models/patchedcontainer_container_repository.rb +17 -16
- data/lib/pulp_container_client/version.rb +1 -1
- data/pulp_container_client.gemspec +1 -1
- data/spec/models/container_container_distribution_response_spec.rb +5 -5
- data/spec/models/container_container_distribution_spec.rb +2 -2
- data/spec/models/container_container_push_repository_response_spec.rb +8 -8
- data/spec/models/container_container_push_repository_spec.rb +3 -3
- data/spec/models/container_container_repository_response_spec.rb +1 -1
- data/spec/models/container_container_repository_spec.rb +1 -1
- data/spec/models/patchedcontainer_container_distribution_spec.rb +2 -2
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +3 -3
- data/spec/models/patchedcontainer_container_repository_spec.rb +1 -1
- metadata +54 -48
|
@@ -24,8 +24,9 @@ module PulpContainerClient
|
|
|
24
24
|
attr_accessor :description
|
|
25
25
|
|
|
26
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 :
|
|
27
|
+
attr_accessor :retain_repo_versions
|
|
28
28
|
|
|
29
|
+
# An optional remote to use by default when syncing.
|
|
29
30
|
attr_accessor :remote
|
|
30
31
|
|
|
31
32
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
@@ -34,7 +35,7 @@ module PulpContainerClient
|
|
|
34
35
|
:'pulp_labels' => :'pulp_labels',
|
|
35
36
|
:'name' => :'name',
|
|
36
37
|
:'description' => :'description',
|
|
37
|
-
:'
|
|
38
|
+
:'retain_repo_versions' => :'retain_repo_versions',
|
|
38
39
|
:'remote' => :'remote'
|
|
39
40
|
}
|
|
40
41
|
end
|
|
@@ -45,7 +46,7 @@ module PulpContainerClient
|
|
|
45
46
|
:'pulp_labels' => :'Object',
|
|
46
47
|
:'name' => :'String',
|
|
47
48
|
:'description' => :'String',
|
|
48
|
-
:'
|
|
49
|
+
:'retain_repo_versions' => :'Integer',
|
|
49
50
|
:'remote' => :'String'
|
|
50
51
|
}
|
|
51
52
|
end
|
|
@@ -54,7 +55,7 @@ module PulpContainerClient
|
|
|
54
55
|
def self.openapi_nullable
|
|
55
56
|
Set.new([
|
|
56
57
|
:'description',
|
|
57
|
-
:'
|
|
58
|
+
:'retain_repo_versions',
|
|
58
59
|
:'remote'
|
|
59
60
|
])
|
|
60
61
|
end
|
|
@@ -86,8 +87,8 @@ module PulpContainerClient
|
|
|
86
87
|
self.description = attributes[:'description']
|
|
87
88
|
end
|
|
88
89
|
|
|
89
|
-
if attributes.key?(:'
|
|
90
|
-
self.
|
|
90
|
+
if attributes.key?(:'retain_repo_versions')
|
|
91
|
+
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
91
92
|
end
|
|
92
93
|
|
|
93
94
|
if attributes.key?(:'remote')
|
|
@@ -99,8 +100,8 @@ module PulpContainerClient
|
|
|
99
100
|
# @return Array for valid properties with the reasons
|
|
100
101
|
def list_invalid_properties
|
|
101
102
|
invalid_properties = Array.new
|
|
102
|
-
if !@
|
|
103
|
-
invalid_properties.push('invalid value for "
|
|
103
|
+
if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
|
104
|
+
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
|
104
105
|
end
|
|
105
106
|
|
|
106
107
|
invalid_properties
|
|
@@ -109,18 +110,18 @@ module PulpContainerClient
|
|
|
109
110
|
# Check to see if the all the properties in the model are valid
|
|
110
111
|
# @return true if the model is valid
|
|
111
112
|
def valid?
|
|
112
|
-
return false if !@
|
|
113
|
+
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
|
113
114
|
true
|
|
114
115
|
end
|
|
115
116
|
|
|
116
117
|
# Custom attribute writer method with validation
|
|
117
|
-
# @param [Object]
|
|
118
|
-
def
|
|
119
|
-
if !
|
|
120
|
-
fail ArgumentError, 'invalid value for "
|
|
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.'
|
|
121
122
|
end
|
|
122
123
|
|
|
123
|
-
@
|
|
124
|
+
@retain_repo_versions = retain_repo_versions
|
|
124
125
|
end
|
|
125
126
|
|
|
126
127
|
# Checks equality by comparing each attribute.
|
|
@@ -131,7 +132,7 @@ module PulpContainerClient
|
|
|
131
132
|
pulp_labels == o.pulp_labels &&
|
|
132
133
|
name == o.name &&
|
|
133
134
|
description == o.description &&
|
|
134
|
-
|
|
135
|
+
retain_repo_versions == o.retain_repo_versions &&
|
|
135
136
|
remote == o.remote
|
|
136
137
|
end
|
|
137
138
|
|
|
@@ -144,7 +145,7 @@ module PulpContainerClient
|
|
|
144
145
|
# Calculates hash code according to all attributes.
|
|
145
146
|
# @return [Integer] Hash code
|
|
146
147
|
def hash
|
|
147
|
-
[pulp_labels, name, description,
|
|
148
|
+
[pulp_labels, name, description, retain_repo_versions, remote].hash
|
|
148
149
|
end
|
|
149
150
|
|
|
150
151
|
# Builds the object from hash
|
|
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
|
|
|
27
27
|
s.license = 'GPL-2.0+'
|
|
28
28
|
s.required_ruby_version = ">= 1.9"
|
|
29
29
|
|
|
30
|
-
s.add_runtime_dependency 'faraday', '
|
|
30
|
+
s.add_runtime_dependency 'faraday', '~> 1.0', '< 1.9.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'
|
|
@@ -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 "
|
|
35
|
+
describe 'test attribute "repository"' 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,25 +44,25 @@ describe 'ContainerContainerDistributionResponse' do
|
|
|
44
44
|
end
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
-
describe 'test attribute "
|
|
47
|
+
describe 'test attribute "pulp_href"' do
|
|
48
48
|
it 'should work' do
|
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
50
|
end
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
-
describe 'test attribute "
|
|
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 "
|
|
59
|
+
describe 'test attribute "pulp_created"' 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 "name"' do
|
|
66
66
|
it 'should work' do
|
|
67
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
68
68
|
end
|
|
@@ -32,7 +32,7 @@ describe 'ContainerContainerDistribution' do
|
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistribution)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
|
-
describe 'test attribute "
|
|
35
|
+
describe 'test attribute "repository"' 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,7 +44,7 @@ describe 'ContainerContainerDistribution' do
|
|
|
44
44
|
end
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
-
describe 'test attribute "
|
|
47
|
+
describe 'test attribute "base_path"' 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
|
|
@@ -32,49 +32,49 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepositoryResponse)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
|
-
describe 'test attribute "
|
|
35
|
+
describe 'test attribute "latest_version_href"' do
|
|
36
36
|
it 'should work' do
|
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
describe 'test attribute "
|
|
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 "
|
|
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 "
|
|
53
|
+
describe 'test attribute "versions_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 "
|
|
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 "
|
|
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 "
|
|
71
|
+
describe 'test attribute "pulp_created"' 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 "
|
|
77
|
+
describe 'test attribute "name"' do
|
|
78
78
|
it 'should work' do
|
|
79
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
80
80
|
end
|
|
@@ -38,19 +38,19 @@ describe 'ContainerContainerPushRepository' do
|
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
describe 'test attribute "
|
|
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 "
|
|
47
|
+
describe 'test attribute "description"' 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 "
|
|
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
|
|
@@ -74,7 +74,7 @@ describe 'ContainerContainerRepositoryResponse' do
|
|
|
74
74
|
end
|
|
75
75
|
end
|
|
76
76
|
|
|
77
|
-
describe 'test attribute "
|
|
77
|
+
describe 'test attribute "retain_repo_versions"' 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
|
|
@@ -50,7 +50,7 @@ describe 'ContainerContainerRepository' do
|
|
|
50
50
|
end
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
-
describe 'test attribute "
|
|
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
|
|
@@ -32,7 +32,7 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerDistribution)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
|
-
describe 'test attribute "
|
|
35
|
+
describe 'test attribute "repository"' 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,7 +44,7 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
|
44
44
|
end
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
-
describe 'test attribute "
|
|
47
|
+
describe 'test attribute "base_path"' 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
|
|
@@ -38,19 +38,19 @@ describe 'PatchedcontainerContainerPushRepository' do
|
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
describe 'test attribute "
|
|
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 "
|
|
47
|
+
describe 'test attribute "description"' 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 "
|
|
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
|
|
@@ -50,7 +50,7 @@ describe 'PatchedcontainerContainerRepository' do
|
|
|
50
50
|
end
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
-
describe 'test attribute "
|
|
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
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pulp_container_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.8.
|
|
4
|
+
version: 2.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-01-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.0'
|
|
20
|
+
- - "<"
|
|
18
21
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
22
|
+
version: 1.9.0
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - "~>"
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '1.0'
|
|
30
|
+
- - "<"
|
|
25
31
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
32
|
+
version: 1.9.0
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: json
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -279,63 +285,63 @@ signing_key:
|
|
|
279
285
|
specification_version: 4
|
|
280
286
|
summary: Pulp 3 API Ruby Gem
|
|
281
287
|
test_files:
|
|
282
|
-
- spec/api/
|
|
283
|
-
- spec/api/content_blobs_api_spec.rb
|
|
288
|
+
- spec/api/content_manifests_api_spec.rb
|
|
284
289
|
- spec/api/contentguards_content_redirect_api_spec.rb
|
|
285
|
-
- spec/api/
|
|
290
|
+
- spec/api/remotes_container_api_spec.rb
|
|
286
291
|
- spec/api/repositories_container_push_versions_api_spec.rb
|
|
287
292
|
- spec/api/repositories_container_versions_api_spec.rb
|
|
288
|
-
- spec/api/remotes_container_api_spec.rb
|
|
289
|
-
- spec/api/pulp_container_namespaces_api_spec.rb
|
|
290
293
|
- spec/api/content_tags_api_spec.rb
|
|
291
|
-
- spec/api/
|
|
292
|
-
- spec/api/token_api_spec.rb
|
|
294
|
+
- spec/api/pulp_container_namespaces_api_spec.rb
|
|
293
295
|
- spec/api/repositories_container_api_spec.rb
|
|
296
|
+
- spec/api/repositories_container_push_api_spec.rb
|
|
297
|
+
- spec/api/token_api_spec.rb
|
|
298
|
+
- spec/api/content_blobs_api_spec.rb
|
|
299
|
+
- spec/api/distributions_container_api_spec.rb
|
|
294
300
|
- spec/api_client_spec.rb
|
|
295
301
|
- spec/configuration_spec.rb
|
|
296
|
-
- spec/models/
|
|
297
|
-
- spec/models/
|
|
298
|
-
- spec/models/
|
|
299
|
-
- spec/models/
|
|
300
|
-
- spec/models/
|
|
302
|
+
- spec/models/paginatedcontainer_manifest_response_list_spec.rb
|
|
303
|
+
- spec/models/un_tag_image_spec.rb
|
|
304
|
+
- spec/models/container_container_distribution_response_spec.rb
|
|
305
|
+
- spec/models/policy_enum_spec.rb
|
|
306
|
+
- spec/models/container_container_push_repository_spec.rb
|
|
301
307
|
- spec/models/container_blob_response_spec.rb
|
|
302
|
-
- spec/models/
|
|
308
|
+
- spec/models/container_content_redirect_content_guard_spec.rb
|
|
309
|
+
- spec/models/patchedcontainer_container_remote_spec.rb
|
|
303
310
|
- spec/models/tag_image_spec.rb
|
|
304
|
-
- spec/models/
|
|
305
|
-
- spec/models/
|
|
311
|
+
- spec/models/paginatedcontainer_container_repository_response_list_spec.rb
|
|
312
|
+
- spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb
|
|
313
|
+
- spec/models/patchedcontainer_content_redirect_content_guard_spec.rb
|
|
314
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
306
315
|
- spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
|
|
307
|
-
- spec/models/
|
|
316
|
+
- spec/models/container_container_remote_response_spec.rb
|
|
317
|
+
- spec/models/container_container_namespace_response_spec.rb
|
|
318
|
+
- spec/models/async_operation_response_spec.rb
|
|
319
|
+
- spec/models/container_container_namespace_spec.rb
|
|
320
|
+
- spec/models/container_container_push_repository_response_spec.rb
|
|
321
|
+
- spec/models/content_summary_spec.rb
|
|
322
|
+
- spec/models/container_tag_response_spec.rb
|
|
323
|
+
- spec/models/container_content_redirect_content_guard_response_spec.rb
|
|
324
|
+
- spec/models/paginatedcontainer_blob_response_list_spec.rb
|
|
325
|
+
- spec/models/patchedcontainer_container_push_repository_spec.rb
|
|
308
326
|
- spec/models/patchedcontainer_container_repository_spec.rb
|
|
309
|
-
- spec/models/
|
|
327
|
+
- spec/models/repository_sync_url_spec.rb
|
|
328
|
+
- spec/models/oci_build_image_spec.rb
|
|
310
329
|
- spec/models/container_container_distribution_spec.rb
|
|
311
|
-
- spec/models/
|
|
312
|
-
- spec/models/
|
|
330
|
+
- spec/models/manifest_copy_spec.rb
|
|
331
|
+
- spec/models/repository_version_spec.rb
|
|
332
|
+
- spec/models/paginatedcontainer_tag_response_list_spec.rb
|
|
333
|
+
- spec/models/recursive_manage_spec.rb
|
|
334
|
+
- spec/models/patchedcontainer_container_distribution_spec.rb
|
|
335
|
+
- spec/models/container_container_repository_response_spec.rb
|
|
336
|
+
- spec/models/content_summary_response_spec.rb
|
|
313
337
|
- spec/models/remove_image_spec.rb
|
|
314
|
-
- spec/models/
|
|
315
|
-
- spec/models/
|
|
338
|
+
- spec/models/tag_copy_spec.rb
|
|
339
|
+
- spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
|
|
316
340
|
- spec/models/container_container_repository_spec.rb
|
|
317
|
-
- spec/models/content_summary_response_spec.rb
|
|
318
|
-
- spec/models/container_container_distribution_response_spec.rb
|
|
319
|
-
- spec/models/paginatedcontainer_container_repository_response_list_spec.rb
|
|
320
|
-
- spec/models/async_operation_response_spec.rb
|
|
321
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
322
|
-
- spec/models/recursive_manage_spec.rb
|
|
323
341
|
- spec/models/paginatedcontainer_container_distribution_response_list_spec.rb
|
|
324
|
-
- spec/models/
|
|
325
|
-
- spec/models/
|
|
342
|
+
- spec/models/container_manifest_response_spec.rb
|
|
343
|
+
- spec/models/repository_version_response_spec.rb
|
|
326
344
|
- spec/models/container_container_remote_spec.rb
|
|
327
|
-
- spec/models/paginatedcontainer_container_remote_response_list_spec.rb
|
|
328
|
-
- spec/models/content_summary_spec.rb
|
|
329
345
|
- spec/models/media_types_enum_spec.rb
|
|
330
|
-
- spec/models/
|
|
331
|
-
- spec/models/container_container_push_repository_response_spec.rb
|
|
332
|
-
- spec/models/un_tag_image_spec.rb
|
|
333
|
-
- spec/models/manifest_copy_spec.rb
|
|
334
|
-
- spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
|
|
335
|
-
- spec/models/patchedcontainer_content_redirect_content_guard_spec.rb
|
|
336
|
-
- spec/models/container_content_redirect_content_guard_spec.rb
|
|
337
|
-
- spec/models/container_container_remote_response_spec.rb
|
|
338
|
-
- spec/models/container_container_namespace_response_spec.rb
|
|
339
|
-
- spec/models/container_container_push_repository_spec.rb
|
|
340
|
-
- spec/models/container_container_repository_response_spec.rb
|
|
346
|
+
- spec/models/paginatedcontainer_container_remote_response_list_spec.rb
|
|
341
347
|
- spec/spec_helper.rb
|