pulp_ansible_client 0.2.0b5 → 0.2.0b6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +43 -23
  3. data/docs/{AnsibleDistribution.md → AnsibleAnsibleDistribution.md} +6 -6
  4. data/docs/AnsibleAnsibleRemote.md +39 -0
  5. data/docs/AnsibleAnsibleRepository.md +27 -0
  6. data/docs/AnsibleCollection.md +19 -0
  7. data/docs/AnsibleCollectionRemote.md +41 -0
  8. data/docs/AnsibleCollectionVersion.md +67 -0
  9. data/docs/AnsibleCollectionsApi.md +80 -18
  10. data/docs/AnsibleRole.md +27 -0
  11. data/docs/AnsibleTag.md +17 -0
  12. data/docs/Collection.md +31 -0
  13. data/docs/CollectionImportDetail.md +2 -2
  14. data/docs/CollectionMetadata.md +9 -9
  15. data/docs/{TagNested.md → CollectionNamespace.md} +3 -3
  16. data/docs/CollectionRef.md +21 -0
  17. data/docs/CollectionVersion.md +19 -59
  18. data/docs/ContentCollectionVersionsApi.md +25 -27
  19. data/docs/ContentRolesApi.md +17 -25
  20. data/docs/ContentSummary.md +21 -0
  21. data/docs/DistributionsAnsibleApi.md +16 -12
  22. data/docs/GalaxyCollection.md +2 -2
  23. data/docs/GalaxyCollectionVersion.md +4 -4
  24. data/docs/GalaxyRole.md +1 -1
  25. data/docs/GalaxyRoleVersion.md +1 -1
  26. data/docs/InlineResponse200.md +1 -1
  27. data/docs/InlineResponse2001.md +1 -1
  28. data/docs/InlineResponse20010.md +23 -0
  29. data/docs/InlineResponse20011.md +23 -0
  30. data/docs/InlineResponse20012.md +23 -0
  31. data/docs/InlineResponse20013.md +23 -0
  32. data/docs/InlineResponse2002.md +1 -1
  33. data/docs/InlineResponse2003.md +1 -1
  34. data/docs/InlineResponse2004.md +1 -1
  35. data/docs/InlineResponse2005.md +1 -1
  36. data/docs/InlineResponse2006.md +1 -1
  37. data/docs/InlineResponse2007.md +1 -1
  38. data/docs/InlineResponse2008.md +1 -1
  39. data/docs/InlineResponse2009.md +1 -1
  40. data/docs/PulpAnsibleApiApi.md +3 -1
  41. data/docs/PulpAnsibleGalaxyApiCollectionsApi.md +16 -9
  42. data/docs/PulpAnsibleGalaxyApiRolesApi.md +5 -3
  43. data/docs/PulpAnsibleGalaxyApiV1VersionsApi.md +5 -3
  44. data/docs/PulpAnsibleGalaxyApiV2VersionsApi.md +5 -3
  45. data/docs/PulpAnsibleGalaxyApiV3CollectionsApi.md +28 -10
  46. data/docs/PulpAnsibleTagsApi.md +5 -3
  47. data/docs/RemotesAnsibleApi.md +30 -81
  48. data/docs/RemotesCollectionApi.md +30 -81
  49. data/docs/RepositoriesAnsibleApi.md +409 -0
  50. data/docs/RepositoriesAnsibleVersionsApi.md +214 -0
  51. data/docs/RepositorySyncURL.md +2 -2
  52. data/docs/RepositoryVersion.md +25 -0
  53. data/docs/Tag.md +1 -1
  54. data/lib/pulp_ansible_client/api/ansible_collections_api.rb +103 -35
  55. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +40 -57
  56. data/lib/pulp_ansible_client/api/content_roles_api.rb +28 -58
  57. data/lib/pulp_ansible_client/api/distributions_ansible_api.rb +19 -13
  58. data/lib/pulp_ansible_client/api/pulp_ansible_api_api.rb +4 -1
  59. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_collections_api.rb +20 -9
  60. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_roles_api.rb +7 -4
  61. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v1_versions_api.rb +7 -4
  62. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v2_versions_api.rb +7 -4
  63. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_collections_api.rb +59 -12
  64. data/lib/pulp_ansible_client/api/pulp_ansible_tags_api.rb +7 -4
  65. data/lib/pulp_ansible_client/api/remotes_ansible_api.rb +40 -102
  66. data/lib/pulp_ansible_client/api/remotes_collection_api.rb +40 -102
  67. data/lib/pulp_ansible_client/api/repositories_ansible_api.rb +498 -0
  68. data/lib/pulp_ansible_client/api/repositories_ansible_versions_api.rb +268 -0
  69. data/lib/pulp_ansible_client/api_client.rb +1 -1
  70. data/lib/pulp_ansible_client/api_error.rb +1 -1
  71. data/lib/pulp_ansible_client/configuration.rb +1 -1
  72. data/lib/pulp_ansible_client/models/{ansible_distribution.rb → ansible_ansible_distribution.rb} +31 -36
  73. data/lib/pulp_ansible_client/models/{ansible_remote.rb → ansible_ansible_remote.rb} +87 -147
  74. data/lib/pulp_ansible_client/models/ansible_ansible_repository.rb +294 -0
  75. data/lib/pulp_ansible_client/models/ansible_collection.rb +265 -0
  76. data/lib/pulp_ansible_client/models/{collection_remote.rb → ansible_collection_remote.rb} +88 -147
  77. data/lib/pulp_ansible_client/models/ansible_collection_version.rb +816 -0
  78. data/lib/pulp_ansible_client/models/{role.rb → ansible_role.rb} +31 -60
  79. data/lib/pulp_ansible_client/models/{tag_nested.rb → ansible_tag.rb} +15 -5
  80. data/lib/pulp_ansible_client/models/async_operation_response.rb +12 -2
  81. data/lib/pulp_ansible_client/models/collection.rb +314 -0
  82. data/lib/pulp_ansible_client/models/collection_import_detail.rb +14 -4
  83. data/lib/pulp_ansible_client/models/collection_metadata.rb +14 -4
  84. data/lib/pulp_ansible_client/models/collection_namespace.rb +230 -0
  85. data/lib/pulp_ansible_client/models/collection_ref.rb +272 -0
  86. data/lib/pulp_ansible_client/models/collection_version.rb +109 -536
  87. data/lib/pulp_ansible_client/models/content_summary.rb +246 -0
  88. data/lib/pulp_ansible_client/models/galaxy_collection.rb +12 -2
  89. data/lib/pulp_ansible_client/models/galaxy_collection_version.rb +12 -2
  90. data/lib/pulp_ansible_client/models/galaxy_role.rb +12 -2
  91. data/lib/pulp_ansible_client/models/galaxy_role_version.rb +12 -2
  92. data/lib/pulp_ansible_client/models/inline_response200.rb +15 -3
  93. data/lib/pulp_ansible_client/models/inline_response2001.rb +15 -3
  94. data/lib/pulp_ansible_client/models/inline_response20010.rb +247 -0
  95. data/lib/pulp_ansible_client/models/inline_response20011.rb +247 -0
  96. data/lib/pulp_ansible_client/models/inline_response20012.rb +247 -0
  97. data/lib/pulp_ansible_client/models/inline_response20013.rb +247 -0
  98. data/lib/pulp_ansible_client/models/inline_response2002.rb +15 -3
  99. data/lib/pulp_ansible_client/models/inline_response2003.rb +15 -3
  100. data/lib/pulp_ansible_client/models/inline_response2004.rb +15 -3
  101. data/lib/pulp_ansible_client/models/inline_response2005.rb +15 -3
  102. data/lib/pulp_ansible_client/models/inline_response2006.rb +15 -3
  103. data/lib/pulp_ansible_client/models/inline_response2007.rb +15 -3
  104. data/lib/pulp_ansible_client/models/inline_response2008.rb +15 -3
  105. data/lib/pulp_ansible_client/models/inline_response2009.rb +15 -3
  106. data/lib/pulp_ansible_client/models/repository_sync_url.rb +22 -12
  107. data/lib/pulp_ansible_client/models/repository_version.rb +244 -0
  108. data/lib/pulp_ansible_client/models/tag.rb +12 -2
  109. data/lib/pulp_ansible_client/version.rb +2 -2
  110. data/lib/pulp_ansible_client.rb +20 -6
  111. data/pulp_ansible_client.gemspec +1 -1
  112. data/spec/api/ansible_collections_api_spec.rb +25 -10
  113. data/spec/api/content_collection_versions_api_spec.rb +12 -12
  114. data/spec/api/content_roles_api_spec.rb +8 -11
  115. data/spec/api/distributions_ansible_api_spec.rb +5 -3
  116. data/spec/api/pulp_ansible_api_api_spec.rb +2 -1
  117. data/spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb +6 -3
  118. data/spec/api/pulp_ansible_galaxy_api_roles_api_spec.rb +3 -2
  119. data/spec/api/pulp_ansible_galaxy_api_v1_versions_api_spec.rb +3 -2
  120. data/spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb +3 -2
  121. data/spec/api/pulp_ansible_galaxy_api_v3_collections_api_spec.rb +12 -4
  122. data/spec/api/pulp_ansible_tags_api_spec.rb +3 -2
  123. data/spec/api/remotes_ansible_api_spec.rb +12 -22
  124. data/spec/api/remotes_collection_api_spec.rb +12 -22
  125. data/spec/api/repositories_ansible_api_spec.rb +128 -0
  126. data/spec/api/repositories_ansible_versions_api_spec.rb +91 -0
  127. data/spec/api_client_spec.rb +2 -2
  128. data/spec/configuration_spec.rb +1 -1
  129. data/spec/models/{ansible_distribution_spec.rb → ansible_ansible_distribution_spec.rb} +9 -9
  130. data/spec/models/{collection_remote_spec.rb → ansible_ansible_remote_spec.rb} +14 -38
  131. data/spec/models/ansible_ansible_repository_spec.rb +71 -0
  132. data/spec/models/{ansible_remote_spec.rb → ansible_collection_remote_spec.rb} +20 -32
  133. data/spec/models/ansible_collection_spec.rb +47 -0
  134. data/spec/models/ansible_collection_version_spec.rb +191 -0
  135. data/spec/models/ansible_role_spec.rb +71 -0
  136. data/spec/models/{tag_nested_spec.rb → ansible_tag_spec.rb} +7 -7
  137. data/spec/models/async_operation_response_spec.rb +1 -1
  138. data/spec/models/collection_import_detail_spec.rb +1 -1
  139. data/spec/models/collection_metadata_spec.rb +1 -1
  140. data/spec/models/collection_namespace_spec.rb +41 -0
  141. data/spec/models/collection_ref_spec.rb +53 -0
  142. data/spec/models/{role_spec.rb → collection_spec.rb} +15 -21
  143. data/spec/models/collection_version_spec.rb +14 -130
  144. data/spec/models/content_summary_spec.rb +53 -0
  145. data/spec/models/galaxy_collection_spec.rb +1 -1
  146. data/spec/models/galaxy_collection_version_spec.rb +1 -1
  147. data/spec/models/galaxy_role_spec.rb +1 -1
  148. data/spec/models/galaxy_role_version_spec.rb +1 -1
  149. data/spec/models/inline_response20010_spec.rb +59 -0
  150. data/spec/models/inline_response20011_spec.rb +59 -0
  151. data/spec/models/inline_response20012_spec.rb +59 -0
  152. data/spec/models/inline_response20013_spec.rb +59 -0
  153. data/spec/models/inline_response2001_spec.rb +1 -1
  154. data/spec/models/inline_response2002_spec.rb +1 -1
  155. data/spec/models/inline_response2003_spec.rb +1 -1
  156. data/spec/models/inline_response2004_spec.rb +1 -1
  157. data/spec/models/inline_response2005_spec.rb +1 -1
  158. data/spec/models/inline_response2006_spec.rb +1 -1
  159. data/spec/models/inline_response2007_spec.rb +1 -1
  160. data/spec/models/inline_response2008_spec.rb +1 -1
  161. data/spec/models/inline_response2009_spec.rb +1 -1
  162. data/spec/models/inline_response200_spec.rb +1 -1
  163. data/spec/models/repository_sync_url_spec.rb +2 -2
  164. data/spec/models/repository_version_spec.rb +65 -0
  165. data/spec/models/tag_spec.rb +1 -1
  166. data/spec/spec_helper.rb +1 -1
  167. metadata +78 -22
  168. data/docs/AnsibleRemote.md +0 -45
  169. data/docs/CollectionRemote.md +0 -47
  170. data/docs/Role.md +0 -33
