pulp_docker_client 4.0.0b5 → 4.0.0b6

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.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +25 -14
  3. data/docs/ContentBlobsApi.md +24 -20
  4. data/docs/ContentManifestsApi.md +12 -6
  5. data/docs/{ContentManifestTagsApi.md → ContentTagsApi.md} +40 -34
  6. data/docs/DistributionsDockerApi.md +4 -4
  7. data/docs/DockerCopyApi.md +114 -0
  8. data/docs/DockerDistribution.md +9 -9
  9. data/docs/DockerRecursiveAddApi.md +61 -0
  10. data/docs/DockerRecursiveRemoveApi.md +61 -0
  11. data/docs/DockerTagApi.md +61 -0
  12. data/docs/DockerUntagApi.md +61 -0
  13. data/docs/InlineResponse200.md +3 -3
  14. data/docs/InlineResponse2001.md +4 -4
  15. data/docs/InlineResponse2002.md +4 -4
  16. data/docs/InlineResponse2003.md +3 -3
  17. data/docs/InlineResponse2004.md +3 -3
  18. data/docs/ManifestCopy.md +25 -0
  19. data/docs/RecursiveManage.md +19 -0
  20. data/docs/RemotesDockerApi.md +4 -4
  21. data/docs/{ManifestTag.md → Tag.md} +2 -2
  22. data/docs/TagCopy.md +23 -0
  23. data/docs/TagImage.md +21 -0
  24. data/docs/UnTagImage.md +19 -0
  25. data/git_push.sh +10 -7
  26. data/lib/pulp_docker_client/api/content_blobs_api.rb +35 -29
  27. data/lib/pulp_docker_client/api/content_manifests_api.rb +21 -12
  28. data/lib/pulp_docker_client/api/{content_manifest_tags_api.rb → content_tags_api.rb} +59 -50
  29. data/lib/pulp_docker_client/api/distributions_docker_api.rb +12 -12
  30. data/lib/pulp_docker_client/api/docker_copy_api.rb +146 -0
  31. data/lib/pulp_docker_client/api/docker_recursive_add_api.rb +84 -0
  32. data/lib/pulp_docker_client/api/docker_recursive_remove_api.rb +84 -0
  33. data/lib/pulp_docker_client/api/docker_tag_api.rb +84 -0
  34. data/lib/pulp_docker_client/api/docker_untag_api.rb +84 -0
  35. data/lib/pulp_docker_client/api/remotes_docker_api.rb +13 -13
  36. data/lib/pulp_docker_client/api_client.rb +77 -62
  37. data/lib/pulp_docker_client/api_error.rb +1 -1
  38. data/lib/pulp_docker_client/configuration.rb +13 -21
  39. data/lib/pulp_docker_client/models/async_operation_response.rb +1 -1
  40. data/lib/pulp_docker_client/models/blob.rb +1 -1
  41. data/lib/pulp_docker_client/models/docker_distribution.rb +37 -37
  42. data/lib/pulp_docker_client/models/docker_remote.rb +1 -1
  43. data/lib/pulp_docker_client/models/inline_response200.rb +11 -11
  44. data/lib/pulp_docker_client/models/inline_response2001.rb +12 -12
  45. data/lib/pulp_docker_client/models/inline_response2002.rb +12 -12
  46. data/lib/pulp_docker_client/models/inline_response2003.rb +11 -11
  47. data/lib/pulp_docker_client/models/inline_response2004.rb +11 -11
  48. data/lib/pulp_docker_client/models/manifest.rb +1 -1
  49. data/lib/pulp_docker_client/models/manifest_copy.rb +268 -0
  50. data/lib/pulp_docker_client/models/recursive_manage.rb +214 -0
  51. data/lib/pulp_docker_client/models/repository_sync_url.rb +1 -1
  52. data/lib/pulp_docker_client/models/{manifest_tag.rb → tag.rb} +4 -4
  53. data/lib/pulp_docker_client/models/tag_copy.rb +234 -0
  54. data/lib/pulp_docker_client/models/tag_image.rb +270 -0
  55. data/lib/pulp_docker_client/models/un_tag_image.rb +236 -0
  56. data/lib/pulp_docker_client/version.rb +2 -2
  57. data/lib/pulp_docker_client.rb +13 -3
  58. data/pulp_docker_client.gemspec +3 -9
  59. data/spec/api/content_blobs_api_spec.rb +12 -10
  60. data/spec/api/content_manifests_api_spec.rb +7 -4
  61. data/spec/api/{content_manifest_tags_api_spec.rb → content_tags_api_spec.rb} +22 -19
  62. data/spec/api/distributions_docker_api_spec.rb +3 -3
  63. data/spec/api/docker_copy_api_spec.rb +57 -0
  64. data/spec/api/docker_recursive_add_api_spec.rb +46 -0
  65. data/spec/api/docker_recursive_remove_api_spec.rb +46 -0
  66. data/spec/api/docker_tag_api_spec.rb +46 -0
  67. data/spec/api/docker_untag_api_spec.rb +46 -0
  68. data/spec/api/remotes_docker_api_spec.rb +3 -3
  69. data/spec/api_client_spec.rb +1 -39
  70. data/spec/configuration_spec.rb +1 -1
  71. data/spec/models/async_operation_response_spec.rb +1 -1
  72. data/spec/models/blob_spec.rb +1 -1
  73. data/spec/models/docker_distribution_spec.rb +7 -7
  74. data/spec/models/docker_remote_spec.rb +1 -1
  75. data/spec/models/inline_response2001_spec.rb +4 -4
  76. data/spec/models/inline_response2002_spec.rb +4 -4
  77. data/spec/models/inline_response2003_spec.rb +4 -4
  78. data/spec/models/inline_response2004_spec.rb +4 -4
  79. data/spec/models/inline_response200_spec.rb +4 -4
  80. data/spec/models/manifest_copy_spec.rb +69 -0
  81. data/spec/models/manifest_spec.rb +1 -1
  82. data/spec/models/recursive_manage_spec.rb +47 -0
  83. data/spec/models/repository_sync_url_spec.rb +1 -1
  84. data/spec/models/tag_copy_spec.rb +59 -0
  85. data/spec/models/tag_image_spec.rb +53 -0
  86. data/spec/models/{manifest_tag_spec.rb → tag_spec.rb} +7 -7
  87. data/spec/models/un_tag_image_spec.rb +47 -0
  88. data/spec/spec_helper.rb +1 -1
  89. metadata +54 -141
  90. data/Gemfile.lock +0 -79
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: v3
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.0.0
9
+ OpenAPI Generator version: 4.1.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -32,19 +32,19 @@ describe 'InlineResponse200' do
32
32
  expect(@instance).to be_instance_of(PulpDockerClient::InlineResponse200)
