Create an Google instance
(self, args)
| 211 | ########################################################################## |
| 212 | |
| 213 | def cmd_create_instance(self, args): |
| 214 | """ Create an Google instance""" |
| 215 | instance_data = self._create_google_postgresql_instance(args) |
| 216 | data = {'instance': { |
| 217 | 'Hostname': instance_data['ipAddresses'][0]['ipAddress'], |
| 218 | 'Port': 5432, |
| 219 | 'Database': 'postgres', |
| 220 | 'Username': 'postgres', |
| 221 | }} |
| 222 | output(data) |
| 223 | |
| 224 | |
| 225 | def load(): |
nothing calls this directly
no test coverage detected