Class: Seahorse::Model::Operation

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeOperation

Returns a new instance of Operation.



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

def initialize
  @http_method = 'POST'
  @http_request_uri = '/'
  @deprecated = false
  @errors = []
  @metadata = {}
end

Instance Attribute Details

#authorizerString?

Returns:

  • (String, nil)


29
30
31
# File 'lib/seahorse/model/operation.rb', line 29

def authorizer
  @authorizer
end

#deprecatedBoolean

Returns:

  • (Boolean)


23
24
25
# File 'lib/seahorse/model/operation.rb', line 23

def deprecated
  @deprecated
end

#documentationString?

Returns:

  • (String, nil)


26
27
28
# File 'lib/seahorse/model/operation.rb', line 26

def documentation
  @documentation
end

#errorsArray<ShapeRef>

Returns:

  • (Array<ShapeRef>)


38
39
40
# File 'lib/seahorse/model/operation.rb', line 38

def errors
  @errors
end

#http_methodString

Returns:

  • (String)


17
18
19
# File 'lib/seahorse/model/operation.rb', line 17

def http_method
  @http_method
end

#http_request_uriString

Returns:

  • (String)


20
21
22
# File 'lib/seahorse/model/operation.rb', line 20

def http_request_uri
  @http_request_uri
end

#inputShapeRef?

Returns:

  • (ShapeRef, nil)


32
33
34
# File 'lib/seahorse/model/operation.rb', line 32

def input
  @input
end

#nameString?

Returns:

  • (String, nil)


14
15
16
# File 'lib/seahorse/model/operation.rb', line 14

def name
  @name
end

#outputShapeRef?

Returns:

  • (ShapeRef, nil)


35
36
37
# File 'lib/seahorse/model/operation.rb', line 35

def output
  @output
end

#require_apikeyBoolean

APIG only

Returns:

  • (Boolean)


42
43
44
# File 'lib/seahorse/model/operation.rb', line 42

def require_apikey
  @require_apikey
end

Instance Method Details

#[](key) ⇒ Object



44
45
46
# File 'lib/seahorse/model/operation.rb', line 44

def [](key)
  @metadata[key.to_s]
end

#[]=(key, value) ⇒ Object



48
49
50
# File 'lib/seahorse/model/operation.rb', line 48

def []=(key, value)
  @metadata[key.to_s] = value
end