Class: Seahorse::Model::Api

Inherits:
Object
  • Object
show all
Defined in:
lib/seahorse/model/api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeApi

Returns a new instance of Api.



5
6
7
8
9
10
# File 'lib/seahorse/model/api.rb', line 5

def initialize
  @metadata = {}
  @operations = {}
  @authorizers = {}
  @endpoint_operation = nil
end

Instance Attribute Details

#endpoint_operationSymbol|nil

Returns:

  • (Symbol|nil)


19
20
21
# File 'lib/seahorse/model/api.rb', line 19

def endpoint_operation
  @endpoint_operation
end

#metadataHash

Returns:

  • (Hash)


16
17
18
# File 'lib/seahorse/model/api.rb', line 16

def 
  @metadata
end

#versionString?

Returns:

  • (String, nil)


13
14
15
# File 'lib/seahorse/model/api.rb', line 13

def version
  @version
end

Instance Method Details

#add_authorizer(name, authorizer) ⇒ Object



65
66
67
# File 'lib/seahorse/model/api.rb', line 65

def add_authorizer(name, authorizer)
  @authorizers[name.to_sym] = authorizer
end

#add_operation(name, operation) ⇒ Object



41
42
43
# File 'lib/seahorse/model/api.rb', line 41

def add_operation(name, operation)
  @operations[name.to_sym] = operation
end

#authorizer(name) ⇒ Object



53
54
55
56
57
58
59
# File 'lib/seahorse/model/api.rb', line 53

def authorizer(name)
  if @authorizers.key?(name.to_sym)
    @authorizers[name.to_sym]
  else
    raise ArgumentError, "unknown authorizer #{name.inspect}"
  end
end

#authorizer_namesObject



61
62
63
# File 'lib/seahorse/model/api.rb', line 61

def authorizer_names
  @authorizers.keys
end

#authorizers(&block) ⇒ Object



45
46
47
48
49
50
51
# File 'lib/seahorse/model/api.rb', line 45

def authorizers(&block)
  if block_given?
    @authorizers.each(&block)
  else
    @authorizers.enum_for(:each)
  end
end

#inspect(*args) ⇒ Object



69
70
71
# File 'lib/seahorse/model/api.rb', line 69

def inspect(*args)
  "#<#{self.class.name}>"
end

#operation(name) ⇒ Object



29
30
31
32
33
34
35
# File 'lib/seahorse/model/api.rb', line 29

def operation(name)
  if @operations.key?(name.to_sym)
    @operations[name.to_sym]
  else
    raise ArgumentError, "unknown operation #{name.inspect}"
  end
end

#operation_namesObject



37
38
39
# File 'lib/seahorse/model/api.rb', line 37

def operation_names
  @operations.keys
end

#operations(&block) ⇒ Object



21
22
23
24
25
26
27
# File 'lib/seahorse/model/api.rb', line 21

def operations(&block)
  if block_given?
    @operations.each(&block)
  else
    @operations.enum_for(:each)
  end
end