@@ -0,0 +1,65 @@
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.2.2-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpAnsibleClient::RepositoryVersion
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'RepositoryVersion' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpAnsibleClient::RepositoryVersion.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of RepositoryVersion' do
31
+ it 'should create an instance of RepositoryVersion' do
32
+ expect(@instance).to be_instance_of(PulpAnsibleClient::RepositoryVersion)
33
+ end
34
+ end
35
+ describe 'test attribute "pulp_href"' 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 "pulp_created"' 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 "number"' 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 "base_version"' 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 "content_summary"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ 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.1.3-SNAPSHOT
9
+ OpenAPI Generator version: 4.2.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
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.1.3-SNAPSHOT
9
+ OpenAPI Generator version: 4.2.2-SNAPSHOT
10
10
 
11
11
  =end
12
12
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_ansible_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0b5
4
+ version: 0.2.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-10-01 00:00:00.000000000 Z
11
+ date: 2019-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -74,16 +74,25 @@ files:
74
74
  - Gemfile
75
75
  - README.md
76
76
  - Rakefile
77
+ - docs/AnsibleAnsibleDistribution.md
78
+ - docs/AnsibleAnsibleRemote.md
79
+ - docs/AnsibleAnsibleRepository.md
80
+ - docs/AnsibleCollection.md
81
+ - docs/AnsibleCollectionRemote.md
82
+ - docs/AnsibleCollectionVersion.md
77
83
  - docs/AnsibleCollectionsApi.md
