curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/nodePoolBindings \
--header 'Authorization: Bearer <token>'{
"nodePoolBindings": [
{
"principal": "<string>",
"accountId": "<string>",
"clusterId": "<string>",
"nodePoolId": "<string>",
"createTime": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>",
"totalSize": 123
}curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/nodePoolBindings \
--header 'Authorization: Bearer <token>'{
"nodePoolBindings": [
{
"principal": "<string>",
"accountId": "<string>",
"clusterId": "<string>",
"nodePoolId": "<string>",
"createTime": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>",
"totalSize": 123
}Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>
The Account Id
The maximum number of bindings to return. The maximum page_size is 200, values above 200 will be coerced to 200. If unspecified, the default is 50.
A page token, received from a previous ListNodePoolBindings call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListNodePoolBindings must match the call that provided the page token.
Only bindings satisfying the provided filter (if specified) will be returned. See https://google.aip.dev/160 for the filter grammar.
A comma-separated list of fields to order by. e.g. "foo,bar" The default sort order is ascending. To specify a descending order for a field, append a " desc" suffix. e.g. "foo desc,bar" Subfields are specified with a "." character. e.g. "foo.bar" If not specified, the default order is by "name".
The fields to be returned in the response. If empty or "*", all fields will be returned.
A successful response.
Show child attributes
The principal that is allowed use the node pool. This must be the email address of the user.
The account ID that this binding is associated with.
The cluster ID that this binding is associated with.
The node pool ID that this binding is associated with.
The creation time of the node pool binding.
A token, which can be sent as page_token to retrieve the next page.
If this field is omitted, there are no subsequent pages.
The total number of node pool bindings.
Was this page helpful?