pulp_container_client 1.4.1 → 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -11
- data/docs/{ContainerBlobRead.md → ContainerBlob.md} +2 -2
- data/docs/ContainerContainerDistribution.md +10 -10
- data/docs/{ContainerManifestRead.md → ContainerManifest.md} +2 -2
- data/docs/{ContainerTagRead.md → ContainerTag.md} +2 -2
- data/docs/ContentBlobsApi.md +2 -2
- data/docs/ContentManifestsApi.md +2 -2
- data/docs/ContentTagsApi.md +2 -2
- data/docs/DistributionsContainerApi.md +2 -2
- data/docs/InlineResponse200.md +1 -1
- data/docs/InlineResponse2001.md +1 -1
- data/docs/InlineResponse2002.md +1 -1
- data/docs/InlineResponse2003.md +1 -1
- data/docs/InlineResponse2004.md +1 -1
- data/docs/InlineResponse2005.md +1 -1
- data/docs/InlineResponse2006.md +1 -1
- data/docs/RemotesContainerApi.md +4 -4
- data/docs/RepositoriesContainerApi.md +4 -4
- data/docs/RepositoriesContainerVersionsApi.md +6 -4
- data/lib/pulp_container_client.rb +3 -7
- data/lib/pulp_container_client/api/content_blobs_api.rb +3 -3
- data/lib/pulp_container_client/api/content_manifests_api.rb +3 -3
- data/lib/pulp_container_client/api/content_tags_api.rb +3 -3
- data/lib/pulp_container_client/api/distributions_container_api.rb +3 -3
- data/lib/pulp_container_client/api/remotes_container_api.rb +6 -6
- data/lib/pulp_container_client/api/repositories_container_api.rb +6 -6
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +9 -6
- data/lib/pulp_container_client/models/{container_blob_read.rb → container_blob.rb} +3 -3
- data/lib/pulp_container_client/models/container_container_distribution.rb +64 -64
- data/lib/pulp_container_client/models/{container_manifest_read.rb → container_manifest.rb} +3 -3
- data/lib/pulp_container_client/models/{container_tag_read.rb → container_tag.rb} +3 -3
- data/lib/pulp_container_client/models/inline_response200.rb +1 -1
- data/lib/pulp_container_client/models/inline_response2001.rb +1 -1
- data/lib/pulp_container_client/models/inline_response2002.rb +1 -1
- data/lib/pulp_container_client/models/inline_response2003.rb +1 -1
- data/lib/pulp_container_client/models/inline_response2004.rb +1 -1
- data/lib/pulp_container_client/models/inline_response2005.rb +1 -1
- data/lib/pulp_container_client/models/inline_response2006.rb +1 -1
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/api/content_blobs_api_spec.rb +1 -1
- data/spec/api/content_manifests_api_spec.rb +1 -1
- data/spec/api/content_tags_api_spec.rb +1 -1
- data/spec/api/distributions_container_api_spec.rb +1 -1
- data/spec/api/remotes_container_api_spec.rb +2 -2
- data/spec/api/repositories_container_api_spec.rb +2 -2
- data/spec/api/repositories_container_versions_api_spec.rb +3 -2
- data/spec/models/{container_blob_read_spec.rb → container_blob_spec.rb} +6 -6
- data/spec/models/container_container_distribution_spec.rb +6 -6
- data/spec/models/{container_manifest_read_spec.rb → container_manifest_spec.rb} +6 -6
- data/spec/models/{container_tag_read_spec.rb → container_tag_spec.rb} +6 -6
- metadata +14 -30
- data/docs/ContainerContainerDistributionRead.md +0 -31
- data/docs/ContainerContainerRemoteRead.md +0 -47
- data/docs/ContainerContainerRepositoryRead.md +0 -27
- data/docs/RepositoryVersionRead.md +0 -25
- data/lib/pulp_container_client/models/container_container_distribution_read.rb +0 -342
- data/lib/pulp_container_client/models/container_container_remote_read.rb +0 -578
- data/lib/pulp_container_client/models/container_container_repository_read.rb +0 -294
- data/lib/pulp_container_client/models/repository_version_read.rb +0 -244
- data/spec/models/container_container_distribution_read_spec.rb +0 -83
- data/spec/models/container_container_remote_read_spec.rb +0 -135
- data/spec/models/container_container_repository_read_spec.rb +0 -71
- data/spec/models/repository_version_read_spec.rb +0 -65
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.2.3
|
|
13
13
|
require 'date'
|
14
14
|
|
15
15
|
module PulpContainerClient
|
16
|
-
class
|
16
|
+
class ContainerManifest
|
17
17
|
attr_accessor :pulp_href
|
18
18
|
|
19
19
|
# Timestamp of creation.
|
@@ -80,13 +80,13 @@ module PulpContainerClient
|
|
80
80
|
# @param [Hash] attributes Model attributes in the form of hash
|
81
81
|
def initialize(attributes = {})
|
82
82
|
if (!attributes.is_a?(Hash))
|
83
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::
|
83
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::ContainerManifest` initialize method"
|
84
84
|
end
|
85
85
|
|
86
86
|
# check to see if the attribute exists and convert string to symbol for hash key
|
87
87
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
88
88
|
if (!self.class.attribute_map.key?(k.to_sym))
|
89
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::
|
89
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::ContainerManifest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
90
90
|
end
|
91
91
|
h[k.to_sym] = v
|
92
92
|
}
|
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.2.3
|
|
13
13
|
require 'date'
|
14
14
|
|
15
15
|
module PulpContainerClient
|
16
|
-
class
|
16
|
+
class ContainerTag
|
17
17
|
attr_accessor :pulp_href
|
18
18
|
|
19
19
|
# Timestamp of creation.
|
@@ -60,13 +60,13 @@ module PulpContainerClient
|
|
60
60
|
# @param [Hash] attributes Model attributes in the form of hash
|
61
61
|
def initialize(attributes = {})
|
62
62
|
if (!attributes.is_a?(Hash))
|
63
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::
|
63
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::ContainerTag` initialize method"
|
64
64
|
end
|
65
65
|
|
66
66
|
# check to see if the attribute exists and convert string to symbol for hash key
|
67
67
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
68
68
|
if (!self.class.attribute_map.key?(k.to_sym))
|
69
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::
|
69
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::ContainerTag`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
70
70
|
end
|
71
71
|
h[k.to_sym] = v
|
72
72
|
}
|
@@ -61,7 +61,7 @@ describe 'ContentBlobsApi' do
|
|
61
61
|
# @param [Hash] opts the optional parameters
|
62
62
|
# @option opts [String] :fields A list of fields to include in the response.
|
63
63
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
64
|
-
# @return [
|
64
|
+
# @return [ContainerBlob]
|
65
65
|
describe 'read test' do
|
66
66
|
it 'should work' do
|
67
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -61,7 +61,7 @@ describe 'ContentManifestsApi' do
|
|
61
61
|
# @param [Hash] opts the optional parameters
|
62
62
|
# @option opts [String] :fields A list of fields to include in the response.
|
63
63
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
64
|
-
# @return [
|
64
|
+
# @return [ContainerManifest]
|
65
65
|
describe 'read test' do
|
66
66
|
it 'should work' do
|
67
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -62,7 +62,7 @@ describe 'ContentTagsApi' do
|
|
62
62
|
# @param [Hash] opts the optional parameters
|
63
63
|
# @option opts [String] :fields A list of fields to include in the response.
|
64
64
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
65
|
-
# @return [
|
65
|
+
# @return [ContainerTag]
|
66
66
|
describe 'read test' do
|
67
67
|
it 'should work' do
|
68
68
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -98,7 +98,7 @@ describe 'DistributionsContainerApi' do
|
|
98
98
|
# @param [Hash] opts the optional parameters
|
99
99
|
# @option opts [String] :fields A list of fields to include in the response.
|
100
100
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
101
|
-
# @return [
|
101
|
+
# @return [ContainerContainerDistribution]
|
102
102
|
describe 'read test' do
|
103
103
|
it 'should work' do
|
104
104
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -37,7 +37,7 @@ describe 'RemotesContainerApi' do
|
|
37
37
|
# Container remotes represent an external repository that implements the Container Registry API. Container remotes support deferred downloading by configuring the ``policy`` field. ``on_demand`` and ``streamed`` policies can provide significant disk space savings.
|
38
38
|
# @param data
|
39
39
|
# @param [Hash] opts the optional parameters
|
40
|
-
# @return [
|
40
|
+
# @return [ContainerContainerRemote]
|
41
41
|
describe 'create test' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -100,7 +100,7 @@ describe 'RemotesContainerApi' do
|
|
100
100
|
# @param [Hash] opts the optional parameters
|
101
101
|
# @option opts [String] :fields A list of fields to include in the response.
|
102
102
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
103
|
-
# @return [
|
103
|
+
# @return [ContainerContainerRemote]
|
104
104
|
describe 'read test' do
|
105
105
|
it 'should work' do
|
106
106
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -92,7 +92,7 @@ describe 'RepositoriesContainerApi' do
|
|
92
92
|
# ViewSet for container repo.
|
93
93
|
# @param data
|
94
94
|
# @param [Hash] opts the optional parameters
|
95
|
-
# @return [
|
95
|
+
# @return [ContainerContainerRepository]
|
96
96
|
describe 'create test' do
|
97
97
|
it 'should work' do
|
98
98
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -149,7 +149,7 @@ describe 'RepositoriesContainerApi' do
|
|
149
149
|
# @param [Hash] opts the optional parameters
|
150
150
|
# @option opts [String] :fields A list of fields to include in the response.
|
151
151
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
152
|
-
# @return [
|
152
|
+
# @return [ContainerContainerRepository]
|
153
153
|
describe 'read test' do
|
154
154
|
it 'should work' do
|
155
155
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -61,8 +61,9 @@ describe 'RepositoriesContainerVersionsApi' do
|
|
61
61
|
# @option opts [String] :pulp_created__gt Filter results where pulp_created is greater than value
|
62
62
|
# @option opts [String] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
|
63
63
|
# @option opts [String] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
64
|
-
# @option opts [String] :content Content Unit referenced by HREF
|
65
64
|
# @option opts [String] :pulp_created ISO 8601 formatted dates are supported
|
65
|
+
# @option opts [String] :content Content Unit referenced by HREF
|
66
|
+
# @option opts [String] :content__in Content Unit referenced by HREF
|
66
67
|
# @option opts [Integer] :limit Number of results to return per page.
|
67
68
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
68
69
|
# @option opts [String] :fields A list of fields to include in the response.
|
@@ -81,7 +82,7 @@ describe 'RepositoriesContainerVersionsApi' do
|
|
81
82
|
# @param [Hash] opts the optional parameters
|
82
83
|
# @option opts [String] :fields A list of fields to include in the response.
|
83
84
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
84
|
-
# @return [
|
85
|
+
# @return [RepositoryVersion]
|
85
86
|
describe 'read test' do
|
86
87
|
it 'should work' do
|
87
88
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for PulpContainerClient::
|
17
|
+
# Unit tests for PulpContainerClient::ContainerBlob
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe '
|
20
|
+
describe 'ContainerBlob' do
|
21
21
|
before do
|
22
22
|
# run before each test
|
23
|
-
@instance = PulpContainerClient::
|
23
|
+
@instance = PulpContainerClient::ContainerBlob.new
|
24
24
|
end
|
25
25
|
|
26
26
|
after do
|
27
27
|
# run after each test
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test an instance of
|
31
|
-
it 'should create an instance of
|
32
|
-
expect(@instance).to be_instance_of(PulpContainerClient::
|
30
|
+
describe 'test an instance of ContainerBlob' do
|
31
|
+
it 'should create an instance of ContainerBlob' do
|
32
|
+
expect(@instance).to be_instance_of(PulpContainerClient::ContainerBlob)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
describe 'test attribute "pulp_href"' do
|
@@ -32,13 +32,13 @@ 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 "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 "
|
41
|
+
describe 'test attribute "pulp_href"' 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,25 +50,25 @@ describe 'ContainerContainerDistribution' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "pulp_created"' 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 "repository_version"' 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 "repository"' 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 "content_guard"' 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
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for PulpContainerClient::
|
17
|
+
# Unit tests for PulpContainerClient::ContainerManifest
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe '
|
20
|
+
describe 'ContainerManifest' do
|
21
21
|
before do
|
22
22
|
# run before each test
|
23
|
-
@instance = PulpContainerClient::
|
23
|
+
@instance = PulpContainerClient::ContainerManifest.new
|
24
24
|
end
|
25
25
|
|
26
26
|
after do
|
27
27
|
# run after each test
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test an instance of
|
31
|
-
it 'should create an instance of
|
32
|
-
expect(@instance).to be_instance_of(PulpContainerClient::
|
30
|
+
describe 'test an instance of ContainerManifest' do
|
31
|
+
it 'should create an instance of ContainerManifest' do
|
32
|
+
expect(@instance).to be_instance_of(PulpContainerClient::ContainerManifest)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
describe 'test attribute "pulp_href"' do
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for PulpContainerClient::
|
17
|
+
# Unit tests for PulpContainerClient::ContainerTag
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe '
|
20
|
+
describe 'ContainerTag' do
|
21
21
|
before do
|
22
22
|
# run before each test
|
23
|
-
@instance = PulpContainerClient::
|
23
|
+
@instance = PulpContainerClient::ContainerTag.new
|
24
24
|
end
|
25
25
|
|
26
26
|
after do
|
27
27
|
# run after each test
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test an instance of
|
31
|
-
it 'should create an instance of
|
32
|
-
expect(@instance).to be_instance_of(PulpContainerClient::
|
30
|
+
describe 'test an instance of ContainerTag' do
|
31
|
+
it 'should create an instance of ContainerTag' do
|
32
|
+
expect(@instance).to be_instance_of(PulpContainerClient::ContainerTag)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
describe 'test attribute "pulp_href"' do
|
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: 1.4.
|
4
|
+
version: 1.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -75,15 +75,12 @@ files:
|
|
75
75
|
- README.md
|
76
76
|
- Rakefile
|
77
77
|
- docs/AsyncOperationResponse.md
|
78
|
-
- docs/
|
78
|
+
- docs/ContainerBlob.md
|
79
79
|
- docs/ContainerContainerDistribution.md
|
80
|
-
- docs/ContainerContainerDistributionRead.md
|
81
80
|
- docs/ContainerContainerRemote.md
|
82
|
-
- docs/ContainerContainerRemoteRead.md
|
83
81
|
- docs/ContainerContainerRepository.md
|
84
|
-
- docs/
|
85
|
-
- docs/
|
86
|
-
- docs/ContainerTagRead.md
|
82
|
+
- docs/ContainerManifest.md
|
83
|
+
- docs/ContainerTag.md
|
87
84
|
- docs/ContentBlobsApi.md
|
88
85
|
- docs/ContentManifestsApi.md
|
89
86
|
- docs/ContentSummary.md
|
@@ -103,7 +100,6 @@ files:
|
|
103
100
|
- docs/RepositoriesContainerVersionsApi.md
|
104
101
|
- docs/RepositorySyncURL.md
|
105
102
|
- docs/RepositoryVersion.md
|
106
|
-
- docs/RepositoryVersionRead.md
|
107
103
|
- docs/TagCopy.md
|
108
104
|
- docs/TagImage.md
|
109
105
|
- docs/UnTagImage.md
|
@@ -120,15 +116,12 @@ files:
|
|
120
116
|
- lib/pulp_container_client/api_error.rb
|
121
117
|
- lib/pulp_container_client/configuration.rb
|
122
118
|
- lib/pulp_container_client/models/async_operation_response.rb
|
123
|
-
- lib/pulp_container_client/models/
|
119
|
+
- lib/pulp_container_client/models/container_blob.rb
|
124
120
|
- lib/pulp_container_client/models/container_container_distribution.rb
|
125
|
-
- lib/pulp_container_client/models/container_container_distribution_read.rb
|
126
121
|
- lib/pulp_container_client/models/container_container_remote.rb
|
127
|
-
- lib/pulp_container_client/models/container_container_remote_read.rb
|
128
122
|
- lib/pulp_container_client/models/container_container_repository.rb
|
129
|
-
- lib/pulp_container_client/models/
|
130
|
-
- lib/pulp_container_client/models/
|
131
|
-
- lib/pulp_container_client/models/container_tag_read.rb
|
123
|
+
- lib/pulp_container_client/models/container_manifest.rb
|
124
|
+
- lib/pulp_container_client/models/container_tag.rb
|
132
125
|
- lib/pulp_container_client/models/content_summary.rb
|
133
126
|
- lib/pulp_container_client/models/inline_response200.rb
|
134
127
|
- lib/pulp_container_client/models/inline_response2001.rb
|
@@ -141,7 +134,6 @@ files:
|
|
141
134
|
- lib/pulp_container_client/models/recursive_manage.rb
|
142
135
|
- lib/pulp_container_client/models/repository_sync_url.rb
|
143
136
|
- lib/pulp_container_client/models/repository_version.rb
|
144
|
-
- lib/pulp_container_client/models/repository_version_read.rb
|
145
137
|
- lib/pulp_container_client/models/tag_copy.rb
|
146
138
|
- lib/pulp_container_client/models/tag_image.rb
|
147
139
|
- lib/pulp_container_client/models/un_tag_image.rb
|
@@ -157,15 +149,12 @@ files:
|
|
157
149
|
- spec/api_client_spec.rb
|
158
150
|
- spec/configuration_spec.rb
|
159
151
|
- spec/models/async_operation_response_spec.rb
|
160
|
-
- spec/models/
|
161
|
-
- spec/models/container_container_distribution_read_spec.rb
|
152
|
+
- spec/models/container_blob_spec.rb
|
162
153
|
- spec/models/container_container_distribution_spec.rb
|
163
|
-
- spec/models/container_container_remote_read_spec.rb
|
164
154
|
- spec/models/container_container_remote_spec.rb
|
165
|
-
- spec/models/container_container_repository_read_spec.rb
|
166
155
|
- spec/models/container_container_repository_spec.rb
|
167
|
-
- spec/models/
|
168
|
-
- spec/models/
|
156
|
+
- spec/models/container_manifest_spec.rb
|
157
|
+
- spec/models/container_tag_spec.rb
|
169
158
|
- spec/models/content_summary_spec.rb
|
170
159
|
- spec/models/inline_response2001_spec.rb
|
171
160
|
- spec/models/inline_response2002_spec.rb
|
@@ -177,7 +166,6 @@ files:
|
|
177
166
|
- spec/models/manifest_copy_spec.rb
|
178
167
|
- spec/models/recursive_manage_spec.rb
|
179
168
|
- spec/models/repository_sync_url_spec.rb
|
180
|
-
- spec/models/repository_version_read_spec.rb
|
181
169
|
- spec/models/repository_version_spec.rb
|
182
170
|
- spec/models/tag_copy_spec.rb
|
183
171
|
- spec/models/tag_image_spec.rb
|
@@ -216,30 +204,26 @@ test_files:
|
|
216
204
|
- spec/api/repositories_container_versions_api_spec.rb
|
217
205
|
- spec/api_client_spec.rb
|
218
206
|
- spec/configuration_spec.rb
|
207
|
+
- spec/models/container_tag_spec.rb
|
219
208
|
- spec/models/container_container_repository_spec.rb
|
220
209
|
- spec/models/container_container_distribution_spec.rb
|
221
210
|
- spec/models/repository_sync_url_spec.rb
|
211
|
+
- spec/models/container_manifest_spec.rb
|
222
212
|
- spec/models/async_operation_response_spec.rb
|
223
213
|
- spec/models/container_container_remote_spec.rb
|
224
214
|
- spec/models/inline_response2003_spec.rb
|
225
|
-
- spec/models/container_container_distribution_read_spec.rb
|
226
|
-
- spec/models/container_container_repository_read_spec.rb
|
227
|
-
- spec/models/container_container_remote_read_spec.rb
|
228
215
|
- spec/models/repository_version_spec.rb
|
229
216
|
- spec/models/tag_image_spec.rb
|
230
217
|
- spec/models/un_tag_image_spec.rb
|
231
218
|
- spec/models/inline_response2004_spec.rb
|
232
219
|
- spec/models/inline_response2005_spec.rb
|
233
220
|
- spec/models/inline_response2001_spec.rb
|
234
|
-
- spec/models/container_tag_read_spec.rb
|
235
221
|
- spec/models/manifest_copy_spec.rb
|
236
222
|
- spec/models/inline_response200_spec.rb
|
223
|
+
- spec/models/container_blob_spec.rb
|
237
224
|
- spec/models/tag_copy_spec.rb
|
238
225
|
- spec/models/inline_response2002_spec.rb
|
239
226
|
- spec/models/recursive_manage_spec.rb
|
240
|
-
- spec/models/container_blob_read_spec.rb
|
241
227
|
- spec/models/inline_response2006_spec.rb
|
242
|
-
- spec/models/container_manifest_read_spec.rb
|
243
228
|
- spec/models/content_summary_spec.rb
|
244
|
-
- spec/models/repository_version_read_spec.rb
|
245
229
|
- spec/spec_helper.rb
|