📸 Images

Get All

Returns a paginated list of Images.

  • Public Images have IDs that begin with “linode/”. These distribution images are generally available to all users.

  • Private Images have IDs that begin with “private/”. These Images are Account-specific and only accessible to Users with appropriate Grants.

LinodeClient linodeClient = new LinodeClient("apikey");

// Get All
List<Image> list = await linodeClient.Image.Get();

Get One

Get information about a single Image.

  • Public Images have IDs that begin with “linode/”. These distribution images are generally available to all users.

  • Private Images have IDs that begin with “private/”. These Images are Account-specific and only accessible to Users with appropriate Grants.

LinodeClient linodeClient = new LinodeClient("apikey");

string imageId = "linode/debian11";

// Get
Image image = await linodeClient.Image.Get(imageId);

JSON

Last updated

Was this helpful?