Class: Fog::Parsers::AWS::RDS::DBClusterSnapshotParser
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::AWS::RDS::DBClusterSnapshotParser
show all
- Defined in:
- lib/fog/aws/parsers/rds/db_cluster_snapshot_parser.rb
Instance Method Summary
collapse
Instance Method Details
#end_element(name) ⇒ Object
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/fog/aws/parsers/rds/db_cluster_snapshot_parser.rb', line 18
def end_element(name)
case name
when 'Port', 'PercentProgress', 'AllocatedStorage'
@db_cluster_snapshot[name] = value.to_i
when 'SnapshotCreateTime', 'ClusterCreateTime'
@db_cluster_snapshot[name] = Time.parse(value)
else
@db_cluster_snapshot[name] = value
end
end
|
#fresh_snapshot ⇒ Object
10
11
12
|
# File 'lib/fog/aws/parsers/rds/db_cluster_snapshot_parser.rb', line 10
def fresh_snapshot
{}
end
|
#reset ⇒ Object
6
7
8
|
# File 'lib/fog/aws/parsers/rds/db_cluster_snapshot_parser.rb', line 6
def reset
@db_cluster_snapshot = fresh_snapshot
end
|
#start_element(name, attrs = []) ⇒ Object
14
15
16
|
# File 'lib/fog/aws/parsers/rds/db_cluster_snapshot_parser.rb', line 14
def start_element(name, attrs=[])
super
end
|