GET /api/architectures
List all architectures

GET /api/operatingsystems/:operatingsystem_id/architectures
List all architectures for operating system

参数

参数名字 描述
search
选填

过滤结果

Validations:

  • Must be String

order
选填

结果排序

Validations:

  • Must be String

page
选填

页数

Validations:

  • Must be String

per_page
选填

每个请求中的条目数

Validations:

  • Must be String

operatingsystem_id
选填

ID of operating system

Validations:

  • Must be String


GET /api/architectures/:id
Show an architecture

参数

参数名字 描述
id
必填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.


POST /api/architectures
Create an architecture

参数

参数名字 描述
architecture
必填

Validations:

  • Must be a Hash

architecture[name]
必填

Validations:

  • Must be String

architecture[operatingsystem_ids]
选填 , 允许空值

Operating system IDs

Validations:

  • Must be an array of any type


PUT /api/architectures/:id
Update an architecture

参数

参数名字 描述
id
必填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.

architecture
必填

Validations:

  • Must be a Hash

architecture[name]
选填

Validations:

  • Must be String

architecture[operatingsystem_ids]
选填 , 允许空值

Operating system IDs

Validations:

  • Must be an array of any type


DELETE /api/architectures/:id
Delete an architecture

参数

参数名字 描述
id
必填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.