33
33
  end
34
34
  end
35
- describe 'test attribute "_next"' do
35
+ describe 'test attribute "count"' 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 "previous"' do
41
+ describe 'test attribute "_next"' 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 "count"' do
47
+ describe 'test attribute "previous"' 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
@@ -0,0 +1,69 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.1.2-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpDockerClient::ManifestCopy
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'ManifestCopy' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpDockerClient::ManifestCopy.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of ManifestCopy' do
31
+ it 'should create an instance of ManifestCopy' do
32
+ expect(@instance).to be_instance_of(PulpDockerClient::ManifestCopy)
33
+ end
34
+ end
35
+ describe 'test attribute "source_repository"' 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
+
41
+ describe 'test attribute "source_repository_version"' 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 "destination_repository"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "digests"' 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
+
59
+ describe 'test attribute "media_types"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('Array<String>', ["application/vnd.docker.distribution.manifest.v1+json", "application/vnd.docker.distribution.manifest.v2+json", "application/vnd.docker.distribution.manifest.list.v2+json"])
63
+ # validator.allowable_values.each do |value|
64
+ # expect { @instance.media_types = value }.not_to raise_error
65
+ # end
66
+ end
67
+ end
68
+
69
+ end
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: v3
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.0.0
9
+ OpenAPI Generator version: 4.1.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.1.2-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpDockerClient::RecursiveManage
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'RecursiveManage' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpDockerClient::RecursiveManage.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of RecursiveManage' do
31
+ it 'should create an instance of RecursiveManage' do
32
+ expect(@instance).to be_instance_of(PulpDockerClient::RecursiveManage)
33
+ end
34
+ end
35
+ describe 'test attribute "repository"' 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
+
41
+ describe 'test attribute "content_units"' 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
+ end
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: v3
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.0.0
9
+ OpenAPI Generator version: 4.1.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.1.2-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpDockerClient::TagCopy
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'TagCopy' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpDockerClient::TagCopy.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TagCopy' do
31
+ it 'should create an instance of TagCopy' do
32
+ expect(@instance).to be_instance_of(PulpDockerClient::TagCopy)
33
+ end
34
+ end
35
+ describe 'test attribute "source_repository"' 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
+
41
+ describe 'test attribute "source_repository_version"' 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 "destination_repository"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "names"' 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
+
59
+ end
@@ -0,0 +1,53 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.1.2-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpDockerClient::TagImage
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'TagImage' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpDockerClient::TagImage.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of TagImage' do
31
+ it 'should create an instance of TagImage' do
32
+ expect(@instance).to be_instance_of(PulpDockerClient::TagImage)
33
+ end
34
+ end
35
+ describe 'test attribute "repository"' 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
+
41
+ describe 'test attribute "tag"' 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 "digest"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ end
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: v3
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.0.0
9
+ OpenAPI Generator version: 4.1.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
@@ -14,22 +14,22 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for PulpDockerClient::ManifestTag
17
+ # Unit tests for PulpDockerClient::Tag
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe 'ManifestTag' do
20
+ describe 'Tag' do
21
21
  before do
