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.

[View source]

7
8
9
10
11
12
13
# File 'lib/seahorse/model/api.rb', line 7

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

Instance Attribute Details

#endpoint_operationSymbol|nil

Returns:

  • (Symbol|nil)

22
23
24
# File 'lib/seahorse/model/api.rb', line 22

def endpoint_operation
  @endpoint_operation
end

#metadataHash

Returns:

  • (Hash)

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

def 
  @metadata
end

#require_endpoint_discoveryBoolean|nil

Returns:

  • (Boolean|nil)

25
26
27
# File 'lib/seahorse/model/api.rb', line 25

def require_endpoint_discovery
  @require_endpoint_discovery
end

#versionString?

Returns:

  • (String, nil)

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

def version
  @version
end

Instance Method Details

#add_authorizer(name, authorizer) ⇒ Object

[View source]

75
76
77
# File 'lib/seahorse/model/api.rb', line 75

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

#add_operation(name, operation) ⇒ Object

[View source]

51
52
53
# File 'lib/seahorse/model/api.rb', line 51

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

#async_operation_namesObject

[View source]

47
48
49
# File 'lib/seahorse/model/api.rb', line 47

def async_operation_names
  @operations.select {|_, op| op.async }.keys
end

#authorizer(name) ⇒ Object

[View source]

63
64
65
66
67
68
69
# File 'lib/seahorse/model/api.rb', line 63

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

#authorizer_namesObject

[View source]

71
72
73
# File 'lib/seahorse/model/api.rb', line 71

def authorizer_names
  @authorizers.keys
end

#authorizers(&block) ⇒ Object

[View source]

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

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

#inspect(*args) ⇒ Object

[View source]

79
80
81
# File 'lib/seahorse/model/api.rb', line 79

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

#operation(name) ⇒ Object

[View source]

35
36
37
38
39
40
41
# File 'lib/seahorse/model/api.rb', line 35

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

#operation_namesObject

[View source]

43
44
45
# File 'lib/seahorse/model/api.rb', line 43

def operation_names
  @operations.keys
end

#operations(&block) ⇒ Object

[View source]

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

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