pulp_container_client 2.3.0.dev01612322499 → 2.4.0.dev01613272873
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 +6 -4
- data/docs/ContainerContainerDistribution.md +13 -9
- data/docs/ContainerContainerDistributionResponse.md +17 -13
- data/docs/PatchedcontainerContainerDistribution.md +13 -9
- data/docs/PulpContainerNamespacesApi.md +16 -5
- data/docs/RepositoriesContainerPushApi.md +114 -2
- data/docs/RepositoriesContainerVersionsApi.md +2 -2
- data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +24 -7
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +144 -4
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +4 -4
- data/lib/pulp_container_client/models/container_container_distribution.rb +59 -38
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +74 -53
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +54 -33
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/api/pulp_container_namespaces_api_spec.rb +7 -2
- data/spec/api/repositories_container_push_api_spec.rb +28 -2
- data/spec/api/repositories_container_versions_api_spec.rb +2 -2
- data/spec/models/container_container_distribution_response_spec.rb +19 -7
- data/spec/models/container_container_distribution_spec.rb +17 -5
- data/spec/models/patchedcontainer_container_distribution_spec.rb +17 -5
- metadata +42 -42
@@ -15,52 +15,63 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# A serializer for ContainerDistribution.
|
17
17
|
class PatchedcontainerContainerDistribution
|
18
|
-
#
|
19
|
-
attr_accessor :
|
18
|
+
# RepositoryVersion to be served
|
19
|
+
attr_accessor :repository_version
|
20
20
|
|
21
|
-
|
21
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
22
|
+
attr_accessor :content_guard
|
23
|
+
|
24
|
+
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
25
|
+
attr_accessor :base_path
|
22
26
|
|
23
27
|
# A unique name. Ex, `rawhide` and `stable`.
|
24
28
|
attr_accessor :name
|
25
29
|
|
26
|
-
# The
|
27
|
-
attr_accessor :
|
30
|
+
# The latest RepositoryVersion for this Repository will be served.
|
31
|
+
attr_accessor :repository
|
28
32
|
|
29
|
-
|
30
|
-
attr_accessor :content_guard
|
33
|
+
attr_accessor :pulp_labels
|
31
34
|
|
32
|
-
#
|
33
|
-
attr_accessor :
|
35
|
+
# Restrict pull access to explicitly authorized users. Defaults to unrestricted pull access.
|
36
|
+
attr_accessor :private
|
37
|
+
|
38
|
+
# An optional description.
|
39
|
+
attr_accessor :description
|
34
40
|
|
35
41
|
# Attribute mapping from ruby-style variable name to JSON key.
|
36
42
|
def self.attribute_map
|
37
43
|
{
|
44
|
+
:'repository_version' => :'repository_version',
|
45
|
+
:'content_guard' => :'content_guard',
|
46
|
+
:'base_path' => :'base_path',
|
47
|
+
:'name' => :'name',
|
38
48
|
:'repository' => :'repository',
|
39
49
|
:'pulp_labels' => :'pulp_labels',
|
40
|
-
:'
|
41
|
-
:'
|
42
|
-
:'content_guard' => :'content_guard',
|
43
|
-
:'repository_version' => :'repository_version'
|
50
|
+
:'private' => :'private',
|
51
|
+
:'description' => :'description'
|
44
52
|
}
|
45
53
|
end
|
46
54
|
|
47
55
|
# Attribute type mapping.
|
48
56
|
def self.openapi_types
|
49
57
|
{
|
58
|
+
:'repository_version' => :'String',
|
59
|
+
:'content_guard' => :'String',
|
60
|
+
:'base_path' => :'String',
|
61
|
+
:'name' => :'String',
|
50
62
|
:'repository' => :'String',
|
51
63
|
:'pulp_labels' => :'Object',
|
52
|
-
:'
|
53
|
-
:'
|
54
|
-
:'content_guard' => :'String',
|
55
|
-
:'repository_version' => :'String'
|
64
|
+
:'private' => :'Boolean',
|
65
|
+
:'description' => :'String'
|
56
66
|
}
|
57
67
|
end
|
58
68
|
|
59
69
|
# List of attributes with nullable: true
|
60
70
|
def self.openapi_nullable
|
61
71
|
Set.new([
|
72
|
+
:'repository_version',
|
62
73
|
:'repository',
|
63
|
-
:'
|
74
|
+
:'description'
|
64
75
|
])
|
65
76
|
end
|
66
77
|
|
@@ -79,28 +90,36 @@ module PulpContainerClient
|
|
79
90
|
h[k.to_sym] = v
|
80
91
|
}
|
81
92
|
|
82
|
-
if attributes.key?(:'
|
83
|
-
self.
|
93
|
+
if attributes.key?(:'repository_version')
|
94
|
+
self.repository_version = attributes[:'repository_version']
|
84
95
|
end
|
85
96
|
|
86
|
-
if attributes.key?(:'
|
87
|
-
self.
|
97
|
+
if attributes.key?(:'content_guard')
|
98
|
+
self.content_guard = attributes[:'content_guard']
|
99
|
+
end
|
100
|
+
|
101
|
+
if attributes.key?(:'base_path')
|
102
|
+
self.base_path = attributes[:'base_path']
|
88
103
|
end
|
89
104
|
|
90
105
|
if attributes.key?(:'name')
|
91
106
|
self.name = attributes[:'name']
|
92
107
|
end
|
93
108
|
|
94
|
-
if attributes.key?(:'
|
95
|
-
self.
|
109
|
+
if attributes.key?(:'repository')
|
110
|
+
self.repository = attributes[:'repository']
|
96
111
|
end
|
97
112
|
|
98
|
-
if attributes.key?(:'
|
99
|
-
self.
|
113
|
+
if attributes.key?(:'pulp_labels')
|
114
|
+
self.pulp_labels = attributes[:'pulp_labels']
|
100
115
|
end
|
101
116
|
|
102
|
-
if attributes.key?(:'
|
103
|
-
self.
|
117
|
+
if attributes.key?(:'private')
|
118
|
+
self.private = attributes[:'private']
|
119
|
+
end
|
120
|
+
|
121
|
+
if attributes.key?(:'description')
|
122
|
+
self.description = attributes[:'description']
|
104
123
|
end
|
105
124
|
end
|
106
125
|
|
@@ -122,12 +141,14 @@ module PulpContainerClient
|
|
122
141
|
def ==(o)
|
123
142
|
return true if self.equal?(o)
|
124
143
|
self.class == o.class &&
|
144
|
+
repository_version == o.repository_version &&
|
145
|
+
content_guard == o.content_guard &&
|
146
|
+
base_path == o.base_path &&
|
147
|
+
name == o.name &&
|
125
148
|
repository == o.repository &&
|
126
149
|
pulp_labels == o.pulp_labels &&
|
127
|
-
|
128
|
-
|
129
|
-
content_guard == o.content_guard &&
|
130
|
-
repository_version == o.repository_version
|
150
|
+
private == o.private &&
|
151
|
+
description == o.description
|
131
152
|
end
|
132
153
|
|
133
154
|
# @see the `==` method
|
@@ -139,7 +160,7 @@ module PulpContainerClient
|
|
139
160
|
# Calculates hash code according to all attributes.
|
140
161
|
# @return [Integer] Hash code
|
141
162
|
def hash
|
142
|
-
[
|
163
|
+
[repository_version, content_guard, base_path, name, repository, pulp_labels, private, description].hash
|
143
164
|
end
|
144
165
|
|
145
166
|
# Builds the object from hash
|
@@ -46,10 +46,10 @@ describe 'PulpContainerNamespacesApi' do
|
|
46
46
|
|
47
47
|
# unit tests for delete
|
48
48
|
# Delete a container namespace
|
49
|
-
#
|
49
|
+
# Trigger an asynchronous delete task
|
50
50
|
# @param container_container_namespace_href
|
51
51
|
# @param [Hash] opts the optional parameters
|
52
|
-
# @return [
|
52
|
+
# @return [AsyncOperationResponse]
|
53
53
|
describe 'delete test' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -61,6 +61,11 @@ describe 'PulpContainerNamespacesApi' do
|
|
61
61
|
# ViewSet for ContainerNamespaces.
|
62
62
|
# @param [Hash] opts the optional parameters
|
63
63
|
# @option opts [Integer] :limit Number of results to return per page.
|
64
|
+
# @option opts [String] :name name
|
65
|
+
# @option opts [String] :name__contains name__contains
|
66
|
+
# @option opts [String] :name__icontains name__icontains
|
67
|
+
# @option opts [String] :name__in name__in
|
68
|
+
# @option opts [String] :name__startswith name__startswith
|
64
69
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
65
70
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
66
71
|
# @option opts [String] :fields A list of fields to include in the response.
|
@@ -34,7 +34,7 @@ describe 'RepositoriesContainerPushApi' do
|
|
34
34
|
|
35
35
|
# unit tests for list
|
36
36
|
# List container push repositorys
|
37
|
-
# ViewSet for a container push repository. POST and DELETE are disallowed because a push repository is tightly coupled with a ContainerDistribution which handles it automatically. Created - during push operation, removed - with ContainerDistribution removal
|
37
|
+
# ViewSet for a container push repository. POST and DELETE are disallowed because a push repository is tightly coupled with a ContainerDistribution which handles it automatically. Created - during push operation, removed - with ContainerDistribution removal.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
39
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
40
|
# @option opts [String] :name name
|
@@ -56,7 +56,7 @@ describe 'RepositoriesContainerPushApi' do
|
|
56
56
|
|
57
57
|
# unit tests for read
|
58
58
|
# Inspect a container push repository
|
59
|
-
# ViewSet for a container push repository. POST and DELETE are disallowed because a push repository is tightly coupled with a ContainerDistribution which handles it automatically. Created - during push operation, removed - with ContainerDistribution removal
|
59
|
+
# ViewSet for a container push repository. POST and DELETE are disallowed because a push repository is tightly coupled with a ContainerDistribution which handles it automatically. Created - during push operation, removed - with ContainerDistribution removal.
|
60
60
|
# @param container_container_push_repository_href
|
61
61
|
# @param [Hash] opts the optional parameters
|
62
62
|
# @option opts [String] :fields A list of fields to include in the response.
|
@@ -68,4 +68,30 @@ describe 'RepositoriesContainerPushApi' do
|
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
+
# unit tests for tag
|
72
|
+
# Create a Tag
|
73
|
+
# Trigger an asynchronous task to tag an image in the repository
|
74
|
+
# @param container_container_push_repository_href
|
75
|
+
# @param tag_image
|
76
|
+
# @param [Hash] opts the optional parameters
|
77
|
+
# @return [AsyncOperationResponse]
|
78
|
+
describe 'tag test' do
|
79
|
+
it 'should work' do
|
80
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
# unit tests for untag
|
85
|
+
# Delete a tag
|
86
|
+
# Trigger an asynchronous task to untag an image in the repository
|
87
|
+
# @param container_container_push_repository_href
|
88
|
+
# @param un_tag_image
|
89
|
+
# @param [Hash] opts the optional parameters
|
90
|
+
# @return [AsyncOperationResponse]
|
91
|
+
describe 'untag test' do
|
92
|
+
it 'should work' do
|
93
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
71
97
|
end
|
@@ -58,7 +58,7 @@ describe 'RepositoriesContainerVersionsApi' do
|
|
58
58
|
|
59
59
|
# unit tests for list
|
60
60
|
# List repository versions
|
61
|
-
# ContainerPushRepositoryVersion represents a single container push repository version.
|
61
|
+
# ContainerPushRepositoryVersion represents a single container push repository version. Repository versions of a push repository are not allowed to be deleted. Versioning of such repositories, as well as creation/removal, happens automatically without explicit user actions. Users could make a repository not functional by accident if allowed to delete repository versions.
|
62
62
|
# @param container_container_push_repository_href
|
63
63
|
# @param [Hash] opts the optional parameters
|
64
64
|
# @option opts [String] :content content
|
@@ -120,7 +120,7 @@ describe 'RepositoriesContainerVersionsApi' do
|
|
120
120
|
|
121
121
|
# unit tests for read
|
122
122
|
# Inspect a repository version
|
123
|
-
# ContainerPushRepositoryVersion represents a single container push repository version.
|
123
|
+
# ContainerPushRepositoryVersion represents a single container push repository version. Repository versions of a push repository are not allowed to be deleted. Versioning of such repositories, as well as creation/removal, happens automatically without explicit user actions. Users could make a repository not functional by accident if allowed to delete repository versions.
|
124
124
|
# @param container_container_push_repository_version_href
|
125
125
|
# @param [Hash] opts the optional parameters
|
126
126
|
# @option opts [String] :fields A list of fields to include in the response.
|
@@ -32,19 +32,19 @@ 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_version"' 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 "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 "
|
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
|
@@ -56,25 +56,25 @@ describe 'ContainerContainerDistributionResponse' do
|
|
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
|
69
69
|
end
|
70
70
|
|
71
|
-
describe 'test attribute "
|
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
|
75
75
|
end
|
76
76
|
|
77
|
-
describe 'test attribute "
|
77
|
+
describe 'test attribute "pulp_labels"' 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
|
@@ -92,4 +92,16 @@ describe 'ContainerContainerDistributionResponse' do
|
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
|
+
describe 'test attribute "private"' do
|
96
|
+
it 'should work' do
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
describe 'test attribute "description"' 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
|
+
|
95
107
|
end
|
@@ -32,13 +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 "
|
35
|
+
describe 'test attribute "repository_version"' 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 "content_guard"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "base_path"' do
|
42
48
|
it 'should work' do
|
43
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
50
|
end
|
@@ -50,19 +56,25 @@ describe 'ContainerContainerDistribution' do
|
|
50
56
|
end
|
51
57
|
end
|
52
58
|
|
53
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "repository"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
62
|
end
|
57
63
|
end
|
58
64
|
|
59
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "pulp_labels"' do
|
60
66
|
it 'should work' do
|
61
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
68
|
end
|
63
69
|
end
|
64
70
|
|
65
|
-
describe 'test attribute "
|
71
|
+
describe 'test attribute "private"' 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
|
+
|
77
|
+
describe 'test attribute "description"' do
|
66
78
|
it 'should work' do
|
67
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
80
|
end
|
@@ -32,13 +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 "
|
35
|
+
describe 'test attribute "repository_version"' 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 "content_guard"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "base_path"' do
|
42
48
|
it 'should work' do
|
43
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
50
|
end
|
@@ -50,19 +56,25 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
50
56
|
end
|
51
57
|
end
|
52
58
|
|
53
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "repository"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
62
|
end
|
57
63
|
end
|
58
64
|
|
59
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "pulp_labels"' do
|
60
66
|
it 'should work' do
|
61
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
68
|
end
|
63
69
|
end
|
64
70
|
|
65
|
-
describe 'test attribute "
|
71
|
+
describe 'test attribute "private"' 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
|
+
|
77
|
+
describe 'test attribute "description"' do
|
66
78
|
it 'should work' do
|
67
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
80
|
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.
|
4
|
+
version: 2.4.0.dev01613272873
|
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-02-
|
11
|
+
date: 2021-02-14 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/
|
268
|
-
- spec/api/repositories_container_versions_api_spec.rb
|
269
|
-
- spec/api/remotes_container_api_spec.rb
|
267
|
+
- spec/api/pulp_container_namespaces_api_spec.rb
|
270
268
|
- spec/api/content_blobs_api_spec.rb
|
269
|
+
- spec/api/repositories_container_versions_api_spec.rb
|
271
270
|
- spec/api/repositories_container_api_spec.rb
|
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
|
275
|
-
- spec/api/token_api_spec.rb
|
276
271
|
- spec/api/repositories_container_push_api_spec.rb
|
272
|
+
- spec/api/content_guards_content_redirect_api_spec.rb
|
273
|
+
- spec/api/content_manifests_api_spec.rb
|
274
|
+
- spec/api/content_tags_api_spec.rb
|
275
|
+
- spec/api/remotes_container_api_spec.rb
|
277
276
|
- spec/api/distributions_container_api_spec.rb
|
277
|
+
- spec/api/token_api_spec.rb
|
278
278
|
- spec/api_client_spec.rb
|
279
279
|
- spec/configuration_spec.rb
|
280
|
+
- spec/models/un_tag_image_spec.rb
|
281
|
+
- spec/models/container_content_redirect_content_guard_spec.rb
|
282
|
+
- spec/models/patchedcontainer_container_repository_spec.rb
|
283
|
+
- spec/models/repository_version_spec.rb
|
284
|
+
- spec/models/repository_version_response_spec.rb
|
285
|
+
- spec/models/async_operation_response_spec.rb
|
286
|
+
- spec/models/paginatedcontainer_container_distribution_response_list_spec.rb
|
287
|
+
- spec/models/content_summary_response_spec.rb
|
288
|
+
- spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
|
289
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
290
|
+
- spec/models/content_summary_spec.rb
|
291
|
+
- spec/models/policy_enum_spec.rb
|
280
292
|
- spec/models/tag_copy_spec.rb
|
281
|
-
- spec/models/
|
282
|
-
- spec/models/manifest_copy_spec.rb
|
293
|
+
- spec/models/container_container_repository_spec.rb
|
283
294
|
- spec/models/container_container_repository_response_spec.rb
|
284
|
-
- spec/models/patchedcontainer_container_remote_spec.rb
|
285
|
-
- spec/models/policy_enum_spec.rb
|
286
295
|
- spec/models/container_tag_response_spec.rb
|
287
|
-
- spec/models/
|
296
|
+
- spec/models/patchedcontainer_container_remote_spec.rb
|
297
|
+
- spec/models/container_container_distribution_response_spec.rb
|
298
|
+
- spec/models/container_container_namespace_response_spec.rb
|
299
|
+
- spec/models/oci_build_image_spec.rb
|
300
|
+
- spec/models/patchedcontainer_content_redirect_content_guard_spec.rb
|
301
|
+
- spec/models/recursive_manage_spec.rb
|
302
|
+
- spec/models/paginatedcontainer_tag_response_list_spec.rb
|
303
|
+
- spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb
|
304
|
+
- spec/models/paginatedcontainer_blob_response_list_spec.rb
|
305
|
+
- spec/models/container_container_remote_response_spec.rb
|
306
|
+
- spec/models/container_container_remote_spec.rb
|
288
307
|
- spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
|
308
|
+
- spec/models/container_content_redirect_content_guard_response_spec.rb
|
309
|
+
- spec/models/repository_sync_url_spec.rb
|
310
|
+
- spec/models/paginatedcontainer_container_remote_response_list_spec.rb
|
311
|
+
- spec/models/container_manifest_response_spec.rb
|
289
312
|
- spec/models/patchedcontainer_container_distribution_spec.rb
|
290
|
-
- spec/models/paginatedcontainer_manifest_response_list_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
313
|
- spec/models/container_container_namespace_spec.rb
|
296
|
-
- spec/models/
|
297
|
-
- spec/models/
|
298
|
-
- spec/models/paginatedcontainer_container_remote_response_list_spec.rb
|
299
|
-
- spec/models/container_content_redirect_content_guard_spec.rb
|
300
|
-
- spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
|
314
|
+
- spec/models/container_blob_response_spec.rb
|
315
|
+
- spec/models/tag_image_spec.rb
|
301
316
|
- spec/models/container_container_push_repository_response_spec.rb
|
302
|
-
- spec/models/
|
303
|
-
- spec/models/async_operation_response_spec.rb
|
304
|
-
- spec/models/recursive_manage_spec.rb
|
305
|
-
- spec/models/container_container_distribution_response_spec.rb
|
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
|
317
|
+
- spec/models/paginatedcontainer_manifest_response_list_spec.rb
|
309
318
|
- spec/models/container_container_distribution_spec.rb
|
310
|
-
- spec/models/
|
311
|
-
- spec/models/
|
312
|
-
- spec/models/container_container_remote_spec.rb
|
313
|
-
- spec/models/container_blob_response_spec.rb
|
314
|
-
- spec/models/paginated_repository_version_response_list_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
|
319
|
+
- spec/models/manifest_copy_spec.rb
|
320
|
+
- spec/models/paginatedcontainer_container_repository_response_list_spec.rb
|
321
321
|
- spec/spec_helper.rb
|