78
- - docs/AnsibleDistribution.md
79
- - docs/AnsibleRemote.md
84
+ - docs/AnsibleRole.md
85
+ - docs/AnsibleTag.md
80
86
  - docs/AsyncOperationResponse.md
87
+ - docs/Collection.md
81
88
  - docs/CollectionImportDetail.md
82
89
  - docs/CollectionMetadata.md
83
- - docs/CollectionRemote.md
90
+ - docs/CollectionNamespace.md
91
+ - docs/CollectionRef.md
84
92
  - docs/CollectionVersion.md
85
93
  - docs/ContentCollectionVersionsApi.md
86
94
  - docs/ContentRolesApi.md
95
+ - docs/ContentSummary.md
87
96
  - docs/DistributionsAnsibleApi.md
88
97
  - docs/GalaxyCollection.md
89
98
  - docs/GalaxyCollectionVersion.md
@@ -91,6 +100,10 @@ files:
91
100
  - docs/GalaxyRoleVersion.md
92
101
  - docs/InlineResponse200.md
93
102
  - docs/InlineResponse2001.md
103
+ - docs/InlineResponse20010.md
104
+ - docs/InlineResponse20011.md
105
+ - docs/InlineResponse20012.md
106
+ - docs/InlineResponse20013.md
94
107
  - docs/InlineResponse2002.md
