Describe platform
GET/platforms/:platformId
Retrieves the details of the computing platform identified by the given platformId
.
Request
Path Parameters
platformId stringrequired
Platform string identifier
Query Parameters
workspaceId int64
Workspace numeric identifier
regionId stringrequired
credentialsId stringrequired
Responses
- 200
- 400
- 403
OK
- application/json
- Schema
- Example (auto)
Schema
metainfo object
{
"metainfo": {
"discriminator": "string",
"warnings": [
"string"
],
"jobQueues": [
{
"name": "string",
"state": "string"
}
],
"buckets": [
{
"path": "string"
}
],
"fileSystems": [
{
"id": "string",
"dns": "string",
"mount": "string"
}
],
"efsFileSystems": [
{
"id": "string"
}
],
"keyPairs": [
"string"
],
"vpcs": [
{
"id": "string",
"isDefault": true
}
],
"images": [
{
"id": "string",
"name": "string",
"description": "string",
"arch": "string"
}
],
"securityGroups": [
{
"id": "string",
"name": "string",
"vpcId": "string"
}
],
"subnets": [
{
"id": "string",
"zone": "string",
"vpcId": "string"
}
],
"instanceFamilies": [
"string"
],
"allocStrategy": [
"string"
]
}
}
Bad request
- application/json
- Schema
- Example (auto)
Schema
messagestringrequired
{
"message": "string"
}
Operation not allowed
Authorization: http
name: BearerAuthtype: httpscheme: bearerbearerFormat: jwt
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://docs.seqera.io/platforms/:platformId");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());