GET /api/compute_resources/:compute_resource_id/images
컴퓨터 리소스의 모든 이미지 목록 나열

GET /api/operatingsystems/:operatingsystem_id/images
운영 체제의 모든 이미지 목록 나열

GET /api/architectures/:architecture_id/images
아키텍처의 모든 이미지 목록 나열

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

compute_resource_id
optional

컴퓨터 리소스 ID

Validations:

  • Must be a String

architecture_id
optional

아키텍쳐 ID

Validations:

  • Must be a String

operatingsystem_id
optional

운영 체제 ID

Validations:

  • Must be a String

search
optional

필터 결과

Validations:

  • Must be a String

order
optional

Sort field and order, eg. ‘id DESC’

Validations:

  • Must be a String

page
optional

1 부터 페이지 번호

Validations:

  • Must be a number.

per_page
optional

반환할 페이지 당 결과 수

Validations:

  • Must be a number.

Search fields

Field name 유형 Possible values
architecture
compute_resource
name
operatingsystem
user_data true, false
username

GET /api/compute_resources/:compute_resource_id/images/:id
이미지 보기

GET /api/operatingsystems/:operatingsystem_id/images/:id
이미지 보기

GET /api/architectures/:architecture_id/images/:id
이미지 보기

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

id
required

Validations:

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

compute_resource_id
optional

컴퓨터 리소스 ID

Validations:

  • Must be a String

architecture_id
optional

아키텍쳐 ID

Validations:

  • Must be a String

operatingsystem_id
optional

운영 체제 ID

Validations:

  • Must be a String


POST /api/compute_resources/:compute_resource_id/images
이미지 생성

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

compute_resource_id
required

Validations:

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

image
required

Validations:

  • Must be a Hash

image[name]
required

Validations:

  • Must be a String

image[username]
required

Validations:

  • Must be a String

image[uuid]
required

Template ID in the compute resource

Validations:

  • Must be a String

image[password]
optional , nil allowed

Validations:

  • Must be a String

image[compute_resource_id]
optional , nil allowed

컴퓨터 리소스 ID

Validations:

  • Must be a String

image[architecture_id]
optional , nil allowed

아키텍쳐 ID

Validations:

  • Must be a String

image[operatingsystem_id]
optional , nil allowed

운영 체제 ID

Validations:

  • Must be a String

image[user_data]
optional , nil allowed

이미지가 사용자 데이터를 지원하는지 여부

Validations:

  • Must be one of: true, false, 1, 0.


PUT /api/compute_resources/:compute_resource_id/images/:id
이미지 업데이트

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

compute_resource_id
required

Validations:

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

id
required

Validations:

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

image
required

Validations:

  • Must be a Hash

image[name]
optional

Validations:

  • Must be a String

image[username]
optional

Validations:

  • Must be a String

image[uuid]
optional

Template ID in the compute resource

Validations:

  • Must be a String

image[password]
optional , nil allowed

Validations:

  • Must be a String

image[compute_resource_id]
optional , nil allowed

컴퓨터 리소스 ID

Validations:

  • Must be a String

image[architecture_id]
optional , nil allowed

아키텍쳐 ID

Validations:

  • Must be a String

image[operatingsystem_id]
optional , nil allowed

운영 체제 ID

Validations:

  • Must be a String

image[user_data]
optional , nil allowed

이미지가 사용자 데이터를 지원하는지 여부

Validations:

  • Must be one of: true, false, 1, 0.


DELETE /api/compute_resources/:compute_resource_id/images/:id
이미지 삭제

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

compute_resource_id
required

Validations:

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

id
required

Validations:

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