95
108
  - docs/InlineResponse2003.md
96
109
  - docs/InlineResponse2004.md
@@ -108,10 +121,11 @@ files:
108
121
  - docs/PulpAnsibleTagsApi.md
109
122
  - docs/RemotesAnsibleApi.md
110
123
  - docs/RemotesCollectionApi.md
124
+ - docs/RepositoriesAnsibleApi.md
125
+ - docs/RepositoriesAnsibleVersionsApi.md
111
126
  - docs/RepositorySyncURL.md
112
- - docs/Role.md
127
+ - docs/RepositoryVersion.md
113
128
  - docs/Tag.md
114
- - docs/TagNested.md
115
129
  - git_push.sh
116
130
  - lib/pulp_ansible_client.rb
117
131
  - lib/pulp_ansible_client/api/ansible_collections_api.rb
@@ -127,22 +141,37 @@ files:
127
141
  - lib/pulp_ansible_client/api/pulp_ansible_tags_api.rb
128
142
  - lib/pulp_ansible_client/api/remotes_ansible_api.rb
129
143
  - lib/pulp_ansible_client/api/remotes_collection_api.rb
144
+ - lib/pulp_ansible_client/api/repositories_ansible_api.rb
145
+ - lib/pulp_ansible_client/api/repositories_ansible_versions_api.rb
130
146
  - lib/pulp_ansible_client/api_client.rb
