View Source ExRender.ServiceDetails (ex_render v0.1.0)

Serialization model for Render service details of ExRender.Service

Summary

Types

@type t() :: %ExRender.ServiceDetails{
  autoscaling: String.t(),
  build_plan: String.t(),
  env: String.t(),
  env_specific_details: term(),
  num_instances: integer(),
  open_ports: term(),
  plan: String.t(),
  pull_request_previews_enabled: term(),
  region: String.t(),
  url: String.t()
}

Functions

Link to this function

new(map_or_kwlist, opts \\ [])

View Source
@spec new(ExConstructor.map_or_kwlist(), Keyword.t()) :: %ExRender.ServiceDetails{
  autoscaling: term(),
  build_plan: term(),
  env: term(),
  env_specific_details: term(),
  num_instances: term(),
  open_ports: term(),
  plan: term(),
  pull_request_previews_enabled: term(),
  region: term(),
  url: term()
}