instanceSize property

String? instanceSize
getter/setter pair

An enum of readable instance sizes, with each instance size mapping to a float value (e.g. InstanceSize.EXTRA_SMALL = scaling_factor(0.1)) Possible string values are:

  • "INSTANCE_SIZE_UNSPECIFIED" : Unspecified instance size
  • "EXTRA_SMALL" : Extra small instance size, maps to a scaling factor of 0.1.
  • "SMALL" : Small instance size, maps to a scaling factor of 0.5.
  • "MEDIUM" : Medium instance size, maps to a scaling factor of 1.0.
  • "LARGE" : Large instance size, maps to a scaling factor of 3.0.
  • "EXTRA_LARGE" : Extra large instance size, maps to a scaling factor of 6.0.

Implementation

core.String? instanceSize;