131
147
  - lib/pulp_ansible_client/api_error.rb
132
148
  - lib/pulp_ansible_client/configuration.rb
133
- - lib/pulp_ansible_client/models/ansible_distribution.rb
134
- - lib/pulp_ansible_client/models/ansible_remote.rb
149
+ - lib/pulp_ansible_client/models/ansible_ansible_distribution.rb
150
+ - lib/pulp_ansible_client/models/ansible_ansible_remote.rb
151
+ - lib/pulp_ansible_client/models/ansible_ansible_repository.rb
152
+ - lib/pulp_ansible_client/models/ansible_collection.rb
153
+ - lib/pulp_ansible_client/models/ansible_collection_remote.rb
154
+ - lib/pulp_ansible_client/models/ansible_collection_version.rb
155
+ - lib/pulp_ansible_client/models/ansible_role.rb
156
+ - lib/pulp_ansible_client/models/ansible_tag.rb
135
157
  - lib/pulp_ansible_client/models/async_operation_response.rb
158
+ - lib/pulp_ansible_client/models/collection.rb
136
159
  - lib/pulp_ansible_client/models/collection_import_detail.rb
137
160
  - lib/pulp_ansible_client/models/collection_metadata.rb
138
- - lib/pulp_ansible_client/models/collection_remote.rb
161
+ - lib/pulp_ansible_client/models/collection_namespace.rb
162
+ - lib/pulp_ansible_client/models/collection_ref.rb
139
163
  - lib/pulp_ansible_client/models/collection_version.rb
164
+ - lib/pulp_ansible_client/models/content_summary.rb
140
165
  - lib/pulp_ansible_client/models/galaxy_collection.rb
141
166
  - lib/pulp_ansible_client/models/galaxy_collection_version.rb
142
167
  - lib/pulp_ansible_client/models/galaxy_role.rb
143
168
  - lib/pulp_ansible_client/models/galaxy_role_version.rb
144
169
  - lib/pulp_ansible_client/models/inline_response200.rb
145
170
  - lib/pulp_ansible_client/models/inline_response2001.rb
171
+ - lib/pulp_ansible_client/models/inline_response20010.rb
172
+ - lib/pulp_ansible_client/models/inline_response20011.rb
173
+ - lib/pulp_ansible_client/models/inline_response20012.rb
174
+ - lib/pulp_ansible_client/models/inline_response20013.rb
146
175
  - lib/pulp_ansible_client/models/inline_response2002.rb
147
176
  - lib/pulp_ansible_client/models/inline_response2003.rb
148
177
  - lib/pulp_ansible_client/models/inline_response2004.rb
@@ -152,9 +181,8 @@ files:
152
181
  - lib/pulp_ansible_client/models/inline_response2008.rb
153
182
  - lib/pulp_ansible_client/models/inline_response2009.rb
154
183
  - lib/pulp_ansible_client/models/repository_sync_url.rb
155
- - lib/pulp_ansible_client/models/role.rb
184
+ - lib/pulp_ansible_client/models/repository_version.rb
156
185
  - lib/pulp_ansible_client/models/tag.rb
157
- - lib/pulp_ansible_client/models/tag_nested.rb
158
186
  - lib/pulp_ansible_client/version.rb
