Class: SDM::Athena
- Inherits:
-
Object
- Object
- SDM::Athena
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#access_key ⇒ Object
Returns the value of attribute access_key.
-
#bind_interface ⇒ Object
Bind interface.
-
#egress_filter ⇒ Object
A filter applied to the routing logic to pin datasource to nodes.
-
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
-
#id ⇒ Object
Unique identifier of the Resource.
-
#name ⇒ Object
Unique human-readable name of the Resource.
-
#output ⇒ Object
Returns the value of attribute output.
-
#port_override ⇒ Object
Returns the value of attribute port_override.
-
#region ⇒ Object
Returns the value of attribute region.
-
#role_arn ⇒ Object
Returns the value of attribute role_arn.
-
#role_external_id ⇒ Object
Returns the value of attribute role_external_id.
-
#secret_access_key ⇒ Object
Returns the value of attribute secret_access_key.
-
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
-
#tags ⇒ Object
Tags is a map of key, value pairs.
Instance Method Summary collapse
-
#initialize(access_key: nil, bind_interface: nil, egress_filter: nil, healthy: nil, id: nil, name: nil, output: nil, port_override: nil, region: nil, role_arn: nil, role_external_id: nil, secret_access_key: nil, secret_store_id: nil, tags: nil) ⇒ Athena
constructor
A new instance of Athena.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(access_key: nil, bind_interface: nil, egress_filter: nil, healthy: nil, id: nil, name: nil, output: nil, port_override: nil, region: nil, role_arn: nil, role_external_id: nil, secret_access_key: nil, secret_store_id: nil, tags: nil) ⇒ Athena
Returns a new instance of Athena.
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 |
# File 'lib/models/porcelain.rb', line 1131 def initialize( access_key: nil, bind_interface: nil, egress_filter: nil, healthy: nil, id: nil, name: nil, output: nil, port_override: nil, region: nil, role_arn: nil, role_external_id: nil, secret_access_key: nil, secret_store_id: nil, tags: nil ) @access_key = access_key == nil ? "" : access_key @bind_interface = bind_interface == nil ? "" : bind_interface @egress_filter = egress_filter == nil ? "" : egress_filter @healthy = healthy == nil ? false : healthy @id = id == nil ? "" : id @name = name == nil ? "" : name @output = output == nil ? "" : output @port_override = port_override == nil ? 0 : port_override @region = region == nil ? "" : region @role_arn = role_arn == nil ? "" : role_arn @role_external_id = role_external_id == nil ? "" : role_external_id @secret_access_key = secret_access_key == nil ? "" : secret_access_key @secret_store_id = secret_store_id == nil ? "" : secret_store_id = == nil ? SDM::() : end |
Instance Attribute Details
#access_key ⇒ Object
Returns the value of attribute access_key.
1103 1104 1105 |
# File 'lib/models/porcelain.rb', line 1103 def access_key @access_key end |
#bind_interface ⇒ Object
Bind interface
1105 1106 1107 |
# File 'lib/models/porcelain.rb', line 1105 def bind_interface @bind_interface end |
#egress_filter ⇒ Object
A filter applied to the routing logic to pin datasource to nodes.
1107 1108 1109 |
# File 'lib/models/porcelain.rb', line 1107 def egress_filter @egress_filter end |
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
1109 1110 1111 |
# File 'lib/models/porcelain.rb', line 1109 def healthy @healthy end |
#id ⇒ Object
Unique identifier of the Resource.
1111 1112 1113 |
# File 'lib/models/porcelain.rb', line 1111 def id @id end |
#name ⇒ Object
Unique human-readable name of the Resource.
1113 1114 1115 |
# File 'lib/models/porcelain.rb', line 1113 def name @name end |
#output ⇒ Object
Returns the value of attribute output.
1115 1116 1117 |
# File 'lib/models/porcelain.rb', line 1115 def output @output end |
#port_override ⇒ Object
Returns the value of attribute port_override.
1117 1118 1119 |
# File 'lib/models/porcelain.rb', line 1117 def port_override @port_override end |
#region ⇒ Object
Returns the value of attribute region.
1119 1120 1121 |
# File 'lib/models/porcelain.rb', line 1119 def region @region end |
#role_arn ⇒ Object
Returns the value of attribute role_arn.
1121 1122 1123 |
# File 'lib/models/porcelain.rb', line 1121 def role_arn @role_arn end |
#role_external_id ⇒ Object
Returns the value of attribute role_external_id.
1123 1124 1125 |
# File 'lib/models/porcelain.rb', line 1123 def role_external_id @role_external_id end |
#secret_access_key ⇒ Object
Returns the value of attribute secret_access_key.
1125 1126 1127 |
# File 'lib/models/porcelain.rb', line 1125 def secret_access_key @secret_access_key end |
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
1127 1128 1129 |
# File 'lib/models/porcelain.rb', line 1127 def secret_store_id @secret_store_id end |
#tags ⇒ Object
Tags is a map of key, value pairs.
1129 1130 1131 |
# File 'lib/models/porcelain.rb', line 1129 def end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1163 1164 1165 1166 1167 1168 1169 |
# File 'lib/models/porcelain.rb', line 1163 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |