Boomi Platform API Reference (1.0.0) - Cloud
The Cloud object represents a Runtime cloud that is available to the requesting account. You can retrieve a Runtime cloud's properties and query for Runtime clouds by name or ID.
Retrieves an instance of a Cloud object
Retrieves the properties of the Runtime cloud having the specified ID.
Authorizations:
path Parameters
| id required | string A unique ID assigned by the system to the Runtime cloud. |
Responses
Response Schema:
Array of objects (CloudAtom) | |
| id | string A unique ID assigned by the system to the Runtime cloud. |
| name | string The name of the Runtime cloud. |
Response samples
- 200
- 403
- 410
- 503
{- "@type": "Cloud",
- "Atom": [
- {
- "@type": "CloudAtom",
- "atomId": "3456789a-bcde-f0123-4567-89abcdef012"
}, - {
- "@type": "CloudAtom",
- "atomId": "cdef0123-4567-89ab-cdef-0123456789ab"
}
], - "id": "23456789-abcd-ef01-2345-6789abcdef01",
- "name": "MyCompany Cloud"
}Retrieves multiple Cloud objects by identifier
To learn more about bulk, refer to the topic Bulk GET operations.
Authorizations:
Request Body schema: optional
Array of objects (BulkId) | |
| type | string Enum: "GET" "DELETE" "UPDATE" "CREATE" |
Responses
Response Schema:
Array of objects | |||||||||||
Array
| |||||||||||
Request samples
- Payload
{- "request": [
- {
- "id": "56789abc-def0-1234-5678-9abcdef01234"
}
], - "type": "GET"
}Response samples
- 200
- 403
- 410
- 503
{- "response": [
- {
- "Result": {
- "Atom": [
- {
- "atomId": "3456789a-bcde-f0123-4567-89abcdef012"
}, - {
- "atomId": "cdef0123-4567-89ab-cdef-0123456789ab"
}
], - "id": "23456789-abcd-ef01-2345-6789abcdef01",
- "name": "MyCompany Cloud"
}, - "index": 0,
- "id": "string",
- "statusCode": 0,
- "errorMessage": "string"
}
]
}Queries for a Cloud object(s)
For general information about the structure of QUERY filters, their sample payloads, and how to handle the paged results, refer to Query filters and Query paging.
Authorizations:
Request Body schema: optional
Possible properties include: name, id
required | object | ||||||||||
| |||||||||||
Responses
Response Schema:
| numberOfResults | integer <int32> |
| queryToken | string By default, the queryToken parameter is not available in the query response. It appears only when the query response contains more than 100 results. The maximum number of results returned per query is 100. To retrieve the next set of results, use the queryToken in the queryMore request. |
Array of objects (Cloud) |
Request samples
- Payload
{- "QueryFilter": {
- "expression": {
- "argument": [
- "MyCompany Cloud"
], - "operator": "EQUALS",
- "property": "name"
}
}
}Response samples
- 200
- 403
- 410
- 503
{- "numberOfResults": 1,
- "@type": "QueryResult",
- "result": [
- {
- "@type": "Cloud",
- "Atom": [
- {
- "@type": "CloudAtom",
- "atomId": "3456789a-bcde-f0123-4567-89abcdef012"
}, - {
- "@type": "CloudAtom",
- "atomId": "cdef0123-4567-89ab-cdef-0123456789ab"
}
], - "id": "23456789-abcd-ef01-2345-6789abcdef01",
- "name": "MyCompany Cloud"
}
]
}Retrieves additional results for a Cloud query
To learn about using queryMore, refer to the topic Query paging.
Authorizations:
Request Body schema: text/plainrequired
Responses
Response Schema:
| numberOfResults | integer <int32> |
| queryToken | string By default, the queryToken parameter is not available in the query response. It appears only when the query response contains more than 100 results. The maximum number of results returned per query is 100. To retrieve the next set of results, use the queryToken in the queryMore request. |
Array of objects (Cloud) |
Response samples
- 200
- 403
- 410
- 503
{- "numberOfResults": 1,
- "@type": "QueryResult",
- "result": [
- {
- "@type": "Cloud",
- "Atom": [
- {
- "@type": "CloudAtom",
- "atomId": "3456789a-bcde-f0123-4567-89abcdef012"
}, - {
- "@type": "CloudAtom",
- "atomId": "cdef0123-4567-89ab-cdef-0123456789ab"
}
], - "id": "23456789-abcd-ef01-2345-6789abcdef01",
- "name": "MyCompany Cloud"
}
]
}