159
187
  - pulp_ansible_client.gemspec
160
188
  - spec/api/ansible_collections_api_spec.rb
@@ -170,19 +198,34 @@ files:
170
198
  - spec/api/pulp_ansible_tags_api_spec.rb
171
199
  - spec/api/remotes_ansible_api_spec.rb
172
200
  - spec/api/remotes_collection_api_spec.rb
201
+ - spec/api/repositories_ansible_api_spec.rb
202
+ - spec/api/repositories_ansible_versions_api_spec.rb
173
203
  - spec/api_client_spec.rb
174
204
  - spec/configuration_spec.rb
175
- - spec/models/ansible_distribution_spec.rb
176
- - spec/models/ansible_remote_spec.rb
205
+ - spec/models/ansible_ansible_distribution_spec.rb
206
+ - spec/models/ansible_ansible_remote_spec.rb
207
+ - spec/models/ansible_ansible_repository_spec.rb
208
+ - spec/models/ansible_collection_remote_spec.rb
209
+ - spec/models/ansible_collection_spec.rb
210
+ - spec/models/ansible_collection_version_spec.rb
211
+ - spec/models/ansible_role_spec.rb
212
+ - spec/models/ansible_tag_spec.rb
177
213
  - spec/models/async_operation_response_spec.rb
178
214
  - spec/models/collection_import_detail_spec.rb
179
215
  - spec/models/collection_metadata_spec.rb
180
- - spec/models/collection_remote_spec.rb
216
+ - spec/models/collection_namespace_spec.rb
217
+ - spec/models/collection_ref_spec.rb
218
+ - spec/models/collection_spec.rb
181
219
  - spec/models/collection_version_spec.rb
220
+ - spec/models/content_summary_spec.rb
182
221
  - spec/models/galaxy_collection_spec.rb
183
222
  - spec/models/galaxy_collection_version_spec.rb
184
223
  - spec/models/galaxy_role_spec.rb
185
224
  - spec/models/galaxy_role_version_spec.rb
225
+ - spec/models/inline_response20010_spec.rb
226
+ - spec/models/inline_response20011_spec.rb
227
+ - spec/models/inline_response20012_spec.rb
228
+ - spec/models/inline_response20013_spec.rb
186
229
  - spec/models/inline_response2001_spec.rb
187
230
  - spec/models/inline_response2002_spec.rb
188
231
  - spec/models/inline_response2003_spec.rb
@@ -194,8 +237,7 @@ files:
194
237
  - spec/models/inline_response2009_spec.rb
195
238
  - spec/models/inline_response200_spec.rb
196
239
  - spec/models/repository_sync_url_spec.rb
197
- - spec/models/role_spec.rb
198
- - spec/models/tag_nested_spec.rb
240
+ - spec/models/repository_version_spec.rb
199
241
  - spec/models/tag_spec.rb
200
242
  - spec/spec_helper.rb
201
243
  homepage: https://openapi-generator.tech
@@ -225,11 +267,13 @@ summary: Pulp 3 API Ruby Gem
225
267
  test_files:
226
268
  - spec/api/ansible_collections_api_spec.rb
227
269
  - spec/api/distributions_ansible_api_spec.rb
270
+ - spec/api/repositories_ansible_api_spec.rb
228
271
  - spec/api/remotes_ansible_api_spec.rb
229
272
  - spec/api/content_collection_versions_api_spec.rb
230
273
  - spec/api/pulp_ansible_galaxy_api_v3_collections_api_spec.rb
231
274
  - spec/api/remotes_collection_api_spec.rb
232
275
  - spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb
276
+ - spec/api/repositories_ansible_versions_api_spec.rb
233
277
  - spec/api/pulp_ansible_galaxy_api_v1_versions_api_spec.rb
234
278
  - spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb
235
279
  - spec/api/content_roles_api_spec.rb
@@ -241,25 +285,37 @@ test_files:
241
285
  - spec/models/tag_spec.rb
242
286
  - spec/models/galaxy_role_spec.rb