22
22
  # run before each test
23
- @instance = PulpDockerClient::ManifestTag.new
23
+ @instance = PulpDockerClient::Tag.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 ManifestTag' do
31
- it 'should create an instance of ManifestTag' do
32
- expect(@instance).to be_instance_of(PulpDockerClient::ManifestTag)
30
+ describe 'test an instance of Tag' do
31
+ it 'should create an instance of Tag' do
32
+ expect(@instance).to be_instance_of(PulpDockerClient::Tag)
33
33
  end
34
34
  end
35
35
  describe 'test attribute "_href"' do
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.1.2-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpDockerClient::UnTagImage
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'UnTagImage' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpDockerClient::UnTagImage.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of UnTagImage' do
31
+ it 'should create an instance of UnTagImage' do
32
+ expect(@instance).to be_instance_of(PulpDockerClient::UnTagImage)
33
+ end
34
+ end
35
+ describe 'test attribute "repository"' 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
+
41
+ describe 'test attribute "tag"' 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
+ end
data/spec/spec_helper.rb CHANGED
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: v3
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.0.0
9
+ OpenAPI Generator version: 4.1.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
metadata CHANGED
@@ -1,35 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_docker_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0b5
4
+ version: 4.0.0b6
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-04 00:00:00.000000000 Z
11
+ date: 2019-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: typhoeus
14
+ name: faraday
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '1.0'
20
17
  - - ">="
21
18
  - !ruby/object:Gem::Version
22
- version: 1.0.1
19
+ version: 0.14.0
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
- - - "~>"
28
- - !ruby/object:Gem::Version
29
- version: '1.0'
30
24
  - - ">="
31
25
  - !ruby/object:Gem::Version
