# LocationProperties ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **name** | **String** | A name of that resource | [optional] | | **features** | **Array<String>** | List of features supported by the location | [optional][readonly] | | **image_aliases** | **Array<String>** | List of image aliases available for the location | [optional][readonly] | | **cpu_architecture** | [**Array<CpuArchitectureProperties>**](CpuArchitectureProperties.md) | Array of features and CPU families available in a location | [optional][readonly] | ## Example ```ruby require 'ionoscloud' instance = Ionoscloud::LocationProperties.new( name: My resource, features: [SSD], image_aliases: null, cpu_architecture: null ) ```