243
287
  - spec/models/inline_response2003_spec.rb
288
+ - spec/models/collection_namespace_spec.rb
244
289
  - spec/models/collection_metadata_spec.rb
245
- - spec/models/collection_remote_spec.rb
246
290
  - spec/models/galaxy_collection_version_spec.rb
291
+ - spec/models/inline_response20010_spec.rb
292
+ - spec/models/repository_version_spec.rb
247
293
  - spec/models/inline_response2001_spec.rb
248
294
  - spec/models/galaxy_role_version_spec.rb
295
+ - spec/models/ansible_collection_version_spec.rb
296
+ - spec/models/ansible_collection_remote_spec.rb
249
297
  - spec/models/collection_import_detail_spec.rb
250
298
  - spec/models/galaxy_collection_spec.rb
251
- - spec/models/ansible_distribution_spec.rb
299
+ - spec/models/ansible_collection_spec.rb
300
+ - spec/models/ansible_ansible_repository_spec.rb
301
+ - spec/models/collection_spec.rb
252
302
  - spec/models/inline_response2006_spec.rb
253
303
  - spec/models/inline_response2002_spec.rb
254
304
  - spec/models/inline_response2004_spec.rb
305
+ - spec/models/inline_response20012_spec.rb
255
306
  - spec/models/collection_version_spec.rb
256
- - spec/models/role_spec.rb
307
+ - spec/models/ansible_ansible_distribution_spec.rb
308
+ - spec/models/inline_response20011_spec.rb
257
309
  - spec/models/async_operation_response_spec.rb
310
+ - spec/models/inline_response20013_spec.rb
311
+ - spec/models/ansible_role_spec.rb
312
+ - spec/models/content_summary_spec.rb
258
313
  - spec/models/inline_response2007_spec.rb
259
314
  - spec/models/repository_sync_url_spec.rb
260
- - spec/models/ansible_remote_spec.rb
315
+ - spec/models/collection_ref_spec.rb
316
+ - spec/models/ansible_ansible_remote_spec.rb
317
+ - spec/models/ansible_tag_spec.rb
261
318
  - spec/models/inline_response2009_spec.rb
262
- - spec/models/tag_nested_spec.rb
263
319
  - spec/models/inline_response2005_spec.rb
264
320
  - spec/models/inline_response2008_spec.rb
265
321
  - spec/models/inline_response200_spec.rb