32
- version: 1.0.1
26
+ version: 0.14.0
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: json
35
29
  requirement: !ruby/object:Gem::Requirement
@@ -70,126 +64,6 @@ dependencies:
70
64
  - - ">="
71
65
  - !ruby/object:Gem::Version
72
66
  version: 3.6.0
73
- - !ruby/object:Gem::Dependency
74
- name: vcr
75
- requirement: !ruby/object:Gem::Requirement
76
- requirements:
77
- - - "~>"
78
- - !ruby/object:Gem::Version
79
- version: '3.0'
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: 3.0.1
83
- type: :development
84
- prerelease: false
85
- version_requirements: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - "~>"
88
- - !ruby/object:Gem::Version
89
- version: '3.0'
90
- - - ">="
91
- - !ruby/object:Gem::Version
92
- version: 3.0.1
93
- - !ruby/object:Gem::Dependency
94
- name: webmock
95
- requirement: !ruby/object:Gem::Requirement
96
- requirements:
97
- - - "~>"
98
- - !ruby/object:Gem::Version
99
- version: '1.24'
100
- - - ">="
101
- - !ruby/object:Gem::Version
102
- version: 1.24.3
103
- type: :development
104
- prerelease: false
105
- version_requirements: !ruby/object:Gem::Requirement
106
- requirements:
107
- - - "~>"
108
- - !ruby/object:Gem::Version
109
- version: '1.24'
110
- - - ">="
111
- - !ruby/object:Gem::Version
112
- version: 1.24.3
113
- - !ruby/object:Gem::Dependency
114
- name: autotest
115
- requirement: !ruby/object:Gem::Requirement
116
- requirements:
117
- - - "~>"
118
- - !ruby/object:Gem::Version
119
- version: '4.4'
120
- - - ">="
121
- - !ruby/object:Gem::Version
122
- version: 4.4.6
123
- type: :development
124
- prerelease: false
125
- version_requirements: !ruby/object:Gem::Requirement
126
- requirements:
127
- - - "~>"
128
- - !ruby/object:Gem::Version
129
- version: '4.4'
130
- - - ">="
131
- - !ruby/object:Gem::Version
132
- version: 4.4.6
133
- - !ruby/object:Gem::Dependency
134
- name: autotest-rails-pure
135
- requirement: !ruby/object:Gem::Requirement
136
- requirements:
137
- - - "~>"
138
- - !ruby/object:Gem::Version
139
- version: '4.1'
140
- - - ">="
141
- - !ruby/object:Gem::Version
142
- version: 4.1.2
143
- type: :development
144
- prerelease: false
145
- version_requirements: !ruby/object:Gem::Requirement
146
- requirements:
147
- - - "~>"
148
- - !ruby/object:Gem::Version
149
- version: '4.1'
150
- - - ">="
151
- - !ruby/object:Gem::Version
152
- version: 4.1.2
153
- - !ruby/object:Gem::Dependency
154
- name: autotest-growl
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - "~>"
158
- - !ruby/object:Gem::Version
159
- version: '0.2'
160
- - - ">="
161
- - !ruby/object:Gem::Version
162
- version: 0.2.16
163
- type: :development
164
- prerelease: false
165
- version_requirements: !ruby/object:Gem::Requirement
166
- requirements:
167
- - - "~>"
168
- - !ruby/object:Gem::Version
169
- version: '0.2'
170
- - - ">="
171
- - !ruby/object:Gem::Version
172
- version: 0.2.16
173
- - !ruby/object:Gem::Dependency
174
- name: autotest-fsevent
175
- requirement: !ruby/object:Gem::Requirement
176
- requirements:
177
- - - "~>"
178
- - !ruby/object:Gem::Version
179
- version: '0.2'
180
- - - ">="
181
- - !ruby/object:Gem::Version
182
- version: 0.2.12
183
- type: :development
184
- prerelease: false
185
- version_requirements: !ruby/object:Gem::Requirement
186
- requirements:
187
- - - "~>"
188
- - !ruby/object:Gem::Version
189
- version: '0.2'
190
- - - ">="
191
- - !ruby/object:Gem::Version
192
- version: 0.2.12
193
67
  description: No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
