Class: Fog::AWS::STS::Mock
- Inherits:
-
Object
- Object
- Fog::AWS::STS::Mock
- Defined in:
- lib/fog/aws/sts.rb
Class Method Summary collapse
Instance Method Summary collapse
- #data ⇒ Object
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
- #reset_data ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Mock
Returns a new instance of Mock.
35 36 37 |
# File 'lib/fog/aws/sts.rb', line 35 def initialize(={}) @aws_access_key_id = [:aws_access_key_id] end |
Class Method Details
.data ⇒ Object
18 19 20 21 22 23 24 25 |
# File 'lib/fog/aws/sts.rb', line 18 def self.data @data ||= Hash.new do |hash, key| hash[key] = { :owner_id => Fog::AWS::Mock.owner_id, :server_certificates => {} } end end |
.reset ⇒ Object
27 28 29 |
# File 'lib/fog/aws/sts.rb', line 27 def self.reset @data = nil end |
.server_certificate_id ⇒ Object
31 32 33 |
# File 'lib/fog/aws/sts.rb', line 31 def self.server_certificate_id Fog::Mock.random_hex(16) end |
Instance Method Details
#data ⇒ Object
39 40 41 |
# File 'lib/fog/aws/sts.rb', line 39 def data self.class.data[@aws_access_key_id] end |
#reset_data ⇒ Object
43 44 45 |
# File 'lib/fog/aws/sts.rb', line 43 def reset_data self.class.data.delete(@aws_access_key_id) end |