Class: Fog::Parsers::Redshift::AWS::ClusterParser
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::Redshift::AWS::ClusterParser
- Defined in:
- lib/fog/aws/parsers/redshift/cluster_parser.rb
Direct Known Subclasses
Instance Method Summary collapse
- #end_element(name) ⇒ Object
- #fresh_cluster ⇒ Object
-
#reset ⇒ Object
:cluster_identifier - (String) :node_type - (String) :cluster_status - (String) :modify_status - (String) :master_username - (String) :db_name - (String) :endpoint - (Hash) :address - (String) :port - (Integer) :cluster_create_time - (Time) :automated_snapshot_retention_period - (Integer) :cluster_security_groups - (Array) :cluster_security_group_name - (String) :status - (String) :vpc_security_groups - (Array) :vpc_security_group_id - (String) :status - (String) :cluster_parameter_groups - (Array) :parameter_group_name - (String) :parameter_apply_status - (String) :cluster_subnet_group_name - (String) :vpc_id - (String) :availability_zone - (String) :preferred_maintenance_window - (String) :pending_modified_values - (Hash) :master_user_password - (String) :node_type - (String) :number_of_nodes - (Integer) :cluster_type - (String) :cluster_version - (String) :automated_snapshot_retention_period - (Integer) :cluster_version - (String) :allow_version_upgrade - (Boolean) :number_of_nodes - (Integer) :publicly_accessible - (Boolean) :encrypted - (Boolean) :restore_status - (Hash) :status - (String) :current_restore_rate_in_mega_bytes_per_second - (Numeric) :snapshot_size_in_mega_bytes - (Integer) :progress_in_mega_bytes - (Integer) :elapsed_time_in_seconds - (Integer) :estimated_time_to_completion_in_seconds - (Integer).
- #start_element(name, attrs = []) ⇒ Object
Instance Method Details
#end_element(name) ⇒ Object
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/fog/aws/parsers/redshift/cluster_parser.rb', line 75 def end_element(name) case name when 'AvailabilityZone', 'ClusterIdentifier', 'ClusterStatus', 'ClusterSubnetGroupName', 'DBName', 'MasterUsername', 'ModifyStatus', 'PreferredMaintenanceWindow', 'VpcId' @cluster[name] = value when 'ClusterCreateTime' @cluster[name] = Time.parse(value) when 'AllowVersionUpgrade', 'Encrypted', 'PubliclyAccessible' @cluster[name] = (value == "true") when 'Address' @cluster['EndPoint'][name] = value when 'Port' @cluster['EndPoint'][name] = value.to_i when 'NodeType', 'ClusterVersion' if @in_pending_modified_values @cluster['PendingModifiedValues'][name] = value else @cluster[name] = value end when 'NumberOfNodes', 'AutomatedSnapshotRetentionPeriod' if @in_pending_modified_values @cluster['PendingModifiedValues'][name] = value.to_i else @cluster[name] = value.to_i end when 'MasterUserPassword', 'ClusterType' @cluster['PendingModifiedValues'][name] = value when 'Status' if @in_vpc_security_groups @vpc_security_group[name] = value elsif @in_cluster_security_groups @cluster_security_group[name] = value else @cluster['RestoreStatus'][name] = value end when 'ParameterGroupName', 'ParameterApplyStatus' @cluster_parameter_group[name] = value when 'ClusterSecurityGroupName' @cluster_security_group[name] = value when 'VpcSecurityGroupId' @vpc_security_group[name] = value when 'SnapshotSizeInMegaBytes', 'ProgressInMegaBytes', 'ElapsedTimeInSeconds', 'EstimatedTimeToCompletionInSeconds' @cluster['RestoreStatus'][name] = value.to_i when 'CurrentRestoreRateInMegaBytesPerSecond' @cluster['RestoreStatus'][name] = value.to_f when 'ClusterSecurityGroups' @in_cluster_security_groups = false when 'VpcSecurityGroups' @in_vpc_security_groups = false when 'PendingModifiedValues' @in_pending_modified_values = false when 'ClusterParameterGroup' @cluster['ClusterParameterGroups'] << {name => @cluster_parameter_group} @cluster_parameter_group = {} when 'ClusterSecurityGroup' @cluster['ClusterSecurityGroups'] << {name => @cluster_security_group} @cluster_security_group = {} when 'VpcSecurityGroup' @cluster['VpcSecurityGroups'] << {name => @vpc_security_group} @vpc_security_group = {} end end |
#fresh_cluster ⇒ Object
54 55 56 57 |
# File 'lib/fog/aws/parsers/redshift/cluster_parser.rb', line 54 def fresh_cluster { 'ClusterParameterGroups' => [], 'ClusterSecurityGroups' => [], 'VpcSecurityGroups' => [], 'EndPoint' => {}, 'PendingModifiedValues'=> {}, 'RestoreStatus' => {}} end |
#reset ⇒ Object
:cluster_identifier - (String) :node_type - (String) :cluster_status - (String) :modify_status - (String) :master_username - (String) :db_name - (String) :endpoint - (Hash)
:address - (String)
:port - (Integer)
:cluster_create_time - (Time) :automated_snapshot_retention_period - (Integer) :cluster_security_groups - (Array)
:cluster_security_group_name - (String)
:status - (String)
:vpc_security_groups - (Array)
:vpc_security_group_id - (String)
:status - (String)
:cluster_parameter_groups - (Array)
:parameter_group_name - (String)
:parameter_apply_status - (String)
:cluster_subnet_group_name - (String) :vpc_id - (String) :availability_zone - (String) :preferred_maintenance_window - (String) :pending_modified_values - (Hash)
:master_user_password - (String)
:node_type - (String)
:number_of_nodes - (Integer)
:cluster_type - (String)
:cluster_version - (String)
:automated_snapshot_retention_period - (Integer)
:cluster_version - (String) :allow_version_upgrade - (Boolean) :number_of_nodes - (Integer) :publicly_accessible - (Boolean) :encrypted - (Boolean) :restore_status - (Hash)
:status - (String)
:current_restore_rate_in_mega_bytes_per_second - (Numeric)
:snapshot_size_in_mega_bytes - (Integer)
:progress_in_mega_bytes - (Integer)
:elapsed_time_in_seconds - (Integer)
:estimated_time_to_completion_in_seconds - (Integer)
50 51 52 |
# File 'lib/fog/aws/parsers/redshift/cluster_parser.rb', line 50 def reset @cluster = fresh_cluster end |
#start_element(name, attrs = []) ⇒ Object
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/fog/aws/parsers/redshift/cluster_parser.rb', line 59 def start_element(name, attrs = []) super case name when 'ClusterSecurityGroups' @in_cluster_security_groups = true @cluster_security_group = {} when 'ClusterParameterGroups' @cluster_parameter_group = {} when 'VpcSecurityGroups' @in_vpc_security_groups = true @vpc_security_group = {} when 'PendingModifiedValues' @in_pending_modified_values = true end end |