Skip to content

Commit df4de8d

Browse files
comments
Signed-off-by: Laurent Martin <laurent.martin.l@gmail.com>
1 parent f0b3059 commit df4de8d

7 files changed

Lines changed: 9 additions & 3 deletions

File tree

lib/aspera/api/alee.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
require 'aspera/api/aoc.rb'
44
module Aspera
55
module Api
6+
# Aspera License Entitlement Engine API client
67
class Alee < Aspera::Rest
78
def initialize(entitlement_id, customer_id, api_domain: AoC::SAAS_DOMAIN_PROD, version: 'v1')
89
super(

lib/aspera/api/aoc.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
module Aspera
1414
module Api
15+
# Aspera on Cloud API client
1516
class AoC < Rest
1617
include RestList
1718

lib/aspera/api/ats.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
module Aspera
77
module Api
8-
# ATS API without authentication
8+
# Aspera Transfer Service API client without authentication
99
class Ats < Aspera::Rest
1010
SERVICE_BASE_URL = 'https://ats.aspera.io'
1111
# currently supported clouds

lib/aspera/api/cos_node.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
module Aspera
99
module Api
10+
# Cloud Object Storage Node API Client
1011
class CosNode < Node
1112
IBM_CLOUD_TOKEN_URL = 'https://iam.cloud.ibm.com/identity'
1213
TOKEN_FIELD = 'delegated_refresh_token'

lib/aspera/api/faspex.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
require 'digest'
77

88
module Aspera
9-
# Implement OAuth for Faspex public link
9+
# OAuth for Faspex public link
1010
class FaspexPubLink < OAuth::Base
1111
class << self
1212
attr_accessor :additional_info
@@ -56,6 +56,7 @@ def create_token
5656
end
5757
OAuth::Factory.instance.register_token_creator(FaspexPubLink)
5858
module Api
59+
# Aspera Faspex 5 API Client
5960
class Faspex < Aspera::Rest
6061
include RestList
6162

lib/aspera/api/httpgw.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
module Aspera
1313
module Api
14+
# Aspera HTTP Gateway API client
1415
# Start a transfer using Aspera HTTP Gateway, using web socket secure for uploads
1516
# ref: https://api.ibm.com/explorer/catalog/aspera/product/ibm-aspera/api/http-gateway-api/doc/guides-toc
1617
# https://developer.ibm.com/apis/catalog?search=%22aspera%20http%22

lib/aspera/api/node.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414

1515
module Aspera
1616
module Api
17-
# Provides additional functions using node API with gen4 extensions (access keys)
17+
# Aspera Node API client
18+
# with gen4 extensions (access keys)
1819
class Node < Rest
1920
# Format of node scope : node.<access key>:<scope>
2021
module Scope

0 commit comments

Comments
 (0)