Skip to content

Commit

Permalink
[docs] clean-up compute from base api
Browse files Browse the repository at this point in the history
  • Loading branch information
ToshY committed Nov 17, 2024
1 parent 98d790f commit 80017d6
Showing 1 changed file with 0 additions and 41 deletions.
41 changes: 0 additions & 41 deletions docs/base-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,47 +218,6 @@ $baseApi->applyPromoCode(
);
```

### Compute


#### [List Compute Script Releases](https://docs.bunny.net/reference/computeedgescriptpublic_getreleases)

```php
$baseApi->listComputeScriptReleases(
id: 1,
query: [
'page' => 1,
'perPage' => 1000,
],
);
```

#### [Publish Compute Script](https://docs.bunny.net/reference/computeedgescriptpublic_publish)

```php
$baseApi->publishComputeScript(
id: 1,
query: [
'uuid' => '173d4dfc-a8dd-42f5-a55c-cba765c75aa5',
],
body: [
'Note' => 'Initial release',
],
);
```

#### [Publish Compute Script (by path parameter)](https://docs.bunny.net/reference/computeedgescriptpublic_publish2)

```php
$baseApi->publishComputeScriptByPathParameter(
id: 1,
uuid: '173d4dfc-a8dd-42f5-a55c-cba765c75aa5',
body: [
'Note' => 'Initial release',
],
);
```

### Support

#### [List Tickets](https://docs.bunny.net/reference/supportpublic_index)
Expand Down

0 comments on commit 80017d6

Please sign in to comment.