194
68
  email:
195
69
  - ''
@@ -198,32 +72,46 @@ extensions: []
198
72
  extra_rdoc_files: []
199
73
  files:
200
74
  - Gemfile
201
- - Gemfile.lock
202
75
  - README.md
203
76
  - Rakefile
204
77
  - docs/AsyncOperationResponse.md
205
78
  - docs/Blob.md
206
79
  - docs/ContentBlobsApi.md
207
- - docs/ContentManifestTagsApi.md
208
80
  - docs/ContentManifestsApi.md
81
+ - docs/ContentTagsApi.md
209
82
  - docs/DistributionsDockerApi.md
83
+ - docs/DockerCopyApi.md
210
84
  - docs/DockerDistribution.md
85
+ - docs/DockerRecursiveAddApi.md
86
+ - docs/DockerRecursiveRemoveApi.md
211
87
  - docs/DockerRemote.md
88
+ - docs/DockerTagApi.md
89
+ - docs/DockerUntagApi.md
212
90
  - docs/InlineResponse200.md
213
91
  - docs/InlineResponse2001.md
214
92
  - docs/InlineResponse2002.md
215
93
  - docs/InlineResponse2003.md
216
94
  - docs/InlineResponse2004.md
217
95
  - docs/Manifest.md
218
- - docs/ManifestTag.md
96
+ - docs/ManifestCopy.md
97
+ - docs/RecursiveManage.md
219
98
  - docs/RemotesDockerApi.md
220
99
  - docs/RepositorySyncURL.md
100
+ - docs/Tag.md
101
+ - docs/TagCopy.md
102
+ - docs/TagImage.md
103
+ - docs/UnTagImage.md
221
104
  - git_push.sh
222
105
  - lib/pulp_docker_client.rb
223
106
  - lib/pulp_docker_client/api/content_blobs_api.rb
224
- - lib/pulp_docker_client/api/content_manifest_tags_api.rb
225
107
  - lib/pulp_docker_client/api/content_manifests_api.rb
108
+ - lib/pulp_docker_client/api/content_tags_api.rb
226
109
  - lib/pulp_docker_client/api/distributions_docker_api.rb
110
+ - lib/pulp_docker_client/api/docker_copy_api.rb
111
+ - lib/pulp_docker_client/api/docker_recursive_add_api.rb
112
+ - lib/pulp_docker_client/api/docker_recursive_remove_api.rb
113
+ - lib/pulp_docker_client/api/docker_tag_api.rb
114
+ - lib/pulp_docker_client/api/docker_untag_api.rb
227
115
  - lib/pulp_docker_client/api/remotes_docker_api.rb
228
116
  - lib/pulp_docker_client/api_client.rb
229
117
  - lib/pulp_docker_client/api_error.rb
@@ -238,14 +126,24 @@ files:
238
126
  - lib/pulp_docker_client/models/inline_response2003.rb
239
127
  - lib/pulp_docker_client/models/inline_response2004.rb
240
128
  - lib/pulp_docker_client/models/manifest.rb
241
- - lib/pulp_docker_client/models/manifest_tag.rb
129
+ - lib/pulp_docker_client/models/manifest_copy.rb
130
+ - lib/pulp_docker_client/models/recursive_manage.rb
242
131
  - lib/pulp_docker_client/models/repository_sync_url.rb
132
+ - lib/pulp_docker_client/models/tag.rb
133
+ - lib/pulp_docker_client/models/tag_copy.rb
134
+ - lib/pulp_docker_client/models/tag_image.rb
135
+ - lib/pulp_docker_client/models/un_tag_image.rb
243
136
  - lib/pulp_docker_client/version.rb