@@ -1,45 +0,0 @@
1
- # PulpAnsibleClient::AnsibleRemote
2
-
3
- ## Properties
4
-
5
- Name | Type | Description | Notes
6
- ------------ | ------------- | ------------- | -------------
7
- **_href** | **String** | | [optional]
8
- **_created** | **DateTime** | Timestamp of creation. | [optional]
9
- **_type** | **String** | | [optional]
10
- **name** | **String** | A unique name for this remote. |
11
- **url** | **String** | The URL of an external content source. |
12
- **ssl_ca_certificate** | **String** | A string containing the PEM encoded CA certificate used to validate the server certificate presented by the remote server. All new line characters must be escaped. Returns SHA256 sum on GET. | [optional]
13
- **ssl_client_certificate** | **String** | A string containing the PEM encoded client certificate used for authentication. All new line characters must be escaped. Returns SHA256 sum on GET. | [optional]
14
- **ssl_client_key** | **String** | A PEM encoded private key used for authentication. Returns SHA256 sum on GET. | [optional]
15
- **ssl_validation** | **Boolean** | If True, SSL peer validation must be performed. | [optional]
16
- **proxy_url** | **String** | The proxy URL. Format: scheme://user:password@host:port | [optional]
17
- **username** | **String** | The username to be used for authentication when syncing. | [optional]
18
- **password** | **String** | The password to be used for authentication when syncing. | [optional]
19
- **_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional]
20
- **download_concurrency** | **Integer** | Total number of simultaneous connections. | [optional]
21
- **policy** | **String** | The policy to use when downloading content. | [optional] [default to 'immediate']
22
-
23
- ## Code Sample
24
-
25
- ```ruby
26
- require 'PulpAnsibleClient'
27
-
28
- instance = PulpAnsibleClient::AnsibleRemote.new(_href: null,
29
- _created: null,
30
- _type: null,
31
- name: null,
32
- url: null,
33
- ssl_ca_certificate: null,
34
- ssl_client_certificate: null,
35
- ssl_client_key: null,
36
- ssl_validation: null,
37
- proxy_url: null,
38
- username: null,
39
- password: null,
40
- _last_updated: null,
41
- download_concurrency: null,
42
- policy: null)
43
- ```
44
-
45
-
@@ -1,47 +0,0 @@
1
- # PulpAnsibleClient::CollectionRemote
2
-
3
- ## Properties
4
-
5
- Name | Type | Description | Notes
6
- ------------ | ------------- | ------------- | -------------
7
- **_href** | **String** | | [optional]
8
- **_created** | **DateTime** | Timestamp of creation. | [optional]
9
- **_type** | **String** | | [optional]
10
- **name** | **String** | A unique name for this remote. |
11
- **url** | **String** | The URL of an external content source. |
12
- **ssl_ca_certificate** | **String** | A string containing the PEM encoded CA certificate used to validate the server certificate presented by the remote server. All new line characters must be escaped. Returns SHA256 sum on GET. | [optional]
13
- **ssl_client_certificate** | **String** | A string containing the PEM encoded client certificate used for authentication. All new line characters must be escaped. Returns SHA256 sum on GET. | [optional]
14
- **ssl_client_key** | **String** | A PEM encoded private key used for authentication. Returns SHA256 sum on GET. | [optional]
15
- **ssl_validation** | **Boolean** | If True, SSL peer validation must be performed. | [optional]
16
- **proxy_url** | **String** | The proxy URL. Format: scheme://user:password@host:port | [optional]
17
- **username** | **String** | The username to be used for authentication when syncing. | [optional]
18
- **password** | **String** | The password to be used for authentication when syncing. | [optional]
19
- **_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional]
20
- **download_concurrency** | **Integer** | Total number of simultaneous connections. | [optional]
21
- **policy** | **String** | The policy to use when downloading content. | [optional] [default to 'immediate']
22
- **requirements_file** | **String** | The string version of Collection requirements yaml. | [optional]
23
-
24
- ## Code Sample
25
-
26
- ```ruby
27
- require 'PulpAnsibleClient'
28
-
29
- instance = PulpAnsibleClient::CollectionRemote.new(_href: null,
30
- _created: null,
31
- _type: null,
32
- name: null,
33
- url: null,
34
- ssl_ca_certificate: null,
35
- ssl_client_certificate: null,
36
- ssl_client_key: null,
37
- ssl_validation: null,
38
- proxy_url: null,
39
- username: null,
40
- password: null,
41
- _last_updated: null,
42
- download_concurrency: null,
43
- policy: null,
44
- requirements_file: null)
45
- ```
46
-
47
-
data/docs/Role.md DELETED
@@ -1,33 +0,0 @@
1
- # PulpAnsibleClient::Role
2
-
3
- ## Properties
4
-
5
- Name | Type | Description | Notes
6
- ------------ | ------------- | ------------- | -------------
7
- **file** | **String** | An uploaded file that should be turned into the artifact of the content unit. | [optional]
8
- **_created** | **DateTime** | Timestamp of creation. | [optional]
9
- **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
10
- **_href** | **String** | | [optional]
11
- **_type** | **String** | | [optional]
12
- **artifact** | **String** | Artifact file representing the physical content | [optional]
13
- **version** | **String** | |
14
- **name** | **String** | |
15
- **namespace** | **String** | |
16
-
17
- ## Code Sample
18
-
19
- ```ruby
20
- require 'PulpAnsibleClient'
21
-
22
- instance = PulpAnsibleClient::Role.new(file: null,
23
- _created: null,
24
- repository: null,
25
- _href: null,
26
- _type: null,
27
- artifact: null,
28
- version: null,
29
- name: null,
30
- namespace: null)
31
- ```
32
-
33
-