cloudsmith-api 2.0.5 → 2.0.7
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/README.md +105 -4
- data/build.json +1 -1
- data/docs/DartUpstream.md +23 -0
- data/docs/DartUpstreamRequest.md +20 -0
- data/docs/DartUpstreamRequestPatch.md +20 -0
- data/docs/DebUpstream.md +27 -0
- data/docs/DebUpstreamRequest.md +24 -0
- data/docs/DebUpstreamRequestPatch.md +24 -0
- data/docs/DockerUpstream.md +23 -0
- data/docs/DockerUpstreamRequest.md +20 -0
- data/docs/DockerUpstreamRequestPatch.md +20 -0
- data/docs/HelmUpstream.md +23 -0
- data/docs/HelmUpstreamRequest.md +20 -0
- data/docs/HelmUpstreamRequestPatch.md +20 -0
- data/docs/MavenPackageUpload.md +2 -0
- data/docs/MavenPackageUploadRequest.md +2 -0
- data/docs/MavenUpstream.md +23 -0
- data/docs/MavenUpstreamRequest.md +20 -0
- data/docs/MavenUpstreamRequestPatch.md +20 -0
- data/docs/NpmUpstream.md +23 -0
- data/docs/NpmUpstreamRequest.md +20 -0
- data/docs/NpmUpstreamRequestPatch.md +20 -0
- data/docs/NugetUpstream.md +23 -0
- data/docs/NugetUpstreamRequest.md +20 -0
- data/docs/NugetUpstreamRequestPatch.md +20 -0
- data/docs/OrgsApi.md +431 -0
- data/docs/PackageLicensePolicyEvaluationRequest.md +14 -0
- data/docs/PackageLicensePolicyEvaluationRequestRequest.md +7 -0
- data/docs/PackageVulnerabilityPolicyEvaluationRequest.md +14 -0
- data/docs/PackageVulnerabilityPolicyEvaluationRequestRequest.md +7 -0
- data/docs/PythonUpstream.md +23 -0
- data/docs/PythonUpstreamRequest.md +20 -0
- data/docs/PythonUpstreamRequestPatch.md +20 -0
- data/docs/ReposApi.md +3770 -0
- data/docs/RpmUpstream.md +25 -0
- data/docs/RpmUpstreamRequest.md +22 -0
- data/docs/RpmUpstreamRequestPatch.md +22 -0
- data/docs/RubyUpstream.md +23 -0
- data/docs/RubyUpstreamRequest.md +20 -0
- data/docs/RubyUpstreamRequestPatch.md +20 -0
- data/docs/StatusBasic.md +1 -1
- data/lib/cloudsmith-api/api/orgs_api.rb +447 -0
- data/lib/cloudsmith-api/api/repos_api.rb +3950 -0
- data/lib/cloudsmith-api/models/dart_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/dart_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/dart_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/deb_upstream.rb +440 -0
- data/lib/cloudsmith-api/models/deb_upstream_request.rb +412 -0
- data/lib/cloudsmith-api/models/deb_upstream_request_patch.rb +397 -0
- data/lib/cloudsmith-api/models/docker_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/docker_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/docker_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/helm_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/helm_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/helm_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/maven_package_upload.rb +19 -1
- data/lib/cloudsmith-api/models/maven_package_upload_request.rb +19 -1
- data/lib/cloudsmith-api/models/maven_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/maven_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/maven_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/npm_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/npm_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/npm_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/nuget_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/nuget_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/nuget_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/package_license_policy_evaluation_request.rb +274 -0
- data/lib/cloudsmith-api/models/package_license_policy_evaluation_request_request.rb +175 -0
- data/lib/cloudsmith-api/models/package_vulnerability_policy_evaluation_request.rb +274 -0
- data/lib/cloudsmith-api/models/package_vulnerability_policy_evaluation_request_request.rb +175 -0
- data/lib/cloudsmith-api/models/python_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/python_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/python_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/rpm_upstream.rb +418 -0
- data/lib/cloudsmith-api/models/rpm_upstream_request.rb +390 -0
- data/lib/cloudsmith-api/models/rpm_upstream_request_patch.rb +375 -0
- data/lib/cloudsmith-api/models/ruby_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/ruby_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/ruby_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/status_basic.rb +1 -1
- data/lib/cloudsmith-api/version.rb +1 -1
- data/lib/cloudsmith-api.rb +34 -0
- data/spec/api/orgs_api_spec.rb +99 -0
- data/spec/api/repos_api_spec.rb +870 -0
- data/spec/models/dart_upstream_request_patch_spec.rb +121 -0
- data/spec/models/dart_upstream_request_spec.rb +121 -0
- data/spec/models/dart_upstream_spec.rb +139 -0
- data/spec/models/deb_upstream_request_patch_spec.rb +145 -0
- data/spec/models/deb_upstream_request_spec.rb +145 -0
- data/spec/models/deb_upstream_spec.rb +163 -0
- data/spec/models/docker_upstream_request_patch_spec.rb +121 -0
- data/spec/models/docker_upstream_request_spec.rb +121 -0
- data/spec/models/docker_upstream_spec.rb +139 -0
- data/spec/models/helm_upstream_request_patch_spec.rb +121 -0
- data/spec/models/helm_upstream_request_spec.rb +121 -0
- data/spec/models/helm_upstream_spec.rb +139 -0
- data/spec/models/maven_package_upload_request_spec.rb +12 -0
- data/spec/models/maven_package_upload_spec.rb +12 -0
- data/spec/models/maven_upstream_request_patch_spec.rb +121 -0
- data/spec/models/maven_upstream_request_spec.rb +121 -0
- data/spec/models/maven_upstream_spec.rb +139 -0
- data/spec/models/npm_upstream_request_patch_spec.rb +121 -0
- data/spec/models/npm_upstream_request_spec.rb +121 -0
- data/spec/models/npm_upstream_spec.rb +139 -0
- data/spec/models/nuget_upstream_request_patch_spec.rb +121 -0
- data/spec/models/nuget_upstream_request_spec.rb +121 -0
- data/spec/models/nuget_upstream_spec.rb +139 -0
- data/spec/models/package_license_policy_evaluation_request_request_spec.rb +35 -0
- data/spec/models/package_license_policy_evaluation_request_spec.rb +81 -0
- data/spec/models/package_vulnerability_policy_evaluation_request_request_spec.rb +35 -0
- data/spec/models/package_vulnerability_policy_evaluation_request_spec.rb +81 -0
- data/spec/models/python_upstream_request_patch_spec.rb +121 -0
- data/spec/models/python_upstream_request_spec.rb +121 -0
- data/spec/models/python_upstream_spec.rb +139 -0
- data/spec/models/rpm_upstream_request_patch_spec.rb +133 -0
- data/spec/models/rpm_upstream_request_spec.rb +133 -0
- data/spec/models/rpm_upstream_spec.rb +151 -0
- data/spec/models/ruby_upstream_request_patch_spec.rb +121 -0
- data/spec/models/ruby_upstream_request_spec.rb +121 -0
- data/spec/models/ruby_upstream_spec.rb +139 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-support-3.12.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.20/gem_make.out +1 -1
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.3/gem_make.out +1 -1
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.3/mkmf.log +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/ext/generator/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/ext/parser/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/Changelog.md +9 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/shell_out.rb +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/version.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support.rb +8 -2
- data/vendor/bundle/ruby/2.6.0/specifications/{rspec-support-3.12.0.gemspec → rspec-support-3.12.1.gemspec} +5 -5
- metadata +176 -40
- data/vendor/bundle/ruby/2.6.0/cache/rspec-support-3.12.0.gem +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/README.md +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/caller_filter.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/comparable_version.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/differ.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/directory_maker.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/encoded_string.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/fuzzy_matcher.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/hunk_generator.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/matcher_definition.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/method_signature_verifier.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/mutex.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/object_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/recursive_const_methods.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/reentrant_mutex.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/ruby_features.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/source/location.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/source/node.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/source/token.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/source.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/deprecation_helpers.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/diff_helpers.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/formatting_support.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/in_sub_process.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/library_wide_checks.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/stderr_splitter.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/string_matcher.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/with_isolated_directory.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/with_isolated_stderr.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/warnings.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/with_keywords_when_needed.rb +0 -0
data/spec/api/repos_api_spec.rb
CHANGED
|
@@ -305,6 +305,876 @@ describe 'ReposApi' do
|
|
|
305
305
|
end
|
|
306
306
|
end
|
|
307
307
|
|
|
308
|
+
# unit tests for repos_upstream_dart_create
|
|
309
|
+
# Create a Dart upstream config for this repository.
|
|
310
|
+
# Create a Dart upstream config for this repository.
|
|
311
|
+
# @param owner
|
|
312
|
+
# @param identifier
|
|
313
|
+
# @param [Hash] opts the optional parameters
|
|
314
|
+
# @option opts [DartUpstreamRequest] :data
|
|
315
|
+
# @return [DartUpstream]
|
|
316
|
+
describe 'repos_upstream_dart_create test' do
|
|
317
|
+
it 'should work' do
|
|
318
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
319
|
+
end
|
|
320
|
+
end
|
|
321
|
+
|
|
322
|
+
# unit tests for repos_upstream_dart_delete
|
|
323
|
+
# Delete a Dart upstream config for this repository.
|
|
324
|
+
# Delete a Dart upstream config for this repository.
|
|
325
|
+
# @param owner
|
|
326
|
+
# @param identifier
|
|
327
|
+
# @param slug_perm
|
|
328
|
+
# @param [Hash] opts the optional parameters
|
|
329
|
+
# @return [nil]
|
|
330
|
+
describe 'repos_upstream_dart_delete test' do
|
|
331
|
+
it 'should work' do
|
|
332
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
333
|
+
end
|
|
334
|
+
end
|
|
335
|
+
|
|
336
|
+
# unit tests for repos_upstream_dart_list
|
|
337
|
+
# List Dart upstream configs for this repository.
|
|
338
|
+
# List Dart upstream configs for this repository.
|
|
339
|
+
# @param owner
|
|
340
|
+
# @param identifier
|
|
341
|
+
# @param [Hash] opts the optional parameters
|
|
342
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
343
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
344
|
+
# @return [Array<DartUpstream>]
|
|
345
|
+
describe 'repos_upstream_dart_list test' do
|
|
346
|
+
it 'should work' do
|
|
347
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
348
|
+
end
|
|
349
|
+
end
|
|
350
|
+
|
|
351
|
+
# unit tests for repos_upstream_dart_partial_update
|
|
352
|
+
# Partially update a Dart upstream config for this repository.
|
|
353
|
+
# Partially update a Dart upstream config for this repository.
|
|
354
|
+
# @param owner
|
|
355
|
+
# @param identifier
|
|
356
|
+
# @param slug_perm
|
|
357
|
+
# @param [Hash] opts the optional parameters
|
|
358
|
+
# @option opts [DartUpstreamRequestPatch] :data
|
|
359
|
+
# @return [DartUpstream]
|
|
360
|
+
describe 'repos_upstream_dart_partial_update test' do
|
|
361
|
+
it 'should work' do
|
|
362
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
363
|
+
end
|
|
364
|
+
end
|
|
365
|
+
|
|
366
|
+
# unit tests for repos_upstream_dart_read
|
|
367
|
+
# Retrieve a Dart upstream config for this repository.
|
|
368
|
+
# Retrieve a Dart upstream config for this repository.
|
|
369
|
+
# @param owner
|
|
370
|
+
# @param identifier
|
|
371
|
+
# @param slug_perm
|
|
372
|
+
# @param [Hash] opts the optional parameters
|
|
373
|
+
# @return [DartUpstream]
|
|
374
|
+
describe 'repos_upstream_dart_read test' do
|
|
375
|
+
it 'should work' do
|
|
376
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
377
|
+
end
|
|
378
|
+
end
|
|
379
|
+
|
|
380
|
+
# unit tests for repos_upstream_dart_update
|
|
381
|
+
# Update a Dart upstream config for this repository.
|
|
382
|
+
# Update a Dart upstream config for this repository.
|
|
383
|
+
# @param owner
|
|
384
|
+
# @param identifier
|
|
385
|
+
# @param slug_perm
|
|
386
|
+
# @param [Hash] opts the optional parameters
|
|
387
|
+
# @option opts [DartUpstreamRequest] :data
|
|
388
|
+
# @return [DartUpstream]
|
|
389
|
+
describe 'repos_upstream_dart_update test' do
|
|
390
|
+
it 'should work' do
|
|
391
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
392
|
+
end
|
|
393
|
+
end
|
|
394
|
+
|
|
395
|
+
# unit tests for repos_upstream_deb_create
|
|
396
|
+
# Create a Debian upstream config for this repository.
|
|
397
|
+
# Create a Debian upstream config for this repository.
|
|
398
|
+
# @param owner
|
|
399
|
+
# @param identifier
|
|
400
|
+
# @param [Hash] opts the optional parameters
|
|
401
|
+
# @option opts [DebUpstreamRequest] :data
|
|
402
|
+
# @return [DebUpstream]
|
|
403
|
+
describe 'repos_upstream_deb_create test' do
|
|
404
|
+
it 'should work' do
|
|
405
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
406
|
+
end
|
|
407
|
+
end
|
|
408
|
+
|
|
409
|
+
# unit tests for repos_upstream_deb_delete
|
|
410
|
+
# Delete a Debian upstream config for this repository.
|
|
411
|
+
# Delete a Debian upstream config for this repository.
|
|
412
|
+
# @param owner
|
|
413
|
+
# @param identifier
|
|
414
|
+
# @param slug_perm
|
|
415
|
+
# @param [Hash] opts the optional parameters
|
|
416
|
+
# @return [nil]
|
|
417
|
+
describe 'repos_upstream_deb_delete test' do
|
|
418
|
+
it 'should work' do
|
|
419
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
420
|
+
end
|
|
421
|
+
end
|
|
422
|
+
|
|
423
|
+
# unit tests for repos_upstream_deb_list
|
|
424
|
+
# List Debian upstream configs for this repository.
|
|
425
|
+
# List Debian upstream configs for this repository.
|
|
426
|
+
# @param owner
|
|
427
|
+
# @param identifier
|
|
428
|
+
# @param [Hash] opts the optional parameters
|
|
429
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
430
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
431
|
+
# @return [Array<DebUpstream>]
|
|
432
|
+
describe 'repos_upstream_deb_list test' do
|
|
433
|
+
it 'should work' do
|
|
434
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
435
|
+
end
|
|
436
|
+
end
|
|
437
|
+
|
|
438
|
+
# unit tests for repos_upstream_deb_partial_update
|
|
439
|
+
# Partially update a Debian upstream config for this repository.
|
|
440
|
+
# Partially update a Debian upstream config for this repository.
|
|
441
|
+
# @param owner
|
|
442
|
+
# @param identifier
|
|
443
|
+
# @param slug_perm
|
|
444
|
+
# @param [Hash] opts the optional parameters
|
|
445
|
+
# @option opts [DebUpstreamRequestPatch] :data
|
|
446
|
+
# @return [DebUpstream]
|
|
447
|
+
describe 'repos_upstream_deb_partial_update test' do
|
|
448
|
+
it 'should work' do
|
|
449
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
450
|
+
end
|
|
451
|
+
end
|
|
452
|
+
|
|
453
|
+
# unit tests for repos_upstream_deb_read
|
|
454
|
+
# Retrieve a Debian upstream config for this repository.
|
|
455
|
+
# Retrieve a Debian upstream config for this repository.
|
|
456
|
+
# @param owner
|
|
457
|
+
# @param identifier
|
|
458
|
+
# @param slug_perm
|
|
459
|
+
# @param [Hash] opts the optional parameters
|
|
460
|
+
# @return [DebUpstream]
|
|
461
|
+
describe 'repos_upstream_deb_read test' do
|
|
462
|
+
it 'should work' do
|
|
463
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
464
|
+
end
|
|
465
|
+
end
|
|
466
|
+
|
|
467
|
+
# unit tests for repos_upstream_deb_update
|
|
468
|
+
# Update a Debian upstream config for this repository.
|
|
469
|
+
# Update a Debian upstream config for this repository.
|
|
470
|
+
# @param owner
|
|
471
|
+
# @param identifier
|
|
472
|
+
# @param slug_perm
|
|
473
|
+
# @param [Hash] opts the optional parameters
|
|
474
|
+
# @option opts [DebUpstreamRequest] :data
|
|
475
|
+
# @return [DebUpstream]
|
|
476
|
+
describe 'repos_upstream_deb_update test' do
|
|
477
|
+
it 'should work' do
|
|
478
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
479
|
+
end
|
|
480
|
+
end
|
|
481
|
+
|
|
482
|
+
# unit tests for repos_upstream_docker_create
|
|
483
|
+
# Create a Docker upstream config for this repository.
|
|
484
|
+
# Create a Docker upstream config for this repository.
|
|
485
|
+
# @param owner
|
|
486
|
+
# @param identifier
|
|
487
|
+
# @param [Hash] opts the optional parameters
|
|
488
|
+
# @option opts [DockerUpstreamRequest] :data
|
|
489
|
+
# @return [DockerUpstream]
|
|
490
|
+
describe 'repos_upstream_docker_create test' do
|
|
491
|
+
it 'should work' do
|
|
492
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
493
|
+
end
|
|
494
|
+
end
|
|
495
|
+
|
|
496
|
+
# unit tests for repos_upstream_docker_delete
|
|
497
|
+
# Delete a Docker upstream config for this repository.
|
|
498
|
+
# Delete a Docker upstream config for this repository.
|
|
499
|
+
# @param owner
|
|
500
|
+
# @param identifier
|
|
501
|
+
# @param slug_perm
|
|
502
|
+
# @param [Hash] opts the optional parameters
|
|
503
|
+
# @return [nil]
|
|
504
|
+
describe 'repos_upstream_docker_delete test' do
|
|
505
|
+
it 'should work' do
|
|
506
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
507
|
+
end
|
|
508
|
+
end
|
|
509
|
+
|
|
510
|
+
# unit tests for repos_upstream_docker_list
|
|
511
|
+
# List Docker upstream configs for this repository.
|
|
512
|
+
# List Docker upstream configs for this repository.
|
|
513
|
+
# @param owner
|
|
514
|
+
# @param identifier
|
|
515
|
+
# @param [Hash] opts the optional parameters
|
|
516
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
517
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
518
|
+
# @return [Array<DockerUpstream>]
|
|
519
|
+
describe 'repos_upstream_docker_list test' do
|
|
520
|
+
it 'should work' do
|
|
521
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
522
|
+
end
|
|
523
|
+
end
|
|
524
|
+
|
|
525
|
+
# unit tests for repos_upstream_docker_partial_update
|
|
526
|
+
# Partially update a Docker upstream config for this repository.
|
|
527
|
+
# Partially update a Docker upstream config for this repository.
|
|
528
|
+
# @param owner
|
|
529
|
+
# @param identifier
|
|
530
|
+
# @param slug_perm
|
|
531
|
+
# @param [Hash] opts the optional parameters
|
|
532
|
+
# @option opts [DockerUpstreamRequestPatch] :data
|
|
533
|
+
# @return [DockerUpstream]
|
|
534
|
+
describe 'repos_upstream_docker_partial_update test' do
|
|
535
|
+
it 'should work' do
|
|
536
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
537
|
+
end
|
|
538
|
+
end
|
|
539
|
+
|
|
540
|
+
# unit tests for repos_upstream_docker_read
|
|
541
|
+
# Retrieve a Docker upstream config for this repository.
|
|
542
|
+
# Retrieve a Docker upstream config for this repository.
|
|
543
|
+
# @param owner
|
|
544
|
+
# @param identifier
|
|
545
|
+
# @param slug_perm
|
|
546
|
+
# @param [Hash] opts the optional parameters
|
|
547
|
+
# @return [DockerUpstream]
|
|
548
|
+
describe 'repos_upstream_docker_read test' do
|
|
549
|
+
it 'should work' do
|
|
550
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
551
|
+
end
|
|
552
|
+
end
|
|
553
|
+
|
|
554
|
+
# unit tests for repos_upstream_docker_update
|
|
555
|
+
# Update a Docker upstream config for this repository.
|
|
556
|
+
# Update a Docker upstream config for this repository.
|
|
557
|
+
# @param owner
|
|
558
|
+
# @param identifier
|
|
559
|
+
# @param slug_perm
|
|
560
|
+
# @param [Hash] opts the optional parameters
|
|
561
|
+
# @option opts [DockerUpstreamRequest] :data
|
|
562
|
+
# @return [DockerUpstream]
|
|
563
|
+
describe 'repos_upstream_docker_update test' do
|
|
564
|
+
it 'should work' do
|
|
565
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
566
|
+
end
|
|
567
|
+
end
|
|
568
|
+
|
|
569
|
+
# unit tests for repos_upstream_helm_create
|
|
570
|
+
# Create a Helm upstream config for this repository.
|
|
571
|
+
# Create a Helm upstream config for this repository.
|
|
572
|
+
# @param owner
|
|
573
|
+
# @param identifier
|
|
574
|
+
# @param [Hash] opts the optional parameters
|
|
575
|
+
# @option opts [HelmUpstreamRequest] :data
|
|
576
|
+
# @return [HelmUpstream]
|
|
577
|
+
describe 'repos_upstream_helm_create test' do
|
|
578
|
+
it 'should work' do
|
|
579
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
580
|
+
end
|
|
581
|
+
end
|
|
582
|
+
|
|
583
|
+
# unit tests for repos_upstream_helm_delete
|
|
584
|
+
# Delete a Helm upstream config for this repository.
|
|
585
|
+
# Delete a Helm upstream config for this repository.
|
|
586
|
+
# @param owner
|
|
587
|
+
# @param identifier
|
|
588
|
+
# @param slug_perm
|
|
589
|
+
# @param [Hash] opts the optional parameters
|
|
590
|
+
# @return [nil]
|
|
591
|
+
describe 'repos_upstream_helm_delete test' do
|
|
592
|
+
it 'should work' do
|
|
593
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
594
|
+
end
|
|
595
|
+
end
|
|
596
|
+
|
|
597
|
+
# unit tests for repos_upstream_helm_list
|
|
598
|
+
# List Helm upstream configs for this repository.
|
|
599
|
+
# List Helm upstream configs for this repository.
|
|
600
|
+
# @param owner
|
|
601
|
+
# @param identifier
|
|
602
|
+
# @param [Hash] opts the optional parameters
|
|
603
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
604
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
605
|
+
# @return [Array<HelmUpstream>]
|
|
606
|
+
describe 'repos_upstream_helm_list test' do
|
|
607
|
+
it 'should work' do
|
|
608
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
609
|
+
end
|
|
610
|
+
end
|
|
611
|
+
|
|
612
|
+
# unit tests for repos_upstream_helm_partial_update
|
|
613
|
+
# Partially update a Helm upstream config for this repository.
|
|
614
|
+
# Partially update a Helm upstream config for this repository.
|
|
615
|
+
# @param owner
|
|
616
|
+
# @param identifier
|
|
617
|
+
# @param slug_perm
|
|
618
|
+
# @param [Hash] opts the optional parameters
|
|
619
|
+
# @option opts [HelmUpstreamRequestPatch] :data
|
|
620
|
+
# @return [HelmUpstream]
|
|
621
|
+
describe 'repos_upstream_helm_partial_update test' do
|
|
622
|
+
it 'should work' do
|
|
623
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
624
|
+
end
|
|
625
|
+
end
|
|
626
|
+
|
|
627
|
+
# unit tests for repos_upstream_helm_read
|
|
628
|
+
# Retrieve a Helm upstream config for this repository.
|
|
629
|
+
# Retrieve a Helm upstream config for this repository.
|
|
630
|
+
# @param owner
|
|
631
|
+
# @param identifier
|
|
632
|
+
# @param slug_perm
|
|
633
|
+
# @param [Hash] opts the optional parameters
|
|
634
|
+
# @return [HelmUpstream]
|
|
635
|
+
describe 'repos_upstream_helm_read test' do
|
|
636
|
+
it 'should work' do
|
|
637
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
638
|
+
end
|
|
639
|
+
end
|
|
640
|
+
|
|
641
|
+
# unit tests for repos_upstream_helm_update
|
|
642
|
+
# Update a Helm upstream config for this repository.
|
|
643
|
+
# Update a Helm upstream config for this repository.
|
|
644
|
+
# @param owner
|
|
645
|
+
# @param identifier
|
|
646
|
+
# @param slug_perm
|
|
647
|
+
# @param [Hash] opts the optional parameters
|
|
648
|
+
# @option opts [HelmUpstreamRequest] :data
|
|
649
|
+
# @return [HelmUpstream]
|
|
650
|
+
describe 'repos_upstream_helm_update test' do
|
|
651
|
+
it 'should work' do
|
|
652
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
653
|
+
end
|
|
654
|
+
end
|
|
655
|
+
|
|
656
|
+
# unit tests for repos_upstream_maven_create
|
|
657
|
+
# Create a Maven upstream config for this repository.
|
|
658
|
+
# Create a Maven upstream config for this repository.
|
|
659
|
+
# @param owner
|
|
660
|
+
# @param identifier
|
|
661
|
+
# @param [Hash] opts the optional parameters
|
|
662
|
+
# @option opts [MavenUpstreamRequest] :data
|
|
663
|
+
# @return [MavenUpstream]
|
|
664
|
+
describe 'repos_upstream_maven_create test' do
|
|
665
|
+
it 'should work' do
|
|
666
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
667
|
+
end
|
|
668
|
+
end
|
|
669
|
+
|
|
670
|
+
# unit tests for repos_upstream_maven_delete
|
|
671
|
+
# Delete a Maven upstream config for this repository.
|
|
672
|
+
# Delete a Maven upstream config for this repository.
|
|
673
|
+
# @param owner
|
|
674
|
+
# @param identifier
|
|
675
|
+
# @param slug_perm
|
|
676
|
+
# @param [Hash] opts the optional parameters
|
|
677
|
+
# @return [nil]
|
|
678
|
+
describe 'repos_upstream_maven_delete test' do
|
|
679
|
+
it 'should work' do
|
|
680
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
681
|
+
end
|
|
682
|
+
end
|
|
683
|
+
|
|
684
|
+
# unit tests for repos_upstream_maven_list
|
|
685
|
+
# List Maven upstream configs for this repository.
|
|
686
|
+
# List Maven upstream configs for this repository.
|
|
687
|
+
# @param owner
|
|
688
|
+
# @param identifier
|
|
689
|
+
# @param [Hash] opts the optional parameters
|
|
690
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
691
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
692
|
+
# @return [Array<MavenUpstream>]
|
|
693
|
+
describe 'repos_upstream_maven_list test' do
|
|
694
|
+
it 'should work' do
|
|
695
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
696
|
+
end
|
|
697
|
+
end
|
|
698
|
+
|
|
699
|
+
# unit tests for repos_upstream_maven_partial_update
|
|
700
|
+
# Partially update a Maven upstream config for this repository.
|
|
701
|
+
# Partially update a Maven upstream config for this repository.
|
|
702
|
+
# @param owner
|
|
703
|
+
# @param identifier
|
|
704
|
+
# @param slug_perm
|
|
705
|
+
# @param [Hash] opts the optional parameters
|
|
706
|
+
# @option opts [MavenUpstreamRequestPatch] :data
|
|
707
|
+
# @return [MavenUpstream]
|
|
708
|
+
describe 'repos_upstream_maven_partial_update test' do
|
|
709
|
+
it 'should work' do
|
|
710
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
711
|
+
end
|
|
712
|
+
end
|
|
713
|
+
|
|
714
|
+
# unit tests for repos_upstream_maven_read
|
|
715
|
+
# Retrieve a Maven upstream config for this repository.
|
|
716
|
+
# Retrieve a Maven upstream config for this repository.
|
|
717
|
+
# @param owner
|
|
718
|
+
# @param identifier
|
|
719
|
+
# @param slug_perm
|
|
720
|
+
# @param [Hash] opts the optional parameters
|
|
721
|
+
# @return [MavenUpstream]
|
|
722
|
+
describe 'repos_upstream_maven_read test' do
|
|
723
|
+
it 'should work' do
|
|
724
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
725
|
+
end
|
|
726
|
+
end
|
|
727
|
+
|
|
728
|
+
# unit tests for repos_upstream_maven_update
|
|
729
|
+
# Update a Maven upstream config for this repository.
|
|
730
|
+
# Update a Maven upstream config for this repository.
|
|
731
|
+
# @param owner
|
|
732
|
+
# @param identifier
|
|
733
|
+
# @param slug_perm
|
|
734
|
+
# @param [Hash] opts the optional parameters
|
|
735
|
+
# @option opts [MavenUpstreamRequest] :data
|
|
736
|
+
# @return [MavenUpstream]
|
|
737
|
+
describe 'repos_upstream_maven_update test' do
|
|
738
|
+
it 'should work' do
|
|
739
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
740
|
+
end
|
|
741
|
+
end
|
|
742
|
+
|
|
743
|
+
# unit tests for repos_upstream_npm_create
|
|
744
|
+
# Create a npm upstream config for this repository.
|
|
745
|
+
# Create a npm upstream config for this repository.
|
|
746
|
+
# @param owner
|
|
747
|
+
# @param identifier
|
|
748
|
+
# @param [Hash] opts the optional parameters
|
|
749
|
+
# @option opts [NpmUpstreamRequest] :data
|
|
750
|
+
# @return [NpmUpstream]
|
|
751
|
+
describe 'repos_upstream_npm_create test' do
|
|
752
|
+
it 'should work' do
|
|
753
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
754
|
+
end
|
|
755
|
+
end
|
|
756
|
+
|
|
757
|
+
# unit tests for repos_upstream_npm_delete
|
|
758
|
+
# Delete a npm upstream config for this repository.
|
|
759
|
+
# Delete a npm upstream config for this repository.
|
|
760
|
+
# @param owner
|
|
761
|
+
# @param identifier
|
|
762
|
+
# @param slug_perm
|
|
763
|
+
# @param [Hash] opts the optional parameters
|
|
764
|
+
# @return [nil]
|
|
765
|
+
describe 'repos_upstream_npm_delete test' do
|
|
766
|
+
it 'should work' do
|
|
767
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
768
|
+
end
|
|
769
|
+
end
|
|
770
|
+
|
|
771
|
+
# unit tests for repos_upstream_npm_list
|
|
772
|
+
# List npm upstream configs for this repository.
|
|
773
|
+
# List npm upstream configs for this repository.
|
|
774
|
+
# @param owner
|
|
775
|
+
# @param identifier
|
|
776
|
+
# @param [Hash] opts the optional parameters
|
|
777
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
778
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
779
|
+
# @return [Array<NpmUpstream>]
|
|
780
|
+
describe 'repos_upstream_npm_list test' do
|
|
781
|
+
it 'should work' do
|
|
782
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
783
|
+
end
|
|
784
|
+
end
|
|
785
|
+
|
|
786
|
+
# unit tests for repos_upstream_npm_partial_update
|
|
787
|
+
# Partially update a npm upstream config for this repository.
|
|
788
|
+
# Partially update a npm upstream config for this repository.
|
|
789
|
+
# @param owner
|
|
790
|
+
# @param identifier
|
|
791
|
+
# @param slug_perm
|
|
792
|
+
# @param [Hash] opts the optional parameters
|
|
793
|
+
# @option opts [NpmUpstreamRequestPatch] :data
|
|
794
|
+
# @return [NpmUpstream]
|
|
795
|
+
describe 'repos_upstream_npm_partial_update test' do
|
|
796
|
+
it 'should work' do
|
|
797
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
798
|
+
end
|
|
799
|
+
end
|
|
800
|
+
|
|
801
|
+
# unit tests for repos_upstream_npm_read
|
|
802
|
+
# Retrieve a npm upstream config for this repository.
|
|
803
|
+
# Retrieve a npm upstream config for this repository.
|
|
804
|
+
# @param owner
|
|
805
|
+
# @param identifier
|
|
806
|
+
# @param slug_perm
|
|
807
|
+
# @param [Hash] opts the optional parameters
|
|
808
|
+
# @return [NpmUpstream]
|
|
809
|
+
describe 'repos_upstream_npm_read test' do
|
|
810
|
+
it 'should work' do
|
|
811
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
812
|
+
end
|
|
813
|
+
end
|
|
814
|
+
|
|
815
|
+
# unit tests for repos_upstream_npm_update
|
|
816
|
+
# Update a npm upstream config for this repository.
|
|
817
|
+
# Update a npm upstream config for this repository.
|
|
818
|
+
# @param owner
|
|
819
|
+
# @param identifier
|
|
820
|
+
# @param slug_perm
|
|
821
|
+
# @param [Hash] opts the optional parameters
|
|
822
|
+
# @option opts [NpmUpstreamRequest] :data
|
|
823
|
+
# @return [NpmUpstream]
|
|
824
|
+
describe 'repos_upstream_npm_update test' do
|
|
825
|
+
it 'should work' do
|
|
826
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
827
|
+
end
|
|
828
|
+
end
|
|
829
|
+
|
|
830
|
+
# unit tests for repos_upstream_nuget_create
|
|
831
|
+
# Create a NuGet upstream config for this repository.
|
|
832
|
+
# Create a NuGet upstream config for this repository.
|
|
833
|
+
# @param owner
|
|
834
|
+
# @param identifier
|
|
835
|
+
# @param [Hash] opts the optional parameters
|
|
836
|
+
# @option opts [NugetUpstreamRequest] :data
|
|
837
|
+
# @return [NugetUpstream]
|
|
838
|
+
describe 'repos_upstream_nuget_create test' do
|
|
839
|
+
it 'should work' do
|
|
840
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
841
|
+
end
|
|
842
|
+
end
|
|
843
|
+
|
|
844
|
+
# unit tests for repos_upstream_nuget_delete
|
|
845
|
+
# Delete a NuGet upstream config for this repository.
|
|
846
|
+
# Delete a NuGet upstream config for this repository.
|
|
847
|
+
# @param owner
|
|
848
|
+
# @param identifier
|
|
849
|
+
# @param slug_perm
|
|
850
|
+
# @param [Hash] opts the optional parameters
|
|
851
|
+
# @return [nil]
|
|
852
|
+
describe 'repos_upstream_nuget_delete test' do
|
|
853
|
+
it 'should work' do
|
|
854
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
855
|
+
end
|
|
856
|
+
end
|
|
857
|
+
|
|
858
|
+
# unit tests for repos_upstream_nuget_list
|
|
859
|
+
# List NuGet upstream configs for this repository.
|
|
860
|
+
# List NuGet upstream configs for this repository.
|
|
861
|
+
# @param owner
|
|
862
|
+
# @param identifier
|
|
863
|
+
# @param [Hash] opts the optional parameters
|
|
864
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
865
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
866
|
+
# @return [Array<NugetUpstream>]
|
|
867
|
+
describe 'repos_upstream_nuget_list test' do
|
|
868
|
+
it 'should work' do
|
|
869
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
870
|
+
end
|
|
871
|
+
end
|
|
872
|
+
|
|
873
|
+
# unit tests for repos_upstream_nuget_partial_update
|
|
874
|
+
# Partially update a NuGet upstream config for this repository.
|
|
875
|
+
# Partially update a NuGet upstream config for this repository.
|
|
876
|
+
# @param owner
|
|
877
|
+
# @param identifier
|
|
878
|
+
# @param slug_perm
|
|
879
|
+
# @param [Hash] opts the optional parameters
|
|
880
|
+
# @option opts [NugetUpstreamRequestPatch] :data
|
|
881
|
+
# @return [NugetUpstream]
|
|
882
|
+
describe 'repos_upstream_nuget_partial_update test' do
|
|
883
|
+
it 'should work' do
|
|
884
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
885
|
+
end
|
|
886
|
+
end
|
|
887
|
+
|
|
888
|
+
# unit tests for repos_upstream_nuget_read
|
|
889
|
+
# Retrieve a NuGet upstream config for this repository.
|
|
890
|
+
# Retrieve a NuGet upstream config for this repository.
|
|
891
|
+
# @param owner
|
|
892
|
+
# @param identifier
|
|
893
|
+
# @param slug_perm
|
|
894
|
+
# @param [Hash] opts the optional parameters
|
|
895
|
+
# @return [NugetUpstream]
|
|
896
|
+
describe 'repos_upstream_nuget_read test' do
|
|
897
|
+
it 'should work' do
|
|
898
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
899
|
+
end
|
|
900
|
+
end
|
|
901
|
+
|
|
902
|
+
# unit tests for repos_upstream_nuget_update
|
|
903
|
+
# Update a NuGet upstream config for this repository.
|
|
904
|
+
# Update a NuGet upstream config for this repository.
|
|
905
|
+
# @param owner
|
|
906
|
+
# @param identifier
|
|
907
|
+
# @param slug_perm
|
|
908
|
+
# @param [Hash] opts the optional parameters
|
|
909
|
+
# @option opts [NugetUpstreamRequest] :data
|
|
910
|
+
# @return [NugetUpstream]
|
|
911
|
+
describe 'repos_upstream_nuget_update test' do
|
|
912
|
+
it 'should work' do
|
|
913
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
914
|
+
end
|
|
915
|
+
end
|
|
916
|
+
|
|
917
|
+
# unit tests for repos_upstream_python_create
|
|
918
|
+
# Create a Python upstream config for this repository.
|
|
919
|
+
# Create a Python upstream config for this repository.
|
|
920
|
+
# @param owner
|
|
921
|
+
# @param identifier
|
|
922
|
+
# @param [Hash] opts the optional parameters
|
|
923
|
+
# @option opts [PythonUpstreamRequest] :data
|
|
924
|
+
# @return [PythonUpstream]
|
|
925
|
+
describe 'repos_upstream_python_create test' do
|
|
926
|
+
it 'should work' do
|
|
927
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
928
|
+
end
|
|
929
|
+
end
|
|
930
|
+
|
|
931
|
+
# unit tests for repos_upstream_python_delete
|
|
932
|
+
# Delete a Python upstream config for this repository.
|
|
933
|
+
# Delete a Python upstream config for this repository.
|
|
934
|
+
# @param owner
|
|
935
|
+
# @param identifier
|
|
936
|
+
# @param slug_perm
|
|
937
|
+
# @param [Hash] opts the optional parameters
|
|
938
|
+
# @return [nil]
|
|
939
|
+
describe 'repos_upstream_python_delete test' do
|
|
940
|
+
it 'should work' do
|
|
941
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
942
|
+
end
|
|
943
|
+
end
|
|
944
|
+
|
|
945
|
+
# unit tests for repos_upstream_python_list
|
|
946
|
+
# List Python upstream configs for this repository.
|
|
947
|
+
# List Python upstream configs for this repository.
|
|
948
|
+
# @param owner
|
|
949
|
+
# @param identifier
|
|
950
|
+
# @param [Hash] opts the optional parameters
|
|
951
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
952
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
953
|
+
# @return [Array<PythonUpstream>]
|
|
954
|
+
describe 'repos_upstream_python_list test' do
|
|
955
|
+
it 'should work' do
|
|
956
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
957
|
+
end
|
|
958
|
+
end
|
|
959
|
+
|
|
960
|
+
# unit tests for repos_upstream_python_partial_update
|
|
961
|
+
# Partially update a Python upstream config for this repository.
|
|
962
|
+
# Partially update a Python upstream config for this repository.
|
|
963
|
+
# @param owner
|
|
964
|
+
# @param identifier
|
|
965
|
+
# @param slug_perm
|
|
966
|
+
# @param [Hash] opts the optional parameters
|
|
967
|
+
# @option opts [PythonUpstreamRequestPatch] :data
|
|
968
|
+
# @return [PythonUpstream]
|
|
969
|
+
describe 'repos_upstream_python_partial_update test' do
|
|
970
|
+
it 'should work' do
|
|
971
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
972
|
+
end
|
|
973
|
+
end
|
|
974
|
+
|
|
975
|
+
# unit tests for repos_upstream_python_read
|
|
976
|
+
# Retrieve a Python upstream config for this repository.
|
|
977
|
+
# Retrieve a Python upstream config for this repository.
|
|
978
|
+
# @param owner
|
|
979
|
+
# @param identifier
|
|
980
|
+
# @param slug_perm
|
|
981
|
+
# @param [Hash] opts the optional parameters
|
|
982
|
+
# @return [PythonUpstream]
|
|
983
|
+
describe 'repos_upstream_python_read test' do
|
|
984
|
+
it 'should work' do
|
|
985
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
986
|
+
end
|
|
987
|
+
end
|
|
988
|
+
|
|
989
|
+
# unit tests for repos_upstream_python_update
|
|
990
|
+
# Update a Python upstream config for this repository.
|
|
991
|
+
# Update a Python upstream config for this repository.
|
|
992
|
+
# @param owner
|
|
993
|
+
# @param identifier
|
|
994
|
+
# @param slug_perm
|
|
995
|
+
# @param [Hash] opts the optional parameters
|
|
996
|
+
# @option opts [PythonUpstreamRequest] :data
|
|
997
|
+
# @return [PythonUpstream]
|
|
998
|
+
describe 'repos_upstream_python_update test' do
|
|
999
|
+
it 'should work' do
|
|
1000
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1001
|
+
end
|
|
1002
|
+
end
|
|
1003
|
+
|
|
1004
|
+
# unit tests for repos_upstream_rpm_create
|
|
1005
|
+
# Create a RedHat upstream config for this repository.
|
|
1006
|
+
# Create a RedHat upstream config for this repository.
|
|
1007
|
+
# @param owner
|
|
1008
|
+
# @param identifier
|
|
1009
|
+
# @param [Hash] opts the optional parameters
|
|
1010
|
+
# @option opts [RpmUpstreamRequest] :data
|
|
1011
|
+
# @return [RpmUpstream]
|
|
1012
|
+
describe 'repos_upstream_rpm_create test' do
|
|
1013
|
+
it 'should work' do
|
|
1014
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1015
|
+
end
|
|
1016
|
+
end
|
|
1017
|
+
|
|
1018
|
+
# unit tests for repos_upstream_rpm_delete
|
|
1019
|
+
# Delete a RedHat upstream config for this repository.
|
|
1020
|
+
# Delete a RedHat upstream config for this repository.
|
|
1021
|
+
# @param owner
|
|
1022
|
+
# @param identifier
|
|
1023
|
+
# @param slug_perm
|
|
1024
|
+
# @param [Hash] opts the optional parameters
|
|
1025
|
+
# @return [nil]
|
|
1026
|
+
describe 'repos_upstream_rpm_delete test' do
|
|
1027
|
+
it 'should work' do
|
|
1028
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1029
|
+
end
|
|
1030
|
+
end
|
|
1031
|
+
|
|
1032
|
+
# unit tests for repos_upstream_rpm_list
|
|
1033
|
+
# List RedHat upstream configs for this repository.
|
|
1034
|
+
# List RedHat upstream configs for this repository.
|
|
1035
|
+
# @param owner
|
|
1036
|
+
# @param identifier
|
|
1037
|
+
# @param [Hash] opts the optional parameters
|
|
1038
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1039
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1040
|
+
# @return [Array<RpmUpstream>]
|
|
1041
|
+
describe 'repos_upstream_rpm_list test' do
|
|
1042
|
+
it 'should work' do
|
|
1043
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1044
|
+
end
|
|
1045
|
+
end
|
|
1046
|
+
|
|
1047
|
+
# unit tests for repos_upstream_rpm_partial_update
|
|
1048
|
+
# Partially update a RedHat upstream config for this repository.
|
|
1049
|
+
# Partially update a RedHat upstream config for this repository.
|
|
1050
|
+
# @param owner
|
|
1051
|
+
# @param identifier
|
|
1052
|
+
# @param slug_perm
|
|
1053
|
+
# @param [Hash] opts the optional parameters
|
|
1054
|
+
# @option opts [RpmUpstreamRequestPatch] :data
|
|
1055
|
+
# @return [RpmUpstream]
|
|
1056
|
+
describe 'repos_upstream_rpm_partial_update test' do
|
|
1057
|
+
it 'should work' do
|
|
1058
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1059
|
+
end
|
|
1060
|
+
end
|
|
1061
|
+
|
|
1062
|
+
# unit tests for repos_upstream_rpm_read
|
|
1063
|
+
# Retrieve a RedHat upstream config for this repository.
|
|
1064
|
+
# Retrieve a RedHat upstream config for this repository.
|
|
1065
|
+
# @param owner
|
|
1066
|
+
# @param identifier
|
|
1067
|
+
# @param slug_perm
|
|
1068
|
+
# @param [Hash] opts the optional parameters
|
|
1069
|
+
# @return [RpmUpstream]
|
|
1070
|
+
describe 'repos_upstream_rpm_read test' do
|
|
1071
|
+
it 'should work' do
|
|
1072
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1073
|
+
end
|
|
1074
|
+
end
|
|
1075
|
+
|
|
1076
|
+
# unit tests for repos_upstream_rpm_update
|
|
1077
|
+
# Update a RedHat upstream config for this repository.
|
|
1078
|
+
# Update a RedHat upstream config for this repository.
|
|
1079
|
+
# @param owner
|
|
1080
|
+
# @param identifier
|
|
1081
|
+
# @param slug_perm
|
|
1082
|
+
# @param [Hash] opts the optional parameters
|
|
1083
|
+
# @option opts [RpmUpstreamRequest] :data
|
|
1084
|
+
# @return [RpmUpstream]
|
|
1085
|
+
describe 'repos_upstream_rpm_update test' do
|
|
1086
|
+
it 'should work' do
|
|
1087
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1088
|
+
end
|
|
1089
|
+
end
|
|
1090
|
+
|
|
1091
|
+
# unit tests for repos_upstream_ruby_create
|
|
1092
|
+
# Create a Ruby upstream config for this repository.
|
|
1093
|
+
# Create a Ruby upstream config for this repository.
|
|
1094
|
+
# @param owner
|
|
1095
|
+
# @param identifier
|
|
1096
|
+
# @param [Hash] opts the optional parameters
|
|
1097
|
+
# @option opts [RubyUpstreamRequest] :data
|
|
1098
|
+
# @return [RubyUpstream]
|
|
1099
|
+
describe 'repos_upstream_ruby_create test' do
|
|
1100
|
+
it 'should work' do
|
|
1101
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1102
|
+
end
|
|
1103
|
+
end
|
|
1104
|
+
|
|
1105
|
+
# unit tests for repos_upstream_ruby_delete
|
|
1106
|
+
# Delete a Ruby upstream config for this repository.
|
|
1107
|
+
# Delete a Ruby upstream config for this repository.
|
|
1108
|
+
# @param owner
|
|
1109
|
+
# @param identifier
|
|
1110
|
+
# @param slug_perm
|
|
1111
|
+
# @param [Hash] opts the optional parameters
|
|
1112
|
+
# @return [nil]
|
|
1113
|
+
describe 'repos_upstream_ruby_delete test' do
|
|
1114
|
+
it 'should work' do
|
|
1115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1116
|
+
end
|
|
1117
|
+
end
|
|
1118
|
+
|
|
1119
|
+
# unit tests for repos_upstream_ruby_list
|
|
1120
|
+
# List Ruby upstream configs for this repository.
|
|
1121
|
+
# List Ruby upstream configs for this repository.
|
|
1122
|
+
# @param owner
|
|
1123
|
+
# @param identifier
|
|
1124
|
+
# @param [Hash] opts the optional parameters
|
|
1125
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
|
1126
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
|
1127
|
+
# @return [Array<RubyUpstream>]
|
|
1128
|
+
describe 'repos_upstream_ruby_list test' do
|
|
1129
|
+
it 'should work' do
|
|
1130
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1131
|
+
end
|
|
1132
|
+
end
|
|
1133
|
+
|
|
1134
|
+
# unit tests for repos_upstream_ruby_partial_update
|
|
1135
|
+
# Partially update a Ruby upstream config for this repository.
|
|
1136
|
+
# Partially update a Ruby upstream config for this repository.
|
|
1137
|
+
# @param owner
|
|
1138
|
+
# @param identifier
|
|
1139
|
+
# @param slug_perm
|
|
1140
|
+
# @param [Hash] opts the optional parameters
|
|
1141
|
+
# @option opts [RubyUpstreamRequestPatch] :data
|
|
1142
|
+
# @return [RubyUpstream]
|
|
1143
|
+
describe 'repos_upstream_ruby_partial_update test' do
|
|
1144
|
+
it 'should work' do
|
|
1145
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1146
|
+
end
|
|
1147
|
+
end
|
|
1148
|
+
|
|
1149
|
+
# unit tests for repos_upstream_ruby_read
|
|
1150
|
+
# Retrieve a Ruby upstream config for this repository.
|
|
1151
|
+
# Retrieve a Ruby upstream config for this repository.
|
|
1152
|
+
# @param owner
|
|
1153
|
+
# @param identifier
|
|
1154
|
+
# @param slug_perm
|
|
1155
|
+
# @param [Hash] opts the optional parameters
|
|
1156
|
+
# @return [RubyUpstream]
|
|
1157
|
+
describe 'repos_upstream_ruby_read test' do
|
|
1158
|
+
it 'should work' do
|
|
1159
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1160
|
+
end
|
|
1161
|
+
end
|
|
1162
|
+
|
|
1163
|
+
# unit tests for repos_upstream_ruby_update
|
|
1164
|
+
# Update a Ruby upstream config for this repository.
|
|
1165
|
+
# Update a Ruby upstream config for this repository.
|
|
1166
|
+
# @param owner
|
|
1167
|
+
# @param identifier
|
|
1168
|
+
# @param slug_perm
|
|
1169
|
+
# @param [Hash] opts the optional parameters
|
|
1170
|
+
# @option opts [RubyUpstreamRequest] :data
|
|
1171
|
+
# @return [RubyUpstream]
|
|
1172
|
+
describe 'repos_upstream_ruby_update test' do
|
|
1173
|
+
it 'should work' do
|
|
1174
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
1175
|
+
end
|
|
1176
|
+
end
|
|
1177
|
+
|
|
308
1178
|
# unit tests for repos_user_list
|
|
309
1179
|
# Get a list of all repositories associated with current user.
|
|
310
1180
|
# Get a list of all repositories associated with current user.
|