CloudsmithApi::DistrosApi

All URIs are relative to https://api.cloudsmith.io/v1

Method HTTP request Description
distros_list GET /distros/ Get a list of all supported distributions.
distros_read GET /distros/slug/ View for viewing/listing distributions.

distros_list

Array<DistributionFull> distros_list

Get a list of all supported distributions.

Get a list of all supported distributions.

Example

# load the gem
require 'cloudsmith-api'
# setup authorization
CloudsmithApi.configure do |config|
  # Configure API key authorization: apikey
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
end

api_instance = CloudsmithApi::DistrosApi.new

begin
  #Get a list of all supported distributions.
  result = api_instance.distros_list
  p result
rescue CloudsmithApi::ApiError => e
  puts "Exception when calling DistrosApi->distros_list: #{e}"
end

Parameters

This endpoint does not need any parameter.

Return type

Array<DistributionFull>

Authorization

apikey

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

distros_read

DistributionFull distros_read(slug)

View for viewing/listing distributions.

View for viewing/listing distributions.

Example

# load the gem
require 'cloudsmith-api'
# setup authorization
CloudsmithApi.configure do |config|
  # Configure API key authorization: apikey
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
end

api_instance = CloudsmithApi::DistrosApi.new

slug = 'slug_example' # String | 


begin
  #View for viewing/listing distributions.
  result = api_instance.distros_read(slug)
  p result
rescue CloudsmithApi::ApiError => e
  puts "Exception when calling DistrosApi->distros_read: #{e}"
end

Parameters

Name Type Description Notes
slug String

Return type

DistributionFull

Authorization

apikey

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json