pulp_ansible_client 0.14.2 → 0.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -4
- data/docs/AnsibleAnsibleRepository.md +2 -2
- data/docs/AnsibleAnsibleRepositoryResponse.md +2 -2
- data/docs/AnsibleCollectionRemoteResponse.md +0 -2
- data/docs/AnsibleCollectionVersion.md +3 -3
- data/docs/AnsibleCollectionVersionResponse.md +3 -3
- data/docs/AnsibleGitRemote.md +26 -26
- data/docs/AnsibleGitRemoteResponse.md +22 -22
- data/docs/AnsibleRepositoryRebuild.md +21 -0
- data/docs/AnsibleRoleResponse.md +3 -3
- data/docs/ClientConfigurationResponse.md +17 -0
- data/docs/ContentCollectionVersionsApi.md +3 -3
- data/docs/PatchedansibleAnsibleRepository.md +2 -2
- data/docs/PatchedansibleGitRemote.md +26 -26
- data/docs/PulpAnsibleApiV3PluginAnsibleClientConfigurationApi.md +67 -0
- data/docs/PulpAnsibleDefaultApiV3PluginAnsibleClientConfigurationApi.md +57 -0
- data/docs/RepositoriesAnsibleApi.md +55 -0
- data/docs/RepositoriesAnsibleVersionsApi.md +55 -0
- data/lib/pulp_ansible_client/api/content_collection_signatures_api.rb +1 -1
- data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +4 -4
- data/lib/pulp_ansible_client/api/content_roles_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_collections_versions_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_client_configuration_api.rb +88 -0
- data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_collections_versions_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_client_configuration_api.rb +76 -0
- data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api.rb +1 -1
- data/lib/pulp_ansible_client/api/repositories_ansible_api.rb +69 -1
- data/lib/pulp_ansible_client/api/repositories_ansible_versions_api.rb +69 -1
- data/lib/pulp_ansible_client/models/ansible_ansible_repository.rb +24 -10
- data/lib/pulp_ansible_client/models/ansible_ansible_repository_response.rb +9 -10
- data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +0 -2
- data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +1 -29
- data/lib/pulp_ansible_client/models/ansible_collection_version.rb +11 -11
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +11 -11
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +224 -224
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +130 -130
- data/lib/pulp_ansible_client/models/ansible_repository_rebuild.rb +273 -0
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +11 -11
- data/lib/pulp_ansible_client/models/client_configuration_response.rb +208 -0
- data/lib/pulp_ansible_client/models/patchedansible_ansible_repository.rb +24 -10
- data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +0 -2
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +213 -213
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/lib/pulp_ansible_client.rb +4 -0
- data/spec/api/content_collection_versions_api_spec.rb +1 -1
- data/spec/api/pulp_ansible_api_v3_plugin_ansible_client_configuration_api_spec.rb +48 -0
- data/spec/api/pulp_ansible_default_api_v3_plugin_ansible_client_configuration_api_spec.rb +45 -0
- data/spec/api/repositories_ansible_api_spec.rb +12 -0
- data/spec/api/repositories_ansible_versions_api_spec.rb +12 -0
- data/spec/models/ansible_ansible_repository_response_spec.rb +1 -1
- data/spec/models/ansible_ansible_repository_spec.rb +1 -1
- data/spec/models/ansible_collection_remote_response_spec.rb +0 -6
- data/spec/models/ansible_collection_version_response_spec.rb +3 -3
- data/spec/models/ansible_collection_version_spec.rb +3 -3
- data/spec/models/ansible_git_remote_response_spec.rb +16 -16
- data/spec/models/ansible_git_remote_spec.rb +20 -20
- data/spec/models/ansible_repository_rebuild_spec.rb +53 -0
- data/spec/models/ansible_role_response_spec.rb +3 -3
- data/spec/models/client_configuration_response_spec.rb +41 -0
- data/spec/models/patchedansible_ansible_repository_spec.rb +1 -1
- data/spec/models/patchedansible_git_remote_spec.rb +20 -20
- metadata +18 -2
@@ -32,121 +32,121 @@ describe 'PatchedansibleGitRemote' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpAnsibleClient::PatchedansibleGitRemote)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "username"' 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 "proxy_username"' 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 "download_concurrency"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "proxy_url"' 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 "ca_cert"' 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 "client_cert"' 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 "connect_timeout"' 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
|
81
81
|
end
|
82
82
|
|
83
|
-
describe 'test attribute "
|
83
|
+
describe 'test attribute "sock_read_timeout"' do
|
84
84
|
it 'should work' do
|
85
85
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
|
-
describe 'test attribute "
|
89
|
+
describe 'test attribute "pulp_labels"' do
|
90
90
|
it 'should work' do
|
91
91
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
|
-
describe 'test attribute "
|
95
|
+
describe 'test attribute "password"' do
|
96
96
|
it 'should work' do
|
97
97
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
|
-
describe 'test attribute "
|
101
|
+
describe 'test attribute "sock_connect_timeout"' do
|
102
102
|
it 'should work' do
|
103
103
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
104
|
end
|
105
105
|
end
|
106
106
|
|
107
|
-
describe 'test attribute "
|
107
|
+
describe 'test attribute "total_timeout"' do
|
108
108
|
it 'should work' do
|
109
109
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
110
110
|
end
|
111
111
|
end
|
112
112
|
|
113
|
-
describe 'test attribute "
|
113
|
+
describe 'test attribute "url"' do
|
114
114
|
it 'should work' do
|
115
115
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
116
116
|
end
|
117
117
|
end
|
118
118
|
|
119
|
-
describe 'test attribute "
|
119
|
+
describe 'test attribute "max_retries"' do
|
120
120
|
it 'should work' do
|
121
121
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
122
|
end
|
123
123
|
end
|
124
124
|
|
125
|
-
describe 'test attribute "
|
125
|
+
describe 'test attribute "headers"' do
|
126
126
|
it 'should work' do
|
127
127
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
128
128
|
end
|
129
129
|
end
|
130
130
|
|
131
|
-
describe 'test attribute "
|
131
|
+
describe 'test attribute "tls_validation"' do
|
132
132
|
it 'should work' do
|
133
133
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
134
134
|
end
|
135
135
|
end
|
136
136
|
|
137
|
-
describe 'test attribute "
|
137
|
+
describe 'test attribute "proxy_password"' do
|
138
138
|
it 'should work' do
|
139
139
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
140
140
|
end
|
141
141
|
end
|
142
142
|
|
143
|
-
describe 'test attribute "
|
143
|
+
describe 'test attribute "client_key"' do
|
144
144
|
it 'should work' do
|
145
145
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
146
146
|
end
|
147
147
|
end
|
148
148
|
|
149
|
-
describe 'test attribute "
|
149
|
+
describe 'test attribute "rate_limit"' do
|
150
150
|
it 'should work' do
|
151
151
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
152
152
|
end
|
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.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-09-
|
11
|
+
date: 2022-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -96,6 +96,7 @@ files:
|
|
96
96
|
- docs/AnsibleCopyApi.md
|
97
97
|
- docs/AnsibleGitRemote.md
|
98
98
|
- docs/AnsibleGitRemoteResponse.md
|
99
|
+
- docs/AnsibleRepositoryRebuild.md
|
99
100
|
- docs/AnsibleRepositorySignature.md
|
100
101
|
- docs/AnsibleRepositorySyncURL.md
|
101
102
|
- docs/AnsibleRole.md
|
@@ -107,6 +108,7 @@ files:
|
|
107
108
|
- docs/ApiRolesApi.md
|
108
109
|
- docs/ArtifactRefResponse.md
|
109
110
|
- docs/AsyncOperationResponse.md
|
111
|
+
- docs/ClientConfigurationResponse.md
|
110
112
|
- docs/CollectionImportApi.md
|
111
113
|
- docs/CollectionImportDetailResponse.md
|
112
114
|
- docs/CollectionMetadataResponse.md
|
@@ -164,6 +166,7 @@ files:
|
|
164
166
|
- docs/PulpAnsibleApiV3CollectionsApi.md
|
165
167
|
- docs/PulpAnsibleApiV3CollectionsVersionsApi.md
|
166
168
|
- docs/PulpAnsibleApiV3CollectionsVersionsDocsBlobApi.md
|
169
|
+
- docs/PulpAnsibleApiV3PluginAnsibleClientConfigurationApi.md
|
167
170
|
- docs/PulpAnsibleApiV3PluginAnsibleContentCollectionsAllCollectionsApi.md
|
168
171
|
- docs/PulpAnsibleApiV3PluginAnsibleContentCollectionsAllVersionsApi.md
|
169
172
|
- docs/PulpAnsibleApiV3PluginAnsibleContentCollectionsApi.md
|
@@ -180,6 +183,7 @@ files:
|
|
180
183
|
- docs/PulpAnsibleDefaultApiV3CollectionsApi.md
|
181
184
|
- docs/PulpAnsibleDefaultApiV3CollectionsVersionsApi.md
|
182
185
|
- docs/PulpAnsibleDefaultApiV3CollectionsVersionsDocsBlobApi.md
|
186
|
+
- docs/PulpAnsibleDefaultApiV3PluginAnsibleClientConfigurationApi.md
|
183
187
|
- docs/PulpAnsibleDefaultApiV3PluginAnsibleContentCollectionsAllCollectionsApi.md
|
184
188
|
- docs/PulpAnsibleDefaultApiV3PluginAnsibleContentCollectionsAllVersionsApi.md
|
185
189
|
- docs/PulpAnsibleDefaultApiV3PluginAnsibleContentCollectionsApi.md
|
@@ -221,6 +225,7 @@ files:
|
|
221
225
|
- lib/pulp_ansible_client/api/pulp_ansible_api_v3_collections_api.rb
|
222
226
|
- lib/pulp_ansible_client/api/pulp_ansible_api_v3_collections_versions_api.rb
|
223
227
|
- lib/pulp_ansible_client/api/pulp_ansible_api_v3_collections_versions_docs_blob_api.rb
|
228
|
+
- lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_client_configuration_api.rb
|
224
229
|
- lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_collections_all_collections_api.rb
|
225
230
|
- lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_collections_all_versions_api.rb
|
226
231
|
- lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_collections_api.rb
|
@@ -237,6 +242,7 @@ files:
|
|
237
242
|
- lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_collections_api.rb
|
238
243
|
- lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_collections_versions_api.rb
|
239
244
|
- lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_collections_versions_docs_blob_api.rb
|
245
|
+
- lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_client_configuration_api.rb
|
240
246
|
- lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_all_collections_api.rb
|
241
247
|
- lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_all_versions_api.rb
|
242
248
|
- lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_api.rb
|
@@ -268,6 +274,7 @@ files:
|
|
268
274
|
- lib/pulp_ansible_client/models/ansible_collection_version_signature_response.rb
|
269
275
|
- lib/pulp_ansible_client/models/ansible_git_remote.rb
|
270
276
|
- lib/pulp_ansible_client/models/ansible_git_remote_response.rb
|
277
|
+
- lib/pulp_ansible_client/models/ansible_repository_rebuild.rb
|
271
278
|
- lib/pulp_ansible_client/models/ansible_repository_signature.rb
|
272
279
|
- lib/pulp_ansible_client/models/ansible_repository_sync_url.rb
|
273
280
|
- lib/pulp_ansible_client/models/ansible_role.rb
|
@@ -277,6 +284,7 @@ files:
|
|
277
284
|
- lib/pulp_ansible_client/models/ansible_tag_response.rb
|
278
285
|
- lib/pulp_ansible_client/models/artifact_ref_response.rb
|
279
286
|
- lib/pulp_ansible_client/models/async_operation_response.rb
|
287
|
+
- lib/pulp_ansible_client/models/client_configuration_response.rb
|
280
288
|
- lib/pulp_ansible_client/models/collection_import_detail_response.rb
|
281
289
|
- lib/pulp_ansible_client/models/collection_metadata_response.rb
|
282
290
|
- lib/pulp_ansible_client/models/collection_namespace_response.rb
|
@@ -346,6 +354,7 @@ files:
|
|
346
354
|
- spec/api/pulp_ansible_api_v3_collections_api_spec.rb
|
347
355
|
- spec/api/pulp_ansible_api_v3_collections_versions_api_spec.rb
|
348
356
|
- spec/api/pulp_ansible_api_v3_collections_versions_docs_blob_api_spec.rb
|
357
|
+
- spec/api/pulp_ansible_api_v3_plugin_ansible_client_configuration_api_spec.rb
|
349
358
|
- spec/api/pulp_ansible_api_v3_plugin_ansible_content_collections_all_collections_api_spec.rb
|
350
359
|
- spec/api/pulp_ansible_api_v3_plugin_ansible_content_collections_all_versions_api_spec.rb
|
351
360
|
- spec/api/pulp_ansible_api_v3_plugin_ansible_content_collections_api_spec.rb
|
@@ -362,6 +371,7 @@ files:
|
|
362
371
|
- spec/api/pulp_ansible_default_api_v3_collections_api_spec.rb
|
363
372
|
- spec/api/pulp_ansible_default_api_v3_collections_versions_api_spec.rb
|
364
373
|
- spec/api/pulp_ansible_default_api_v3_collections_versions_docs_blob_api_spec.rb
|
374
|
+
- spec/api/pulp_ansible_default_api_v3_plugin_ansible_client_configuration_api_spec.rb
|
365
375
|
- spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_all_collections_api_spec.rb
|
366
376
|
- spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_all_versions_api_spec.rb
|
367
377
|
- spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_api_spec.rb
|
@@ -392,6 +402,7 @@ files:
|
|
392
402
|
- spec/models/ansible_collection_version_spec.rb
|
393
403
|
- spec/models/ansible_git_remote_response_spec.rb
|
394
404
|
- spec/models/ansible_git_remote_spec.rb
|
405
|
+
- spec/models/ansible_repository_rebuild_spec.rb
|
395
406
|
- spec/models/ansible_repository_signature_spec.rb
|
396
407
|
- spec/models/ansible_repository_sync_url_spec.rb
|
397
408
|
- spec/models/ansible_role_remote_response_spec.rb
|
@@ -401,6 +412,7 @@ files:
|
|
401
412
|
- spec/models/ansible_tag_response_spec.rb
|
402
413
|
- spec/models/artifact_ref_response_spec.rb
|
403
414
|
- spec/models/async_operation_response_spec.rb
|
415
|
+
- spec/models/client_configuration_response_spec.rb
|
404
416
|
- spec/models/collection_import_detail_response_spec.rb
|
405
417
|
- spec/models/collection_metadata_response_spec.rb
|
406
418
|
- spec/models/collection_namespace_response_spec.rb
|
@@ -500,6 +512,7 @@ test_files:
|
|
500
512
|
- spec/api/galaxy_detail_api_spec.rb
|
501
513
|
- spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_all_collections_api_spec.rb
|
502
514
|
- spec/api/pulp_ansible_api_v3_collections_versions_api_spec.rb
|
515
|
+
- spec/api/pulp_ansible_default_api_v3_plugin_ansible_client_configuration_api_spec.rb
|
503
516
|
- spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_artifacts_api_spec.rb
|
504
517
|
- spec/api/versions_api_spec.rb
|
505
518
|
- spec/api/content_collection_signatures_api_spec.rb
|
@@ -511,6 +524,7 @@ test_files:
|
|
511
524
|
- spec/api/pulp_ansible_api_v3_api_spec.rb
|
512
525
|
- spec/api/pulp_ansible_api_v3_collections_api_spec.rb
|
513
526
|
- spec/api/distributions_ansible_api_spec.rb
|
527
|
+
- spec/api/pulp_ansible_api_v3_plugin_ansible_client_configuration_api_spec.rb
|
514
528
|
- spec/api/collection_import_api_spec.rb
|
515
529
|
- spec/api/pulp_ansible_api_v3_plugin_ansible_content_collections_api_spec.rb
|
516
530
|
- spec/api/pulp_ansible_api_v3_artifacts_collections_api_spec.rb
|
@@ -533,6 +547,7 @@ test_files:
|
|
533
547
|
- spec/models/paginated_collection_version_list_response_list_spec.rb
|
534
548
|
- spec/models/galaxy_role_version_response_spec.rb
|
535
549
|
- spec/models/ansible_collection_remote_response_spec.rb
|
550
|
+
- spec/models/client_configuration_response_spec.rb
|
536
551
|
- spec/models/paginatedansible_collection_response_list_spec.rb
|
537
552
|
- spec/models/async_operation_response_spec.rb
|
538
553
|
- spec/models/ansible_collection_spec.rb
|
@@ -570,6 +585,7 @@ test_files:
|
|
570
585
|
- spec/models/ansible_repository_signature_spec.rb
|
571
586
|
- spec/models/policy_enum_spec.rb
|
572
587
|
- spec/models/ansible_role_response_spec.rb
|
588
|
+
- spec/models/ansible_repository_rebuild_spec.rb
|
573
589
|
- spec/models/collection_namespace_response_spec.rb
|
574
590
|
- spec/models/collection_version_list_response_spec.rb
|
575
591
|
- spec/models/paginated_repository_version_response_list_spec.rb
|