244
137
  - pulp_docker_client.gemspec
245
138
  - spec/api/content_blobs_api_spec.rb
246
- - spec/api/content_manifest_tags_api_spec.rb
247
139
  - spec/api/content_manifests_api_spec.rb
140
+ - spec/api/content_tags_api_spec.rb
248
141
  - spec/api/distributions_docker_api_spec.rb
142
+ - spec/api/docker_copy_api_spec.rb
143
+ - spec/api/docker_recursive_add_api_spec.rb
144
+ - spec/api/docker_recursive_remove_api_spec.rb
145
+ - spec/api/docker_tag_api_spec.rb
146
+ - spec/api/docker_untag_api_spec.rb
249
147
  - spec/api/remotes_docker_api_spec.rb
250
148
  - spec/api_client_spec.rb
251
149
  - spec/configuration_spec.rb
@@ -258,13 +156,18 @@ files:
258
156
  - spec/models/inline_response2003_spec.rb
259
157
  - spec/models/inline_response2004_spec.rb
260
158
  - spec/models/inline_response200_spec.rb
159
+ - spec/models/manifest_copy_spec.rb
261
160
  - spec/models/manifest_spec.rb
262
- - spec/models/manifest_tag_spec.rb
161
+ - spec/models/recursive_manage_spec.rb
263
162
  - spec/models/repository_sync_url_spec.rb
163
+ - spec/models/tag_copy_spec.rb
164
+ - spec/models/tag_image_spec.rb
165
+ - spec/models/tag_spec.rb
166
+ - spec/models/un_tag_image_spec.rb
264
167
  - spec/spec_helper.rb
265
168
  homepage: https://openapi-generator.tech
266
169
  licenses:
267
- - GPLv2
170
+ - GPL-2.0
268
171
  metadata: {}
269
172
  post_install_message:
270
173
  rdoc_options: []
@@ -287,23 +190,33 @@ signing_key:
287
190
  specification_version: 4
288
191
  summary: Pulp 3 API Ruby Gem
289
192
  test_files:
193
+ - spec/api/content_tags_api_spec.rb
194
+ - spec/api/docker_recursive_remove_api_spec.rb
290
195
  - spec/api/content_blobs_api_spec.rb
196
+ - spec/api/docker_untag_api_spec.rb
197
+ - spec/api/docker_copy_api_spec.rb
291
198
  - spec/api/content_manifests_api_spec.rb
199
+ - spec/api/docker_recursive_add_api_spec.rb
292
200
  - spec/api/remotes_docker_api_spec.rb
293
- - spec/api/content_manifest_tags_api_spec.rb
201
+ - spec/api/docker_tag_api_spec.rb
294
202
  - spec/api/distributions_docker_api_spec.rb
295
203
  - spec/api_client_spec.rb
296
204
  - spec/configuration_spec.rb
205
+ - spec/models/tag_spec.rb
297
206
  - spec/models/inline_response2003_spec.rb
207
+ - spec/models/tag_copy_spec.rb
298
208
  - spec/models/inline_response2001_spec.rb
299
209
  - spec/models/inline_response2002_spec.rb
300
210
  - spec/models/inline_response2004_spec.rb
211
+ - spec/models/un_tag_image_spec.rb
301
212
  - spec/models/async_operation_response_spec.rb
302
213
  - spec/models/docker_distribution_spec.rb
214
+ - spec/models/manifest_copy_spec.rb
215
+ - spec/models/tag_image_spec.rb
303
216
  - spec/models/repository_sync_url_spec.rb
304
217
  - spec/models/blob_spec.rb
305
- - spec/models/manifest_tag_spec.rb
306
218
  - spec/models/docker_remote_spec.rb
307
219
  - spec/models/manifest_spec.rb
220
+ - spec/models/recursive_manage_spec.rb
308
221
  - spec/models/inline_response200_spec.rb
309
222
  - spec/spec_helper.rb